ETH Price: $2,594.95 (-3.70%)

Token

Ethereum Football Stars Club (EFSC)
 

Overview

Max Total Supply

6 EFSC

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Ethereum Football Stars Club: Deployer
Balance
6 EFSC
0x06933c2615069a950a33b3ea9cb34a05b12c120d
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:
EFS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

//SPDX-License-Identifier: MIT

//EFS.CLUB
// EFS Market : Market.efs.club
/*
Ethereum Football Stars Club (EFS)  - Collect To Earn
*/

// File: IOperatorFilterRegistry.sol

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(
        address registrant,
        address operator
    ) external view returns (bool);

    function register(address registrant) external;

    function registerAndSubscribe(
        address registrant,
        address subscription
    ) external;

    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    function subscribe(
        address registrant,
        address registrantToSubscribe
    ) external;

    function unsubscribe(address registrant, bool copyExistingEntries) external;

    function subscriptionOf(address addr) external returns (address registrant);

    function subscribers(
        address registrant
    ) external returns (address[] memory);

    function subscriberAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function copyEntriesOf(
        address registrant,
        address registrantToCopy
    ) external;

    function isOperatorFiltered(
        address registrant,
        address operator
    ) external returns (bool);

    function isCodeHashOfFiltered(
        address registrant,
        address operatorWithCode
    ) external returns (bool);

    function isCodeHashFiltered(
        address registrant,
        bytes32 codeHash
    ) external returns (bool);

    function filteredOperators(
        address addr
    ) external returns (address[] memory);

    function filteredCodeHashes(
        address addr
    ) external returns (bytes32[] memory);

    function filteredOperatorAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function filteredCodeHashAt(
        address registrant,
        uint256 index
    ) external returns (bytes32);

    function isRegistered(address addr) external returns (bool);

    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol

pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(
                    address(this),
                    subscriptionOrRegistrantToCopy
                );
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(
                        address(this),
                        subscriptionOrRegistrantToCopy
                    );
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(operatorFilterRegistry.isOperatorAllowed(
                    address(this),
                    msg.sender
                ) &&
                    operatorFilterRegistry.isOperatorAllowed(
                        address(this),
                        from
                    ))
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol

pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Context.sol

// 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: contracts/erc721a.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerQueryForNonexistentToken();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();

/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {
        // The address of the owner.

        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;
        // Whether the token has been burned.

        bool burned;
    }

    // Compiler will pack this into a single 256bit word.

    struct AddressData {
        // Realistically, 2**64-1 is more than enough.

        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;
    }

    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;

    // The number of tokens burned.

    uint256 internal _burnCounter;

    // Token name

    string private _name;

    // Token symbol

    string private _symbol;

    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();
    }

    /**

     * To change the starting tokenId, please override this function.

     */

    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**

     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.

     */

    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex - _startTokenId() times

        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**

     * Returns the total amount of tokens minted in the contract.

     */

    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,

        // and it is initialized to _startTokenId()

        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**

     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);
    }

    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function _ownershipOf(
        uint256 tokenId
    ) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {
                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }

        revert OwnerQueryForNonexistentToken();
    }

    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**

     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();

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

    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

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

    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(
        uint256 tokenId
    ) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;

        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**

     * @dev See {IERC721-isApprovedForAll}.

     */

    function isApprovedForAll(
        address owner,
        address operator
    ) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**

     * @dev See {IERC721-transferFrom}.

     */

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);

        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**

     * @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`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;

        if (to == address(0)) revert MintToZeroAddress();

        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {
            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;

            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);

                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);

                // Reentrancy protection

                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * 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) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {
            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = to;

            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**

     * @dev This is equivalent to _burn(tokenId, false)

     */

    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**

     * @dev Destroys `tokenId`.

     * The approval is cleared when the token is burned.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     *

     * Emits a {Transfer} event.

     */

    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {
            AddressData storage addressData = _addressData[from];

            addressData.balance -= 1;

            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.

            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = from;

            currSlot.startTimestamp = uint64(block.timestamp);

            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {
            _burnCounter++;
        }
    }

    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(address to, uint256 tokenId, address owner) private {
        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);
    }

    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * 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, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev 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: contracts/contract.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

pragma solidity ^0.8.4;

contract EFS is Ownable, ERC721A, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseTokenURI;

    uint256 public publicSaleCost = 0.15 ether;

    uint64 public publicTotalSupply = 0;

    //Supply Type Cards
    uint256 public CommonMaxSupply = 700;
    uint256 public EpicMaxSupply = 250;
    uint256 public GoldMaxSupply = 50;
    uint256 public UniqueMaxSupply = 1;
    // End Supply Type Cards

    //Types Ratio div to 1000
    uint256 public CommonCardRatio = 1 * 10 ** 18;
    uint256 public EpicCardRatio = 3 * 10 ** 18;
    uint256 public GoldCardRatio = 10 * 10 ** 18;
    uint256 public UniqueCardRatio = 30 * 10 ** 18;
    //End Types Ratio

    //Players Ratio div to 1000
    uint256 public OneStarRatio = 1 * 10 ** 18;
    uint256 public TwoStarRatio = 1.2 * 10 ** 18;
    uint256 public ThreeStarRatio = 1.3 * 10 ** 18;
    uint256 public FourStarRatio = 1.5 * 10 ** 18;
    //End Players Ratio

    struct CardsStar {
        uint256 id;
        uint256 star;
    }

    mapping(uint256 => uint256) public cardStarRatio;

    bool public publicSaleActive = true;

    // Custom Metadata Struct
    struct CardsData {
        string id;
        uint256 player_id;
        uint256 player_type;
    }
    mapping(uint => CardsData) public cardsData;

    function assignMetadatas(
        uint64[] memory _playerIds,
        uint64[] memory _playerTypes,
        uint64[] memory _mintAmounts
    ) private {
        uint256 currentTokenID = _currentIndex;
        for (uint i = 0; i < _playerIds.length; i++) {
            uint256 lastSupply = getSupply(_playerIds[i], _playerTypes[i]);
            for (uint y = 0; y < _mintAmounts[i]; y++) {
                lastSupply = lastSupply + 1;
                string memory newIDs = string.concat(
                    makeNumbers(Strings.toString(_playerIds[i])),
                    Strings.toString(_playerTypes[i]),
                    Strings.toString(lastSupply)
                );
                cardsData[currentTokenID] = CardsData(
                    newIDs,
                    _playerIds[i],
                    _playerTypes[i]
                );

                currentTokenID = currentTokenID + 1;
            }
        }
    }

    function makeNumbers(
        string memory _number
    ) private pure returns (string memory) {
        string memory pad = "0000";
        string memory str = string.concat("", _number);
        return string.concat(substring("0000", 0, mine(pad) - mine(str)), str);
    }

    function substring(
        string memory str,
        uint startIndex,
        uint endIndex
    ) private pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }

        return string(result);
    }

    function mine(string memory s) private pure returns (uint256) {
        return bytes(s).length;
    }

    function getMetadata(
        uint256 _tokenID
    ) public view returns (CardsData memory) {
        return cardsData[_tokenID];
    }

    //
    mapping(uint256 => mapping(uint256 => uint256)) public totalSupply;

    constructor() ERC721A("Ethereum Football Stars Club", "EFSC") {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0, "Invalid mint amount!");

        _;
    }

    function addCardsStar(CardsStar[] memory _data) public onlyOwner {
        for (uint i = 0; i < _data.length; i++) {
            cardStarRatio[_data[i].id] = _data[i].star;
        }
    }

    //Get Price with cards
    function getPriceEth(
        uint256 _cardId,
        uint256 _cardType
    ) public view returns (uint256) {
        uint256 _types;
        uint256 _star;

        if (_cardType == 1) {
            _types = CommonCardRatio;
        } else if (_cardType == 2) {
            _types = EpicCardRatio;
        } else if (_cardType == 3) {
            _types = GoldCardRatio;
        } else if (_cardType == 4) {
            _types = UniqueCardRatio;
        } else {
            revert("Invalid card type");
        }

        if (cardStarRatio[_cardId] == 1) {
            _star = OneStarRatio;
        } else if (cardStarRatio[_cardId] == 2) {
            _star = TwoStarRatio;
        } else if (cardStarRatio[_cardId] == 3) {
            _star = ThreeStarRatio;
        } else if (cardStarRatio[_cardId] == 4) {
            _star = FourStarRatio;
        } else {
            revert("Invalid star rating");
        }

        uint256 ethPrice = publicSaleCost * _types * _star;
        return ethPrice / 10 ** 18 / 10 ** 18;
    }

    function getPriceEthBasket(
        uint64[] memory playerIds,
        uint64[] memory playerTypes,
        uint64[] memory mintAmounts
    ) public view returns (uint256) {
        require(
            playerIds.length == playerTypes.length &&
                playerTypes.length == mintAmounts.length,
            "Invalid input arrays"
        );

        uint256 totalPrice = 0;

        for (uint i = 0; i < playerIds.length; i++) {
            require(
                playerIds[i] >= 1 && playerTypes[i] >= 1 && playerTypes[i] <= 4,
                "Invalid player ID or type"
            );

            if (playerTypes[i] == 1) {
                require(
                    totalSupply[playerIds[i]][playerTypes[i]] +
                        mintAmounts[i] <=
                        CommonMaxSupply,
                    "Common NFT max supply reached"
                );
            } else if (playerTypes[i] == 2) {
                require(
                    totalSupply[playerIds[i]][playerTypes[i]] +
                        mintAmounts[i] <=
                        EpicMaxSupply,
                    "Epic NFT max supply reached"
                );
            } else if (playerTypes[i] == 3) {
                require(
                    totalSupply[playerIds[i]][playerTypes[i]] +
                        mintAmounts[i] <=
                        GoldMaxSupply,
                    "Gold NFT max supply reached"
                );
            } else if (playerTypes[i] == 4) {
                require(
                    totalSupply[playerIds[i]][playerTypes[i]] +
                        mintAmounts[i] <=
                        UniqueMaxSupply,
                    "Unique NFT max supply reached"
                );
            } else {
                revert("Invalid NFT type");
            }

            totalPrice +=
                mintAmounts[i] *
                getPriceEth(playerIds[i], playerTypes[i]);
        }

        return totalPrice;
    }

    //Get Supply
    function getSupply(
        uint256 _playerId,
        uint256 _playerType
    ) public view returns (uint256) {
        return totalSupply[_playerId][_playerType];
    }

    //Get Supply
    function getRemaining(
        uint256 _playerId,
        uint256 _playerType
    ) public view returns (uint256) {
        uint256 _maxSupply;
        if (_playerType == 1) {
            _maxSupply = CommonMaxSupply;
        } else if (_playerType == 2) {
            _maxSupply = EpicMaxSupply;
        } else if (_playerType == 3) {
            _maxSupply = GoldMaxSupply;
        } else if (_playerType == 4) {
            _maxSupply = UniqueMaxSupply;
        } else {
            revert("Invalid card type");
        }

        return _maxSupply - totalSupply[_playerId][_playerType];
    }

    function sumArray(uint64[] memory arr) private pure returns (uint) {
        uint sum = 0;
        for (uint i = 0; i < arr.length; i++) {
            sum += arr[i];
        }
        return sum;
    }

    function BuyCardsBasket(
        uint64[] memory _playerIds,
        uint64[] memory _playerTypes,
        uint64[] memory _mintAmounts
    ) public payable mintCompliance(sumArray(_mintAmounts)) {
        require(publicSaleActive, "Public sale is not active");
        require(
            _playerIds.length == _playerTypes.length &&
                _playerTypes.length == _mintAmounts.length,
            "Invalid input arrays"
        );

        uint256 totalPrice = getPriceEthBasket(
            _playerIds,
            _playerTypes,
            _mintAmounts
        );

        require(msg.value == totalPrice, "Insufficient funds");

        for (uint i = 0; i < _playerIds.length; i++) {
            require(
                _playerIds[i] >= 1 &&
                    _playerTypes[i] >= 1 &&
                    _playerTypes[i] <= 4,
                "Invalid player ID or type"
            );

            if (_playerTypes[i] == 1) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        CommonMaxSupply,
                    "Common NFT max supply reached"
                );
            } else if (_playerTypes[i] == 2) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        EpicMaxSupply,
                    "Epic NFT max supply reached"
                );
            } else if (_playerTypes[i] == 3) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        GoldMaxSupply,
                    "Gold NFT max supply reached"
                );
            } else if (_playerTypes[i] == 4) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        UniqueMaxSupply,
                    "Unique NFT max supply reached"
                );
            } else {
                revert("Invalid NFT type");
            }
        }

        assignMetadatas(_playerIds, _playerTypes, _mintAmounts);
        addToSupply(_playerIds, _playerTypes, _mintAmounts);

        _safeMint(msg.sender, sumArray(_mintAmounts));
    }

    function mintTeam(
        uint64[] memory _playerIds,
        uint64[] memory _playerTypes,
        uint64[] memory _mintAmounts
    ) public onlyOwner mintCompliance(sumArray(_mintAmounts)) {
        require(
            _playerIds.length == _playerTypes.length &&
                _playerTypes.length == _mintAmounts.length,
            "Invalid input arrays"
        );

        for (uint i = 0; i < _playerIds.length; i++) {
            require(
                _playerIds[i] >= 1 &&
                    _playerTypes[i] >= 1 &&
                    _playerTypes[i] <= 4,
                "Invalid player ID or type"
            );

            if (_playerTypes[i] == 1) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        CommonMaxSupply,
                    "Common NFT max supply reached"
                );
            } else if (_playerTypes[i] == 2) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        EpicMaxSupply,
                    "Epic NFT max supply reached"
                );
            } else if (_playerTypes[i] == 3) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        GoldMaxSupply,
                    "Gold NFT max supply reached"
                );
            } else if (_playerTypes[i] == 4) {
                require(
                    totalSupply[_playerIds[i]][_playerTypes[i]] +
                        _mintAmounts[i] <=
                        UniqueMaxSupply,
                    "Unique NFT max supply reached"
                );
            } else {
                revert("Invalid NFT type");
            }
        }

        assignMetadatas(_playerIds, _playerTypes, _mintAmounts);
        addToSupply(_playerIds, _playerTypes, _mintAmounts);
        _safeMint(msg.sender, sumArray(_mintAmounts));
    }

    function addToSupply(
        uint64[] memory _playerIds,
        uint64[] memory _playerTypes,
        uint64[] memory _mintAmounts
    ) private {
        for (uint i = 0; i < _playerIds.length; i++) {
            totalSupply[_playerIds[i]][_playerTypes[i]] += _mintAmounts[i];
            publicTotalSupply += _mintAmounts[i];
        }
    }

    //@return token ids owned by an address in the collection
    function walletOfOwner(
        address _owner
    ) external view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount) {
            if (exists(currentTokenId) == true) {
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //@return full url for passed in token id
    function tokenURI(
        uint256 _tokenId
    ) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();

        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        cardsData[_tokenId].id,
                        ".json"
                    )
                )
                : "";
    }

    //@return amount an address has minted during all sales
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    //@return all NFT's minted including burned tokens
    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

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

    function burn(uint256 _tokenId) public {
        require(exists(_tokenId), "Token does not exist");
        require(msg.sender == ownerOf(_tokenId), "Not the owner of the token");
        _burn(_tokenId, false);
    }

    //@return url for the nft metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string calldata _URI) external onlyOwner {
        baseTokenURI = _URI;
    }

    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    //Set Ratio
    function setCommonCardRatio(uint256 _commonCardRatio) public onlyOwner {
        CommonCardRatio = _commonCardRatio;
    }

    function setEpicCardRatio(uint256 _epicCardRatio) public onlyOwner {
        EpicCardRatio = _epicCardRatio;
    }

    function setGoldCardRatio(uint256 _goldCardRatio) public onlyOwner {
        GoldCardRatio = _goldCardRatio;
    }

    function setUniqueCardRatio(uint256 _uniqueCardRatio) public onlyOwner {
        UniqueCardRatio = _uniqueCardRatio;
    }

    //End SET Ratio

    //Set Star Ratio
    function setOneStarRatio(uint256 _ratio) public onlyOwner {
        OneStarRatio = _ratio;
    }

    function setTwoStarRatio(uint256 _ratio) public onlyOwner {
        TwoStarRatio = _ratio;
    }

    function setThreeStarRatio(uint256 _ratio) public onlyOwner {
        ThreeStarRatio = _ratio;
    }

    function setFourStarRatio(uint256 _ratio) public onlyOwner {
        FourStarRatio = _ratio;
    }

    //End SET Ratio

    function setPublicActive(bool _state) public onlyOwner {
        publicSaleActive = _state;
    }

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

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }

    /// Fallbacks
    receive() external payable {}

    fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint64[]","name":"_playerIds","type":"uint64[]"},{"internalType":"uint64[]","name":"_playerTypes","type":"uint64[]"},{"internalType":"uint64[]","name":"_mintAmounts","type":"uint64[]"}],"name":"BuyCardsBasket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"CommonCardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CommonMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EpicCardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EpicMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FourStarRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GoldCardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GoldMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OneStarRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ThreeStarRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TwoStarRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniqueCardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniqueMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"star","type":"uint256"}],"internalType":"struct EFS.CardsStar[]","name":"_data","type":"tuple[]"}],"name":"addCardsStar","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cardStarRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cardsData","outputs":[{"internalType":"string","name":"id","type":"string"},{"internalType":"uint256","name":"player_id","type":"uint256"},{"internalType":"uint256","name":"player_type","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getMetadata","outputs":[{"components":[{"internalType":"string","name":"id","type":"string"},{"internalType":"uint256","name":"player_id","type":"uint256"},{"internalType":"uint256","name":"player_type","type":"uint256"}],"internalType":"struct EFS.CardsData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cardId","type":"uint256"},{"internalType":"uint256","name":"_cardType","type":"uint256"}],"name":"getPriceEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"playerIds","type":"uint64[]"},{"internalType":"uint64[]","name":"playerTypes","type":"uint64[]"},{"internalType":"uint64[]","name":"mintAmounts","type":"uint64[]"}],"name":"getPriceEthBasket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_playerId","type":"uint256"},{"internalType":"uint256","name":"_playerType","type":"uint256"}],"name":"getRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_playerId","type":"uint256"},{"internalType":"uint256","name":"_playerType","type":"uint256"}],"name":"getSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"_playerIds","type":"uint64[]"},{"internalType":"uint64[]","name":"_playerTypes","type":"uint64[]"},{"internalType":"uint64[]","name":"_mintAmounts","type":"uint64[]"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTotalSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_commonCardRatio","type":"uint256"}],"name":"setCommonCardRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_epicCardRatio","type":"uint256"}],"name":"setEpicCardRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setFourStarRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_goldCardRatio","type":"uint256"}],"name":"setGoldCardRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setOneStarRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setThreeStarRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setTwoStarRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_uniqueCardRatio","type":"uint256"}],"name":"setUniqueCardRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052670214e8348c4f0000600a55600b80546001600160401b03191690556102bc600c5560fa600d556032600e556001600f819055670de0b6b3a764000060108190556729a2241af62c0000601155678ac7230489e800006012556801a055690d9db800006013556014556710a741a46278000060155567120a871cc00200006016556714d1120d7b1600006017556019805460ff19169091179055348015620000ab57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601c81526020017f457468657265756d20466f6f7462616c6c20537461727320436c756200000000815250604051806040016040528060048152602001634546534360e01b815250620001306200012a620002a160201b60201c565b620002a5565b60036200013e83826200039a565b5060046200014d82826200039a565b506001805550506daaeb6d7670e522a718067333cd4e3b1562000299578015620001e757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000299565b6001600160a01b03821615620002385760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001ad565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200027f57600080fd5b505af115801562000294573d6000803e3d6000fd5b505050505b505062000466565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200032057607f821691505b6020821081036200034157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039557600081815260208120601f850160051c81016020861015620003705750805b601f850160051c820191505b8181101562000391578281556001016200037c565b5050505b505050565b81516001600160401b03811115620003b657620003b6620002f5565b620003ce81620003c784546200030b565b8462000347565b602080601f831160018114620004065760008415620003ed5750858301515b600019600386901b1c1916600185901b17855562000391565b600085815260208120601f198616915b82811015620004375788860151825594840194600190910190840162000416565b5085821015620004565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61484380620004766000396000f3fe60806040526004361061036b5760003560e01c80636976117d116101c4578063a9ae214c116100f6578063c87b56dd1161009a578063e985e9c51161006c578063e985e9c514610a71578063f2fde38b14610aba578063fa1d1e3d14610ada578063fa97ecda14610af057005b8063c87b56dd146109fb578063d32a98a214610a1b578063dac090ff14610a3b578063dc33e68114610a5157005b8063bc8893b4116100d3578063bc8893b414610973578063c2458d6b1461098d578063c41a2747146109c5578063c454a38e146109e557005b8063a9ae214c14610905578063b88d4fde1461091b578063b985add81461093b57005b80638da5cb5b1161016857806399e3e34e1161013a57806399e3e34e1461088d578063a22cb465146108a3578063a2309ff8146108c3578063a574cea4146108d857005b80638da5cb5b1461080b5780638dbb7c06146108295780638e1f0dcb1461084957806395d89b411461087857005b806370a08231116101a157806370a082311461078b578063788a76e2146107ab5780638836fe01146107cb5780638aca408c146107eb57005b80636976117d146107355780636bff2f471461074b5780636e2aa8f41461076b57005b80633a672bfa1161029d578063453afb0f11610241578063553448cf11610213578063553448cf146106bf57806355f804b3146106df57806362c75387146106ff5780636352211e1461071557005b8063453afb0f1461064957806349df728c1461065f5780634f558e791461067f578063542b1b471461069f57005b806342842e0e1161027a57806342842e0e146105c657806342966c68146105e6578063438b63001461060657806344e6fdd61461063357005b80633a672bfa1461057b5780633ccfd60b1461059b5780633fc56708146105b057005b806312b6f7261161030f57806332ce703c116102e157806332ce703c146105195780633355ef5e1461052f5780633799479a1461054f57806338cc28ca1461056557005b806312b6f7261461048457806318160ddd146104bc57806323b872dd146104d9578063327b352b146104f957005b8063081812fc11610348578063081812fc146103eb578063095ea7b3146104235780630b8ca50f14610443578063124d05501461045657005b8063011ff41f1461037457806301ffc9a71461039457806306fdde03146103c957005b3661037257005b005b34801561038057600080fd5b5061037261038f366004613bba565b610b1d565b3480156103a057600080fd5b506103b46103af366004613be9565b610b55565b60405190151581526020015b60405180910390f35b3480156103d557600080fd5b506103de610ba7565b6040516103c09190613c56565b3480156103f757600080fd5b5061040b610406366004613bba565b610c39565b6040516001600160a01b0390911681526020016103c0565b34801561042f57600080fd5b5061037261043e366004613c7e565b610c7d565b610372610451366004613dbc565b610d0a565b34801561046257600080fd5b50610476610471366004613dbc565b6112e0565b6040519081526020016103c0565b34801561049057600080fd5b5061047661049f366004613e43565b6000918252601b6020908152604080842092845291905290205490565b3480156104c857600080fd5b506002546001540360001901610476565b3480156104e557600080fd5b506103726104f4366004613e65565b6117e9565b34801561050557600080fd5b50610372610514366004613ea6565b611945565b34801561052557600080fd5b5061047660135481565b34801561053b57600080fd5b5061037261054a366004613bba565b6119e4565b34801561055b57600080fd5b50610476600d5481565b34801561057157600080fd5b5061047660155481565b34801561058757600080fd5b50610372610596366004613bba565b611a13565b3480156105a757600080fd5b50610372611a42565b3480156105bc57600080fd5b50610476600f5481565b3480156105d257600080fd5b506103726105e1366004613e65565b611acf565b3480156105f257600080fd5b50610372610601366004613bba565b611c20565b34801561061257600080fd5b50610626610621366004613f5b565b611ce0565b6040516103c09190613f78565b34801561063f57600080fd5b5061047660115481565b34801561065557600080fd5b50610476600a5481565b34801561066b57600080fd5b5061037261067a366004613f5b565b611dc4565b34801561068b57600080fd5b506103b461069a366004613bba565b611ecd565b3480156106ab57600080fd5b506103726106ba366004613dbc565b611ed8565b3480156106cb57600080fd5b506103726106da366004613bba565b6123ec565b3480156106eb57600080fd5b506103726106fa366004613fbc565b61241b565b34801561070b57600080fd5b5061047660125481565b34801561072157600080fd5b5061040b610730366004613bba565b612452565b34801561074157600080fd5b50610476600c5481565b34801561075757600080fd5b50610372610766366004613bba565b612464565b34801561077757600080fd5b50610372610786366004613bba565b612493565b34801561079757600080fd5b506104766107a6366004613f5b565b6124c2565b3480156107b757600080fd5b506103726107c6366004613bba565b612510565b3480156107d757600080fd5b506104766107e6366004613e43565b61253f565b3480156107f757600080fd5b5061037261080636600461403b565b6126c6565b34801561081757600080fd5b506000546001600160a01b031661040b565b34801561083557600080fd5b50610372610844366004613bba565b612703565b34801561085557600080fd5b50610869610864366004613bba565b612732565b6040516103c093929190614058565b34801561088457600080fd5b506103de6127dc565b34801561089957600080fd5b5061047660175481565b3480156108af57600080fd5b506103726108be36600461407d565b6127eb565b3480156108cf57600080fd5b50610476612880565b3480156108e457600080fd5b506108f86108f3366004613bba565b612894565b6040516103c091906140b6565b34801561091157600080fd5b5061047660105481565b34801561092757600080fd5b506103726109363660046140f2565b61297d565b34801561094757600080fd5b50600b5461095b906001600160401b031681565b6040516001600160401b0390911681526020016103c0565b34801561097f57600080fd5b506019546103b49060ff1681565b34801561099957600080fd5b506104766109a8366004613e43565b601b60209081526000928352604080842090915290825290205481565b3480156109d157600080fd5b506103726109e0366004613bba565b612ad5565b3480156109f157600080fd5b5061047660145481565b348015610a0757600080fd5b506103de610a16366004613bba565b612b04565b348015610a2757600080fd5b50610476610a36366004613e43565b612bd6565b348015610a4757600080fd5b50610476600e5481565b348015610a5d57600080fd5b50610476610a6c366004613f5b565b612c45565b348015610a7d57600080fd5b506103b4610a8c3660046141b5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ac657600080fd5b50610372610ad5366004613f5b565b612c73565b348015610ae657600080fd5b5061047660165481565b348015610afc57600080fd5b50610476610b0b366004613bba565b60186020526000908152604090205481565b6000546001600160a01b03163314610b505760405162461bcd60e51b8152600401610b47906141e3565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b1480610b8657506001600160e01b03198216635b5e139f60e01b145b80610ba157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610bb690614218565b80601f0160208091040260200160405190810160405280929190818152602001828054610be290614218565b8015610c2f5780601f10610c0457610100808354040283529160200191610c2f565b820191906000526020600020905b815481529060010190602001808311610c1257829003601f168201915b5050505050905090565b6000610c4482612d0b565b610c61576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c8882612452565b9050806001600160a01b0316836001600160a01b031603610cbc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cdc5750610cda8133610a8c565b155b15610cfa576040516367d9dca160e11b815260040160405180910390fd5b610d05838383612d44565b505050565b610d1381612da0565b60008111610d5a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b47565b60195460ff16610dac5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b47565b82518451148015610dbe575081518351145b610dda5760405162461bcd60e51b8152600401610b4790614252565b6000610de78585856112e0565b9050803414610e2d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b47565b60005b85518110156112b0576001868281518110610e4d57610e4d614280565b60200260200101516001600160401b031610158015610e8f57506001858281518110610e7b57610e7b614280565b60200260200101516001600160401b031610155b8015610ebe57506004858281518110610eaa57610eaa614280565b60200260200101516001600160401b031611155b610eda5760405162461bcd60e51b8152600401610b4790614296565b848181518110610eec57610eec614280565b60200260200101516001600160401b0316600103610fc057600c54848281518110610f1957610f19614280565b60200260200101516001600160401b0316601b6000898581518110610f4057610f40614280565b60200260200101516001600160401b031681526020019081526020016000206000888581518110610f7357610f73614280565b60200260200101516001600160401b0316815260200190815260200160002054610f9d91906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b47906142f6565b61129e565b848181518110610fd257610fd2614280565b60200260200101516001600160401b03166002036110a157600d54848281518110610fff57610fff614280565b60200260200101516001600160401b0316601b600089858151811061102657611026614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061105957611059614280565b60200260200101516001600160401b031681526020019081526020016000205461108391906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b479061432d565b8481815181106110b3576110b3614280565b60200260200101516001600160401b031660030361118257600e548482815181106110e0576110e0614280565b60200260200101516001600160401b0316601b600089858151811061110757611107614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061113a5761113a614280565b60200260200101516001600160401b031681526020019081526020016000205461116491906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b4790614364565b84818151811061119457611194614280565b60200260200101516001600160401b031660040361126357600f548482815181106111c1576111c1614280565b60200260200101516001600160401b0316601b60008985815181106111e8576111e8614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061121b5761121b614280565b60200260200101516001600160401b031681526020019081526020016000205461124591906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b479061439b565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964204e4654207479706560801b6044820152606401610b47565b806112a8816143d2565b915050610e30565b506112bc858585612df7565b6112c7858585612fef565b6112d9336112d485612da0565b61310b565b5050505050565b6000825184511480156112f4575081518351145b6113105760405162461bcd60e51b8152600401610b4790614252565b6000805b85518110156117e057600186828151811061133157611331614280565b60200260200101516001600160401b0316101580156113735750600185828151811061135f5761135f614280565b60200260200101516001600160401b031610155b80156113a25750600485828151811061138e5761138e614280565b60200260200101516001600160401b031611155b6113be5760405162461bcd60e51b8152600401610b4790614296565b8481815181106113d0576113d0614280565b60200260200101516001600160401b03166001036114a457600c548482815181106113fd576113fd614280565b60200260200101516001600160401b0316601b600089858151811061142457611424614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061145757611457614280565b60200260200101516001600160401b031681526020019081526020016000205461148191906142e3565b111561149f5760405162461bcd60e51b8152600401610b47906142f6565b611747565b8481815181106114b6576114b6614280565b60200260200101516001600160401b031660020361158557600d548482815181106114e3576114e3614280565b60200260200101516001600160401b0316601b600089858151811061150a5761150a614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061153d5761153d614280565b60200260200101516001600160401b031681526020019081526020016000205461156791906142e3565b111561149f5760405162461bcd60e51b8152600401610b479061432d565b84818151811061159757611597614280565b60200260200101516001600160401b031660030361166657600e548482815181106115c4576115c4614280565b60200260200101516001600160401b0316601b60008985815181106115eb576115eb614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061161e5761161e614280565b60200260200101516001600160401b031681526020019081526020016000205461164891906142e3565b111561149f5760405162461bcd60e51b8152600401610b4790614364565b84818151811061167857611678614280565b60200260200101516001600160401b031660040361126357600f548482815181106116a5576116a5614280565b60200260200101516001600160401b0316601b60008985815181106116cc576116cc614280565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106116ff576116ff614280565b60200260200101516001600160401b031681526020019081526020016000205461172991906142e3565b111561149f5760405162461bcd60e51b8152600401610b479061439b565b61179586828151811061175c5761175c614280565b60200260200101516001600160401b031686838151811061177f5761177f614280565b60200260200101516001600160401b031661253f565b8482815181106117a7576117a7614280565b60200260200101516001600160401b03166117c291906143eb565b6117cc90836142e3565b9150806117d8816143d2565b915050611314565b50949350505050565b826daaeb6d7670e522a718067333cd4e3b1561193457336001600160a01b0382160361181f5761181a848484613125565b61193f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561186e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118929190614402565b80156119155750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119159190614402565b61193457604051633b79c77360e21b8152336004820152602401610b47565b61193f848484613125565b50505050565b6000546001600160a01b0316331461196f5760405162461bcd60e51b8152600401610b47906141e3565b60005b81518110156119e05781818151811061198d5761198d614280565b602002602001015160200151601860008484815181106119af576119af614280565b60200260200101516000015181526020019081526020016000208190555080806119d8906143d2565b915050611972565b5050565b6000546001600160a01b03163314611a0e5760405162461bcd60e51b8152600401610b47906141e3565b601755565b6000546001600160a01b03163314611a3d5760405162461bcd60e51b8152600401610b47906141e3565b601255565b6000546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610b47906141e3565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611ab9576040519150601f19603f3d011682016040523d82523d6000602084013e611abe565b606091505b5050905080611acc57600080fd5b50565b826daaeb6d7670e522a718067333cd4e3b15611c1557336001600160a01b03821603611b005761181a848484613130565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190614402565b8015611bf65750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf69190614402565b611c1557604051633b79c77360e21b8152336004820152602401610b47565b61193f848484613130565b611c2981611ecd565b611c6c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b47565b611c7581612452565b6001600160a01b0316336001600160a01b031614611cd55760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b47565b611acc81600061314b565b60606000611ced836124c2565b90506000816001600160401b03811115611d0957611d09613caa565b604051908082528060200260200182016040528015611d32578160200160208202803683370190505b509050600160005b83811015611dba57611d4b82611ecd565b1515600103611da8576000611d5f83612452565b9050866001600160a01b0316816001600160a01b031603611da65782848381518110611d8d57611d8d614280565b602090810291909101015281611da2816143d2565b9250505b505b81611db2816143d2565b925050611d3a565b5090949350505050565b6000546001600160a01b03163314611dee5760405162461bcd60e51b8152600401610b47906141e3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e59919061441f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611ea9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d059190614402565b6000610ba182612d0b565b6000546001600160a01b03163314611f025760405162461bcd60e51b8152600401610b47906141e3565b611f0b81612da0565b60008111611f525760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b47565b82518451148015611f64575081518351145b611f805760405162461bcd60e51b8152600401610b4790614252565b60005b84518110156123c8576001858281518110611fa057611fa0614280565b60200260200101516001600160401b031610158015611fe257506001848281518110611fce57611fce614280565b60200260200101516001600160401b031610155b801561201157506004848281518110611ffd57611ffd614280565b60200260200101516001600160401b031611155b61202d5760405162461bcd60e51b8152600401610b4790614296565b83818151811061203f5761203f614280565b60200260200101516001600160401b031660010361211357600c5483828151811061206c5761206c614280565b60200260200101516001600160401b0316601b600088858151811061209357612093614280565b60200260200101516001600160401b0316815260200190815260200160002060008785815181106120c6576120c6614280565b60200260200101516001600160401b03168152602001908152602001600020546120f091906142e3565b111561210e5760405162461bcd60e51b8152600401610b47906142f6565b6123b6565b83818151811061212557612125614280565b60200260200101516001600160401b03166002036121f457600d5483828151811061215257612152614280565b60200260200101516001600160401b0316601b600088858151811061217957612179614280565b60200260200101516001600160401b0316815260200190815260200160002060008785815181106121ac576121ac614280565b60200260200101516001600160401b03168152602001908152602001600020546121d691906142e3565b111561210e5760405162461bcd60e51b8152600401610b479061432d565b83818151811061220657612206614280565b60200260200101516001600160401b03166003036122d557600e5483828151811061223357612233614280565b60200260200101516001600160401b0316601b600088858151811061225a5761225a614280565b60200260200101516001600160401b03168152602001908152602001600020600087858151811061228d5761228d614280565b60200260200101516001600160401b03168152602001908152602001600020546122b791906142e3565b111561210e5760405162461bcd60e51b8152600401610b4790614364565b8381815181106122e7576122e7614280565b60200260200101516001600160401b031660040361126357600f5483828151811061231457612314614280565b60200260200101516001600160401b0316601b600088858151811061233b5761233b614280565b60200260200101516001600160401b03168152602001908152602001600020600087858151811061236e5761236e614280565b60200260200101516001600160401b031681526020019081526020016000205461239891906142e3565b111561210e5760405162461bcd60e51b8152600401610b479061439b565b806123c0816143d2565b915050611f83565b506123d4848484612df7565b6123df848484612fef565b61193f336112d484612da0565b6000546001600160a01b031633146124165760405162461bcd60e51b8152600401610b47906141e3565b601655565b6000546001600160a01b031633146124455760405162461bcd60e51b8152600401610b47906141e3565b6009610d05828483614486565b600061245d826132ff565b5192915050565b6000546001600160a01b0316331461248e5760405162461bcd60e51b8152600401610b47906141e3565b601355565b6000546001600160a01b031633146124bd5760405162461bcd60e51b8152600401610b47906141e3565b601155565b60006001600160a01b0382166124eb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b0316331461253a5760405162461bcd60e51b8152600401610b47906141e3565b601455565b6000806000836001036125565760105491506125c8565b836002036125685760115491506125c8565b8360030361257a5760125491506125c8565b8360040361258c5760135491506125c8565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c69642063617264207479706560781b6044820152606401610b47565b6000858152601860205260409020546001036125e75750601454612682565b6000858152601860205260409020546002036126065750601554612682565b6000858152601860205260409020546003036126255750601654612682565b6000858152601860205260409020546004036126445750601754612682565b60405162461bcd60e51b8152602060048201526013602482015272496e76616c6964207374617220726174696e6760681b6044820152606401610b47565b60008183600a5461269391906143eb565b61269d91906143eb565b9050670de0b6b3a76400006126b2818361455b565b6126bc919061455b565b9695505050505050565b6000546001600160a01b031633146126f05760405162461bcd60e51b8152600401610b47906141e3565b6019805460ff1916911515919091179055565b6000546001600160a01b0316331461272d5760405162461bcd60e51b8152600401610b47906141e3565b600a55565b601a6020526000908152604090208054819061274d90614218565b80601f016020809104026020016040519081016040528092919081815260200182805461277990614218565b80156127c65780601f1061279b576101008083540402835291602001916127c6565b820191906000526020600020905b8154815290600101906020018083116127a957829003601f168201915b5050505050908060010154908060020154905083565b606060048054610bb690614218565b336001600160a01b038316036128145760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061288f6001546000190190565b905090565b6128b860405180606001604052806060815260200160008152602001600081525090565b6000828152601a6020526040908190208151606081019092528054829082906128e090614218565b80601f016020809104026020016040519081016040528092919081815260200182805461290c90614218565b80156129595780601f1061292e57610100808354040283529160200191612959565b820191906000526020600020905b81548152906001019060200180831161293c57829003601f168201915b50505050508152602001600182015481526020016002820154815250509050919050565b836daaeb6d7670e522a718067333cd4e3b15612ac957336001600160a01b038216036129b4576129af85858585613426565b6112d9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612a03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a279190614402565b8015612aaa5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aaa9190614402565b612ac957604051633b79c77360e21b8152336004820152602401610b47565b6112d985858585613426565b6000546001600160a01b03163314612aff5760405162461bcd60e51b8152600401610b47906141e3565b601555565b6060612b0f82612d0b565b612b735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b47565b6000612b7d613471565b90506000815111612b9d5760405180602001604052806000815250612bcf565b6000838152601a60209081526040918290209151612bbf92849290910161456f565b6040516020818303038152906040525b9392505050565b60008082600103612bea5750600c54612c19565b82600203612bfb5750600d54612c19565b82600303612c0c5750600e54612c19565b8260040361258c5750600f545b6000848152601b60209081526040808320868452909152902054612c3d9082614609565b949350505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610ba1565b6000546001600160a01b03163314612c9d5760405162461bcd60e51b8152600401610b47906141e3565b6001600160a01b038116612d025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b47565b611acc81613480565b600081600111158015612d1f575060015482105b8015610ba1575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600080805b8351811015612df057838181518110612dc057612dc0614280565b60200260200101516001600160401b031682612ddc91906142e3565b915080612de8816143d2565b915050612da5565b5092915050565b60015460005b84518110156112d9576000612e6e868381518110612e1d57612e1d614280565b60200260200101516001600160401b0316868481518110612e4057612e40614280565b60200260200101516001600160401b03166000918252601b6020908152604080842092845291905290205490565b905060005b848381518110612e8557612e85614280565b60200260200101516001600160401b0316811015612fda57612ea88260016142e3565b91506000612edf612eda898681518110612ec457612ec4614280565b60200260200101516001600160401b03166134d0565b6135d0565b612ef4888681518110612ec457612ec4614280565b612efd856134d0565b604051602001612f0f9392919061461c565b60405160208183030381529060405290506040518060600160405280828152602001898681518110612f4357612f43614280565b60200260200101516001600160401b03168152602001888681518110612f6b57612f6b614280565b6020908102919091018101516001600160401b03169091526000878152601a9091526040902081518190612f9f908261465f565b506020820151816001015560408201518160020155905050846001612fc491906142e3565b9450508080612fd2906143d2565b915050612e73565b50508080612fe7906143d2565b915050612dfd565b60005b835181101561193f5781818151811061300d5761300d614280565b60200260200101516001600160401b0316601b600086848151811061303457613034614280565b60200260200101516001600160401b03168152602001908152602001600020600085848151811061306757613067614280565b60200260200101516001600160401b03168152602001908152602001600020600082825461309591906142e3565b925050819055508181815181106130ae576130ae614280565b6020908102919091010151600b80546000906130d49084906001600160401b031661471e565b92506101000a8154816001600160401b0302191690836001600160401b031602179055508080613103906143d2565b915050612ff2565b6119e0828260405180602001604052806000815250613675565b610d05838383613682565b610d058383836040518060200160405280600081525061297d565b6000613156836132ff565b805190915082156131bc576000336001600160a01b038316148061317f575061317f8233610a8c565b8061319a57503361318f86610c39565b6001600160a01b0316145b9050806131ba57604051632ce44b5f60e11b815260040160405180910390fd5b505b6131c860008583612d44565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166132c65760015482146132c657805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206147ee833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561332f575060015481105b1561340d57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061340b5780516001600160a01b0316156133a2579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613406579392505050565b6133a2565b505b604051636f96cda160e11b815260040160405180910390fd5b613431848484613682565b6001600160a01b0383163b1515801561345357506134518484848461385b565b155b1561193f576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610bb690614218565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816000036134f75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613521578061350b816143d2565b915061351a9050600a8361455b565b91506134fb565b6000816001600160401b0381111561353b5761353b613caa565b6040519080825280601f01601f191660200182016040528015613565576020820181803683370190505b5090505b8415612c3d5761357a600183614609565b9150613587600a8661473e565b6135929060306142e3565b60f81b8183815181106135a7576135a7614280565b60200101906001600160f81b031916908160001a9053506135c9600a8661455b565b9450613569565b60606000604051806040016040528060048152602001630303030360e41b81525090506000836040516020016136069190614752565b60408051601f1981840301815282820190915260048252630303030360e41b6020830152915061364b90600061363a845190565b85516136469190614609565b613946565b8160405160200161365d92919061476e565b60405160208183030381529060405292505050919050565b610d058383836001613a12565b600061368d826132ff565b9050836001600160a01b031681600001516001600160a01b0316146136c45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806136e257506136e28533610a8c565b806136fd5750336136f284610c39565b6001600160a01b0316145b90508061371d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661374457604051633a954ecd60e21b815260040160405180910390fd5b61375060008487612d44565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661382457600154821461382457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206147ee83398151915260405160405180910390a46112d9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061389090339089908890889060040161479d565b6020604051808303816000875af19250505080156138cb575060408051601f3d908101601f191682019092526138c8918101906147d0565b60015b613929573d8080156138f9576040519150601f19603f3d011682016040523d82523d6000602084013e6138fe565b606091505b508051600003613921576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608360006139558585614609565b6001600160401b0381111561396c5761396c613caa565b6040519080825280601f01601f191660200182016040528015613996576020820181803683370190505b509050845b84811015613a08578281815181106139b5576139b5614280565b01602001516001600160f81b031916826139cf8884614609565b815181106139df576139df614280565b60200101906001600160f81b031916908160001a90535080613a00816143d2565b91505061399b565b5095945050505050565b6001546001600160a01b038516613a3b57604051622e076360e81b815260040160405180910390fd5b83600003613a5c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015613b0857506001600160a01b0387163b15155b15613b7e575b60405182906001600160a01b038916906000906000805160206147ee833981519152908290a4613b47600088848060010195508861385b565b613b64576040516368d2bf6b60e11b815260040160405180910390fd5b808203613b0e578260015414613b7957600080fd5b613bb1565b5b6040516001830192906001600160a01b038916906000906000805160206147ee833981519152908290a4808203613b7f575b506001556112d9565b600060208284031215613bcc57600080fd5b5035919050565b6001600160e01b031981168114611acc57600080fd5b600060208284031215613bfb57600080fd5b8135612bcf81613bd3565b60005b83811015613c21578181015183820152602001613c09565b50506000910152565b60008151808452613c42816020860160208601613c06565b601f01601f19169290920160200192915050565b602081526000612bcf6020830184613c2a565b6001600160a01b0381168114611acc57600080fd5b60008060408385031215613c9157600080fd5b8235613c9c81613c69565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613ce257613ce2613caa565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613d1057613d10613caa565b604052919050565b60006001600160401b03821115613d3157613d31613caa565b5060051b60200190565b600082601f830112613d4c57600080fd5b81356020613d61613d5c83613d18565b613ce8565b82815260059290921b84018101918181019086841115613d8057600080fd5b8286015b84811015613db15780356001600160401b0381168114613da45760008081fd5b8352918301918301613d84565b509695505050505050565b600080600060608486031215613dd157600080fd5b83356001600160401b0380821115613de857600080fd5b613df487838801613d3b565b94506020860135915080821115613e0a57600080fd5b613e1687838801613d3b565b93506040860135915080821115613e2c57600080fd5b50613e3986828701613d3b565b9150509250925092565b60008060408385031215613e5657600080fd5b50508035926020909101359150565b600080600060608486031215613e7a57600080fd5b8335613e8581613c69565b92506020840135613e9581613c69565b929592945050506040919091013590565b60006020808385031215613eb957600080fd5b82356001600160401b03811115613ecf57600080fd5b8301601f81018513613ee057600080fd5b8035613eee613d5c82613d18565b81815260069190911b82018301908381019087831115613f0d57600080fd5b928401925b82841015613f505760408489031215613f2b5760008081fd5b613f33613cc0565b843581528585013586820152825260409093019290840190613f12565b979650505050505050565b600060208284031215613f6d57600080fd5b8135612bcf81613c69565b6020808252825182820181905260009190848201906040850190845b81811015613fb057835183529284019291840191600101613f94565b50909695505050505050565b60008060208385031215613fcf57600080fd5b82356001600160401b0380821115613fe657600080fd5b818501915085601f830112613ffa57600080fd5b81358181111561400957600080fd5b86602082850101111561401b57600080fd5b60209290920196919550909350505050565b8015158114611acc57600080fd5b60006020828403121561404d57600080fd5b8135612bcf8161402d565b60608152600061406b6060830186613c2a565b60208301949094525060400152919050565b6000806040838503121561409057600080fd5b823561409b81613c69565b915060208301356140ab8161402d565b809150509250929050565b6020815260008251606060208401526140d26080840182613c2a565b905060208401516040840152604084015160608401528091505092915050565b6000806000806080858703121561410857600080fd5b843561411381613c69565b935060208581013561412481613c69565b93506040860135925060608601356001600160401b038082111561414757600080fd5b818801915088601f83011261415b57600080fd5b81358181111561416d5761416d613caa565b61417f601f8201601f19168501613ce8565b9150808252898482850101111561419557600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156141c857600080fd5b82356141d381613c69565b915060208301356140ab81613c69565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061422c57607f821691505b60208210810361424c57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260149082015273496e76616c696420696e7075742061727261797360601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526019908201527f496e76616c696420706c61796572204944206f72207479706500000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ba157610ba16142cd565b6020808252601d908201527f436f6d6d6f6e204e4654206d617820737570706c792072656163686564000000604082015260600190565b6020808252601b908201527f45706963204e4654206d617820737570706c7920726561636865640000000000604082015260600190565b6020808252601b908201527f476f6c64204e4654206d617820737570706c7920726561636865640000000000604082015260600190565b6020808252601d908201527f556e69717565204e4654206d617820737570706c792072656163686564000000604082015260600190565b6000600182016143e4576143e46142cd565b5060010190565b8082028115828204841417610ba157610ba16142cd565b60006020828403121561441457600080fd5b8151612bcf8161402d565b60006020828403121561443157600080fd5b5051919050565b601f821115610d0557600081815260208120601f850160051c8101602086101561445f5750805b601f850160051c820191505b8181101561447e5782815560010161446b565b505050505050565b6001600160401b0383111561449d5761449d613caa565b6144b1836144ab8354614218565b83614438565b6000601f8411600181146144e557600085156144cd5750838201355b600019600387901b1c1916600186901b1783556112d9565b600083815260209020601f19861690835b8281101561451657868501358255602094850194600190920191016144f6565b50868210156145335760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601260045260246000fd5b60008261456a5761456a614545565b500490565b6000835160206145828285838901613c06565b81840191506000855461459481614218565b600182811680156145ac57600181146145c1576145ed565b60ff19841687528215158302870194506145ed565b896000528560002060005b848110156145e5578154898201529083019087016145cc565b505082870194505b505064173539b7b760d91b835250506005019695505050505050565b81810381811115610ba157610ba16142cd565b6000845161462e818460208901613c06565b845190830190614642818360208901613c06565b8451910190614655818360208801613c06565b0195945050505050565b81516001600160401b0381111561467857614678613caa565b61468c816146868454614218565b84614438565b602080601f8311600181146146c157600084156146a95750858301515b600019600386901b1c1916600185901b17855561447e565b600085815260208120601f198616915b828110156146f0578886015182559484019460019091019084016146d1565b508582101561470e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03818116838216019080821115612df057612df06142cd565b60008261474d5761474d614545565b500690565b60008251614764818460208701613c06565b9190910192915050565b60008351614780818460208801613c06565b835190830190614794818360208801613c06565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bc90830184613c2a565b6000602082840312156147e257600080fd5b8151612bcf81613bd356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c5b362d74e4268c0283fc5f8a086f9f00ea84f69e5c4a9041f5aca3a96187dc364736f6c63430008120033

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80636976117d116101c4578063a9ae214c116100f6578063c87b56dd1161009a578063e985e9c51161006c578063e985e9c514610a71578063f2fde38b14610aba578063fa1d1e3d14610ada578063fa97ecda14610af057005b8063c87b56dd146109fb578063d32a98a214610a1b578063dac090ff14610a3b578063dc33e68114610a5157005b8063bc8893b4116100d3578063bc8893b414610973578063c2458d6b1461098d578063c41a2747146109c5578063c454a38e146109e557005b8063a9ae214c14610905578063b88d4fde1461091b578063b985add81461093b57005b80638da5cb5b1161016857806399e3e34e1161013a57806399e3e34e1461088d578063a22cb465146108a3578063a2309ff8146108c3578063a574cea4146108d857005b80638da5cb5b1461080b5780638dbb7c06146108295780638e1f0dcb1461084957806395d89b411461087857005b806370a08231116101a157806370a082311461078b578063788a76e2146107ab5780638836fe01146107cb5780638aca408c146107eb57005b80636976117d146107355780636bff2f471461074b5780636e2aa8f41461076b57005b80633a672bfa1161029d578063453afb0f11610241578063553448cf11610213578063553448cf146106bf57806355f804b3146106df57806362c75387146106ff5780636352211e1461071557005b8063453afb0f1461064957806349df728c1461065f5780634f558e791461067f578063542b1b471461069f57005b806342842e0e1161027a57806342842e0e146105c657806342966c68146105e6578063438b63001461060657806344e6fdd61461063357005b80633a672bfa1461057b5780633ccfd60b1461059b5780633fc56708146105b057005b806312b6f7261161030f57806332ce703c116102e157806332ce703c146105195780633355ef5e1461052f5780633799479a1461054f57806338cc28ca1461056557005b806312b6f7261461048457806318160ddd146104bc57806323b872dd146104d9578063327b352b146104f957005b8063081812fc11610348578063081812fc146103eb578063095ea7b3146104235780630b8ca50f14610443578063124d05501461045657005b8063011ff41f1461037457806301ffc9a71461039457806306fdde03146103c957005b3661037257005b005b34801561038057600080fd5b5061037261038f366004613bba565b610b1d565b3480156103a057600080fd5b506103b46103af366004613be9565b610b55565b60405190151581526020015b60405180910390f35b3480156103d557600080fd5b506103de610ba7565b6040516103c09190613c56565b3480156103f757600080fd5b5061040b610406366004613bba565b610c39565b6040516001600160a01b0390911681526020016103c0565b34801561042f57600080fd5b5061037261043e366004613c7e565b610c7d565b610372610451366004613dbc565b610d0a565b34801561046257600080fd5b50610476610471366004613dbc565b6112e0565b6040519081526020016103c0565b34801561049057600080fd5b5061047661049f366004613e43565b6000918252601b6020908152604080842092845291905290205490565b3480156104c857600080fd5b506002546001540360001901610476565b3480156104e557600080fd5b506103726104f4366004613e65565b6117e9565b34801561050557600080fd5b50610372610514366004613ea6565b611945565b34801561052557600080fd5b5061047660135481565b34801561053b57600080fd5b5061037261054a366004613bba565b6119e4565b34801561055b57600080fd5b50610476600d5481565b34801561057157600080fd5b5061047660155481565b34801561058757600080fd5b50610372610596366004613bba565b611a13565b3480156105a757600080fd5b50610372611a42565b3480156105bc57600080fd5b50610476600f5481565b3480156105d257600080fd5b506103726105e1366004613e65565b611acf565b3480156105f257600080fd5b50610372610601366004613bba565b611c20565b34801561061257600080fd5b50610626610621366004613f5b565b611ce0565b6040516103c09190613f78565b34801561063f57600080fd5b5061047660115481565b34801561065557600080fd5b50610476600a5481565b34801561066b57600080fd5b5061037261067a366004613f5b565b611dc4565b34801561068b57600080fd5b506103b461069a366004613bba565b611ecd565b3480156106ab57600080fd5b506103726106ba366004613dbc565b611ed8565b3480156106cb57600080fd5b506103726106da366004613bba565b6123ec565b3480156106eb57600080fd5b506103726106fa366004613fbc565b61241b565b34801561070b57600080fd5b5061047660125481565b34801561072157600080fd5b5061040b610730366004613bba565b612452565b34801561074157600080fd5b50610476600c5481565b34801561075757600080fd5b50610372610766366004613bba565b612464565b34801561077757600080fd5b50610372610786366004613bba565b612493565b34801561079757600080fd5b506104766107a6366004613f5b565b6124c2565b3480156107b757600080fd5b506103726107c6366004613bba565b612510565b3480156107d757600080fd5b506104766107e6366004613e43565b61253f565b3480156107f757600080fd5b5061037261080636600461403b565b6126c6565b34801561081757600080fd5b506000546001600160a01b031661040b565b34801561083557600080fd5b50610372610844366004613bba565b612703565b34801561085557600080fd5b50610869610864366004613bba565b612732565b6040516103c093929190614058565b34801561088457600080fd5b506103de6127dc565b34801561089957600080fd5b5061047660175481565b3480156108af57600080fd5b506103726108be36600461407d565b6127eb565b3480156108cf57600080fd5b50610476612880565b3480156108e457600080fd5b506108f86108f3366004613bba565b612894565b6040516103c091906140b6565b34801561091157600080fd5b5061047660105481565b34801561092757600080fd5b506103726109363660046140f2565b61297d565b34801561094757600080fd5b50600b5461095b906001600160401b031681565b6040516001600160401b0390911681526020016103c0565b34801561097f57600080fd5b506019546103b49060ff1681565b34801561099957600080fd5b506104766109a8366004613e43565b601b60209081526000928352604080842090915290825290205481565b3480156109d157600080fd5b506103726109e0366004613bba565b612ad5565b3480156109f157600080fd5b5061047660145481565b348015610a0757600080fd5b506103de610a16366004613bba565b612b04565b348015610a2757600080fd5b50610476610a36366004613e43565b612bd6565b348015610a4757600080fd5b50610476600e5481565b348015610a5d57600080fd5b50610476610a6c366004613f5b565b612c45565b348015610a7d57600080fd5b506103b4610a8c3660046141b5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610ac657600080fd5b50610372610ad5366004613f5b565b612c73565b348015610ae657600080fd5b5061047660165481565b348015610afc57600080fd5b50610476610b0b366004613bba565b60186020526000908152604090205481565b6000546001600160a01b03163314610b505760405162461bcd60e51b8152600401610b47906141e3565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b1480610b8657506001600160e01b03198216635b5e139f60e01b145b80610ba157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610bb690614218565b80601f0160208091040260200160405190810160405280929190818152602001828054610be290614218565b8015610c2f5780601f10610c0457610100808354040283529160200191610c2f565b820191906000526020600020905b815481529060010190602001808311610c1257829003601f168201915b5050505050905090565b6000610c4482612d0b565b610c61576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c8882612452565b9050806001600160a01b0316836001600160a01b031603610cbc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cdc5750610cda8133610a8c565b155b15610cfa576040516367d9dca160e11b815260040160405180910390fd5b610d05838383612d44565b505050565b610d1381612da0565b60008111610d5a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b47565b60195460ff16610dac5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b47565b82518451148015610dbe575081518351145b610dda5760405162461bcd60e51b8152600401610b4790614252565b6000610de78585856112e0565b9050803414610e2d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b47565b60005b85518110156112b0576001868281518110610e4d57610e4d614280565b60200260200101516001600160401b031610158015610e8f57506001858281518110610e7b57610e7b614280565b60200260200101516001600160401b031610155b8015610ebe57506004858281518110610eaa57610eaa614280565b60200260200101516001600160401b031611155b610eda5760405162461bcd60e51b8152600401610b4790614296565b848181518110610eec57610eec614280565b60200260200101516001600160401b0316600103610fc057600c54848281518110610f1957610f19614280565b60200260200101516001600160401b0316601b6000898581518110610f4057610f40614280565b60200260200101516001600160401b031681526020019081526020016000206000888581518110610f7357610f73614280565b60200260200101516001600160401b0316815260200190815260200160002054610f9d91906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b47906142f6565b61129e565b848181518110610fd257610fd2614280565b60200260200101516001600160401b03166002036110a157600d54848281518110610fff57610fff614280565b60200260200101516001600160401b0316601b600089858151811061102657611026614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061105957611059614280565b60200260200101516001600160401b031681526020019081526020016000205461108391906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b479061432d565b8481815181106110b3576110b3614280565b60200260200101516001600160401b031660030361118257600e548482815181106110e0576110e0614280565b60200260200101516001600160401b0316601b600089858151811061110757611107614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061113a5761113a614280565b60200260200101516001600160401b031681526020019081526020016000205461116491906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b4790614364565b84818151811061119457611194614280565b60200260200101516001600160401b031660040361126357600f548482815181106111c1576111c1614280565b60200260200101516001600160401b0316601b60008985815181106111e8576111e8614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061121b5761121b614280565b60200260200101516001600160401b031681526020019081526020016000205461124591906142e3565b1115610fbb5760405162461bcd60e51b8152600401610b479061439b565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964204e4654207479706560801b6044820152606401610b47565b806112a8816143d2565b915050610e30565b506112bc858585612df7565b6112c7858585612fef565b6112d9336112d485612da0565b61310b565b5050505050565b6000825184511480156112f4575081518351145b6113105760405162461bcd60e51b8152600401610b4790614252565b6000805b85518110156117e057600186828151811061133157611331614280565b60200260200101516001600160401b0316101580156113735750600185828151811061135f5761135f614280565b60200260200101516001600160401b031610155b80156113a25750600485828151811061138e5761138e614280565b60200260200101516001600160401b031611155b6113be5760405162461bcd60e51b8152600401610b4790614296565b8481815181106113d0576113d0614280565b60200260200101516001600160401b03166001036114a457600c548482815181106113fd576113fd614280565b60200260200101516001600160401b0316601b600089858151811061142457611424614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061145757611457614280565b60200260200101516001600160401b031681526020019081526020016000205461148191906142e3565b111561149f5760405162461bcd60e51b8152600401610b47906142f6565b611747565b8481815181106114b6576114b6614280565b60200260200101516001600160401b031660020361158557600d548482815181106114e3576114e3614280565b60200260200101516001600160401b0316601b600089858151811061150a5761150a614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061153d5761153d614280565b60200260200101516001600160401b031681526020019081526020016000205461156791906142e3565b111561149f5760405162461bcd60e51b8152600401610b479061432d565b84818151811061159757611597614280565b60200260200101516001600160401b031660030361166657600e548482815181106115c4576115c4614280565b60200260200101516001600160401b0316601b60008985815181106115eb576115eb614280565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061161e5761161e614280565b60200260200101516001600160401b031681526020019081526020016000205461164891906142e3565b111561149f5760405162461bcd60e51b8152600401610b4790614364565b84818151811061167857611678614280565b60200260200101516001600160401b031660040361126357600f548482815181106116a5576116a5614280565b60200260200101516001600160401b0316601b60008985815181106116cc576116cc614280565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106116ff576116ff614280565b60200260200101516001600160401b031681526020019081526020016000205461172991906142e3565b111561149f5760405162461bcd60e51b8152600401610b479061439b565b61179586828151811061175c5761175c614280565b60200260200101516001600160401b031686838151811061177f5761177f614280565b60200260200101516001600160401b031661253f565b8482815181106117a7576117a7614280565b60200260200101516001600160401b03166117c291906143eb565b6117cc90836142e3565b9150806117d8816143d2565b915050611314565b50949350505050565b826daaeb6d7670e522a718067333cd4e3b1561193457336001600160a01b0382160361181f5761181a848484613125565b61193f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561186e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118929190614402565b80156119155750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119159190614402565b61193457604051633b79c77360e21b8152336004820152602401610b47565b61193f848484613125565b50505050565b6000546001600160a01b0316331461196f5760405162461bcd60e51b8152600401610b47906141e3565b60005b81518110156119e05781818151811061198d5761198d614280565b602002602001015160200151601860008484815181106119af576119af614280565b60200260200101516000015181526020019081526020016000208190555080806119d8906143d2565b915050611972565b5050565b6000546001600160a01b03163314611a0e5760405162461bcd60e51b8152600401610b47906141e3565b601755565b6000546001600160a01b03163314611a3d5760405162461bcd60e51b8152600401610b47906141e3565b601255565b6000546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610b47906141e3565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611ab9576040519150601f19603f3d011682016040523d82523d6000602084013e611abe565b606091505b5050905080611acc57600080fd5b50565b826daaeb6d7670e522a718067333cd4e3b15611c1557336001600160a01b03821603611b005761181a848484613130565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b739190614402565b8015611bf65750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf69190614402565b611c1557604051633b79c77360e21b8152336004820152602401610b47565b61193f848484613130565b611c2981611ecd565b611c6c5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b47565b611c7581612452565b6001600160a01b0316336001600160a01b031614611cd55760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b47565b611acc81600061314b565b60606000611ced836124c2565b90506000816001600160401b03811115611d0957611d09613caa565b604051908082528060200260200182016040528015611d32578160200160208202803683370190505b509050600160005b83811015611dba57611d4b82611ecd565b1515600103611da8576000611d5f83612452565b9050866001600160a01b0316816001600160a01b031603611da65782848381518110611d8d57611d8d614280565b602090810291909101015281611da2816143d2565b9250505b505b81611db2816143d2565b925050611d3a565b5090949350505050565b6000546001600160a01b03163314611dee5760405162461bcd60e51b8152600401610b47906141e3565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e59919061441f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611ea9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d059190614402565b6000610ba182612d0b565b6000546001600160a01b03163314611f025760405162461bcd60e51b8152600401610b47906141e3565b611f0b81612da0565b60008111611f525760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b47565b82518451148015611f64575081518351145b611f805760405162461bcd60e51b8152600401610b4790614252565b60005b84518110156123c8576001858281518110611fa057611fa0614280565b60200260200101516001600160401b031610158015611fe257506001848281518110611fce57611fce614280565b60200260200101516001600160401b031610155b801561201157506004848281518110611ffd57611ffd614280565b60200260200101516001600160401b031611155b61202d5760405162461bcd60e51b8152600401610b4790614296565b83818151811061203f5761203f614280565b60200260200101516001600160401b031660010361211357600c5483828151811061206c5761206c614280565b60200260200101516001600160401b0316601b600088858151811061209357612093614280565b60200260200101516001600160401b0316815260200190815260200160002060008785815181106120c6576120c6614280565b60200260200101516001600160401b03168152602001908152602001600020546120f091906142e3565b111561210e5760405162461bcd60e51b8152600401610b47906142f6565b6123b6565b83818151811061212557612125614280565b60200260200101516001600160401b03166002036121f457600d5483828151811061215257612152614280565b60200260200101516001600160401b0316601b600088858151811061217957612179614280565b60200260200101516001600160401b0316815260200190815260200160002060008785815181106121ac576121ac614280565b60200260200101516001600160401b03168152602001908152602001600020546121d691906142e3565b111561210e5760405162461bcd60e51b8152600401610b479061432d565b83818151811061220657612206614280565b60200260200101516001600160401b03166003036122d557600e5483828151811061223357612233614280565b60200260200101516001600160401b0316601b600088858151811061225a5761225a614280565b60200260200101516001600160401b03168152602001908152602001600020600087858151811061228d5761228d614280565b60200260200101516001600160401b03168152602001908152602001600020546122b791906142e3565b111561210e5760405162461bcd60e51b8152600401610b4790614364565b8381815181106122e7576122e7614280565b60200260200101516001600160401b031660040361126357600f5483828151811061231457612314614280565b60200260200101516001600160401b0316601b600088858151811061233b5761233b614280565b60200260200101516001600160401b03168152602001908152602001600020600087858151811061236e5761236e614280565b60200260200101516001600160401b031681526020019081526020016000205461239891906142e3565b111561210e5760405162461bcd60e51b8152600401610b479061439b565b806123c0816143d2565b915050611f83565b506123d4848484612df7565b6123df848484612fef565b61193f336112d484612da0565b6000546001600160a01b031633146124165760405162461bcd60e51b8152600401610b47906141e3565b601655565b6000546001600160a01b031633146124455760405162461bcd60e51b8152600401610b47906141e3565b6009610d05828483614486565b600061245d826132ff565b5192915050565b6000546001600160a01b0316331461248e5760405162461bcd60e51b8152600401610b47906141e3565b601355565b6000546001600160a01b031633146124bd5760405162461bcd60e51b8152600401610b47906141e3565b601155565b60006001600160a01b0382166124eb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b0316331461253a5760405162461bcd60e51b8152600401610b47906141e3565b601455565b6000806000836001036125565760105491506125c8565b836002036125685760115491506125c8565b8360030361257a5760125491506125c8565b8360040361258c5760135491506125c8565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c69642063617264207479706560781b6044820152606401610b47565b6000858152601860205260409020546001036125e75750601454612682565b6000858152601860205260409020546002036126065750601554612682565b6000858152601860205260409020546003036126255750601654612682565b6000858152601860205260409020546004036126445750601754612682565b60405162461bcd60e51b8152602060048201526013602482015272496e76616c6964207374617220726174696e6760681b6044820152606401610b47565b60008183600a5461269391906143eb565b61269d91906143eb565b9050670de0b6b3a76400006126b2818361455b565b6126bc919061455b565b9695505050505050565b6000546001600160a01b031633146126f05760405162461bcd60e51b8152600401610b47906141e3565b6019805460ff1916911515919091179055565b6000546001600160a01b0316331461272d5760405162461bcd60e51b8152600401610b47906141e3565b600a55565b601a6020526000908152604090208054819061274d90614218565b80601f016020809104026020016040519081016040528092919081815260200182805461277990614218565b80156127c65780601f1061279b576101008083540402835291602001916127c6565b820191906000526020600020905b8154815290600101906020018083116127a957829003601f168201915b5050505050908060010154908060020154905083565b606060048054610bb690614218565b336001600160a01b038316036128145760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061288f6001546000190190565b905090565b6128b860405180606001604052806060815260200160008152602001600081525090565b6000828152601a6020526040908190208151606081019092528054829082906128e090614218565b80601f016020809104026020016040519081016040528092919081815260200182805461290c90614218565b80156129595780601f1061292e57610100808354040283529160200191612959565b820191906000526020600020905b81548152906001019060200180831161293c57829003601f168201915b50505050508152602001600182015481526020016002820154815250509050919050565b836daaeb6d7670e522a718067333cd4e3b15612ac957336001600160a01b038216036129b4576129af85858585613426565b6112d9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612a03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a279190614402565b8015612aaa5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aaa9190614402565b612ac957604051633b79c77360e21b8152336004820152602401610b47565b6112d985858585613426565b6000546001600160a01b03163314612aff5760405162461bcd60e51b8152600401610b47906141e3565b601555565b6060612b0f82612d0b565b612b735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b47565b6000612b7d613471565b90506000815111612b9d5760405180602001604052806000815250612bcf565b6000838152601a60209081526040918290209151612bbf92849290910161456f565b6040516020818303038152906040525b9392505050565b60008082600103612bea5750600c54612c19565b82600203612bfb5750600d54612c19565b82600303612c0c5750600e54612c19565b8260040361258c5750600f545b6000848152601b60209081526040808320868452909152902054612c3d9082614609565b949350505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610ba1565b6000546001600160a01b03163314612c9d5760405162461bcd60e51b8152600401610b47906141e3565b6001600160a01b038116612d025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b47565b611acc81613480565b600081600111158015612d1f575060015482105b8015610ba1575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600080805b8351811015612df057838181518110612dc057612dc0614280565b60200260200101516001600160401b031682612ddc91906142e3565b915080612de8816143d2565b915050612da5565b5092915050565b60015460005b84518110156112d9576000612e6e868381518110612e1d57612e1d614280565b60200260200101516001600160401b0316868481518110612e4057612e40614280565b60200260200101516001600160401b03166000918252601b6020908152604080842092845291905290205490565b905060005b848381518110612e8557612e85614280565b60200260200101516001600160401b0316811015612fda57612ea88260016142e3565b91506000612edf612eda898681518110612ec457612ec4614280565b60200260200101516001600160401b03166134d0565b6135d0565b612ef4888681518110612ec457612ec4614280565b612efd856134d0565b604051602001612f0f9392919061461c565b60405160208183030381529060405290506040518060600160405280828152602001898681518110612f4357612f43614280565b60200260200101516001600160401b03168152602001888681518110612f6b57612f6b614280565b6020908102919091018101516001600160401b03169091526000878152601a9091526040902081518190612f9f908261465f565b506020820151816001015560408201518160020155905050846001612fc491906142e3565b9450508080612fd2906143d2565b915050612e73565b50508080612fe7906143d2565b915050612dfd565b60005b835181101561193f5781818151811061300d5761300d614280565b60200260200101516001600160401b0316601b600086848151811061303457613034614280565b60200260200101516001600160401b03168152602001908152602001600020600085848151811061306757613067614280565b60200260200101516001600160401b03168152602001908152602001600020600082825461309591906142e3565b925050819055508181815181106130ae576130ae614280565b6020908102919091010151600b80546000906130d49084906001600160401b031661471e565b92506101000a8154816001600160401b0302191690836001600160401b031602179055508080613103906143d2565b915050612ff2565b6119e0828260405180602001604052806000815250613675565b610d05838383613682565b610d058383836040518060200160405280600081525061297d565b6000613156836132ff565b805190915082156131bc576000336001600160a01b038316148061317f575061317f8233610a8c565b8061319a57503361318f86610c39565b6001600160a01b0316145b9050806131ba57604051632ce44b5f60e11b815260040160405180910390fd5b505b6131c860008583612d44565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166132c65760015482146132c657805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206147ee833981519152908390a450506002805460010190555050565b6040805160608101825260008082526020820181905291810191909152818060011115801561332f575060015481105b1561340d57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061340b5780516001600160a01b0316156133a2579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613406579392505050565b6133a2565b505b604051636f96cda160e11b815260040160405180910390fd5b613431848484613682565b6001600160a01b0383163b1515801561345357506134518484848461385b565b155b1561193f576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610bb690614218565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816000036134f75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613521578061350b816143d2565b915061351a9050600a8361455b565b91506134fb565b6000816001600160401b0381111561353b5761353b613caa565b6040519080825280601f01601f191660200182016040528015613565576020820181803683370190505b5090505b8415612c3d5761357a600183614609565b9150613587600a8661473e565b6135929060306142e3565b60f81b8183815181106135a7576135a7614280565b60200101906001600160f81b031916908160001a9053506135c9600a8661455b565b9450613569565b60606000604051806040016040528060048152602001630303030360e41b81525090506000836040516020016136069190614752565b60408051601f1981840301815282820190915260048252630303030360e41b6020830152915061364b90600061363a845190565b85516136469190614609565b613946565b8160405160200161365d92919061476e565b60405160208183030381529060405292505050919050565b610d058383836001613a12565b600061368d826132ff565b9050836001600160a01b031681600001516001600160a01b0316146136c45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806136e257506136e28533610a8c565b806136fd5750336136f284610c39565b6001600160a01b0316145b90508061371d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661374457604051633a954ecd60e21b815260040160405180910390fd5b61375060008487612d44565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661382457600154821461382457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206147ee83398151915260405160405180910390a46112d9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061389090339089908890889060040161479d565b6020604051808303816000875af19250505080156138cb575060408051601f3d908101601f191682019092526138c8918101906147d0565b60015b613929573d8080156138f9576040519150601f19603f3d011682016040523d82523d6000602084013e6138fe565b606091505b508051600003613921576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608360006139558585614609565b6001600160401b0381111561396c5761396c613caa565b6040519080825280601f01601f191660200182016040528015613996576020820181803683370190505b509050845b84811015613a08578281815181106139b5576139b5614280565b01602001516001600160f81b031916826139cf8884614609565b815181106139df576139df614280565b60200101906001600160f81b031916908160001a90535080613a00816143d2565b91505061399b565b5095945050505050565b6001546001600160a01b038516613a3b57604051622e076360e81b815260040160405180910390fd5b83600003613a5c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015613b0857506001600160a01b0387163b15155b15613b7e575b60405182906001600160a01b038916906000906000805160206147ee833981519152908290a4613b47600088848060010195508861385b565b613b64576040516368d2bf6b60e11b815260040160405180910390fd5b808203613b0e578260015414613b7957600080fd5b613bb1565b5b6040516001830192906001600160a01b038916906000906000805160206147ee833981519152908290a4808203613b7f575b506001556112d9565b600060208284031215613bcc57600080fd5b5035919050565b6001600160e01b031981168114611acc57600080fd5b600060208284031215613bfb57600080fd5b8135612bcf81613bd3565b60005b83811015613c21578181015183820152602001613c09565b50506000910152565b60008151808452613c42816020860160208601613c06565b601f01601f19169290920160200192915050565b602081526000612bcf6020830184613c2a565b6001600160a01b0381168114611acc57600080fd5b60008060408385031215613c9157600080fd5b8235613c9c81613c69565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613ce257613ce2613caa565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613d1057613d10613caa565b604052919050565b60006001600160401b03821115613d3157613d31613caa565b5060051b60200190565b600082601f830112613d4c57600080fd5b81356020613d61613d5c83613d18565b613ce8565b82815260059290921b84018101918181019086841115613d8057600080fd5b8286015b84811015613db15780356001600160401b0381168114613da45760008081fd5b8352918301918301613d84565b509695505050505050565b600080600060608486031215613dd157600080fd5b83356001600160401b0380821115613de857600080fd5b613df487838801613d3b565b94506020860135915080821115613e0a57600080fd5b613e1687838801613d3b565b93506040860135915080821115613e2c57600080fd5b50613e3986828701613d3b565b9150509250925092565b60008060408385031215613e5657600080fd5b50508035926020909101359150565b600080600060608486031215613e7a57600080fd5b8335613e8581613c69565b92506020840135613e9581613c69565b929592945050506040919091013590565b60006020808385031215613eb957600080fd5b82356001600160401b03811115613ecf57600080fd5b8301601f81018513613ee057600080fd5b8035613eee613d5c82613d18565b81815260069190911b82018301908381019087831115613f0d57600080fd5b928401925b82841015613f505760408489031215613f2b5760008081fd5b613f33613cc0565b843581528585013586820152825260409093019290840190613f12565b979650505050505050565b600060208284031215613f6d57600080fd5b8135612bcf81613c69565b6020808252825182820181905260009190848201906040850190845b81811015613fb057835183529284019291840191600101613f94565b50909695505050505050565b60008060208385031215613fcf57600080fd5b82356001600160401b0380821115613fe657600080fd5b818501915085601f830112613ffa57600080fd5b81358181111561400957600080fd5b86602082850101111561401b57600080fd5b60209290920196919550909350505050565b8015158114611acc57600080fd5b60006020828403121561404d57600080fd5b8135612bcf8161402d565b60608152600061406b6060830186613c2a565b60208301949094525060400152919050565b6000806040838503121561409057600080fd5b823561409b81613c69565b915060208301356140ab8161402d565b809150509250929050565b6020815260008251606060208401526140d26080840182613c2a565b905060208401516040840152604084015160608401528091505092915050565b6000806000806080858703121561410857600080fd5b843561411381613c69565b935060208581013561412481613c69565b93506040860135925060608601356001600160401b038082111561414757600080fd5b818801915088601f83011261415b57600080fd5b81358181111561416d5761416d613caa565b61417f601f8201601f19168501613ce8565b9150808252898482850101111561419557600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156141c857600080fd5b82356141d381613c69565b915060208301356140ab81613c69565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061422c57607f821691505b60208210810361424c57634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260149082015273496e76616c696420696e7075742061727261797360601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526019908201527f496e76616c696420706c61796572204944206f72207479706500000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ba157610ba16142cd565b6020808252601d908201527f436f6d6d6f6e204e4654206d617820737570706c792072656163686564000000604082015260600190565b6020808252601b908201527f45706963204e4654206d617820737570706c7920726561636865640000000000604082015260600190565b6020808252601b908201527f476f6c64204e4654206d617820737570706c7920726561636865640000000000604082015260600190565b6020808252601d908201527f556e69717565204e4654206d617820737570706c792072656163686564000000604082015260600190565b6000600182016143e4576143e46142cd565b5060010190565b8082028115828204841417610ba157610ba16142cd565b60006020828403121561441457600080fd5b8151612bcf8161402d565b60006020828403121561443157600080fd5b5051919050565b601f821115610d0557600081815260208120601f850160051c8101602086101561445f5750805b601f850160051c820191505b8181101561447e5782815560010161446b565b505050505050565b6001600160401b0383111561449d5761449d613caa565b6144b1836144ab8354614218565b83614438565b6000601f8411600181146144e557600085156144cd5750838201355b600019600387901b1c1916600186901b1783556112d9565b600083815260209020601f19861690835b8281101561451657868501358255602094850194600190920191016144f6565b50868210156145335760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601260045260246000fd5b60008261456a5761456a614545565b500490565b6000835160206145828285838901613c06565b81840191506000855461459481614218565b600182811680156145ac57600181146145c1576145ed565b60ff19841687528215158302870194506145ed565b896000528560002060005b848110156145e5578154898201529083019087016145cc565b505082870194505b505064173539b7b760d91b835250506005019695505050505050565b81810381811115610ba157610ba16142cd565b6000845161462e818460208901613c06565b845190830190614642818360208901613c06565b8451910190614655818360208801613c06565b0195945050505050565b81516001600160401b0381111561467857614678613caa565b61468c816146868454614218565b84614438565b602080601f8311600181146146c157600084156146a95750858301515b600019600386901b1c1916600185901b17855561447e565b600085815260208120601f198616915b828110156146f0578886015182559484019460019091019084016146d1565b508582101561470e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03818116838216019080821115612df057612df06142cd565b60008261474d5761474d614545565b500690565b60008251614764818460208701613c06565b9190910192915050565b60008351614780818460208801613c06565b835190830190614794818360208801613c06565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bc90830184613c2a565b6000602082840312156147e257600080fd5b8151612bcf81613bd356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c5b362d74e4268c0283fc5f8a086f9f00ea84f69e5c4a9041f5aca3a96187dc364736f6c63430008120033

Deployed Bytecode Sourcemap

54286:17661:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70410:124;;;;;;;;;;-1:-1:-1;70410:124:0;;;;;:::i;:::-;;:::i;30592:321::-;;;;;;;;;;-1:-1:-1;30592:321:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;30592:321:0;;;;;;;;33809:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35413:220::-;;;;;;;;;;-1:-1:-1;35413:220:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;35413:220:0;1533:203:1;34968:373:0;;;;;;;;;;-1:-1:-1;34968:373:0;;;;;:::i;:::-;;:::i;62257:2401::-;;;;;;:::i;:::-;;:::i;59155:2038::-;;;;;;;;;;-1:-1:-1;59155:2038:0;;;;;:::i;:::-;;:::i;:::-;;;4872:25:1;;;4860:2;4845:18;59155:2038:0;4726:177:1;61219:175:0;;;;;;;;;;-1:-1:-1;61219:175:0;;;;;:::i;:::-;61324:7;61351:22;;;:11;:22;;;;;;;;:35;;;;;;;;;;61219:175;29821:307;;;;;;;;;;-1:-1:-1;30079:12:0;;29672:1;30063:13;:28;-1:-1:-1;;30063:46:0;29821:307;;67985:197;;;;;;;;;;-1:-1:-1;67985:197:0;;;;;:::i;:::-;;:::i;57854:192::-;;;;;;;;;;-1:-1:-1;57854:192:0;;;;;:::i;:::-;;:::i;54922:46::-;;;;;;;;;;;;;;;;71289:100;;;;;;;;;;-1:-1:-1;71289:100:0;;;;;:::i;:::-;;:::i;54584:34::-;;;;;;;;;;;;;;;;55082:44;;;;;;;;;;;;;;;;70666:116;;;;;;;;;;-1:-1:-1;70666:116:0;;;;;:::i;:::-;;:::i;71527:147::-;;;;;;;;;;;;;:::i;54665:34::-;;;;;;;;;;;;;;;;68190:205;;;;;;;;;;-1:-1:-1;68190:205:0;;;;;:::i;:::-;;:::i;69768:221::-;;;;;;;;;;-1:-1:-1;69768:221:0;;;;;:::i;:::-;;:::i;67221:756::-;;;;;;;;;;-1:-1:-1;67221:756:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54821:43::-;;;;;;;;;;;;;;;;54421:42;;;;;;;;;;;;;;;;71682:168;;;;;;;;;;-1:-1:-1;71682:168:0;;;;;:::i;:::-;;:::i;69656:104::-;;;;;;;;;;-1:-1:-1;69656:104:0;;;;;:::i;:::-;;:::i;64666:2122::-;;;;;;;;;;-1:-1:-1;64666:2122:0;;;;;:::i;:::-;;:::i;71179:102::-;;;;;;;;;;-1:-1:-1;71179:102:0;;;;;:::i;:::-;;:::i;70158:99::-;;;;;;;;;;-1:-1:-1;70158:99:0;;;;;:::i;:::-;;:::i;54871:44::-;;;;;;;;;;;;;;;;33611:125;;;;;;;;;;-1:-1:-1;33611:125:0;;;;;:::i;:::-;;:::i;54541:36::-;;;;;;;;;;;;;;;;70790:124;;;;;;;;;;-1:-1:-1;70790:124:0;;;;;:::i;:::-;;:::i;70542:116::-;;;;;;;;;;-1:-1:-1;70542:116:0;;;;;:::i;:::-;;:::i;30983:208::-;;;;;;;;;;-1:-1:-1;30983:208:0;;;;;:::i;:::-;;:::i;70967:98::-;;;;;;;;;;-1:-1:-1;70967:98:0;;;;;:::i;:::-;;:::i;58082:1065::-;;;;;;;;;;-1:-1:-1;58082:1065:0;;;;;:::i;:::-;;:::i;71420:99::-;;;;;;;;;;-1:-1:-1;71420:99:0;;;;;:::i;:::-;;:::i;50315:87::-;;;;;;;;;;-1:-1:-1;50361:7:0;50388:6;-1:-1:-1;;;;;50388:6:0;50315:87;;70265:120;;;;;;;;;;-1:-1:-1;70265:120:0;;;;;:::i;:::-;;:::i;55583:43::-;;;;;;;;;;-1:-1:-1;55583:43:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;33984:104::-;;;;;;;;;;;;;:::i;55186:45::-;;;;;;;;;;;;;;;;35711:314;;;;;;;;;;-1:-1:-1;35711:314:0;;;;;:::i;:::-;;:::i;69555:93::-;;;;;;;;;;;;;:::i;57418:139::-;;;;;;;;;;-1:-1:-1;57418:139:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54769:45::-;;;;;;;;;;;;;;;;68403:239;;;;;;;;;;-1:-1:-1;68403:239:0;;;;;:::i;:::-;;:::i;54472:35::-;;;;;;;;;;-1:-1:-1;54472:35:0;;;;-1:-1:-1;;;;;54472:35:0;;;;;;-1:-1:-1;;;;;11470:31:1;;;11452:50;;11440:2;11425:18;54472:35:0;11308:200:1;55399:35:0;;;;;;;;;;-1:-1:-1;55399:35:0;;;;;;;;57573:66;;;;;;;;;;-1:-1:-1;57573:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;71073:98;;;;;;;;;;-1:-1:-1;71073:98:0;;;;;:::i;:::-;;:::i;55033:42::-;;;;;;;;;;;;;;;;68697:610;;;;;;;;;;-1:-1:-1;68697:610:0;;;;;:::i;:::-;;:::i;61420:614::-;;;;;;;;;;-1:-1:-1;61420:614:0;;;;;:::i;:::-;;:::i;54625:33::-;;;;;;;;;;;;;;;;69376:115;;;;;;;;;;-1:-1:-1;69376:115:0;;;;;:::i;:::-;;:::i;36102:189::-;;;;;;;;;;-1:-1:-1;36102:189:0;;;;;:::i;:::-;-1:-1:-1;;;;;36248:25:0;;;36224:4;36248:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36102:189;50770:238;;;;;;;;;;-1:-1:-1;50770:238:0;;;;;:::i;:::-;;:::i;55133:46::-;;;;;;;;;;;;;;;;55342:48;;;;;;;;;;-1:-1:-1;55342:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;70410:124;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;;;;;;;;;70492:15:::1;:34:::0;70410:124::o;30592:321::-;30710:4;-1:-1:-1;;;;;;30747:40:0;;-1:-1:-1;;;30747:40:0;;:105;;-1:-1:-1;;;;;;;30804:48:0;;-1:-1:-1;;;30804:48:0;30747:105;:158;;;-1:-1:-1;;;;;;;;;;19502:40:0;;;30869:36;30727:178;30592:321;-1:-1:-1;;30592:321:0:o;33809:100::-;33863:13;33896:5;33889:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33809:100;:::o;35413:220::-;35497:7;35522:16;35530:7;35522;:16::i;:::-;35517:64;;35547:34;;-1:-1:-1;;;35547:34:0;;;;;;;;;;;35517:64;-1:-1:-1;35601:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35601:24:0;;35413:220::o;34968:373::-;35041:13;35057:24;35073:7;35057:15;:24::i;:::-;35041:40;;35104:5;-1:-1:-1;;;;;35098:11:0;:2;-1:-1:-1;;;;;35098:11:0;;35094:48;;35118:24;;-1:-1:-1;;;35118:24:0;;;;;;;;;;;35094:48;26090:10;-1:-1:-1;;;;;35159:21:0;;;;;;:63;;-1:-1:-1;35185:37:0;35202:5;26090:10;36102:189;:::i;35185:37::-;35184:38;35159:63;35155:138;;;35246:35;;-1:-1:-1;;;35246:35:0;;;;;;;;;;;35155:138;35305:28;35314:2;35318:7;35327:5;35305:8;:28::i;:::-;35030:311;34968:373;;:::o;62257:2401::-;62433:22;62442:12;62433:8;:22::i;:::-;57798:1;57784:11;:15;57776:48;;;;-1:-1:-1;;;57776:48:0;;12854:2:1;57776:48:0;;;12836:21:1;12893:2;12873:18;;;12866:30;-1:-1:-1;;;12912:18:1;;;12905:50;12972:18;;57776:48:0;12652:344:1;57776:48:0;62476:16:::1;::::0;::::1;;62468:54;;;::::0;-1:-1:-1;;;62468:54:0;;13203:2:1;62468:54:0::1;::::0;::::1;13185:21:1::0;13242:2;13222:18;;;13215:30;13281:27;13261:18;;;13254:55;13326:18;;62468:54:0::1;13001:349:1::0;62468:54:0::1;62576:12;:19;62555:10;:17;:40;:103;;;;;62639:12;:19;62616:12;:19;:42;62555:103;62533:173;;;;-1:-1:-1::0;;;62533:173:0::1;;;;;;;:::i;:::-;62719:18;62740:107;62772:10;62797:12;62824;62740:17;:107::i;:::-;62719:128;;62881:10;62868:9;:23;62860:54;;;::::0;-1:-1:-1;;;62860:54:0;;13906:2:1;62860:54:0::1;::::0;::::1;13888:21:1::0;13945:2;13925:18;;;13918:30;-1:-1:-1;;;13964:18:1;;;13957:48;14022:18;;62860:54:0::1;13704:342:1::0;62860:54:0::1;62932:6;62927:1536;62948:10;:17;62944:1;:21;62927:1536;;;63030:1;63013:10;63024:1;63013:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63013:18:0::1;;;:63;;;;;63075:1;63056:12;63069:1;63056:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63056:20:0::1;;;63013:63;:108;;;;;63120:1;63101:12;63114:1;63101:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63101:20:0::1;;;63013:108;62987:195;;;;-1:-1:-1::0;;;62987:195:0::1;;;;;;;:::i;:::-;63203:12;63216:1;63203:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63203:20:0::1;63222:1;63203:20:::0;63199:1253:::1;;63389:15;;63345:12;63358:1;63345:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63274:86:0::1;:11;:26;63286:10;63297:1;63286:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63274:26:0::1;;;;;;;;;;;;:43;63301:12;63314:1;63301:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63274:43:0::1;;;;;;;;;;;;;:86;;;;:::i;:::-;:130;;63244:233;;;;-1:-1:-1::0;;;63244:233:0::1;;;;;;;:::i;:::-;63199:1253;;;63503:12;63516:1;63503:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63503:20:0::1;63522:1;63503:20:::0;63499:953:::1;;63689:13;;63645:12;63658:1;63645:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63574:86:0::1;:11;:26;63586:10;63597:1;63586:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63574:26:0::1;;;;;;;;;;;;:43;63601:12;63614:1;63601:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63574:43:0::1;;;;;;;;;;;;;:86;;;;:::i;:::-;:128;;63544:229;;;;-1:-1:-1::0;;;63544:229:0::1;;;;;;;:::i;63499:953::-;63799:12;63812:1;63799:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63799:20:0::1;63818:1;63799:20:::0;63795:657:::1;;63985:13;;63941:12;63954:1;63941:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63870:86:0::1;:11;:26;63882:10;63893:1;63882:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63870:26:0::1;;;;;;;;;;;;:43;63897:12;63910:1;63897:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;63870:43:0::1;;;;;;;;;;;;;:86;;;;:::i;:::-;:128;;63840:229;;;;-1:-1:-1::0;;;63840:229:0::1;;;;;;;:::i;63795:657::-;64095:12;64108:1;64095:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;64095:20:0::1;64114:1;64095:20:::0;64091:361:::1;;64281:15;;64237:12;64250:1;64237:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;64166:86:0::1;:11;:26;64178:10;64189:1;64178:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;64166:26:0::1;;;;;;;;;;;;:43;64193:12;64206:1;64193:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;64166:43:0::1;;;;;;;;;;;;;:86;;;;:::i;:::-;:130;;64136:233;;;;-1:-1:-1::0;;;64136:233:0::1;;;;;;;:::i;64091:361::-;64410:26;::::0;-1:-1:-1;;;64410:26:0;;16429:2:1;64410:26:0::1;::::0;::::1;16411:21:1::0;16468:2;16448:18;;;16441:30;-1:-1:-1;;;16487:18:1;;;16480:46;16543:18;;64410:26:0::1;16227:340:1::0;64091:361:0::1;62967:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62927:1536;;;;64475:55;64491:10;64503:12;64517;64475:15;:55::i;:::-;64541:51;64553:10;64565:12;64579;64541:11;:51::i;:::-;64605:45;64615:10;64627:22;64636:12;64627:8;:22::i;:::-;64605:9;:45::i;:::-;62457:2201;62257:2401:::0;;;;:::o;59155:2038::-;59322:7;59384:11;:18;59364:9;:16;:38;:99;;;;;59445:11;:18;59423:11;:18;:40;59364:99;59342:169;;;;-1:-1:-1;;;59342:169:0;;;;;;;:::i;:::-;59524:18;59564:6;59559:1597;59580:9;:16;59576:1;:20;59559:1597;;;59660:1;59644:9;59654:1;59644:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59644:17:0;;;:40;;;;;59683:1;59665:11;59677:1;59665:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59665:19:0;;;59644:40;:63;;;;;59706:1;59688:11;59700:1;59688:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59688:19:0;;;59644:63;59618:150;;;;-1:-1:-1;;;59618:150:0;;;;;;;:::i;:::-;59789:11;59801:1;59789:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59789:19:0;59807:1;59789:19;59785:1237;;59971:15;;59928:11;59940:1;59928:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59859:83:0;:11;:25;59871:9;59881:1;59871:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59859:25:0;;;;;;;;;;;;:41;59885:11;59897:1;59885:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;59859:41:0;;;;;;;;;;;;;:83;;;;:::i;:::-;:127;;59829:230;;;;-1:-1:-1;;;59829:230:0;;;;;;;:::i;:::-;59785:1237;;;60085:11;60097:1;60085:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60085:19:0;60103:1;60085:19;60081:941;;60267:13;;60224:11;60236:1;60224:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60155:83:0;:11;:25;60167:9;60177:1;60167:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60155:25:0;;;;;;;;;;;;:41;60181:11;60193:1;60181:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60155:41:0;;;;;;;;;;;;;:83;;;;:::i;:::-;:125;;60125:226;;;;-1:-1:-1;;;60125:226:0;;;;;;;:::i;60081:941::-;60377:11;60389:1;60377:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60377:19:0;60395:1;60377:19;60373:649;;60559:13;;60516:11;60528:1;60516:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60447:83:0;:11;:25;60459:9;60469:1;60459:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60447:25:0;;;;;;;;;;;;:41;60473:11;60485:1;60473:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60447:41:0;;;;;;;;;;;;;:83;;;;:::i;:::-;:125;;60417:226;;;;-1:-1:-1;;;60417:226:0;;;;;;;:::i;60373:649::-;60669:11;60681:1;60669:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60669:19:0;60687:1;60669:19;60665:357;;60851:15;;60808:11;60820:1;60808:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60739:83:0;:11;:25;60751:9;60761:1;60751:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60739:25:0;;;;;;;;;;;;:41;60765:11;60777:1;60765:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;60739:41:0;;;;;;;;;;;;;:83;;;;:::i;:::-;:127;;60709:230;;;;-1:-1:-1;;;60709:230:0;;;;;;;:::i;60665:357::-;61103:41;61115:9;61125:1;61115:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61103:41:0;61129:11;61141:1;61129:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61103:41:0;:11;:41::i;:::-;61069:11;61081:1;61069:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61069:75:0;;;;;:::i;:::-;61038:106;;;;:::i;:::-;;-1:-1:-1;59598:3:0;;;;:::i;:::-;;;;59559:1597;;;-1:-1:-1;61175:10:0;59155:2038;-1:-1:-1;;;;59155:2038:0:o;67985:197::-;68120:4;3027:42;4301:43;:47;4297:789;;4588:10;-1:-1:-1;;;;;4580:18:0;;;4576:85;;68137:37:::1;68156:4;68162:2;68166:7;68137:18;:37::i;:::-;4639:7:::0;;4576:85;4699:128;;-1:-1:-1;;;4699:128:0;;4770:4;4699:128;;;17097:34:1;4798:10:0;17147:18:1;;;17140:43;3027:42:0;;4699:40;;17032:18:1;;4699:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;4852:134:0;;-1:-1:-1;;;4852:134:0;;4927:4;4852:134;;;17097:34:1;-1:-1:-1;;;;;17167:15:1;;17147:18;;;17140:43;3027:42:0;;4852:40;;17032:18:1;;4852:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4675:400;;5029:30;;-1:-1:-1;;;5029:30:0;;5048:10;5029:30;;;1679:51:1;1652:18;;5029:30:0;1533:203:1;4675:400:0;68137:37:::1;68156:4;68162:2;68166:7;68137:18;:37::i;:::-;67985:197:::0;;;;:::o;57854:192::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;57935:6:::1;57930:109;57951:5;:12;57947:1;:16;57930:109;;;58014:5;58020:1;58014:8;;;;;;;;:::i;:::-;;;;;;;:13;;;57985;:26;57999:5;58005:1;57999:8;;;;;;;;:::i;:::-;;;;;;;:11;;;57985:26;;;;;;;;;;;:42;;;;57965:3;;;;;:::i;:::-;;;;57930:109;;;;57854:192:::0;:::o;71289:100::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71359:13:::1;:22:::0;71289:100::o;70666:116::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;70744:13:::1;:30:::0;70666:116::o;71527:147::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71576:7:::1;50388:6:::0;;71589:55:::1;::::0;-1:-1:-1;;;;;50388:6:0;;;;71618:21:::1;::::0;71576:7;71589:55;71576:7;71589:55;71618:21;50388:6;71589:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71575:69;;;71663:2;71655:11;;;::::0;::::1;;71564:110;71527:147::o:0;68190:205::-;68329:4;3027:42;4301:43;:47;4297:789;;4588:10;-1:-1:-1;;;;;4580:18:0;;;4576:85;;68346:41:::1;68369:4;68375:2;68379:7;68346:22;:41::i;4576:85::-:0;4699:128;;-1:-1:-1;;;4699:128:0;;4770:4;4699:128;;;17097:34:1;4798:10:0;17147:18:1;;;17140:43;3027:42:0;;4699:40;;17032:18:1;;4699:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;4852:134:0;;-1:-1:-1;;;4852:134:0;;4927:4;4852:134;;;17097:34:1;-1:-1:-1;;;;;17167:15:1;;17147:18;;;17140:43;3027:42:0;;4852:40;;17032:18:1;;4852:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4675:400;;5029:30;;-1:-1:-1;;;5029:30:0;;5048:10;5029:30;;;1679:51:1;1652:18;;5029:30:0;1533:203:1;4675:400:0;68346:41:::1;68369:4;68375:2;68379:7;68346:22;:41::i;69768:221::-:0;69826:16;69833:8;69826:6;:16::i;:::-;69818:49;;;;-1:-1:-1;;;69818:49:0;;17856:2:1;69818:49:0;;;17838:21:1;17895:2;17875:18;;;17868:30;-1:-1:-1;;;17914:18:1;;;17907:50;17974:18;;69818:49:0;17654:344:1;69818:49:0;69900:17;69908:8;69900:7;:17::i;:::-;-1:-1:-1;;;;;69886:31:0;:10;-1:-1:-1;;;;;69886:31:0;;69878:70;;;;-1:-1:-1;;;69878:70:0;;18205:2:1;69878:70:0;;;18187:21:1;18244:2;18224:18;;;18217:30;18283:28;18263:18;;;18256:56;18329:18;;69878:70:0;18003:350:1;69878:70:0;69959:22;69965:8;69975:5;69959;:22::i;67221:756::-;67299:16;67328:23;67354:17;67364:6;67354:9;:17::i;:::-;67328:43;;67382:30;67429:15;-1:-1:-1;;;;;67415:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67415:30:0;-1:-1:-1;67382:63:0;-1:-1:-1;67481:1:0;67456:22;67533:404;67558:15;67540;:33;67533:404;;;67594:22;67601:14;67594:6;:22::i;:::-;:30;;67620:4;67594:30;67590:305;;67645:25;67673:23;67681:14;67673:7;:23::i;:::-;67645:51;;67742:6;-1:-1:-1;;;;;67721:27:0;:17;-1:-1:-1;;;;;67721:27:0;;67717:163;;67806:14;67773:13;67787:15;67773:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;67843:17;;;;:::i;:::-;;;;67717:163;67626:269;67590:305;67909:16;;;;:::i;:::-;;;;67533:404;;;-1:-1:-1;67956:13:0;;67221:756;-1:-1:-1;;;;67221:756:0:o;71682:168::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71766:30:::1;::::0;-1:-1:-1;;;71766:30:0;;71790:4:::1;71766:30;::::0;::::1;1679:51:1::0;71748:15:0::1;::::0;-1:-1:-1;;;;;71766:15:0;::::1;::::0;::::1;::::0;1652:18:1;;71766:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71807:35;::::0;-1:-1:-1;;;71807:35:0;;71822:10:::1;71807:35;::::0;::::1;18721:51:1::0;18788:18;;;18781:34;;;71748:48:0;;-1:-1:-1;;;;;;71807:14:0;::::1;::::0;::::1;::::0;18694:18:1;;71807:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;69656:104::-:0;69711:4;69735:17;69743:8;69735:7;:17::i;64666:2122::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;64838:22:::1;64847:12;64838:8;:22::i;:::-;57798:1;57784:11;:15;57776:48;;;::::0;-1:-1:-1;;;57776:48:0;;12854:2:1;57776:48:0::1;::::0;::::1;12836:21:1::0;12893:2;12873:18;;;12866:30;-1:-1:-1;;;12912:18:1;;;12905:50;12972:18;;57776:48:0::1;12652:344:1::0;57776:48:0::1;64916:12:::2;:19;64895:10;:17;:40;:103;;;;;64979:12;:19;64956:12;:19;:42;64895:103;64873:173;;;;-1:-1:-1::0;;;64873:173:0::2;;;;;;;:::i;:::-;65064:6;65059:1536;65080:10;:17;65076:1;:21;65059:1536;;;65162:1;65145:10;65156:1;65145:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65145:18:0::2;;;:63;;;;;65207:1;65188:12;65201:1;65188:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65188:20:0::2;;;65145:63;:108;;;;;65252:1;65233:12;65246:1;65233:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65233:20:0::2;;;65145:108;65119:195;;;;-1:-1:-1::0;;;65119:195:0::2;;;;;;;:::i;:::-;65335:12;65348:1;65335:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65335:20:0::2;65354:1;65335:20:::0;65331:1253:::2;;65521:15;;65477:12;65490:1;65477:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65406:86:0::2;:11;:26;65418:10;65429:1;65418:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65406:26:0::2;;;;;;;;;;;;:43;65433:12;65446:1;65433:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65406:43:0::2;;;;;;;;;;;;;:86;;;;:::i;:::-;:130;;65376:233;;;;-1:-1:-1::0;;;65376:233:0::2;;;;;;;:::i;:::-;65331:1253;;;65635:12;65648:1;65635:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65635:20:0::2;65654:1;65635:20:::0;65631:953:::2;;65821:13;;65777:12;65790:1;65777:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65706:86:0::2;:11;:26;65718:10;65729:1;65718:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65706:26:0::2;;;;;;;;;;;;:43;65733:12;65746:1;65733:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65706:43:0::2;;;;;;;;;;;;;:86;;;;:::i;:::-;:128;;65676:229;;;;-1:-1:-1::0;;;65676:229:0::2;;;;;;;:::i;65631:953::-;65931:12;65944:1;65931:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;65931:20:0::2;65950:1;65931:20:::0;65927:657:::2;;66117:13;;66073:12;66086:1;66073:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66002:86:0::2;:11;:26;66014:10;66025:1;66014:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66002:26:0::2;;;;;;;;;;;;:43;66029:12;66042:1;66029:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66002:43:0::2;;;;;;;;;;;;;:86;;;;:::i;:::-;:128;;65972:229;;;;-1:-1:-1::0;;;65972:229:0::2;;;;;;;:::i;65927:657::-;66227:12;66240:1;66227:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66227:20:0::2;66246:1;66227:20:::0;66223:361:::2;;66413:15;;66369:12;66382:1;66369:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66298:86:0::2;:11;:26;66310:10;66321:1;66310:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66298:26:0::2;;;;;;;;;;;;:43;66325:12;66338:1;66325:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;66298:43:0::2;;;;;;;;;;;;;:86;;;;:::i;:::-;:130;;66268:233;;;;-1:-1:-1::0;;;66268:233:0::2;;;;;;;:::i;66223:361::-;65099:3:::0;::::2;::::0;::::2;:::i;:::-;;;;65059:1536;;;;66607:55;66623:10;66635:12;66649;66607:15;:55::i;:::-;66673:51;66685:10;66697:12;66711;66673:11;:51::i;:::-;66735:45;66745:10;66757:22;66766:12;66757:8;:22::i;71179:102::-:0;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71250:14:::1;:23:::0;71179:102::o;70158:99::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;70230:12:::1;:19;70245:4:::0;;70230:12;:19:::1;:::i;33611:125::-:0;33675:7;33702:21;33715:7;33702:12;:21::i;:::-;:26;;33611:125;-1:-1:-1;;33611:125:0:o;70790:124::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;70872:15:::1;:34:::0;70790:124::o;70542:116::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;70620:13:::1;:30:::0;70542:116::o;30983:208::-;31047:7;-1:-1:-1;;;;;31071:19:0;;31067:60;;31099:28;;-1:-1:-1;;;31099:28:0;;;;;;;;;;;31067:60;-1:-1:-1;;;;;;31155:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31155:27:0;;30983:208::o;70967:98::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71036:12:::1;:21:::0;70967:98::o;58082:1065::-;58185:7;58205:14;58230:13;58260:9;58273:1;58260:14;58256:358;;58300:15;;58291:24;;58256:358;;;58337:9;58350:1;58337:14;58333:281;;58377:13;;58368:22;;58333:281;;;58412:9;58425:1;58412:14;58408:206;;58452:13;;58443:22;;58408:206;;;58487:9;58500:1;58487:14;58483:131;;58527:15;;58518:24;;58483:131;;;58575:27;;-1:-1:-1;;;58575:27:0;;21086:2:1;58575:27:0;;;21068:21:1;21125:2;21105:18;;;21098:30;-1:-1:-1;;;21144:18:1;;;21137:47;21201:18;;58575:27:0;20884:341:1;58483:131:0;58630:22;;;;:13;:22;;;;;;58656:1;58630:27;58626:403;;-1:-1:-1;58682:12:0;;58626:403;;;58716:22;;;;:13;:22;;;;;;58742:1;58716:27;58712:317;;-1:-1:-1;58768:12:0;;58712:317;;;58802:22;;;;:13;:22;;;;;;58828:1;58802:27;58798:231;;-1:-1:-1;58854:14:0;;58798:231;;;58890:22;;;;:13;:22;;;;;;58916:1;58890:27;58886:143;;-1:-1:-1;58942:13:0;;58886:143;;;58988:29;;-1:-1:-1;;;58988:29:0;;21432:2:1;58988:29:0;;;21414:21:1;21471:2;21451:18;;;21444:30;-1:-1:-1;;;21490:18:1;;;21483:49;21549:18;;58988:29:0;21230:343:1;58886:143:0;59041:16;59086:5;59077:6;59060:14;;:23;;;;:::i;:::-;:31;;;;:::i;:::-;59041:50;-1:-1:-1;59131:8:0;59109:19;59131:8;59041:50;59109:19;:::i;:::-;:30;;;;:::i;:::-;59102:37;58082:1065;-1:-1:-1;;;;;;58082:1065:0:o;71420:99::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71486:16:::1;:25:::0;;-1:-1:-1;;71486:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71420:99::o;70265:120::-;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;70345:14:::1;:32:::0;70265:120::o;55583:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33984:104::-;34040:13;34073:7;34066:14;;;;;:::i;35711:314::-;26090:10;-1:-1:-1;;;;;35835:24:0;;;35831:54;;35868:17;;-1:-1:-1;;;35868:17:0;;;;;;;;;;;35831:54;26090:10;35898:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35898:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35898:53:0;;;;;;;;;;35969:48;;725:41:1;;;35898:42:0;;26090:10;35969:48;;698:18:1;35969:48:0;;;;;;;35711:314;;:::o;69555:93::-;69599:7;69626:14;29672:1;30464:13;-1:-1:-1;;30464:31:0;;30227:287;69626:14;69619:21;;69555:93;:::o;57418:139::-;57494:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;57494:16:0;57530:19;;;;:9;:19;;;;;;;57523:26;;;;;;;;;;;;57530:19;;57523:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57418:139;;;:::o;68403:239::-;68570:4;3027:42;4301:43;:47;4297:789;;4588:10;-1:-1:-1;;;;;4580:18:0;;;4576:85;;68587:47:::1;68610:4;68616:2;68620:7;68629:4;68587:22;:47::i;:::-;4639:7:::0;;4576:85;4699:128;;-1:-1:-1;;;4699:128:0;;4770:4;4699:128;;;17097:34:1;4798:10:0;17147:18:1;;;17140:43;3027:42:0;;4699:40;;17032:18:1;;4699:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;4852:134:0;;-1:-1:-1;;;4852:134:0;;4927:4;4852:134;;;17097:34:1;-1:-1:-1;;;;;17167:15:1;;17147:18;;;17140:43;3027:42:0;;4852:40;;17032:18:1;;4852:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4675:400;;5029:30;;-1:-1:-1;;;5029:30:0;;5048:10;5029:30;;;1679:51:1;1652:18;;5029:30:0;1533:203:1;4675:400:0;68587:47:::1;68610:4;68616:2;68620:7;68629:4;68587:22;:47::i;71073:98::-:0;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;71142:12:::1;:21:::0;71073:98::o;68697:610::-;68787:13;68835:17;68843:8;68835:7;:17::i;:::-;68813:114;;;;-1:-1:-1;;;68813:114:0;;22037:2:1;68813:114:0;;;22019:21:1;22076:2;22056:18;;;22049:30;22115:34;22095:18;;;22088:62;-1:-1:-1;;;22166:18:1;;;22159:45;22221:19;;68813:114:0;21835:411:1;68813:114:0;68940:28;68971:10;:8;:10::i;:::-;68940:41;;69045:1;69020:14;69014:28;:32;:285;;;;;;;;;;;;;;;;;69179:19;;;;:9;:19;;;;;;;;;69095:163;;;;69138:14;;69179:19;;69095:163;;:::i;:::-;;;;;;;;;;;;;69014:285;68994:305;68697:610;-1:-1:-1;;;68697:610:0:o;61420:614::-;61528:7;61548:18;61581:11;61596:1;61581:16;61577:382;;-1:-1:-1;61627:15:0;;61577:382;;;61664:11;61679:1;61664:16;61660:299;;-1:-1:-1;61710:13:0;;61660:299;;;61745:11;61760:1;61745:16;61741:218;;-1:-1:-1;61791:13:0;;61741:218;;;61826:11;61841:1;61826:16;61822:137;;-1:-1:-1;61872:15:0;;61822:137;61991:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;61978:48;;:10;:48;:::i;:::-;61971:55;61420:614;-1:-1:-1;;;;61420:614:0:o;69376:115::-;-1:-1:-1;;;;;31375:19:0;;69435:7;31375:19;;;:12;:19;;;;;:32;-1:-1:-1;;;31375:32:0;;-1:-1:-1;;;;;31375:32:0;69462:21;31279:137;50770:238;50361:7;50388:6;-1:-1:-1;;;;;50388:6:0;26090:10;50535:23;50527:68;;;;-1:-1:-1;;;50527:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50873:22:0;::::1;50851:110;;;::::0;-1:-1:-1;;;50851:110:0;;23780:2:1;50851:110:0::1;::::0;::::1;23762:21:1::0;23819:2;23799:18;;;23792:30;23858:34;23838:18;;;23831:62;-1:-1:-1;;;23909:18:1;;;23902:36;23955:19;;50851:110:0::1;23578:402:1::0;50851:110:0::1;50972:28;50991:8;50972:18;:28::i;37550:213::-:0;37607:4;37663:7;29672:1;37644:26;;:66;;;;;37697:13;;37687:7;:23;37644:66;:111;;;;-1:-1:-1;;37728:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37728:27:0;;;;37727:28;;37550:213::o;46095:164::-;46176:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46176:29:0;-1:-1:-1;;;;;46176:29:0;;;;;;;;;46223:28;;46176:24;;46223:28;;;;;;;46095:164;;;:::o;62042:207::-;62103:4;;;62143:78;62164:3;:10;62160:1;:14;62143:78;;;62203:3;62207:1;62203:6;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62196:13:0;;;;;;:::i;:::-;;-1:-1:-1;62176:3:0;;;;:::i;:::-;;;;62143:78;;;-1:-1:-1;62238:3:0;62042:207;-1:-1:-1;;62042:207:0:o;55635:957::-;55826:13;;55801:22;55850:735;55871:10;:17;55867:1;:21;55850:735;;;55910:18;55931:41;55941:10;55952:1;55941:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;55931:41:0;55956:12;55969:1;55956:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;55931:41:0;61324:7;61351:22;;;:11;:22;;;;;;;;:35;;;;;;;;;;61219:175;55931:41;55910:62;;55992:6;55987:587;56008:12;56021:1;56008:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;56004:19:0;:1;:19;55987:587;;;56062:14;:10;56075:1;56062:14;:::i;:::-;56049:27;;56095:20;56154:44;56166:31;56183:10;56194:1;56183:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;56166:31:0;:16;:31::i;:::-;56154:11;:44::i;:::-;56221:33;56238:12;56251:1;56238:15;;;;;;;;:::i;56221:33::-;56277:28;56294:10;56277:16;:28::i;:::-;56118:206;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56095:229;;56371:131;;;;;;;;56403:6;56371:131;;;;56432:10;56443:1;56432:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;56371:131:0;;;;;56468:12;56481:1;56468:15;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;56371:131:0;;;;56343:25;;;;:9;:25;;;;;;:159;;:25;;:159;;:25;:159;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56540:14;56557:1;56540:18;;;;:::i;:::-;56523:35;;56030:544;56025:3;;;;;:::i;:::-;;;;55987:587;;;;55895:690;55890:3;;;;;:::i;:::-;;;;55850:735;;66796:354;66963:6;66958:185;66979:10;:17;66975:1;:21;66958:185;;;67065:12;67078:1;67065:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;67018:62:0;:11;:26;67030:10;67041:1;67030:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;67018:26:0;;;;;;;;;;;;:43;67045:12;67058:1;67045:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;67018:43:0;;;;;;;;;;;;;:62;;;;;;;:::i;:::-;;;;;;;;67116:12;67129:1;67116:15;;;;;;;;:::i;:::-;;;;;;;;;;;67095:17;:36;;:17;;:36;;67116:15;;-1:-1:-1;;;;;67095:36:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;67095:36:0;;;;;-1:-1:-1;;;;;67095:36:0;;;;;;66998:3;;;;;:::i;:::-;;;;66958:185;;37771:104;37840:27;37850:2;37854:8;37840:27;;;;;;;;;;;;:9;:27::i;36364:170::-;36498:28;36508:4;36514:2;36518:7;36498:9;:28::i;36611:185::-;36749:39;36766:4;36772:2;36776:7;36749:39;;;;;;;;;;;;:16;:39::i;43521:2446::-;43601:35;43639:21;43652:7;43639:12;:21::i;:::-;43688:18;;43601:59;;-1:-1:-1;43719:290:0;;;;43753:22;26090:10;-1:-1:-1;;;;;43779:20:0;;;;:77;;-1:-1:-1;43820:36:0;43837:4;26090:10;36102:189;:::i;43820:36::-;43779:134;;;-1:-1:-1;26090:10:0;43877:20;43889:7;43877:11;:20::i;:::-;-1:-1:-1;;;;;43877:36:0;;43779:134;43753:161;;43936:17;43931:66;;43962:35;;-1:-1:-1;;;43962:35:0;;;;;;;;;;;43931:66;43738:271;43719:290;44139:35;44156:1;44160:7;44169:4;44139:8;:35::i;:::-;-1:-1:-1;;;;;44510:18:0;;;44476:31;44510:18;;;:12;:18;;;;;;;;44545:24;;-1:-1:-1;;;;;;;;;;44545:24:0;;;;;;;;;-1:-1:-1;;44545:24:0;;;;44586:29;;;;;44568:1;44586:29;;;;;;;;-1:-1:-1;;44586:29:0;;;;;;;;;;44750:20;;;:11;:20;;;;;;44787;;-1:-1:-1;;;;44857:15:0;44824:49;;;-1:-1:-1;;;44824:49:0;-1:-1:-1;;;;;;44824:49:0;;;;;;;;;;44890:22;-1:-1:-1;;;44890:22:0;;;45186:11;;;45248:24;;;;;45293:13;;44510:18;;45248:24;;45293:13;45289:390;;45507:13;;45492:11;:28;45488:176;;45545:20;;45616:28;;;;-1:-1:-1;;;;;45590:54:0;-1:-1:-1;;;45590:54:0;-1:-1:-1;;;;;;45590:54:0;;;-1:-1:-1;;;;;45545:20:0;;45590:54;;;;45488:176;-1:-1:-1;;45707:35:0;;45734:7;;-1:-1:-1;45730:1:0;;-1:-1:-1;;;;;;45707:35:0;;;-1:-1:-1;;;;;;;;;;;45707:35:0;45730:1;;45707:35;-1:-1:-1;;45934:12:0;:14;;;;;;-1:-1:-1;;43521:2446:0:o;32400:1143::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32527:7:0;;29672:1;32576:23;;:47;;;;;32610:13;;32603:4;:20;32576:47;32572:902;;;32644:31;32678:17;;;:11;:17;;;;;;;;;32644:51;;;;;;;;;-1:-1:-1;;;;;32644:51:0;;;;-1:-1:-1;;;32644:51:0;;-1:-1:-1;;;;;32644:51:0;;;;;;;;-1:-1:-1;;;32644:51:0;;;;;;;;;;;;;;32716:743;;32766:14;;-1:-1:-1;;;;;32766:28:0;;32762:101;;32830:9;32400:1143;-1:-1:-1;;;32400:1143:0:o;32762:101::-;-1:-1:-1;;;33215:6:0;33262:17;;;;:11;:17;;;;;;;;;33250:29;;;;;;;;;-1:-1:-1;;;;;33250:29:0;;;;;-1:-1:-1;;;33250:29:0;;-1:-1:-1;;;;;33250:29:0;;;;;;;;-1:-1:-1;;;33250:29:0;;;;;;;;;;;;;33312:28;33308:109;;33380:9;32400:1143;-1:-1:-1;;;32400:1143:0:o;33308:109::-;33175:265;;;32625:849;32572:902;33504:31;;-1:-1:-1;;;33504:31:0;;;;;;;;;;;36873:408;37040:28;37050:4;37056:2;37060:7;37040:9;:28::i;:::-;-1:-1:-1;;;;;37099:13:0;;9133:19;:23;;37099:89;;;;;37132:56;37163:4;37169:2;37173:7;37182:5;37132:30;:56::i;:::-;37131:57;37099:89;37081:193;;;37222:40;;-1:-1:-1;;;37222:40:0;;;;;;;;;;;70037:113;70097:13;70130:12;70123:19;;;;;:::i;51168:191::-;51242:16;51261:6;;-1:-1:-1;;;;;51278:17:0;;;-1:-1:-1;;;;;;51278:17:0;;;;;;51311:40;;51261:6;;;;;;;51311:40;;51242:16;51311:40;51231:128;51168:191;:::o;5823:723::-;5879:13;6100:5;6109:1;6100:10;6096:53;;-1:-1:-1;;6127:10:0;;;;;;;;;;;;-1:-1:-1;;;6127:10:0;;;;;5823:723::o;6096:53::-;6174:5;6159:12;6215:78;6222:9;;6215:78;;6248:8;;;;:::i;:::-;;-1:-1:-1;6271:10:0;;-1:-1:-1;6279:2:0;6271:10;;:::i;:::-;;;6215:78;;;6303:19;6335:6;-1:-1:-1;;;;;6325:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6325:17:0;;6303:39;;6353:154;6360:10;;6353:154;;6387:11;6397:1;6387:11;;:::i;:::-;;-1:-1:-1;6456:10:0;6464:2;6456:5;:10;:::i;:::-;6443:24;;:2;:24;:::i;:::-;6430:39;;6413:6;6420;6413:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6413:56:0;;;;;;;;-1:-1:-1;6484:11:0;6493:2;6484:11;;:::i;:::-;;;6353:154;;56600:280;56682:13;56708:17;:26;;;;;;;;;;;;;-1:-1:-1;;;56708:26:0;;;;;56745:17;56783:7;56765:26;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56765:26:0;;;;;;56823:43;;;;;;;;;-1:-1:-1;;;56765:26:0;56823:43;;;56765:26;-1:-1:-1;56823:43:0;;-1:-1:-1;56856:9:0;56765:26;57387:15;;57307:103;56856:9;57387:15;;56844:21;;;;:::i;:::-;56823:9;:43::i;:::-;56868:3;56809:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56802:70;;;;56600:280;;;:::o;38258:163::-;38381:32;38387:2;38391:8;38401:5;38408:4;38381:5;:32::i;40966:2128::-;41047:35;41085:21;41098:7;41085:12;:21::i;:::-;41047:59;;41145:4;-1:-1:-1;;;;;41123:26:0;:13;:18;;;-1:-1:-1;;;;;41123:26:0;;41119:67;;41158:28;;-1:-1:-1;;;41158:28:0;;;;;;;;;;;41119:67;41199:22;26090:10;-1:-1:-1;;;;;41225:20:0;;;;:73;;-1:-1:-1;41262:36:0;41279:4;26090:10;36102:189;:::i;41262:36::-;41225:126;;;-1:-1:-1;26090:10:0;41315:20;41327:7;41315:11;:20::i;:::-;-1:-1:-1;;;;;41315:36:0;;41225:126;41199:153;;41370:17;41365:66;;41396:35;;-1:-1:-1;;;41396:35:0;;;;;;;;;;;41365:66;-1:-1:-1;;;;;41448:16:0;;41444:52;;41473:23;;-1:-1:-1;;;41473:23:0;;;;;;;;;;;41444:52;41619:35;41636:1;41640:7;41649:4;41619:8;:35::i;:::-;-1:-1:-1;;;;;41956:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41956:31:0;;;-1:-1:-1;;;;;41956:31:0;;;-1:-1:-1;;41956:31:0;;;;;;;42004:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42004:29:0;;;;;;;;;;;42084:20;;;:11;:20;;;;;;42121:18;;-1:-1:-1;;;;;;42156:49:0;;;;-1:-1:-1;;;42189:15:0;42156:49;;;;;;;;;;42483:11;;42545:24;;;;;42590:13;;42084:20;;42545:24;;42590:13;42586:390;;42804:13;;42789:11;:28;42785:176;;42842:20;;42913:28;;;;-1:-1:-1;;;;;42887:54:0;-1:-1:-1;;;42887:54:0;-1:-1:-1;;;;;;42887:54:0;;;-1:-1:-1;;;;;42842:20:0;;42887:54;;;;42785:176;41931:1056;;;43023:7;43019:2;-1:-1:-1;;;;;43004:27:0;43013:4;-1:-1:-1;;;;;43004:27:0;-1:-1:-1;;;;;;;;;;;43004:27:0;;;;;;;;;43044:42;67985:197;46769:772;46966:155;;-1:-1:-1;;;46966:155:0;;46932:4;;-1:-1:-1;;;;;46966:36:0;;;;;:155;;26090:10;;47052:4;;47075:7;;47101:5;;46966:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46966:155:0;;;;;;;;-1:-1:-1;;46966:155:0;;;;;;;;;;;;:::i;:::-;;;46949:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47292:6;:13;47309:1;47292:18;47288:235;;47338:40;;-1:-1:-1;;;47338:40:0;;;;;;;;;;;47288:235;47481:6;47475:13;47466:6;47462:2;47458:15;47451:38;46949:585;-1:-1:-1;;;;;;47177:55:0;-1:-1:-1;;;47177:55:0;;-1:-1:-1;46769:772:0;;;;;;:::o;56888:411::-;57014:13;57070:3;57040:21;57117;57128:10;57117:8;:21;:::i;:::-;-1:-1:-1;;;;;57107:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57107:32:0;-1:-1:-1;57085:54:0;-1:-1:-1;57164:10:0;57150:108;57180:8;57176:1;:12;57150:108;;;57235:8;57244:1;57235:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;57235:11:0;57210:6;57217:14;57221:10;57217:1;:14;:::i;:::-;57210:22;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;57210:36:0;;;;;;;;-1:-1:-1;57190:3:0;;;;:::i;:::-;;;;57150:108;;;-1:-1:-1;57284:6:0;56888:411;-1:-1:-1;;;;;56888:411:0:o;38700:1992::-;38862:13;;-1:-1:-1;;;;;38892:16:0;;38888:48;;38917:19;;-1:-1:-1;;;38917:19:0;;;;;;;;;;;38888:48;38953:8;38965:1;38953:13;38949:44;;38975:18;;-1:-1:-1;;;38975:18:0;;;;;;;;;;;38949:44;-1:-1:-1;;;;;39350:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39411:49:0;;-1:-1:-1;;;;;39350:44:0;;;;;;;39411:49;;;-1:-1:-1;;;;;39350:44:0;;;;;;39411:49;;;;;;;;;;;;;;;;39477:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39529:66:0;;;;-1:-1:-1;;;39579:15:0;39529:66;;;;;;;;;;39477:25;39678:23;;;39722:4;:23;;;;-1:-1:-1;;;;;;39730:13:0;;9133:19;:23;;39730:15;39718:838;;;39766:507;39797:38;;39822:12;;-1:-1:-1;;;;;39797:38:0;;;39814:1;;-1:-1:-1;;;;;;;;;;;39797:38:0;39814:1;;39797:38;39891:212;39960:1;39993:2;40026:14;;;;;;40071:5;39891:30;:212::i;:::-;39860:365;;40161:40;;-1:-1:-1;;;40161:40:0;;;;;;;;;;;39860:365;40268:3;40252:12;:19;39766:507;;40358:12;40341:13;;:29;40337:43;;40372:8;;;40337:43;39718:838;;;40421:120;40452:40;;40477:14;;;;;-1:-1:-1;;;;;40452:40:0;;;40469:1;;-1:-1:-1;;;;;;;;;;;40452:40:0;40469:1;;40452:40;40536:3;40520:12;:19;40421:120;;39718:838;-1:-1:-1;40572:13:0;:28;40624:60;67985:197;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:1;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:1;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:1:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2197:127::-;2258:10;2253:3;2249:20;2246:1;2239:31;2289:4;2286:1;2279:15;2313:4;2310:1;2303:15;2329:257;2401:4;2395:11;;;2433:17;;-1:-1:-1;;;;;2465:34:1;;2501:22;;;2462:62;2459:88;;;2527:18;;:::i;:::-;2563:4;2556:24;2329:257;:::o;2591:275::-;2662:2;2656:9;2727:2;2708:13;;-1:-1:-1;;2704:27:1;2692:40;;-1:-1:-1;;;;;2747:34:1;;2783:22;;;2744:62;2741:88;;;2809:18;;:::i;:::-;2845:2;2838:22;2591:275;;-1:-1:-1;2591:275:1:o;2871:182::-;2930:4;-1:-1:-1;;;;;2955:6:1;2952:30;2949:56;;;2985:18;;:::i;:::-;-1:-1:-1;3030:1:1;3026:14;3042:4;3022:25;;2871:182::o;3058:843::-;3111:5;3164:3;3157:4;3149:6;3145:17;3141:27;3131:55;;3182:1;3179;3172:12;3131:55;3218:6;3205:20;3244:4;3268:59;3284:42;3323:2;3284:42;:::i;:::-;3268:59;:::i;:::-;3361:15;;;3447:1;3443:10;;;;3431:23;;3427:32;;;3392:12;;;;3471:15;;;3468:35;;;3499:1;3496;3489:12;3468:35;3535:2;3527:6;3523:15;3547:325;3563:6;3558:3;3555:15;3547:325;;;3643:3;3630:17;-1:-1:-1;;;;;3684:5:1;3680:30;3673:5;3670:41;3660:139;;3753:1;3782:2;3778;3771:14;3660:139;3812:18;;3850:12;;;;3580;;3547:325;;;-1:-1:-1;3890:5:1;3058:843;-1:-1:-1;;;;;;3058:843:1:o;3906:815::-;4055:6;4063;4071;4124:2;4112:9;4103:7;4099:23;4095:32;4092:52;;;4140:1;4137;4130:12;4092:52;4180:9;4167:23;-1:-1:-1;;;;;4250:2:1;4242:6;4239:14;4236:34;;;4266:1;4263;4256:12;4236:34;4289:60;4341:7;4332:6;4321:9;4317:22;4289:60;:::i;:::-;4279:70;;4402:2;4391:9;4387:18;4374:32;4358:48;;4431:2;4421:8;4418:16;4415:36;;;4447:1;4444;4437:12;4415:36;4470:62;4524:7;4513:8;4502:9;4498:24;4470:62;:::i;:::-;4460:72;;4585:2;4574:9;4570:18;4557:32;4541:48;;4614:2;4604:8;4601:16;4598:36;;;4630:1;4627;4620:12;4598:36;;4653:62;4707:7;4696:8;4685:9;4681:24;4653:62;:::i;:::-;4643:72;;;3906:815;;;;;:::o;4908:248::-;4976:6;4984;5037:2;5025:9;5016:7;5012:23;5008:32;5005:52;;;5053:1;5050;5043:12;5005:52;-1:-1:-1;;5076:23:1;;;5146:2;5131:18;;;5118:32;;-1:-1:-1;4908:248:1:o;5161:456::-;5238:6;5246;5254;5307:2;5295:9;5286:7;5282:23;5278:32;5275:52;;;5323:1;5320;5313:12;5275:52;5362:9;5349:23;5381:31;5406:5;5381:31;:::i;:::-;5431:5;-1:-1:-1;5488:2:1;5473:18;;5460:32;5501:33;5460:32;5501:33;:::i;:::-;5161:456;;5553:7;;-1:-1:-1;;;5607:2:1;5592:18;;;;5579:32;;5161:456::o;5622:1194::-;5733:6;5764:2;5807;5795:9;5786:7;5782:23;5778:32;5775:52;;;5823:1;5820;5813:12;5775:52;5863:9;5850:23;-1:-1:-1;;;;;5888:6:1;5885:30;5882:50;;;5928:1;5925;5918:12;5882:50;5951:22;;6004:4;5996:13;;5992:27;-1:-1:-1;5982:55:1;;6033:1;6030;6023:12;5982:55;6069:2;6056:16;6092:59;6108:42;6147:2;6108:42;:::i;6092:59::-;6185:15;;;6267:1;6263:10;;;;6255:19;;6251:28;;;6216:12;;;;6291:19;;;6288:39;;;6323:1;6320;6313:12;6288:39;6347:11;;;;6367:419;6383:6;6378:3;6375:15;6367:419;;;6465:4;6459:3;6450:7;6446:17;6442:28;6439:118;;;6511:1;6540:2;6536;6529:14;6439:118;6583:22;;:::i;:::-;6632:17;;6618:32;;6699:12;;;6686:26;6670:14;;;6663:50;6726:18;;6409:4;6400:14;;;;6764:12;;;;6367:419;;;6805:5;5622:1194;-1:-1:-1;;;;;;;5622:1194:1:o;6821:247::-;6880:6;6933:2;6921:9;6912:7;6908:23;6904:32;6901:52;;;6949:1;6946;6939:12;6901:52;6988:9;6975:23;7007:31;7032:5;7007:31;:::i;7073:632::-;7244:2;7296:21;;;7366:13;;7269:18;;;7388:22;;;7215:4;;7244:2;7467:15;;;;7441:2;7426:18;;;7215:4;7510:169;7524:6;7521:1;7518:13;7510:169;;;7585:13;;7573:26;;7654:15;;;;7619:12;;;;7546:1;7539:9;7510:169;;;-1:-1:-1;7696:3:1;;7073:632;-1:-1:-1;;;;;;7073:632:1:o;7977:592::-;8048:6;8056;8109:2;8097:9;8088:7;8084:23;8080:32;8077:52;;;8125:1;8122;8115:12;8077:52;8165:9;8152:23;-1:-1:-1;;;;;8235:2:1;8227:6;8224:14;8221:34;;;8251:1;8248;8241:12;8221:34;8289:6;8278:9;8274:22;8264:32;;8334:7;8327:4;8323:2;8319:13;8315:27;8305:55;;8356:1;8353;8346:12;8305:55;8396:2;8383:16;8422:2;8414:6;8411:14;8408:34;;;8438:1;8435;8428:12;8408:34;8483:7;8478:2;8469:6;8465:2;8461:15;8457:24;8454:37;8451:57;;;8504:1;8501;8494:12;8451:57;8535:2;8527:11;;;;;8557:6;;-1:-1:-1;7977:592:1;;-1:-1:-1;;;;7977:592:1:o;8574:118::-;8660:5;8653:13;8646:21;8639:5;8636:32;8626:60;;8682:1;8679;8672:12;8697:241;8753:6;8806:2;8794:9;8785:7;8781:23;8777:32;8774:52;;;8822:1;8819;8812:12;8774:52;8861:9;8848:23;8880:28;8902:5;8880:28;:::i;8943:362::-;9148:2;9137:9;9130:21;9111:4;9168:45;9209:2;9198:9;9194:18;9186:6;9168:45;:::i;:::-;9244:2;9229:18;;9222:34;;;;-1:-1:-1;9287:2:1;9272:18;9265:34;9160:53;8943:362;-1:-1:-1;8943:362:1:o;9310:382::-;9375:6;9383;9436:2;9424:9;9415:7;9411:23;9407:32;9404:52;;;9452:1;9449;9442:12;9404:52;9491:9;9478:23;9510:31;9535:5;9510:31;:::i;:::-;9560:5;-1:-1:-1;9617:2:1;9602:18;;9589:32;9630:30;9589:32;9630:30;:::i;:::-;9679:7;9669:17;;;9310:382;;;;;:::o;9697:493::-;9880:2;9869:9;9862:21;9843:4;9918:6;9912:13;9961:4;9956:2;9945:9;9941:18;9934:32;9989:52;10036:3;10025:9;10021:19;10007:12;9989:52;:::i;:::-;9975:66;;10095:2;10087:6;10083:15;10077:22;10072:2;10061:9;10057:18;10050:50;10156:2;10148:6;10144:15;10138:22;10131:4;10120:9;10116:20;10109:52;10178:6;10170:14;;;9697:493;;;;:::o;10195:1108::-;10290:6;10298;10306;10314;10367:3;10355:9;10346:7;10342:23;10338:33;10335:53;;;10384:1;10381;10374:12;10335:53;10423:9;10410:23;10442:31;10467:5;10442:31;:::i;:::-;10492:5;-1:-1:-1;10516:2:1;10555:18;;;10542:32;10583:33;10542:32;10583:33;:::i;:::-;10635:7;-1:-1:-1;10689:2:1;10674:18;;10661:32;;-1:-1:-1;10744:2:1;10729:18;;10716:32;-1:-1:-1;;;;;10797:14:1;;;10794:34;;;10824:1;10821;10814:12;10794:34;10862:6;10851:9;10847:22;10837:32;;10907:7;10900:4;10896:2;10892:13;10888:27;10878:55;;10929:1;10926;10919:12;10878:55;10965:2;10952:16;10987:2;10983;10980:10;10977:36;;;10993:18;;:::i;:::-;11035:53;11078:2;11059:13;;-1:-1:-1;;11055:27:1;11051:36;;11035:53;:::i;:::-;11022:66;;11111:2;11104:5;11097:17;11151:7;11146:2;11141;11137;11133:11;11129:20;11126:33;11123:53;;;11172:1;11169;11162:12;11123:53;11227:2;11222;11218;11214:11;11209:2;11202:5;11198:14;11185:45;11271:1;11266:2;11261;11254:5;11250:14;11246:23;11239:34;;11292:5;11282:15;;;;;10195:1108;;;;;;;:::o;11513:388::-;11581:6;11589;11642:2;11630:9;11621:7;11617:23;11613:32;11610:52;;;11658:1;11655;11648:12;11610:52;11697:9;11684:23;11716:31;11741:5;11716:31;:::i;:::-;11766:5;-1:-1:-1;11823:2:1;11808:18;;11795:32;11836:33;11795:32;11836:33;:::i;11906:356::-;12108:2;12090:21;;;12127:18;;;12120:30;12186:34;12181:2;12166:18;;12159:62;12253:2;12238:18;;11906:356::o;12267:380::-;12346:1;12342:12;;;;12389;;;12410:61;;12464:4;12456:6;12452:17;12442:27;;12410:61;12517:2;12509:6;12506:14;12486:18;12483:38;12480:161;;12563:10;12558:3;12554:20;12551:1;12544:31;12598:4;12595:1;12588:15;12626:4;12623:1;12616:15;12480:161;;12267:380;;;:::o;13355:344::-;13557:2;13539:21;;;13596:2;13576:18;;;13569:30;-1:-1:-1;;;13630:2:1;13615:18;;13608:50;13690:2;13675:18;;13355:344::o;14051:127::-;14112:10;14107:3;14103:20;14100:1;14093:31;14143:4;14140:1;14133:15;14167:4;14164:1;14157:15;14183:349;14385:2;14367:21;;;14424:2;14404:18;;;14397:30;14463:27;14458:2;14443:18;;14436:55;14523:2;14508:18;;14183:349::o;14537:127::-;14598:10;14593:3;14589:20;14586:1;14579:31;14629:4;14626:1;14619:15;14653:4;14650:1;14643:15;14669:125;14734:9;;;14755:10;;;14752:36;;;14768:18;;:::i;14799:353::-;15001:2;14983:21;;;15040:2;15020:18;;;15013:30;15079:31;15074:2;15059:18;;15052:59;15143:2;15128:18;;14799:353::o;15157:351::-;15359:2;15341:21;;;15398:2;15378:18;;;15371:30;15437:29;15432:2;15417:18;;15410:57;15499:2;15484:18;;15157:351::o;15513:::-;15715:2;15697:21;;;15754:2;15734:18;;;15727:30;15793:29;15788:2;15773:18;;15766:57;15855:2;15840:18;;15513:351::o;15869:353::-;16071:2;16053:21;;;16110:2;16090:18;;;16083:30;16149:31;16144:2;16129:18;;16122:59;16213:2;16198:18;;15869:353::o;16572:135::-;16611:3;16632:17;;;16629:43;;16652:18;;:::i;:::-;-1:-1:-1;16699:1:1;16688:13;;16572:135::o;16712:168::-;16785:9;;;16816;;16833:15;;;16827:22;;16813:37;16803:71;;16854:18;;:::i;17194:245::-;17261:6;17314:2;17302:9;17293:7;17289:23;17285:32;17282:52;;;17330:1;17327;17320:12;17282:52;17362:9;17356:16;17381:28;17403:5;17381:28;:::i;18358:184::-;18428:6;18481:2;18469:9;18460:7;18456:23;18452:32;18449:52;;;18497:1;18494;18487:12;18449:52;-1:-1:-1;18520:16:1;;18358:184;-1:-1:-1;18358:184:1:o;18952:545::-;19054:2;19049:3;19046:11;19043:448;;;19090:1;19115:5;19111:2;19104:17;19160:4;19156:2;19146:19;19230:2;19218:10;19214:19;19211:1;19207:27;19201:4;19197:38;19266:4;19254:10;19251:20;19248:47;;;-1:-1:-1;19289:4:1;19248:47;19344:2;19339:3;19335:12;19332:1;19328:20;19322:4;19318:31;19308:41;;19399:82;19417:2;19410:5;19407:13;19399:82;;;19462:17;;;19443:1;19432:13;19399:82;;;19403:3;;;18952:545;;;:::o;19673:1206::-;-1:-1:-1;;;;;19792:3:1;19789:27;19786:53;;;19819:18;;:::i;:::-;19848:94;19938:3;19898:38;19930:4;19924:11;19898:38;:::i;:::-;19892:4;19848:94;:::i;:::-;19968:1;19993:2;19988:3;19985:11;20010:1;20005:616;;;;20665:1;20682:3;20679:93;;;-1:-1:-1;20738:19:1;;;20725:33;20679:93;-1:-1:-1;;19630:1:1;19626:11;;;19622:24;19618:29;19608:40;19654:1;19650:11;;;19605:57;20785:78;;19978:895;;20005:616;18899:1;18892:14;;;18936:4;18923:18;;-1:-1:-1;;20041:17:1;;;20142:9;20164:229;20178:7;20175:1;20172:14;20164:229;;;20267:19;;;20254:33;20239:49;;20374:4;20359:20;;;;20327:1;20315:14;;;;20194:12;20164:229;;;20168:3;20421;20412:7;20409:16;20406:159;;;20545:1;20541:6;20535:3;20529;20526:1;20522:11;20518:21;20514:34;20510:39;20497:9;20492:3;20488:19;20475:33;20471:79;20463:6;20456:95;20406:159;;;20608:1;20602:3;20599:1;20595:11;20591:19;20585:4;20578:33;19978:895;;19673:1206;;;:::o;21578:127::-;21639:10;21634:3;21630:20;21627:1;21620:31;21670:4;21667:1;21660:15;21694:4;21691:1;21684:15;21710:120;21750:1;21776;21766:35;;21781:18;;:::i;:::-;-1:-1:-1;21815:9:1;;21710:120::o;22251:1189::-;22528:3;22566:6;22560:13;22592:4;22605:64;22662:6;22657:3;22652:2;22644:6;22640:15;22605:64;:::i;:::-;22700:6;22695:3;22691:16;22678:29;;22727:1;22760:6;22754:13;22792:36;22818:9;22792:36;:::i;:::-;22847:1;22864:18;;;22891:141;;;;23046:1;23041:337;;;;22857:521;;22891:141;-1:-1:-1;;22926:24:1;;22912:39;;23003:16;;22996:24;22982:39;;22971:51;;;-1:-1:-1;22891:141:1;;23041:337;23072:6;23069:1;23062:17;23120:2;23117:1;23107:16;23145:1;23159:169;23173:8;23170:1;23167:15;23159:169;;;23255:14;;23240:13;;;23233:37;23298:16;;;;23190:10;;23159:169;;;23163:3;;23359:8;23352:5;23348:20;23341:27;;22857:521;-1:-1:-1;;;;;23387:20:1;;-1:-1:-1;;23432:1:1;23423:11;;22251:1189;-1:-1:-1;;;;;;22251:1189:1:o;23445:128::-;23512:9;;;23533:11;;;23530:37;;;23547:18;;:::i;23985:703::-;24212:3;24250:6;24244:13;24266:66;24325:6;24320:3;24313:4;24305:6;24301:17;24266:66;:::i;:::-;24395:13;;24354:16;;;;24417:70;24395:13;24354:16;24464:4;24452:17;;24417:70;:::i;:::-;24554:13;;24509:20;;;24576:70;24554:13;24509:20;24623:4;24611:17;;24576:70;:::i;:::-;24662:20;;23985:703;-1:-1:-1;;;;;23985:703:1:o;24693:1352::-;24819:3;24813:10;-1:-1:-1;;;;;24838:6:1;24835:30;24832:56;;;24868:18;;:::i;:::-;24897:97;24987:6;24947:38;24979:4;24973:11;24947:38;:::i;:::-;24941:4;24897:97;:::i;:::-;25049:4;;25113:2;25102:14;;25130:1;25125:663;;;;25832:1;25849:6;25846:89;;;-1:-1:-1;25901:19:1;;;25895:26;25846:89;-1:-1:-1;;19630:1:1;19626:11;;;19622:24;19618:29;19608:40;19654:1;19650:11;;;19605:57;25948:81;;25095:944;;25125:663;18899:1;18892:14;;;18936:4;18923:18;;-1:-1:-1;;25161:20:1;;;25279:236;25293:7;25290:1;25287:14;25279:236;;;25382:19;;;25376:26;25361:42;;25474:27;;;;25442:1;25430:14;;;;25309:19;;25279:236;;;25283:3;25543:6;25534:7;25531:19;25528:201;;;25604:19;;;25598:26;-1:-1:-1;;25687:1:1;25683:14;;;25699:3;25679:24;25675:37;25671:42;25656:58;25641:74;;25528:201;-1:-1:-1;;;;;25775:1:1;25759:14;;;25755:22;25742:36;;-1:-1:-1;24693:1352:1:o;26050:180::-;-1:-1:-1;;;;;26155:10:1;;;26167;;;26151:27;;26190:11;;;26187:37;;;26204:18;;:::i;26235:112::-;26267:1;26293;26283:35;;26298:18;;:::i;:::-;-1:-1:-1;26332:9:1;;26235:112::o;26352:390::-;26584:3;26622:6;26616:13;26638:66;26697:6;26692:3;26685:4;26677:6;26673:17;26638:66;:::i;:::-;26720:16;;;;;26352:390;-1:-1:-1;;26352:390:1:o;26747:496::-;26926:3;26964:6;26958:13;26980:66;27039:6;27034:3;27027:4;27019:6;27015:17;26980:66;:::i;:::-;27109:13;;27068:16;;;;27131:70;27109:13;27068:16;27178:4;27166:17;;27131:70;:::i;:::-;27217:20;;26747:496;-1:-1:-1;;;;26747:496:1:o;27248:489::-;-1:-1:-1;;;;;27517:15:1;;;27499:34;;27569:15;;27564:2;27549:18;;27542:43;27616:2;27601:18;;27594:34;;;27664:3;27659:2;27644:18;;27637:31;;;27442:4;;27685:46;;27711:19;;27703:6;27685:46;:::i;27742:249::-;27811:6;27864:2;27852:9;27843:7;27839:23;27835:32;27832:52;;;27880:1;27877;27870:12;27832:52;27912:9;27906:16;27931:30;27955:5;27931:30;:::i

Swarm Source

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