ETH Price: $2,429.50 (+4.50%)

Token

Ethereum Football Stars Club (EFSC)
 

Overview

Max Total Supply

123 EFSC

Holders

67

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

EFS is where you can collect your favorite football players and earn EFS tokens from their real-life performance. Our innovative platform allows users to collect non-fungible token (NFT) cards representing real football players, giving fans a new way to experience the excitement of the sport.

# 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, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// EFS.CLUB
/*
Ethereum Football Stars Club (EFS)  


                                                                                                                           
8 8888888888   8 8888888888    d888888o.                 ,o888888o.    8 8888      8 8888      88 8 888888888o             
8 8888         8 8888        .`8888:' `88.              8888     `88.  8 8888      8 8888      88 8 8888    `88.           
8 8888         8 8888        8.`8888.   Y8           ,8 8888       `8. 8 8888      8 8888      88 8 8888     `88           
8 8888         8 8888        `8.`8888.               88 8888           8 8888      8 8888      88 8 8888     ,88           
8 888888888888 8 888888888888 `8.`8888.              88 8888           8 8888      8 8888      88 8 8888.   ,88'           
8 8888         8 8888          `8.`8888.             88 8888           8 8888      8 8888      88 8 8888888888             
8 8888         8 8888           `8.`8888.            88 8888           8 8888      8 8888      88 8 8888    `88.           
8 8888         8 8888       8b   `8.`8888.           `8 8888       .8' 8 8888      ` 8888     ,8P 8 8888      88           
8 8888         8 8888       `8b.  ;8.`8888              8888     ,88'  8 8888        8888   ,d8P  8 8888    ,88'           
8 888888888888 8 8888        `Y8888P ,88P'               `8888888P'    8 888888888888 `Y88888P'   8 888888888P             


                                             ████████████              
                                          ██▓▓████████████████          
                                      ████    ██████████▓▓    ████      
                                    ██            ██              ██    
                                  ████            ██              ████  
                                  ████            ██              ████  
                                  ████████    ██▓▓████▓▓██    ████████  
                                ██████    ██████████████████▓▓    ██████
                                ████        ████████████████        ████
                                ██          ██████████████▓▓          ██
                                ██          ▓▓██████████████          ██
                                  ██          ██████████▓▓          ██  
                                  ██          ████████████          ██  
                                  ██▓▓██    ██            ██    ▓▓████  
                                    ▓▓██████                ████████    
                                    ████████                ████████    
                                      ████████            ████████      
                                          ████            ████          
                                              ████████████        
*/

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

// Maximum supply for each type of card
uint256 public CommonMaxSupply = 700;
uint256 public EpicMaxSupply = 250;
uint256 public GoldMaxSupply = 50;
uint256 public UniqueMaxSupply = 1;

// Ratios for each type of card (divided by 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;

// Ratios for each star rating of players (divided by 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;
  

   

    bool public publicSaleActive = true;

    mapping(uint => string) public  cardsData ;



    struct CardsStar {
        uint256 id;
        uint256 star;
    }

    mapping(uint256 => uint256) public cardStarRatio;
  
    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 to add star ratings for cards
function addCardsStar(CardsStar[] memory _data) public onlyOwner {
    // Iterate over the array of card star data
    for (uint i = 0; i < _data.length; i++) {
        // Assign the star rating to the corresponding card ID in the mapping
        cardStarRatio[_data[i].id] = _data[i].star;
    }
}

   // Get the price in ETH for a card
function getPriceEth(
    uint256 _cardId,
    uint256 _cardType
) public view returns (uint256) {
    uint256 _types;
    uint256 _star;

    // Determine the ratio for the given card type
    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");
    }

    // Determine the ratio for the star rating of the card
    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");
    }

    // Calculate the ETH price using the ratios and the public sale cost
    uint256 ethPrice = publicSaleCost * _types * _star;
    
    // Convert the price to ETH by dividing by 10^18 twice
    return ethPrice / (10 ** 18) / (10 ** 18);
}


// Get the total price in ETH for a basket of cards
function getPriceEthBasket(
    uint64[] memory playerIds,
    uint64[] memory playerTypes,
    uint64[] memory mintAmounts
) public view returns (uint256) {
    // Check that the lengths of the input arrays are the same
    require(
        playerIds.length == playerTypes.length &&
        playerTypes.length == mintAmounts.length,
        "Invalid input arrays"
    );

    // Variable to store the total price
    uint256 totalPrice;

    // Iterate over the player IDs
    for (uint i = 0; i < playerIds.length; i++) {
        // Check that the player ID and player type are valid
        require(
            playerIds[i] >= 1 && playerTypes[i] >= 1 && playerTypes[i] <= 4,
            "Invalid player ID or type"
        );

        // Check if the maximum supply for the corresponding NFT type is reached
        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");
        }

        // Calculate the price for the current card and add it to the total price
        totalPrice += mintAmounts[i] * getPriceEth(playerIds[i], playerTypes[i]);
    }

    // Return the total price in ETH
    return totalPrice;
}

    //Get Supply
   // Get the supply of a player's NFTs and perform a max supply validation
function getSupply(
    uint256 _playerId,
    uint256 _playerType,
    uint256 _mintAmount
) public view returns (uint256) {
    // Check the player type and perform the corresponding max supply validation
    if (_playerType == 1) {
        require(
            totalSupply[_playerId][_playerType] +
            _mintAmount <=
            CommonMaxSupply,
            "Common NFT max supply reached"
        );
    } else if (_playerType == 2) {
        require(
            totalSupply[_playerId][_playerType] +
            _mintAmount <=
            EpicMaxSupply,
            "Epic NFT max supply reached"
        );
    } else if (_playerType == 3) {
        require(
            totalSupply[_playerId][_playerType] +
            _mintAmount <=
            GoldMaxSupply,
            "Gold NFT max supply reached"
        );
    } else if (_playerType == 4) {
        require(
            totalSupply[_playerId][_playerType] +
            _mintAmount <=
            UniqueMaxSupply,
            "Unique NFT max supply reached"
        );
    } else {
        revert("Invalid NFT type");
    }

    // Return the current supply of the player's NFTs for the specified type
    return totalSupply[_playerId][_playerType];
}
   
   // Get the remaining supply for a specific player and player type
function getRemaining(uint256 _playerId, uint256 _playerType) public view returns (uint256) {
    uint256 _maxSupply;

    // Determine the maximum supply based on the player type
    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");
    }

    // Calculate the remaining supply by subtracting the current supply from the maximum supply
    return _maxSupply - totalSupply[_playerId][_playerType];
}

// Get the remaining supply for all player types for a specific player
function getRemainingId(uint256 _playerId) public view returns (string memory) {
    // Calculate the remaining supply for each player type
    uint256 _Common = CommonMaxSupply - totalSupply[_playerId][1];
    uint256 _Epic = EpicMaxSupply - totalSupply[_playerId][2];
    uint256 _Gold = GoldMaxSupply - totalSupply[_playerId][3];
    uint256 _Unique = UniqueMaxSupply - totalSupply[_playerId][4];

    // Concatenate the remaining supply values into a string and return it
    return string.concat(Strings.toString(_Common), ",", Strings.toString(_Epic), ",", Strings.toString(_Gold), ",", Strings.toString(_Unique));
}
// Function to calculate the sum of an array
function sumArray(uint64[] memory arr) private pure returns (uint) {
    uint sum;
    for (uint i = 0; i < arr.length; i++) {
        sum += arr[i];
    }
    return sum;
}

// Function to buy a basket of cards
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"
    );

    // Calculate the total price for the card basket
    uint256 totalPrice = getPriceEthBasket(
        _playerIds,
        _playerTypes,
        _mintAmounts
    );

    // Check if the sent value is equal to the total price
    require(msg.value == totalPrice, "Insufficient funds");

    // Assign metadatas to the cards
    assignMetadatas(_playerIds, _playerTypes, _mintAmounts);

    // Mint the cards to the buyer
    _safeMint(msg.sender, sumArray(_mintAmounts));
}
   // Function to buy cards directly and mint them to a specified address
function BuyDirectly(
    uint64[] memory _playerIds,
    uint64[] memory _playerTypes,
    uint64[] memory _mintAmounts,
    address _to
) public onlyOwner mintCompliance(sumArray(_mintAmounts)) {
    require(
        _playerIds.length == _playerTypes.length &&
            _playerTypes.length == _mintAmounts.length,
        "Invalid input arrays"
    );

    // Get the total price for the card basket
    getPriceEthBasket(_playerIds, _playerTypes, _mintAmounts);

    // Assign metadatas to the cards
    assignMetadatas(_playerIds, _playerTypes, _mintAmounts);

    // Mint the cards directly to the specified address
    _safeMint(_to, sumArray(_mintAmounts));
}



function assignMetadatas(
    uint64[] memory _playerIds,
    uint64[] memory _playerTypes,
    uint64[] memory _mintAmounts
) private {
    uint256 currentTokenID = _currentIndex;
    uint256 index;
    uint256 length =  _playerIds.length;

    while (index < length) {
        uint256 lastSupply = getSupply(_playerIds[index], _playerTypes[index],_mintAmounts[index]);
        uint64 mintAmount = _mintAmounts[index];
         string memory _typeOfPlayer =  Strings.toString(_playerTypes[index]);
         string memory _idOfPlayer =  makeNumbers(Strings.toString(_playerIds[index]));
       
        for (uint i = 0; i < mintAmount; i = unsafe_inc(i)) {
            lastSupply = lastSupply + 1;
           
            cardsData[currentTokenID]=string.concat(
                _idOfPlayer,
               _typeOfPlayer,
                Strings.toString(lastSupply));
            
            currentTokenID = currentTokenID + 1;
        }
         totalSupply[_playerIds[index]][_playerTypes[index]] += _mintAmounts[index];
         publicTotalSupply += _mintAmounts[index];
        index = unsafe_inc(index);
    }
}




 function unsafe_inc(uint x) private pure returns (uint) {
        unchecked { return x + 1; }
    }
  function makeNumbers(string memory _number) private  pure  returns (string memory) { 
      
    if(bytes(_number).length==1){ 
        return string.concat("000",_number); 
    }   else if(bytes(_number).length==2){ 
        return string.concat("00",_number); 
    }   else if(bytes(_number).length==3){ 
        return string.concat("0",_number); 
    }    else{ 
        return _number; 
    } 
}
    //@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], ".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 Type 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;
    }


   
  function setCardsData(uint[] memory _tokenId , string[] memory _data) public onlyOwner {
      for (uint i=0;i<_tokenId.length;i++){
        cardsData[_tokenId[i]] = _data[i];
        }
    }

    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":[{"internalType":"uint64[]","name":"_playerIds","type":"uint64[]"},{"internalType":"uint64[]","name":"_playerTypes","type":"uint64[]"},{"internalType":"uint64[]","name":"_mintAmounts","type":"uint64[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"BuyDirectly","outputs":[],"stateMutability":"nonpayable","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":"","type":"string"}],"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":"_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"}],"name":"getRemainingId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_playerId","type":"uint256"},{"internalType":"uint256","name":"_playerType","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","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":[],"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":"_tokenId","type":"uint256[]"},{"internalType":"string[]","name":"_data","type":"string[]"}],"name":"setCardsData","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"}]

6080604052670214e8348c4f0000600a55600b80546001600160401b03191690556102bc600c5560fa600d556032600e556001600f819055670de0b6b3a764000060108190556729a2241af62c0000601155678ac7230489e800006012556801a055690d9db800006013556014556710a741a46278000060155567120a871cc00200006016556714d1120d7b1600006017556018805460ff19169091179055348015620000ab57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601c81526020017f457468657265756d20466f6f7462616c6c20537461727320436c756200000000815250604051806040016040528060048152602001634546534360e01b815250620001306200012a620002a160201b60201c565b620002a5565b60036200013e83826200039a565b5060046200014d82826200039a565b506001805550506daaeb6d7670e522a718067333cd4e3b1562000299578015620001e757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000299565b6001600160a01b03821615620002385760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001ad565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200027f57600080fd5b505af115801562000294573d6000803e3d6000fd5b505050505b505062000466565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200032057607f821691505b6020821081036200034157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039557600081815260208120601f850160051c81016020861015620003705750805b601f850160051c820191505b8181101562000391578281556001016200037c565b5050505b505050565b81516001600160401b03811115620003b657620003b6620002f5565b620003ce81620003c784546200030b565b8462000347565b602080601f831160018114620004065760008415620003ed5750858301515b600019600386901b1c1916600185901b17855562000391565b600085815260208120601f198616915b82811015620004375788860151825594840194600190910190840162000416565b5085821015620004565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61431980620004766000396000f3fe6080604052600436106103765760003560e01c80636976117d116101cf578063a2309ff811610101578063c87b56dd1161009a578063e985e9c51161006c578063e985e9c514610a68578063f2fde38b14610ab1578063fa1d1e3d14610ad1578063fa97ecda14610ae757005b8063c87b56dd146109f2578063d32a98a214610a12578063dac090ff14610a32578063dc33e68114610a4857005b8063bc8893b4116100d3578063bc8893b41461096a578063c2458d6b14610984578063c41a2747146109bc578063c454a38e146109dc57005b8063a2309ff8146108e7578063a9ae214c146108fc578063b88d4fde14610912578063b985add81461093257005b80638836fe01116101735780638e1f0dcb116101455780638e1f0dcb1461087c57806395d89b411461089c57806399e3e34e146108b1578063a22cb465146108c757005b80638836fe01146107fe5780638aca408c1461081e5780638da5cb5b1461083e5780638dbb7c061461085c57005b806370a08231116101ac57806370a082311461077e57806372d973661461079e578063788a76e2146107be5780637ff6be5f146107de57005b80636976117d146107285780636bff2f471461073e5780636e2aa8f41461075e57005b80633a672bfa116102a8578063453afb0f1161024c57806355f804b31161021e57806355f804b3146106b257806362c75387146106d25780636352211e146106e85780636732e9741461070857005b8063453afb0f1461063c57806349df728c146106525780634f558e7914610672578063553448cf1461069257005b806342842e0e1161028557806342842e0e146105b957806342966c68146105d9578063438b6300146105f957806344e6fdd61461062657005b80633a672bfa1461056e5780633ccfd60b1461058e5780633fc56708146105a357005b8063124d05501161031a57806332ce703c116102ec57806332ce703c1461050c5780633355ef5e146105225780633799479a1461054257806338cc28ca1461055857005b8063124d05501461048157806318160ddd146104af57806323b872dd146104cc578063327b352b146104ec57005b806306fdde031161035357806306fdde03146103f4578063081812fc14610416578063095ea7b31461044e5780630b8ca50f1461046e57005b8063011ff41f1461037f57806301ffc9a71461039f57806306733bec146103d457005b3661037d57005b005b34801561038b57600080fd5b5061037d61039a36600461353c565b610b14565b3480156103ab57600080fd5b506103bf6103ba36600461356b565b610b4c565b60405190151581526020015b60405180910390f35b3480156103e057600080fd5b5061037d6103ef366004613714565b610b9e565b34801561040057600080fd5b50610409610c3e565b6040516103cb919061381c565b34801561042257600080fd5b5061043661043136600461353c565b610cd0565b6040516001600160a01b0390911681526020016103cb565b34801561045a57600080fd5b5061037d610469366004613844565b610d14565b61037d61047c3660046138e1565b610d9c565b34801561048d57600080fd5b506104a161049c3660046138e1565b610ee3565b6040519081526020016103cb565b3480156104bb57600080fd5b5060025460015403600019016104a1565b3480156104d857600080fd5b5061037d6104e7366004613968565b611517565b3480156104f857600080fd5b5061037d6105073660046139a9565b611673565b34801561051857600080fd5b506104a160135481565b34801561052e57600080fd5b5061037d61053d36600461353c565b611712565b34801561054e57600080fd5b506104a1600d5481565b34801561056457600080fd5b506104a160155481565b34801561057a57600080fd5b5061037d61058936600461353c565b611741565b34801561059a57600080fd5b5061037d611770565b3480156105af57600080fd5b506104a1600f5481565b3480156105c557600080fd5b5061037d6105d4366004613968565b6117fd565b3480156105e557600080fd5b5061037d6105f436600461353c565b61194e565b34801561060557600080fd5b50610619610614366004613a5e565b611a0e565b6040516103cb9190613a7b565b34801561063257600080fd5b506104a160115481565b34801561064857600080fd5b506104a1600a5481565b34801561065e57600080fd5b5061037d61066d366004613a5e565b611af2565b34801561067e57600080fd5b506103bf61068d36600461353c565b611bfb565b34801561069e57600080fd5b5061037d6106ad36600461353c565b611c06565b3480156106be57600080fd5b5061037d6106cd366004613abf565b611c35565b3480156106de57600080fd5b506104a160125481565b3480156106f457600080fd5b5061043661070336600461353c565b611c6c565b34801561071457600080fd5b5061040961072336600461353c565b611c7e565b34801561073457600080fd5b506104a1600c5481565b34801561074a57600080fd5b5061037d61075936600461353c565b611d83565b34801561076a57600080fd5b5061037d61077936600461353c565b611db2565b34801561078a57600080fd5b506104a1610799366004613a5e565b611de1565b3480156107aa57600080fd5b5061037d6107b9366004613b30565b611e2f565b3480156107ca57600080fd5b5061037d6107d936600461353c565b611efb565b3480156107ea57600080fd5b506104a16107f9366004613bca565b611f2a565b34801561080a57600080fd5b506104a1610819366004613bf6565b612148565b34801561082a57600080fd5b5061037d610839366004613c26565b6122cf565b34801561084a57600080fd5b506000546001600160a01b0316610436565b34801561086857600080fd5b5061037d61087736600461353c565b61230c565b34801561088857600080fd5b5061040961089736600461353c565b61233b565b3480156108a857600080fd5b506104096123d5565b3480156108bd57600080fd5b506104a160175481565b3480156108d357600080fd5b5061037d6108e2366004613c43565b6123e4565b3480156108f357600080fd5b506104a1612479565b34801561090857600080fd5b506104a160105481565b34801561091e57600080fd5b5061037d61092d366004613c7c565b61248d565b34801561093e57600080fd5b50600b54610952906001600160401b031681565b6040516001600160401b0390911681526020016103cb565b34801561097657600080fd5b506018546103bf9060ff1681565b34801561099057600080fd5b506104a161099f366004613bf6565b601b60209081526000928352604080842090915290825290205481565b3480156109c857600080fd5b5061037d6109d736600461353c565b6125e5565b3480156109e857600080fd5b506104a160145481565b3480156109fe57600080fd5b50610409610a0d36600461353c565b612614565b348015610a1e57600080fd5b506104a1610a2d366004613bf6565b6126e9565b348015610a3e57600080fd5b506104a1600e5481565b348015610a5457600080fd5b506104a1610a63366004613a5e565b612758565b348015610a7457600080fd5b506103bf610a83366004613cfb565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610abd57600080fd5b5061037d610acc366004613a5e565b612786565b348015610add57600080fd5b506104a160165481565b348015610af357600080fd5b506104a1610b0236600461353c565b601a6020526000908152604090205481565b6000546001600160a01b03163314610b475760405162461bcd60e51b8152600401610b3e90613d29565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b1480610b7d57506001600160e01b03198216635b5e139f60e01b145b80610b9857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610b3e90613d29565b60005b8251811015610c3957818181518110610be657610be6613d5e565b602002602001015160196000858481518110610c0457610c04613d5e565b602002602001015181526020019081526020016000209081610c269190613df4565b5080610c3181613ec9565b915050610bcb565b505050565b606060038054610c4d90613d74565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990613d74565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000610cdb8261281e565b610cf8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610d1f82611c6c565b9050806001600160a01b0316836001600160a01b031603610d535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d735750610d718133610a83565b155b15610d91576040516367d9dca160e11b815260040160405180910390fd5b610c39838383612857565b610da5816128b3565b60008111610dec5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b3e565b60185460ff16610e3e5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b3e565b82518451148015610e50575081518351145b610e6c5760405162461bcd60e51b8152600401610b3e90613ee2565b6000610e79858585610ee3565b9050803414610ebf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b3e565b610eca85858561290b565b610edc33610ed7856128b3565b612b94565b5050505050565b600082518451148015610ef7575081518351145b610f135760405162461bcd60e51b8152600401610b3e90613ee2565b6000805b855181101561150e576001868281518110610f3457610f34613d5e565b60200260200101516001600160401b031610158015610f7657506001858281518110610f6257610f62613d5e565b60200260200101516001600160401b031610155b8015610fa557506004858281518110610f9157610f91613d5e565b60200260200101516001600160401b031611155b610ff15760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420706c61796572204944206f722074797065000000000000006044820152606401610b3e565b84818151811061100357611003613d5e565b60200260200101516001600160401b031660010361110757600c5484828151811061103057611030613d5e565b60200260200101516001600160401b0316601b600089858151811061105757611057613d5e565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061108a5761108a613d5e565b60200260200101516001600160401b03168152602001908152602001600020546110b49190613f10565b11156111025760405162461bcd60e51b815260206004820152601d60248201527f436f6d6d6f6e204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b611475565b84818151811061111957611119613d5e565b60200260200101516001600160401b031660020361121857600d5484828151811061114657611146613d5e565b60200260200101516001600160401b0316601b600089858151811061116d5761116d613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106111a0576111a0613d5e565b60200260200101516001600160401b03168152602001908152602001600020546111ca9190613f10565b11156111025760405162461bcd60e51b815260206004820152601b60248201527f45706963204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b84818151811061122a5761122a613d5e565b60200260200101516001600160401b031660030361132957600e5484828151811061125757611257613d5e565b60200260200101516001600160401b0316601b600089858151811061127e5761127e613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106112b1576112b1613d5e565b60200260200101516001600160401b03168152602001908152602001600020546112db9190613f10565b11156111025760405162461bcd60e51b815260206004820152601b60248201527f476f6c64204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b84818151811061133b5761133b613d5e565b60200260200101516001600160401b031660040361143a57600f5484828151811061136857611368613d5e565b60200260200101516001600160401b0316601b600089858151811061138f5761138f613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106113c2576113c2613d5e565b60200260200101516001600160401b03168152602001908152602001600020546113ec9190613f10565b11156111025760405162461bcd60e51b815260206004820152601d60248201527f556e69717565204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964204e4654207479706560801b6044820152606401610b3e565b6114c386828151811061148a5761148a613d5e565b60200260200101516001600160401b03168683815181106114ad576114ad613d5e565b60200260200101516001600160401b0316612148565b8482815181106114d5576114d5613d5e565b60200260200101516001600160401b03166114f09190613f23565b6114fa9083613f10565b91508061150681613ec9565b915050610f17565b50949350505050565b826daaeb6d7670e522a718067333cd4e3b1561166257336001600160a01b0382160361154d57611548848484612bae565b61166d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561159c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c09190613f3a565b80156116435750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190613f3a565b61166257604051633b79c77360e21b8152336004820152602401610b3e565b61166d848484612bae565b50505050565b6000546001600160a01b0316331461169d5760405162461bcd60e51b8152600401610b3e90613d29565b60005b815181101561170e578181815181106116bb576116bb613d5e565b602002602001015160200151601a60008484815181106116dd576116dd613d5e565b602002602001015160000151815260200190815260200160002081905550808061170690613ec9565b9150506116a0565b5050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b8152600401610b3e90613d29565b601755565b6000546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610b3e90613d29565b601255565b6000546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610b3e90613d29565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146117e7576040519150601f19603f3d011682016040523d82523d6000602084013e6117ec565b606091505b50509050806117fa57600080fd5b50565b826daaeb6d7670e522a718067333cd4e3b1561194357336001600160a01b0382160361182e57611548848484612bb9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561187d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a19190613f3a565b80156119245750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119249190613f3a565b61194357604051633b79c77360e21b8152336004820152602401610b3e565b61166d848484612bb9565b61195781611bfb565b61199a5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b3e565b6119a381611c6c565b6001600160a01b0316336001600160a01b031614611a035760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b3e565b6117fa816000612bd4565b60606000611a1b83611de1565b90506000816001600160401b03811115611a3757611a37613588565b604051908082528060200260200182016040528015611a60578160200160208202803683370190505b509050600160005b83811015611ae857611a7982611bfb565b1515600103611ad6576000611a8d83611c6c565b9050866001600160a01b0316816001600160a01b031603611ad45782848381518110611abb57611abb613d5e565b602090810291909101015281611ad081613ec9565b9250505b505b81611ae081613ec9565b925050611a68565b5090949350505050565b6000546001600160a01b03163314611b1c5760405162461bcd60e51b8152600401610b3e90613d29565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b879190613f57565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190613f3a565b6000610b988261281e565b6000546001600160a01b03163314611c305760405162461bcd60e51b8152600401610b3e90613d29565b601655565b6000546001600160a01b03163314611c5f5760405162461bcd60e51b8152600401610b3e90613d29565b6009610c39828483613f70565b6000611c7782612d88565b5192915050565b6000818152601b6020908152604080832060018452909152812054600c5460609291611ca99161402f565b6000848152601b6020908152604080832060028452909152812054600d549293509091611cd6919061402f565b6000858152601b6020908152604080832060038452909152812054600e549293509091611d03919061402f565b6000868152601b6020908152604080832060048452909152812054600f549293509091611d30919061402f565b9050611d3b84612eaf565b611d4484612eaf565b611d4d84612eaf565b611d5684612eaf565b604051602001611d699493929190614042565b604051602081830303815290604052945050505050919050565b6000546001600160a01b03163314611dad5760405162461bcd60e51b8152600401610b3e90613d29565b601355565b6000546001600160a01b03163314611ddc5760405162461bcd60e51b8152600401610b3e90613d29565b601155565b60006001600160a01b038216611e0a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314611e595760405162461bcd60e51b8152600401610b3e90613d29565b611e62826128b3565b60008111611ea95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b3e565b83518551148015611ebb575082518451145b611ed75760405162461bcd60e51b8152600401610b3e90613ee2565b611ee2858585610ee3565b50611eee85858561290b565b610edc82610ed7856128b3565b6000546001600160a01b03163314611f255760405162461bcd60e51b8152600401610b3e90613d29565b601455565b600082600103611faf57600c546000858152601b60209081526040808320878452909152902054611f5c908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601d60248201527f436f6d6d6f6e204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b612129565b8260020361202d57600d546000858152601b60209081526040808320878452909152902054611fdf908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601b60248201527f45706963204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b826003036120ab57600e546000858152601b6020908152604080832087845290915290205461205d908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601b60248201527f476f6c64204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b8260040361143a57600f546000858152601b602090815260408083208784529091529020546120db908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601d60248201527f556e69717565204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b50506000918252601b6020908152604080842092845291905290205490565b60008060008360010361215f5760105491506121d1565b836002036121715760115491506121d1565b836003036121835760125491506121d1565b836004036121955760135491506121d1565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c69642063617264207479706560781b6044820152606401610b3e565b6000858152601a60205260409020546001036121f0575060145461228b565b6000858152601a602052604090205460020361220f575060155461228b565b6000858152601a602052604090205460030361222e575060165461228b565b6000858152601a602052604090205460040361224d575060175461228b565b60405162461bcd60e51b8152602060048201526013602482015272496e76616c6964207374617220726174696e6760681b6044820152606401610b3e565b60008183600a5461229c9190613f23565b6122a69190613f23565b9050670de0b6b3a76400006122bb81836140d0565b6122c591906140d0565b9695505050505050565b6000546001600160a01b031633146122f95760405162461bcd60e51b8152600401610b3e90613d29565b6018805460ff1916911515919091179055565b6000546001600160a01b031633146123365760405162461bcd60e51b8152600401610b3e90613d29565b600a55565b6019602052600090815260409020805461235490613d74565b80601f016020809104026020016040519081016040528092919081815260200182805461238090613d74565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b505050505081565b606060048054610c4d90613d74565b336001600160a01b0383160361240d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006124886001546000190190565b905090565b836daaeb6d7670e522a718067333cd4e3b156125d957336001600160a01b038216036124c4576124bf85858585612faf565b610edc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190613f3a565b80156125ba5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612596573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ba9190613f3a565b6125d957604051633b79c77360e21b8152336004820152602401610b3e565b610edc85858585612faf565b6000546001600160a01b0316331461260f5760405162461bcd60e51b8152600401610b3e90613d29565b601555565b606061261f8261281e565b6126835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b3e565b600061268d612ffa565b905060008151116126ad57604051806020016040528060008152506126e2565b80601960008581526020019081526020016000206040516020016126d29291906140e4565b6040516020818303038152906040525b9392505050565b600080826001036126fd5750600c5461272c565b8260020361270e5750600d5461272c565b8260030361271f5750600e5461272c565b826004036121955750600f545b6000848152601b60209081526040808320868452909152902054612750908261402f565b949350505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610b98565b6000546001600160a01b031633146127b05760405162461bcd60e51b8152600401610b3e90613d29565b6001600160a01b0381166128155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3e565b6117fa81613009565b600081600111158015612832575060015482105b8015610b98575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008060005b8351811015612904578381815181106128d4576128d4613d5e565b60200260200101516001600160401b0316826128f09190613f10565b9150806128fc81613ec9565b9150506128b9565b5092915050565b60015483516000905b80821015612b8c57600061298f87848151811061293357612933613d5e565b60200260200101516001600160401b031687858151811061295657612956613d5e565b60200260200101516001600160401b031687868151811061297957612979613d5e565b60200260200101516001600160401b0316611f2a565b905060008584815181106129a5576129a5613d5e565b6020026020010151905060006129dc8886815181106129c6576129c6613d5e565b60200260200101516001600160401b0316612eaf565b905060006129fd6129f88b88815181106129c6576129c6613d5e565b613059565b905060005b836001600160401b0316811015612a7957612a1e856001613f10565b94508183612a2b87612eaf565b604051602001612a3d9392919061417e565b60408051601f1981840301815291815260008a815260196020522090612a639082613df4565b50612a6f886001613f10565b9750600101612a02565b50878681518110612a8c57612a8c613d5e565b60200260200101516001600160401b0316601b60008c8981518110612ab357612ab3613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008b8981518110612ae657612ae6613d5e565b60200260200101516001600160401b031681526020019081526020016000206000828254612b149190613f10565b92505081905550878681518110612b2d57612b2d613d5e565b6020908102919091010151600b8054600090612b539084906001600160401b03166141c1565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550612b818660010190565b955050505050612914565b505050505050565b61170e8282604051806020016040528060008152506130c3565b610c398383836130d0565b610c398383836040518060200160405280600081525061248d565b6000612bdf83612d88565b80519091508215612c45576000336001600160a01b0383161480612c085750612c088233610a83565b80612c23575033612c1886610cd0565b6001600160a01b0316145b905080612c4357604051632ce44b5f60e11b815260040160405180910390fd5b505b612c5160008583612857565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116612d4f576001548214612d4f57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206142c4833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612db8575060015481105b15612e9657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612e945780516001600160a01b031615612e2b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612e8f579392505050565b612e2b565b505b604051636f96cda160e11b815260040160405180910390fd5b606081600003612ed65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612f005780612eea81613ec9565b9150612ef99050600a836140d0565b9150612eda565b6000816001600160401b03811115612f1a57612f1a613588565b6040519080825280601f01601f191660200182016040528015612f44576020820181803683370190505b5090505b841561275057612f5960018361402f565b9150612f66600a866141e1565b612f71906030613f10565b60f81b818381518110612f8657612f86613d5e565b60200101906001600160f81b031916908160001a905350612fa8600a866140d0565b9450612f48565b612fba8484846130d0565b6001600160a01b0383163b15158015612fdc5750612fda848484846132a9565b155b1561166d576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610c4d90613d74565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060815160010361308b578160405160200161307591906141f5565b6040516020818303038152906040529050919050565b81516002036130a557816040516020016130759190614220565b81516003036130bf5781604051602001613075919061424a565b5090565b610c398383836001613394565b60006130db82612d88565b9050836001600160a01b031681600001516001600160a01b0316146131125760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061313057506131308533610a83565b8061314b57503361314084610cd0565b6001600160a01b0316145b90508061316b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661319257604051633a954ecd60e21b815260040160405180910390fd5b61319e60008487612857565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661327257600154821461327257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206142c483398151915260405160405180910390a4610edc565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906132de903390899088908890600401614273565b6020604051808303816000875af1925050508015613319575060408051601f3d908101601f19168201909252613316918101906142a6565b60015b613377573d808015613347576040519150601f19603f3d011682016040523d82523d6000602084013e61334c565b606091505b50805160000361336f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001546001600160a01b0385166133bd57604051622e076360e81b815260040160405180910390fd5b836000036133de5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561348a57506001600160a01b0387163b15155b15613500575b60405182906001600160a01b038916906000906000805160206142c4833981519152908290a46134c960008884806001019550886132a9565b6134e6576040516368d2bf6b60e11b815260040160405180910390fd5b8082036134905782600154146134fb57600080fd5b613533565b5b6040516001830192906001600160a01b038916906000906000805160206142c4833981519152908290a4808203613501575b50600155610edc565b60006020828403121561354e57600080fd5b5035919050565b6001600160e01b0319811681146117fa57600080fd5b60006020828403121561357d57600080fd5b81356126e281613555565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156135c0576135c0613588565b60405290565b604051601f8201601f191681016001600160401b03811182821017156135ee576135ee613588565b604052919050565b60006001600160401b0382111561360f5761360f613588565b5060051b60200190565b60006001600160401b0383111561363257613632613588565b613645601f8401601f19166020016135c6565b905082815283838301111561365957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261368157600080fd5b81356020613696613691836135f6565b6135c6565b82815260059290921b840181019181810190868411156136b557600080fd5b8286015b848110156137095780356001600160401b038111156136d85760008081fd5b8701603f810189136136ea5760008081fd5b6136fb898683013560408401613619565b8452509183019183016136b9565b509695505050505050565b6000806040838503121561372757600080fd5b82356001600160401b038082111561373e57600080fd5b818501915085601f83011261375257600080fd5b81356020613762613691836135f6565b82815260059290921b8401810191818101908984111561378157600080fd5b948201945b8386101561379f57853582529482019490820190613786565b965050860135925050808211156137b557600080fd5b506137c285828601613670565b9150509250929050565b60005b838110156137e75781810151838201526020016137cf565b50506000910152565b600081518084526138088160208601602086016137cc565b601f01601f19169290920160200192915050565b6020815260006126e260208301846137f0565b6001600160a01b03811681146117fa57600080fd5b6000806040838503121561385757600080fd5b82356138628161382f565b946020939093013593505050565b600082601f83011261388157600080fd5b81356020613891613691836135f6565b82815260059290921b840181019181810190868411156138b057600080fd5b8286015b848110156137095780356001600160401b03811681146138d45760008081fd5b83529183019183016138b4565b6000806000606084860312156138f657600080fd5b83356001600160401b038082111561390d57600080fd5b61391987838801613870565b9450602086013591508082111561392f57600080fd5b61393b87838801613870565b9350604086013591508082111561395157600080fd5b5061395e86828701613870565b9150509250925092565b60008060006060848603121561397d57600080fd5b83356139888161382f565b925060208401356139988161382f565b929592945050506040919091013590565b600060208083850312156139bc57600080fd5b82356001600160401b038111156139d257600080fd5b8301601f810185136139e357600080fd5b80356139f1613691826135f6565b81815260069190911b82018301908381019087831115613a1057600080fd5b928401925b82841015613a535760408489031215613a2e5760008081fd5b613a3661359e565b843581528585013586820152825260409093019290840190613a15565b979650505050505050565b600060208284031215613a7057600080fd5b81356126e28161382f565b6020808252825182820181905260009190848201906040850190845b81811015613ab357835183529284019291840191600101613a97565b50909695505050505050565b60008060208385031215613ad257600080fd5b82356001600160401b0380821115613ae957600080fd5b818501915085601f830112613afd57600080fd5b813581811115613b0c57600080fd5b866020828501011115613b1e57600080fd5b60209290920196919550909350505050565b60008060008060808587031215613b4657600080fd5b84356001600160401b0380821115613b5d57600080fd5b613b6988838901613870565b95506020870135915080821115613b7f57600080fd5b613b8b88838901613870565b94506040870135915080821115613ba157600080fd5b50613bae87828801613870565b9250506060850135613bbf8161382f565b939692955090935050565b600080600060608486031215613bdf57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613c0957600080fd5b50508035926020909101359150565b80151581146117fa57600080fd5b600060208284031215613c3857600080fd5b81356126e281613c18565b60008060408385031215613c5657600080fd5b8235613c618161382f565b91506020830135613c7181613c18565b809150509250929050565b60008060008060808587031215613c9257600080fd5b8435613c9d8161382f565b93506020850135613cad8161382f565b92506040850135915060608501356001600160401b03811115613ccf57600080fd5b8501601f81018713613ce057600080fd5b613cef87823560208401613619565b91505092959194509250565b60008060408385031215613d0e57600080fd5b8235613d198161382f565b91506020830135613c718161382f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613d8857607f821691505b602082108103613da857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c3957600081815260208120601f850160051c81016020861015613dd55750805b601f850160051c820191505b81811015612b8c57828155600101613de1565b81516001600160401b03811115613e0d57613e0d613588565b613e2181613e1b8454613d74565b84613dae565b602080601f831160018114613e565760008415613e3e5750858301515b600019600386901b1c1916600185901b178555612b8c565b600085815260208120601f198616915b82811015613e8557888601518255948401946001909101908401613e66565b5085821015613ea35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201613edb57613edb613eb3565b5060010190565b602080825260149082015273496e76616c696420696e7075742061727261797360601b604082015260600190565b80820180821115610b9857610b98613eb3565b8082028115828204841417610b9857610b98613eb3565b600060208284031215613f4c57600080fd5b81516126e281613c18565b600060208284031215613f6957600080fd5b5051919050565b6001600160401b03831115613f8757613f87613588565b613f9b83613f958354613d74565b83613dae565b6000601f841160018114613fcf5760008515613fb75750838201355b600019600387901b1c1916600186901b178355610edc565b600083815260209020601f19861690835b828110156140005786850135825560209485019460019092019101613fe0565b508682101561401d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610b9857610b98613eb3565b60008551614054818460208a016137cc565b8083019050600b60fa1b8082528651614074816001850160208b016137cc565b600192019182018190528551614091816002850160208a016137cc565b600292019182015283516140ac8160038401602088016137cc565b016003019695505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826140df576140df6140ba565b500490565b6000835160206140f782858389016137cc565b81840191506000855461410981613d74565b60018281168015614121576001811461413657614162565b60ff1984168752821515830287019450614162565b896000528560002060005b8481101561415a57815489820152908301908701614141565b505082870194505b505064173539b7b760d91b835250506005019695505050505050565b600084516141908184602089016137cc565b8451908301906141a48183602089016137cc565b84519101906141b78183602088016137cc565b0195945050505050565b6001600160401b0381811683821601908082111561290457612904613eb3565b6000826141f0576141f06140ba565b500690565b6203030360ec1b8152600082516142138160038501602087016137cc565b9190910160030192915050565b61030360f41b81526000825161423d8160028501602087016137cc565b9190910160020192915050565b600360fc1b8152600082516142668160018501602087016137cc565b9190910160010192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c5908301846137f0565b6000602082840312156142b857600080fd5b81516126e28161355556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122031ce2cef3066bd23d55eaeaa6cfa96e6c79e77cca44e4166219baea6494ce5b964736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103765760003560e01c80636976117d116101cf578063a2309ff811610101578063c87b56dd1161009a578063e985e9c51161006c578063e985e9c514610a68578063f2fde38b14610ab1578063fa1d1e3d14610ad1578063fa97ecda14610ae757005b8063c87b56dd146109f2578063d32a98a214610a12578063dac090ff14610a32578063dc33e68114610a4857005b8063bc8893b4116100d3578063bc8893b41461096a578063c2458d6b14610984578063c41a2747146109bc578063c454a38e146109dc57005b8063a2309ff8146108e7578063a9ae214c146108fc578063b88d4fde14610912578063b985add81461093257005b80638836fe01116101735780638e1f0dcb116101455780638e1f0dcb1461087c57806395d89b411461089c57806399e3e34e146108b1578063a22cb465146108c757005b80638836fe01146107fe5780638aca408c1461081e5780638da5cb5b1461083e5780638dbb7c061461085c57005b806370a08231116101ac57806370a082311461077e57806372d973661461079e578063788a76e2146107be5780637ff6be5f146107de57005b80636976117d146107285780636bff2f471461073e5780636e2aa8f41461075e57005b80633a672bfa116102a8578063453afb0f1161024c57806355f804b31161021e57806355f804b3146106b257806362c75387146106d25780636352211e146106e85780636732e9741461070857005b8063453afb0f1461063c57806349df728c146106525780634f558e7914610672578063553448cf1461069257005b806342842e0e1161028557806342842e0e146105b957806342966c68146105d9578063438b6300146105f957806344e6fdd61461062657005b80633a672bfa1461056e5780633ccfd60b1461058e5780633fc56708146105a357005b8063124d05501161031a57806332ce703c116102ec57806332ce703c1461050c5780633355ef5e146105225780633799479a1461054257806338cc28ca1461055857005b8063124d05501461048157806318160ddd146104af57806323b872dd146104cc578063327b352b146104ec57005b806306fdde031161035357806306fdde03146103f4578063081812fc14610416578063095ea7b31461044e5780630b8ca50f1461046e57005b8063011ff41f1461037f57806301ffc9a71461039f57806306733bec146103d457005b3661037d57005b005b34801561038b57600080fd5b5061037d61039a36600461353c565b610b14565b3480156103ab57600080fd5b506103bf6103ba36600461356b565b610b4c565b60405190151581526020015b60405180910390f35b3480156103e057600080fd5b5061037d6103ef366004613714565b610b9e565b34801561040057600080fd5b50610409610c3e565b6040516103cb919061381c565b34801561042257600080fd5b5061043661043136600461353c565b610cd0565b6040516001600160a01b0390911681526020016103cb565b34801561045a57600080fd5b5061037d610469366004613844565b610d14565b61037d61047c3660046138e1565b610d9c565b34801561048d57600080fd5b506104a161049c3660046138e1565b610ee3565b6040519081526020016103cb565b3480156104bb57600080fd5b5060025460015403600019016104a1565b3480156104d857600080fd5b5061037d6104e7366004613968565b611517565b3480156104f857600080fd5b5061037d6105073660046139a9565b611673565b34801561051857600080fd5b506104a160135481565b34801561052e57600080fd5b5061037d61053d36600461353c565b611712565b34801561054e57600080fd5b506104a1600d5481565b34801561056457600080fd5b506104a160155481565b34801561057a57600080fd5b5061037d61058936600461353c565b611741565b34801561059a57600080fd5b5061037d611770565b3480156105af57600080fd5b506104a1600f5481565b3480156105c557600080fd5b5061037d6105d4366004613968565b6117fd565b3480156105e557600080fd5b5061037d6105f436600461353c565b61194e565b34801561060557600080fd5b50610619610614366004613a5e565b611a0e565b6040516103cb9190613a7b565b34801561063257600080fd5b506104a160115481565b34801561064857600080fd5b506104a1600a5481565b34801561065e57600080fd5b5061037d61066d366004613a5e565b611af2565b34801561067e57600080fd5b506103bf61068d36600461353c565b611bfb565b34801561069e57600080fd5b5061037d6106ad36600461353c565b611c06565b3480156106be57600080fd5b5061037d6106cd366004613abf565b611c35565b3480156106de57600080fd5b506104a160125481565b3480156106f457600080fd5b5061043661070336600461353c565b611c6c565b34801561071457600080fd5b5061040961072336600461353c565b611c7e565b34801561073457600080fd5b506104a1600c5481565b34801561074a57600080fd5b5061037d61075936600461353c565b611d83565b34801561076a57600080fd5b5061037d61077936600461353c565b611db2565b34801561078a57600080fd5b506104a1610799366004613a5e565b611de1565b3480156107aa57600080fd5b5061037d6107b9366004613b30565b611e2f565b3480156107ca57600080fd5b5061037d6107d936600461353c565b611efb565b3480156107ea57600080fd5b506104a16107f9366004613bca565b611f2a565b34801561080a57600080fd5b506104a1610819366004613bf6565b612148565b34801561082a57600080fd5b5061037d610839366004613c26565b6122cf565b34801561084a57600080fd5b506000546001600160a01b0316610436565b34801561086857600080fd5b5061037d61087736600461353c565b61230c565b34801561088857600080fd5b5061040961089736600461353c565b61233b565b3480156108a857600080fd5b506104096123d5565b3480156108bd57600080fd5b506104a160175481565b3480156108d357600080fd5b5061037d6108e2366004613c43565b6123e4565b3480156108f357600080fd5b506104a1612479565b34801561090857600080fd5b506104a160105481565b34801561091e57600080fd5b5061037d61092d366004613c7c565b61248d565b34801561093e57600080fd5b50600b54610952906001600160401b031681565b6040516001600160401b0390911681526020016103cb565b34801561097657600080fd5b506018546103bf9060ff1681565b34801561099057600080fd5b506104a161099f366004613bf6565b601b60209081526000928352604080842090915290825290205481565b3480156109c857600080fd5b5061037d6109d736600461353c565b6125e5565b3480156109e857600080fd5b506104a160145481565b3480156109fe57600080fd5b50610409610a0d36600461353c565b612614565b348015610a1e57600080fd5b506104a1610a2d366004613bf6565b6126e9565b348015610a3e57600080fd5b506104a1600e5481565b348015610a5457600080fd5b506104a1610a63366004613a5e565b612758565b348015610a7457600080fd5b506103bf610a83366004613cfb565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610abd57600080fd5b5061037d610acc366004613a5e565b612786565b348015610add57600080fd5b506104a160165481565b348015610af357600080fd5b506104a1610b0236600461353c565b601a6020526000908152604090205481565b6000546001600160a01b03163314610b475760405162461bcd60e51b8152600401610b3e90613d29565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b1480610b7d57506001600160e01b03198216635b5e139f60e01b145b80610b9857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610b3e90613d29565b60005b8251811015610c3957818181518110610be657610be6613d5e565b602002602001015160196000858481518110610c0457610c04613d5e565b602002602001015181526020019081526020016000209081610c269190613df4565b5080610c3181613ec9565b915050610bcb565b505050565b606060038054610c4d90613d74565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7990613d74565b8015610cc65780601f10610c9b57610100808354040283529160200191610cc6565b820191906000526020600020905b815481529060010190602001808311610ca957829003601f168201915b5050505050905090565b6000610cdb8261281e565b610cf8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610d1f82611c6c565b9050806001600160a01b0316836001600160a01b031603610d535760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d735750610d718133610a83565b155b15610d91576040516367d9dca160e11b815260040160405180910390fd5b610c39838383612857565b610da5816128b3565b60008111610dec5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b3e565b60185460ff16610e3e5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610b3e565b82518451148015610e50575081518351145b610e6c5760405162461bcd60e51b8152600401610b3e90613ee2565b6000610e79858585610ee3565b9050803414610ebf5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610b3e565b610eca85858561290b565b610edc33610ed7856128b3565b612b94565b5050505050565b600082518451148015610ef7575081518351145b610f135760405162461bcd60e51b8152600401610b3e90613ee2565b6000805b855181101561150e576001868281518110610f3457610f34613d5e565b60200260200101516001600160401b031610158015610f7657506001858281518110610f6257610f62613d5e565b60200260200101516001600160401b031610155b8015610fa557506004858281518110610f9157610f91613d5e565b60200260200101516001600160401b031611155b610ff15760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420706c61796572204944206f722074797065000000000000006044820152606401610b3e565b84818151811061100357611003613d5e565b60200260200101516001600160401b031660010361110757600c5484828151811061103057611030613d5e565b60200260200101516001600160401b0316601b600089858151811061105757611057613d5e565b60200260200101516001600160401b03168152602001908152602001600020600088858151811061108a5761108a613d5e565b60200260200101516001600160401b03168152602001908152602001600020546110b49190613f10565b11156111025760405162461bcd60e51b815260206004820152601d60248201527f436f6d6d6f6e204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b611475565b84818151811061111957611119613d5e565b60200260200101516001600160401b031660020361121857600d5484828151811061114657611146613d5e565b60200260200101516001600160401b0316601b600089858151811061116d5761116d613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106111a0576111a0613d5e565b60200260200101516001600160401b03168152602001908152602001600020546111ca9190613f10565b11156111025760405162461bcd60e51b815260206004820152601b60248201527f45706963204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b84818151811061122a5761122a613d5e565b60200260200101516001600160401b031660030361132957600e5484828151811061125757611257613d5e565b60200260200101516001600160401b0316601b600089858151811061127e5761127e613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106112b1576112b1613d5e565b60200260200101516001600160401b03168152602001908152602001600020546112db9190613f10565b11156111025760405162461bcd60e51b815260206004820152601b60248201527f476f6c64204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b84818151811061133b5761133b613d5e565b60200260200101516001600160401b031660040361143a57600f5484828151811061136857611368613d5e565b60200260200101516001600160401b0316601b600089858151811061138f5761138f613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008885815181106113c2576113c2613d5e565b60200260200101516001600160401b03168152602001908152602001600020546113ec9190613f10565b11156111025760405162461bcd60e51b815260206004820152601d60248201527f556e69717565204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964204e4654207479706560801b6044820152606401610b3e565b6114c386828151811061148a5761148a613d5e565b60200260200101516001600160401b03168683815181106114ad576114ad613d5e565b60200260200101516001600160401b0316612148565b8482815181106114d5576114d5613d5e565b60200260200101516001600160401b03166114f09190613f23565b6114fa9083613f10565b91508061150681613ec9565b915050610f17565b50949350505050565b826daaeb6d7670e522a718067333cd4e3b1561166257336001600160a01b0382160361154d57611548848484612bae565b61166d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561159c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c09190613f3a565b80156116435750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190613f3a565b61166257604051633b79c77360e21b8152336004820152602401610b3e565b61166d848484612bae565b50505050565b6000546001600160a01b0316331461169d5760405162461bcd60e51b8152600401610b3e90613d29565b60005b815181101561170e578181815181106116bb576116bb613d5e565b602002602001015160200151601a60008484815181106116dd576116dd613d5e565b602002602001015160000151815260200190815260200160002081905550808061170690613ec9565b9150506116a0565b5050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b8152600401610b3e90613d29565b601755565b6000546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610b3e90613d29565b601255565b6000546001600160a01b0316331461179a5760405162461bcd60e51b8152600401610b3e90613d29565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146117e7576040519150601f19603f3d011682016040523d82523d6000602084013e6117ec565b606091505b50509050806117fa57600080fd5b50565b826daaeb6d7670e522a718067333cd4e3b1561194357336001600160a01b0382160361182e57611548848484612bb9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561187d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a19190613f3a565b80156119245750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119249190613f3a565b61194357604051633b79c77360e21b8152336004820152602401610b3e565b61166d848484612bb9565b61195781611bfb565b61199a5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b3e565b6119a381611c6c565b6001600160a01b0316336001600160a01b031614611a035760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b3e565b6117fa816000612bd4565b60606000611a1b83611de1565b90506000816001600160401b03811115611a3757611a37613588565b604051908082528060200260200182016040528015611a60578160200160208202803683370190505b509050600160005b83811015611ae857611a7982611bfb565b1515600103611ad6576000611a8d83611c6c565b9050866001600160a01b0316816001600160a01b031603611ad45782848381518110611abb57611abb613d5e565b602090810291909101015281611ad081613ec9565b9250505b505b81611ae081613ec9565b925050611a68565b5090949350505050565b6000546001600160a01b03163314611b1c5760405162461bcd60e51b8152600401610b3e90613d29565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b879190613f57565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c399190613f3a565b6000610b988261281e565b6000546001600160a01b03163314611c305760405162461bcd60e51b8152600401610b3e90613d29565b601655565b6000546001600160a01b03163314611c5f5760405162461bcd60e51b8152600401610b3e90613d29565b6009610c39828483613f70565b6000611c7782612d88565b5192915050565b6000818152601b6020908152604080832060018452909152812054600c5460609291611ca99161402f565b6000848152601b6020908152604080832060028452909152812054600d549293509091611cd6919061402f565b6000858152601b6020908152604080832060038452909152812054600e549293509091611d03919061402f565b6000868152601b6020908152604080832060048452909152812054600f549293509091611d30919061402f565b9050611d3b84612eaf565b611d4484612eaf565b611d4d84612eaf565b611d5684612eaf565b604051602001611d699493929190614042565b604051602081830303815290604052945050505050919050565b6000546001600160a01b03163314611dad5760405162461bcd60e51b8152600401610b3e90613d29565b601355565b6000546001600160a01b03163314611ddc5760405162461bcd60e51b8152600401610b3e90613d29565b601155565b60006001600160a01b038216611e0a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314611e595760405162461bcd60e51b8152600401610b3e90613d29565b611e62826128b3565b60008111611ea95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b3e565b83518551148015611ebb575082518451145b611ed75760405162461bcd60e51b8152600401610b3e90613ee2565b611ee2858585610ee3565b50611eee85858561290b565b610edc82610ed7856128b3565b6000546001600160a01b03163314611f255760405162461bcd60e51b8152600401610b3e90613d29565b601455565b600082600103611faf57600c546000858152601b60209081526040808320878452909152902054611f5c908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601d60248201527f436f6d6d6f6e204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b612129565b8260020361202d57600d546000858152601b60209081526040808320878452909152902054611fdf908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601b60248201527f45706963204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b826003036120ab57600e546000858152601b6020908152604080832087845290915290205461205d908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601b60248201527f476f6c64204e4654206d617820737570706c79207265616368656400000000006044820152606401610b3e565b8260040361143a57600f546000858152601b602090815260408083208784529091529020546120db908490613f10565b1115611faa5760405162461bcd60e51b815260206004820152601d60248201527f556e69717565204e4654206d617820737570706c7920726561636865640000006044820152606401610b3e565b50506000918252601b6020908152604080842092845291905290205490565b60008060008360010361215f5760105491506121d1565b836002036121715760115491506121d1565b836003036121835760125491506121d1565b836004036121955760135491506121d1565b60405162461bcd60e51b8152602060048201526011602482015270496e76616c69642063617264207479706560781b6044820152606401610b3e565b6000858152601a60205260409020546001036121f0575060145461228b565b6000858152601a602052604090205460020361220f575060155461228b565b6000858152601a602052604090205460030361222e575060165461228b565b6000858152601a602052604090205460040361224d575060175461228b565b60405162461bcd60e51b8152602060048201526013602482015272496e76616c6964207374617220726174696e6760681b6044820152606401610b3e565b60008183600a5461229c9190613f23565b6122a69190613f23565b9050670de0b6b3a76400006122bb81836140d0565b6122c591906140d0565b9695505050505050565b6000546001600160a01b031633146122f95760405162461bcd60e51b8152600401610b3e90613d29565b6018805460ff1916911515919091179055565b6000546001600160a01b031633146123365760405162461bcd60e51b8152600401610b3e90613d29565b600a55565b6019602052600090815260409020805461235490613d74565b80601f016020809104026020016040519081016040528092919081815260200182805461238090613d74565b80156123cd5780601f106123a2576101008083540402835291602001916123cd565b820191906000526020600020905b8154815290600101906020018083116123b057829003601f168201915b505050505081565b606060048054610c4d90613d74565b336001600160a01b0383160361240d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006124886001546000190190565b905090565b836daaeb6d7670e522a718067333cd4e3b156125d957336001600160a01b038216036124c4576124bf85858585612faf565b610edc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190613f3a565b80156125ba5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612596573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ba9190613f3a565b6125d957604051633b79c77360e21b8152336004820152602401610b3e565b610edc85858585612faf565b6000546001600160a01b0316331461260f5760405162461bcd60e51b8152600401610b3e90613d29565b601555565b606061261f8261281e565b6126835760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b3e565b600061268d612ffa565b905060008151116126ad57604051806020016040528060008152506126e2565b80601960008581526020019081526020016000206040516020016126d29291906140e4565b6040516020818303038152906040525b9392505050565b600080826001036126fd5750600c5461272c565b8260020361270e5750600d5461272c565b8260030361271f5750600e5461272c565b826004036121955750600f545b6000848152601b60209081526040808320868452909152902054612750908261402f565b949350505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610b98565b6000546001600160a01b031633146127b05760405162461bcd60e51b8152600401610b3e90613d29565b6001600160a01b0381166128155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3e565b6117fa81613009565b600081600111158015612832575060015482105b8015610b98575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008060005b8351811015612904578381815181106128d4576128d4613d5e565b60200260200101516001600160401b0316826128f09190613f10565b9150806128fc81613ec9565b9150506128b9565b5092915050565b60015483516000905b80821015612b8c57600061298f87848151811061293357612933613d5e565b60200260200101516001600160401b031687858151811061295657612956613d5e565b60200260200101516001600160401b031687868151811061297957612979613d5e565b60200260200101516001600160401b0316611f2a565b905060008584815181106129a5576129a5613d5e565b6020026020010151905060006129dc8886815181106129c6576129c6613d5e565b60200260200101516001600160401b0316612eaf565b905060006129fd6129f88b88815181106129c6576129c6613d5e565b613059565b905060005b836001600160401b0316811015612a7957612a1e856001613f10565b94508183612a2b87612eaf565b604051602001612a3d9392919061417e565b60408051601f1981840301815291815260008a815260196020522090612a639082613df4565b50612a6f886001613f10565b9750600101612a02565b50878681518110612a8c57612a8c613d5e565b60200260200101516001600160401b0316601b60008c8981518110612ab357612ab3613d5e565b60200260200101516001600160401b0316815260200190815260200160002060008b8981518110612ae657612ae6613d5e565b60200260200101516001600160401b031681526020019081526020016000206000828254612b149190613f10565b92505081905550878681518110612b2d57612b2d613d5e565b6020908102919091010151600b8054600090612b539084906001600160401b03166141c1565b92506101000a8154816001600160401b0302191690836001600160401b03160217905550612b818660010190565b955050505050612914565b505050505050565b61170e8282604051806020016040528060008152506130c3565b610c398383836130d0565b610c398383836040518060200160405280600081525061248d565b6000612bdf83612d88565b80519091508215612c45576000336001600160a01b0383161480612c085750612c088233610a83565b80612c23575033612c1886610cd0565b6001600160a01b0316145b905080612c4357604051632ce44b5f60e11b815260040160405180910390fd5b505b612c5160008583612857565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116612d4f576001548214612d4f57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206142c4833981519152908390a450506002805460010190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612db8575060015481105b15612e9657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612e945780516001600160a01b031615612e2b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612e8f579392505050565b612e2b565b505b604051636f96cda160e11b815260040160405180910390fd5b606081600003612ed65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612f005780612eea81613ec9565b9150612ef99050600a836140d0565b9150612eda565b6000816001600160401b03811115612f1a57612f1a613588565b6040519080825280601f01601f191660200182016040528015612f44576020820181803683370190505b5090505b841561275057612f5960018361402f565b9150612f66600a866141e1565b612f71906030613f10565b60f81b818381518110612f8657612f86613d5e565b60200101906001600160f81b031916908160001a905350612fa8600a866140d0565b9450612f48565b612fba8484846130d0565b6001600160a01b0383163b15158015612fdc5750612fda848484846132a9565b155b1561166d576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610c4d90613d74565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060815160010361308b578160405160200161307591906141f5565b6040516020818303038152906040529050919050565b81516002036130a557816040516020016130759190614220565b81516003036130bf5781604051602001613075919061424a565b5090565b610c398383836001613394565b60006130db82612d88565b9050836001600160a01b031681600001516001600160a01b0316146131125760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061313057506131308533610a83565b8061314b57503361314084610cd0565b6001600160a01b0316145b90508061316b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661319257604051633a954ecd60e21b815260040160405180910390fd5b61319e60008487612857565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661327257600154821461327257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206142c483398151915260405160405180910390a4610edc565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906132de903390899088908890600401614273565b6020604051808303816000875af1925050508015613319575060408051601f3d908101601f19168201909252613316918101906142a6565b60015b613377573d808015613347576040519150601f19603f3d011682016040523d82523d6000602084013e61334c565b606091505b50805160000361336f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001546001600160a01b0385166133bd57604051622e076360e81b815260040160405180910390fd5b836000036133de5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561348a57506001600160a01b0387163b15155b15613500575b60405182906001600160a01b038916906000906000805160206142c4833981519152908290a46134c960008884806001019550886132a9565b6134e6576040516368d2bf6b60e11b815260040160405180910390fd5b8082036134905782600154146134fb57600080fd5b613533565b5b6040516001830192906001600160a01b038916906000906000805160206142c4833981519152908290a4808203613501575b50600155610edc565b60006020828403121561354e57600080fd5b5035919050565b6001600160e01b0319811681146117fa57600080fd5b60006020828403121561357d57600080fd5b81356126e281613555565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156135c0576135c0613588565b60405290565b604051601f8201601f191681016001600160401b03811182821017156135ee576135ee613588565b604052919050565b60006001600160401b0382111561360f5761360f613588565b5060051b60200190565b60006001600160401b0383111561363257613632613588565b613645601f8401601f19166020016135c6565b905082815283838301111561365957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261368157600080fd5b81356020613696613691836135f6565b6135c6565b82815260059290921b840181019181810190868411156136b557600080fd5b8286015b848110156137095780356001600160401b038111156136d85760008081fd5b8701603f810189136136ea5760008081fd5b6136fb898683013560408401613619565b8452509183019183016136b9565b509695505050505050565b6000806040838503121561372757600080fd5b82356001600160401b038082111561373e57600080fd5b818501915085601f83011261375257600080fd5b81356020613762613691836135f6565b82815260059290921b8401810191818101908984111561378157600080fd5b948201945b8386101561379f57853582529482019490820190613786565b965050860135925050808211156137b557600080fd5b506137c285828601613670565b9150509250929050565b60005b838110156137e75781810151838201526020016137cf565b50506000910152565b600081518084526138088160208601602086016137cc565b601f01601f19169290920160200192915050565b6020815260006126e260208301846137f0565b6001600160a01b03811681146117fa57600080fd5b6000806040838503121561385757600080fd5b82356138628161382f565b946020939093013593505050565b600082601f83011261388157600080fd5b81356020613891613691836135f6565b82815260059290921b840181019181810190868411156138b057600080fd5b8286015b848110156137095780356001600160401b03811681146138d45760008081fd5b83529183019183016138b4565b6000806000606084860312156138f657600080fd5b83356001600160401b038082111561390d57600080fd5b61391987838801613870565b9450602086013591508082111561392f57600080fd5b61393b87838801613870565b9350604086013591508082111561395157600080fd5b5061395e86828701613870565b9150509250925092565b60008060006060848603121561397d57600080fd5b83356139888161382f565b925060208401356139988161382f565b929592945050506040919091013590565b600060208083850312156139bc57600080fd5b82356001600160401b038111156139d257600080fd5b8301601f810185136139e357600080fd5b80356139f1613691826135f6565b81815260069190911b82018301908381019087831115613a1057600080fd5b928401925b82841015613a535760408489031215613a2e5760008081fd5b613a3661359e565b843581528585013586820152825260409093019290840190613a15565b979650505050505050565b600060208284031215613a7057600080fd5b81356126e28161382f565b6020808252825182820181905260009190848201906040850190845b81811015613ab357835183529284019291840191600101613a97565b50909695505050505050565b60008060208385031215613ad257600080fd5b82356001600160401b0380821115613ae957600080fd5b818501915085601f830112613afd57600080fd5b813581811115613b0c57600080fd5b866020828501011115613b1e57600080fd5b60209290920196919550909350505050565b60008060008060808587031215613b4657600080fd5b84356001600160401b0380821115613b5d57600080fd5b613b6988838901613870565b95506020870135915080821115613b7f57600080fd5b613b8b88838901613870565b94506040870135915080821115613ba157600080fd5b50613bae87828801613870565b9250506060850135613bbf8161382f565b939692955090935050565b600080600060608486031215613bdf57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613c0957600080fd5b50508035926020909101359150565b80151581146117fa57600080fd5b600060208284031215613c3857600080fd5b81356126e281613c18565b60008060408385031215613c5657600080fd5b8235613c618161382f565b91506020830135613c7181613c18565b809150509250929050565b60008060008060808587031215613c9257600080fd5b8435613c9d8161382f565b93506020850135613cad8161382f565b92506040850135915060608501356001600160401b03811115613ccf57600080fd5b8501601f81018713613ce057600080fd5b613cef87823560208401613619565b91505092959194509250565b60008060408385031215613d0e57600080fd5b8235613d198161382f565b91506020830135613c718161382f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613d8857607f821691505b602082108103613da857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c3957600081815260208120601f850160051c81016020861015613dd55750805b601f850160051c820191505b81811015612b8c57828155600101613de1565b81516001600160401b03811115613e0d57613e0d613588565b613e2181613e1b8454613d74565b84613dae565b602080601f831160018114613e565760008415613e3e5750858301515b600019600386901b1c1916600185901b178555612b8c565b600085815260208120601f198616915b82811015613e8557888601518255948401946001909101908401613e66565b5085821015613ea35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201613edb57613edb613eb3565b5060010190565b602080825260149082015273496e76616c696420696e7075742061727261797360601b604082015260600190565b80820180821115610b9857610b98613eb3565b8082028115828204841417610b9857610b98613eb3565b600060208284031215613f4c57600080fd5b81516126e281613c18565b600060208284031215613f6957600080fd5b5051919050565b6001600160401b03831115613f8757613f87613588565b613f9b83613f958354613d74565b83613dae565b6000601f841160018114613fcf5760008515613fb75750838201355b600019600387901b1c1916600186901b178355610edc565b600083815260209020601f19861690835b828110156140005786850135825560209485019460019092019101613fe0565b508682101561401d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610b9857610b98613eb3565b60008551614054818460208a016137cc565b8083019050600b60fa1b8082528651614074816001850160208b016137cc565b600192019182018190528551614091816002850160208a016137cc565b600292019182015283516140ac8160038401602088016137cc565b016003019695505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826140df576140df6140ba565b500490565b6000835160206140f782858389016137cc565b81840191506000855461410981613d74565b60018281168015614121576001811461413657614162565b60ff1984168752821515830287019450614162565b896000528560002060005b8481101561415a57815489820152908301908701614141565b505082870194505b505064173539b7b760d91b835250506005019695505050505050565b600084516141908184602089016137cc565b8451908301906141a48183602089016137cc565b84519101906141b78183602088016137cc565b0195945050505050565b6001600160401b0381811683821601908082111561290457612904613eb3565b6000826141f0576141f06140ba565b500690565b6203030360ec1b8152600082516142138160038501602087016137cc565b9190910160030192915050565b61030360f41b81526000825161423d8160028501602087016137cc565b9190910160020192915050565b600360fc1b8152600082516142668160018501602087016137cc565b9190910160010192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c5908301846137f0565b6000602082840312156142b857600080fd5b81516126e28161355556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122031ce2cef3066bd23d55eaeaa6cfa96e6c79e77cca44e4166219baea6494ce5b964736f6c63430008120033

Deployed Bytecode Sourcemap

57657:16599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72523:124;;;;;;;;;;-1:-1:-1;72523:124:0;;;;;:::i;:::-;;:::i;33961:321::-;;;;;;;;;;-1:-1:-1;33961:321:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;33961:321:0;;;;;;;;73520:195;;;;;;;;;;-1:-1:-1;73520:195:0;;;;;:::i;:::-;;:::i;37178:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38782:220::-;;;;;;;;;;-1:-1:-1;38782:220:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5219:32:1;;;5201:51;;5189:2;5174:18;38782:220:0;5055:203:1;38337:373:0;;;;;;;;;;-1:-1:-1;38337:373:0;;;;;:::i;:::-;;:::i;66041:903::-;;;;;;:::i;:::-;;:::i;60757:2172::-;;;;;;;;;;-1:-1:-1;60757:2172:0;;;;;:::i;:::-;;:::i;:::-;;;7534:25:1;;;7522:2;7507:18;60757:2172:0;7388:177:1;33190:307:0;;;;;;;;;;-1:-1:-1;33448:12:0;;33041:1;33432:13;:28;-1:-1:-1;;33432:46:0;33190:307;;70226:197;;;;;;;;;;-1:-1:-1;70226:197:0;;;;;:::i;:::-;;:::i;59150:304::-;;;;;;;;;;-1:-1:-1;59150:304:0;;;;;:::i;:::-;;:::i;58267:46::-;;;;;;;;;;;;;;;;73407:100;;;;;;;;;;-1:-1:-1;73407:100:0;;;;;:::i;:::-;;:::i;57963:34::-;;;;;;;;;;;;;;;;58424:44;;;;;;;;;;;;;;;;72779:116;;;;;;;;;;-1:-1:-1;72779:116:0;;;;;:::i;:::-;;:::i;73830:147::-;;;;;;;;;;;;;:::i;58036:34::-;;;;;;;;;;;;;;;;70431:205;;;;;;;;;;-1:-1:-1;70431:205:0;;;;;:::i;:::-;;:::i;71881:221::-;;;;;;;;;;-1:-1:-1;71881:221:0;;;;;:::i;:::-;;:::i;69462:756::-;;;;;;;;;;-1:-1:-1;69462:756:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58174:43::-;;;;;;;;;;;;;;;;57792:42;;;;;;;;;;;;;;;;73985:168;;;;;;;;;;-1:-1:-1;73985:168:0;;;;;:::i;:::-;;:::i;71769:104::-;;;;;;;;;;-1:-1:-1;71769:104:0;;;;;:::i;:::-;;:::i;73297:102::-;;;;;;;;;;-1:-1:-1;73297:102:0;;;;;:::i;:::-;;:::i;72271:99::-;;;;;;;;;;-1:-1:-1;72271:99:0;;;;;:::i;:::-;;:::i;58220:44::-;;;;;;;;;;;;;;;;36980:125;;;;;;;;;;-1:-1:-1;36980:125:0;;;;;:::i;:::-;;:::i;65141:631::-;;;;;;;;;;-1:-1:-1;65141:631:0;;;;;:::i;:::-;;:::i;57924:36::-;;;;;;;;;;;;;;;;72903:124;;;;;;;;;;-1:-1:-1;72903:124:0;;;;;:::i;:::-;;:::i;72655:116::-;;;;;;;;;;-1:-1:-1;72655:116:0;;;;;:::i;:::-;;:::i;34352:208::-;;;;;;;;;;-1:-1:-1;34352:208:0;;;;;:::i;:::-;;:::i;67021:689::-;;;;;;;;;;-1:-1:-1;67021:689:0;;;;;:::i;:::-;;:::i;73085:98::-;;;;;;;;;;-1:-1:-1;73085:98:0;;;;;:::i;:::-;;:::i;63028:1266::-;;;;;;;;;;-1:-1:-1;63028:1266:0;;;;;:::i;:::-;;:::i;59497:1201::-;;;;;;;;;;-1:-1:-1;59497:1201:0;;;;;:::i;:::-;;:::i;73723:99::-;;;;;;;;;;-1:-1:-1;73723:99:0;;;;;:::i;:::-;;:::i;53684:87::-;;;;;;;;;;-1:-1:-1;53730:7:0;53757:6;-1:-1:-1;;;;;53757:6:0;53684:87;;72378:120;;;;;;;;;;-1:-1:-1;72378:120:0;;;;;:::i;:::-;;:::i;58629:41::-;;;;;;;;;;-1:-1:-1;58629:41:0;;;;;:::i;:::-;;:::i;37353:104::-;;;;;;;;;;;;;:::i;58520:45::-;;;;;;;;;;;;;;;;39080:314;;;;;;;;;;-1:-1:-1;39080:314:0;;;;;:::i;:::-;;:::i;71668:93::-;;;;;;;;;;;;;:::i;58126:45::-;;;;;;;;;;;;;;;;70644:239;;;;;;;;;;-1:-1:-1;70644:239:0;;;;;:::i;:::-;;:::i;57843:35::-;;;;;;;;;;-1:-1:-1;57843:35:0;;;;-1:-1:-1;;;;;57843:35:0;;;;;;-1:-1:-1;;;;;14232:31:1;;;14214:50;;14202:2;14187:18;57843:35:0;14070:200:1;58585:35:0;;;;;;;;;;-1:-1:-1;58585:35:0;;;;;;;;58820:66;;;;;;;;;;-1:-1:-1;58820:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;73191:98;;;;;;;;;;-1:-1:-1;73191:98:0;;;;;:::i;:::-;;:::i;58379:42::-;;;;;;;;;;;;;;;;70938:482;;;;;;;;;;-1:-1:-1;70938:482:0;;;;;:::i;:::-;;:::i;64371:694::-;;;;;;;;;;-1:-1:-1;64371:694:0;;;;;:::i;:::-;;:::i;58000:33::-;;;;;;;;;;;;;;;;71489:115;;;;;;;;;;-1:-1:-1;71489:115:0;;;;;:::i;:::-;;:::i;39471:189::-;;;;;;;;;;-1:-1:-1;39471:189:0;;;;;:::i;:::-;-1:-1:-1;;;;;39617:25:0;;;39593:4;39617:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39471:189;54139:238;;;;;;;;;;-1:-1:-1;54139:238:0;;;;;:::i;:::-;;:::i;58471:46::-;;;;;;;;;;;;;;;;58761:48;;;;;;;;;;-1:-1:-1;58761:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;72523:124;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;;;;;;;;;72605:15:::1;:34:::0;72523:124::o;33961:321::-;34079:4;-1:-1:-1;;;;;;34116:40:0;;-1:-1:-1;;;34116:40:0;;:105;;-1:-1:-1;;;;;;;34173:48:0;;-1:-1:-1;;;34173:48:0;34116:105;:158;;;-1:-1:-1;;;;;;;;;;22871:40:0;;;34238:36;34096:178;33961:321;-1:-1:-1;;33961:321:0:o;73520:195::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73621:6:::1;73616:92;73632:8;:15;73630:1;:17;73616:92;;;73688:5;73694:1;73688:8;;;;;;;;:::i;:::-;;;;;;;73663:9;:22;73673:8;73682:1;73673:11;;;;;;;;:::i;:::-;;;;;;;73663:22;;;;;;;;;;;:33;;;;;;:::i;:::-;-1:-1:-1::0;73648:3:0;::::1;::::0;::::1;:::i;:::-;;;;73616:92;;;;73520:195:::0;;:::o;37178:100::-;37232:13;37265:5;37258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37178:100;:::o;38782:220::-;38866:7;38891:16;38899:7;38891;:16::i;:::-;38886:64;;38916:34;;-1:-1:-1;;;38916:34:0;;;;;;;;;;;38886:64;-1:-1:-1;38970:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38970:24:0;;38782:220::o;38337:373::-;38410:13;38426:24;38442:7;38426:15;:24::i;:::-;38410:40;;38473:5;-1:-1:-1;;;;;38467:11:0;:2;-1:-1:-1;;;;;38467:11:0;;38463:48;;38487:24;;-1:-1:-1;;;38487:24:0;;;;;;;;;;;38463:48;29459:10;-1:-1:-1;;;;;38528:21:0;;;;;;:63;;-1:-1:-1;38554:37:0;38571:5;29459:10;39471:189;:::i;38554:37::-;38553:38;38528:63;38524:138;;;38615:35;;-1:-1:-1;;;38615:35:0;;;;;;;;;;;38524:138;38674:28;38683:2;38687:7;38696:5;38674:8;:28::i;66041:903::-;66201:22;66210:12;66201:8;:22::i;:::-;59053:1;59039:11;:15;59031:48;;;;-1:-1:-1;;;59031:48:0;;18224:2:1;59031:48:0;;;18206:21:1;18263:2;18243:18;;;18236:30;-1:-1:-1;;;18282:18:1;;;18275:50;18342:18;;59031:48:0;18022:344:1;59031:48:0;66240:16:::1;::::0;::::1;;66232:54;;;::::0;-1:-1:-1;;;66232:54:0;;18573:2:1;66232:54:0::1;::::0;::::1;18555:21:1::0;18612:2;18592:18;;;18585:30;18651:27;18631:18;;;18624:55;18696:18;;66232:54:0::1;18371:349:1::0;66232:54:0::1;66332:12;:19;66311:10;:17;:40;:99;;;;;66391:12;:19;66368:12;:19;:42;66311:99;66293:157;;;;-1:-1:-1::0;;;66293:157:0::1;;;;;;;:::i;:::-;66513:18;66534:91;66562:10;66583:12;66606;66534:17;:91::i;:::-;66513:112;;66715:10;66702:9;:23;66694:54;;;::::0;-1:-1:-1;;;66694:54:0;;19276:2:1;66694:54:0::1;::::0;::::1;19258:21:1::0;19315:2;19295:18;;;19288:30;-1:-1:-1;;;19334:18:1;;;19327:48;19392:18;;66694:54:0::1;19074:342:1::0;66694:54:0::1;66795:55;66811:10;66823:12;66837;66795:15;:55::i;:::-;66895:45;66905:10;66917:22;66926:12;66917:8;:22::i;:::-;66895:9;:45::i;:::-;66225:719;66041:903:::0;;;;:::o;60757:2172::-;60908:7;61026:11;:18;61006:9;:16;:38;:91;;;;;61079:11;:18;61057:11;:18;:40;61006:91;60988:149;;;;-1:-1:-1;;;60988:149:0;;;;;;;:::i;:::-;61188:18;;61251:1611;61272:9;:16;61268:1;:20;61251:1611;;;61407:1;61391:9;61401:1;61391:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61391:17:0;;;:40;;;;;61430:1;61412:11;61424:1;61412:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61412:19:0;;;61391:40;:63;;;;;61453:1;61435:11;61447:1;61435:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61435:19:0;;;61391:63;61369:138;;;;-1:-1:-1;;;61369:138:0;;19623:2:1;61369:138:0;;;19605:21:1;19662:2;19642:18;;;19635:30;19701:27;19681:18;;;19674:55;19746:18;;61369:138:0;19421:349:1;61369:138:0;61606:11;61618:1;61606:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61606:19:0;61624:1;61606:19;61602:1085;;61764:15;;61729:11;61741:1;61729:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61668:75:0;:11;:25;61680:9;61690:1;61680:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61668:25:0;;;;;;;;;;;;:41;61694:11;61706:1;61694:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61668:41:0;;;;;;;;;;;;;:75;;;;:::i;:::-;:111;;61642:202;;;;-1:-1:-1;;;61642:202:0;;20107:2:1;61642:202:0;;;20089:21:1;20146:2;20126:18;;;20119:30;20185:31;20165:18;;;20158:59;20234:18;;61642:202:0;19905:353:1;61642:202:0;61602:1085;;;61866:11;61878:1;61866:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61866:19:0;61884:1;61866:19;61862:825;;62024:13;;61989:11;62001:1;61989:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61928:75:0;:11;:25;61940:9;61950:1;61940:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61928:25:0;;;;;;;;;;;;:41;61954:11;61966:1;61954:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;61928:41:0;;;;;;;;;;;;;:75;;;;:::i;:::-;:109;;61902:198;;;;-1:-1:-1;;;61902:198:0;;20465:2:1;61902:198:0;;;20447:21:1;20504:2;20484:18;;;20477:30;20543:29;20523:18;;;20516:57;20590:18;;61902:198:0;20263:351:1;61862:825:0;62122:11;62134:1;62122:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62122:19:0;62140:1;62122:19;62118:569;;62280:13;;62245:11;62257:1;62245:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62184:75:0;:11;:25;62196:9;62206:1;62196:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62184:25:0;;;;;;;;;;;;:41;62210:11;62222:1;62210:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62184:41:0;;;;;;;;;;;;;:75;;;;:::i;:::-;:109;;62158:198;;;;-1:-1:-1;;;62158:198:0;;20821:2:1;62158:198:0;;;20803:21:1;20860:2;20840:18;;;20833:30;20899:29;20879:18;;;20872:57;20946:18;;62158:198:0;20619:351:1;62118:569:0;62378:11;62390:1;62378:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62378:19:0;62396:1;62378:19;62374:313;;62536:15;;62501:11;62513:1;62501:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62440:75:0;:11;:25;62452:9;62462:1;62452:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62440:25:0;;;;;;;;;;;;:41;62466:11;62478:1;62466:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62440:41:0;;;;;;;;;;;;;:75;;;;:::i;:::-;:111;;62414:202;;;;-1:-1:-1;;;62414:202:0;;21177:2:1;62414:202:0;;;21159:21:1;21216:2;21196:18;;;21189:30;21255:31;21235:18;;;21228:59;21304:18;;62414:202:0;20975:353:1;62374:313:0;62649:26;;-1:-1:-1;;;62649:26:0;;21535:2:1;62649:26:0;;;21517:21:1;21574:2;21554:18;;;21547:30;-1:-1:-1;;;21593:18:1;;;21586:46;21649:18;;62649:26:0;21333:340:1;62374:313:0;62813:41;62825:9;62835:1;62825:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62813:41:0;62839:11;62851:1;62839:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62813:41:0;:11;:41::i;:::-;62796:11;62808:1;62796:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;62796:58:0;;;;;:::i;:::-;62782:72;;;;:::i;:::-;;-1:-1:-1;61290:3:0;;;;:::i;:::-;;;;61251:1611;;;-1:-1:-1;62915:10:0;60757:2172;-1:-1:-1;;;;60757:2172:0:o;70226:197::-;70361:4;6396:42;7670:43;:47;7666:789;;7957:10;-1:-1:-1;;;;;7949:18:0;;;7945:85;;70378:37:::1;70397:4;70403:2;70407:7;70378:18;:37::i;:::-;8008:7:::0;;7945:85;8068:128;;-1:-1:-1;;;8068:128:0;;8139:4;8068:128;;;22063:34:1;8167:10:0;22113:18:1;;;22106:43;6396:42:0;;8068:40;;21998:18:1;;8068:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;8221:134:0;;-1:-1:-1;;;8221:134:0;;8296:4;8221:134;;;22063:34:1;-1:-1:-1;;;;;22133:15:1;;22113:18;;;22106:43;6396:42:0;;8221:40;;21998:18:1;;8221:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8044:400;;8398:30;;-1:-1:-1;;;8398:30:0;;8417:10;8398:30;;;5201:51:1;5174:18;;8398:30:0;5055:203:1;8044:400:0;70378:37:::1;70397:4;70403:2;70407:7;70378:18;:37::i;:::-;70226:197:::0;;;;:::o;59150:304::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;59276:6:::1;59271:180;59292:5;:12;59288:1;:16;59271:180;;;59430:5;59436:1;59430:8;;;;;;;;:::i;:::-;;;;;;;:13;;;59401;:26;59415:5;59421:1;59415:8;;;;;;;;:::i;:::-;;;;;;;:11;;;59401:26;;;;;;;;;;;:42;;;;59306:3;;;;;:::i;:::-;;;;59271:180;;;;59150:304:::0;:::o;73407:100::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73477:13:::1;:22:::0;73407:100::o;72779:116::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;72857:13:::1;:30:::0;72779:116::o;73830:147::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73879:7:::1;53757:6:::0;;73892:55:::1;::::0;-1:-1:-1;;;;;53757:6:0;;;;73921:21:::1;::::0;73879:7;73892:55;73879:7;73892:55;73921:21;53757:6;73892:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73878:69;;;73966:2;73958:11;;;::::0;::::1;;73867:110;73830:147::o:0;70431:205::-;70570:4;6396:42;7670:43;:47;7666:789;;7957:10;-1:-1:-1;;;;;7949:18:0;;;7945:85;;70587:41:::1;70610:4;70616:2;70620:7;70587:22;:41::i;7945:85::-:0;8068:128;;-1:-1:-1;;;8068:128:0;;8139:4;8068:128;;;22063:34:1;8167:10:0;22113:18:1;;;22106:43;6396:42:0;;8068:40;;21998:18:1;;8068:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;8221:134:0;;-1:-1:-1;;;8221:134:0;;8296:4;8221:134;;;22063:34:1;-1:-1:-1;;;;;22133:15:1;;22113:18;;;22106:43;6396:42:0;;8221:40;;21998:18:1;;8221:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8044:400;;8398:30;;-1:-1:-1;;;8398:30:0;;8417:10;8398:30;;;5201:51:1;5174:18;;8398:30:0;5055:203:1;8044:400:0;70587:41:::1;70610:4;70616:2;70620:7;70587:22;:41::i;71881:221::-:0;71939:16;71946:8;71939:6;:16::i;:::-;71931:49;;;;-1:-1:-1;;;71931:49:0;;22822:2:1;71931:49:0;;;22804:21:1;22861:2;22841:18;;;22834:30;-1:-1:-1;;;22880:18:1;;;22873:50;22940:18;;71931:49:0;22620:344:1;71931:49:0;72013:17;72021:8;72013:7;:17::i;:::-;-1:-1:-1;;;;;71999:31:0;:10;-1:-1:-1;;;;;71999:31:0;;71991:70;;;;-1:-1:-1;;;71991:70:0;;23171:2:1;71991:70:0;;;23153:21:1;23210:2;23190:18;;;23183:30;23249:28;23229:18;;;23222:56;23295:18;;71991:70:0;22969:350:1;71991:70:0;72072:22;72078:8;72088:5;72072;:22::i;69462:756::-;69540:16;69569:23;69595:17;69605:6;69595:9;:17::i;:::-;69569:43;;69623:30;69670:15;-1:-1:-1;;;;;69656:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69656:30:0;-1:-1:-1;69623:63:0;-1:-1:-1;69722:1:0;69697:22;69774:404;69799:15;69781;:33;69774:404;;;69835:22;69842:14;69835:6;:22::i;:::-;:30;;69861:4;69835:30;69831:305;;69886:25;69914:23;69922:14;69914:7;:23::i;:::-;69886:51;;69983:6;-1:-1:-1;;;;;69962:27:0;:17;-1:-1:-1;;;;;69962:27:0;;69958:163;;70047:14;70014:13;70028:15;70014:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;70084:17;;;;:::i;:::-;;;;69958:163;69867:269;69831:305;70150:16;;;;:::i;:::-;;;;69774:404;;;-1:-1:-1;70197:13:0;;69462:756;-1:-1:-1;;;;69462:756:0:o;73985:168::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;74069:30:::1;::::0;-1:-1:-1;;;74069:30:0;;74093:4:::1;74069:30;::::0;::::1;5201:51:1::0;74051:15:0::1;::::0;-1:-1:-1;;;;;74069:15:0;::::1;::::0;::::1;::::0;5174:18:1;;74069:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;74110:35;::::0;-1:-1:-1;;;74110:35:0;;74125:10:::1;74110:35;::::0;::::1;23687:51:1::0;23754:18;;;23747:34;;;74051:48:0;;-1:-1:-1;;;;;;74110:14:0;::::1;::::0;::::1;::::0;23660:18:1;;74110:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;71769:104::-:0;71824:4;71848:17;71856:8;71848:7;:17::i;73297:102::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73368:14:::1;:23:::0;73297:102::o;72271:99::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;72343:12:::1;:19;72358:4:::0;;72343:12;:19:::1;:::i;36980:125::-:0;37044:7;37071:21;37084:7;37071:12;:21::i;:::-;:26;;36980:125;-1:-1:-1;;36980:125:0:o;65141:631::-;65287:15;65323:22;;;:11;:22;;;;;;;;65346:1;65323:25;;;;;;;;65305:15;;65205:13;;65287:15;65305:43;;;:::i;:::-;65355:13;65387:22;;;:11;:22;;;;;;;;65410:1;65387:25;;;;;;;;65371:13;;65287:61;;-1:-1:-1;65355:13:0;;65371:41;;65387:25;65371:41;:::i;:::-;65419:13;65451:22;;;:11;:22;;;;;;;;65474:1;65451:25;;;;;;;;65435:13;;65355:57;;-1:-1:-1;65419:13:0;;65435:41;;65451:25;65435:41;:::i;:::-;65483:15;65519:22;;;:11;:22;;;;;;;;65542:1;65519:25;;;;;;;;65501:15;;65419:57;;-1:-1:-1;65483:15:0;;65501:43;;65519:25;65501:43;:::i;:::-;65483:61;;65650:25;65667:7;65650:16;:25::i;:::-;65682:23;65699:5;65682:16;:23::i;:::-;65712;65729:5;65712:16;:23::i;:::-;65742:25;65759:7;65742:16;:25::i;:::-;65636:132;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65629:139;;;;;;65141:631;;;:::o;72903:124::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;72985:15:::1;:34:::0;72903:124::o;72655:116::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;72733:13:::1;:30:::0;72655:116::o;34352:208::-;34416:7;-1:-1:-1;;;;;34440:19:0;;34436:60;;34468:28;;-1:-1:-1;;;34468:28:0;;;;;;;;;;;34436:60;-1:-1:-1;;;;;;34524:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34524:27:0;;34352:208::o;67021:689::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;67198:22:::1;67207:12;67198:8;:22::i;:::-;59053:1;59039:11;:15;59031:48;;;::::0;-1:-1:-1;;;59031:48:0;;18224:2:1;59031:48:0::1;::::0;::::1;18206:21:1::0;18263:2;18243:18;;;18236:30;-1:-1:-1;;;18282:18:1;;;18275:50;18342:18;;59031:48:0::1;18022:344:1::0;59031:48:0::1;67268:12:::2;:19;67247:10;:17;:40;:99;;;;;67327:12;:19;67304:12;:19;:42;67247:99;67229:157;;;;-1:-1:-1::0;;;67229:157:0::2;;;;;;;:::i;:::-;67443:57;67461:10;67473:12;67487;67443:17;:57::i;:::-;;67547:55;67563:10;67575:12;67589;67547:15;:55::i;:::-;67668:38;67678:3;67683:22;67692:12;67683:8;:22::i;73085:98::-:0;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73154:12:::1;:21:::0;73085:98::o;63028:1266::-;63147:7;63249:11;63264:1;63249:16;63245:917;;63379:15;;63300:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;:62;;63351:11;;63300:62;:::i;:::-;:94;;63278:173;;;;-1:-1:-1;;;63278:173:0;;20107:2:1;63278:173:0;;;20089:21:1;20146:2;20126:18;;;20119:30;20185:31;20165:18;;;20158:59;20234:18;;63278:173:0;19905:353:1;63278:173:0;63245:917;;;63469:11;63484:1;63469:16;63465:697;;63599:13;;63520:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;:62;;63571:11;;63520:62;:::i;:::-;:92;;63498:169;;;;-1:-1:-1;;;63498:169:0;;20465:2:1;63498:169:0;;;20447:21:1;20504:2;20484:18;;;20477:30;20543:29;20523:18;;;20516:57;20590:18;;63498:169:0;20263:351:1;63465:697:0;63685:11;63700:1;63685:16;63681:481;;63815:13;;63736:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;:62;;63787:11;;63736:62;:::i;:::-;:92;;63714:169;;;;-1:-1:-1;;;63714:169:0;;20821:2:1;63714:169:0;;;20803:21:1;20860:2;20840:18;;;20833:30;20899:29;20879:18;;;20872:57;20946:18;;63714:169:0;20619:351:1;63681:481:0;63901:11;63916:1;63901:16;63897:265;;64031:15;;63952:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;:62;;64003:11;;63952:62;:::i;:::-;:94;;63930:173;;;;-1:-1:-1;;;63930:173:0;;21177:2:1;63930:173:0;;;21159:21:1;21216:2;21196:18;;;21189:30;21255:31;21235:18;;;21228:59;21304:18;;63930:173:0;20975:353:1;63897:265:0;-1:-1:-1;;64255:22:0;;;;:11;:22;;;;;;;;:35;;;;;;;;;;63028:1266::o;59497:1201::-;59588:7;59604:14;59625:13;59703:9;59716:1;59703:14;59699:318;;59739:15;;59730:24;;59699:318;;;59772:9;59785:1;59772:14;59768:249;;59808:13;;59799:22;;59768:249;;;59839:9;59852:1;59839:14;59835:182;;59875:13;;59866:22;;59835:182;;;59906:9;59919:1;59906:14;59902:115;;59942:15;;59933:24;;59902:115;;;59982:27;;-1:-1:-1;;;59982:27:0;;26647:2:1;59982:27:0;;;26629:21:1;26686:2;26666:18;;;26659:30;-1:-1:-1;;;26705:18:1;;;26698:47;26762:18;;59982:27:0;26445:341:1;59902:115:0;60089:22;;;;:13;:22;;;;;;60115:1;60089:27;60085:363;;-1:-1:-1;60137:12:0;;60085:363;;;60167:22;;;;:13;:22;;;;;;60193:1;60167:27;60163:285;;-1:-1:-1;60215:12:0;;60163:285;;;60245:22;;;;:13;:22;;;;;;60271:1;60245:27;60241:207;;-1:-1:-1;60293:14:0;;60241:207;;;60325:22;;;;:13;:22;;;;;;60351:1;60325:27;60321:127;;-1:-1:-1;60373:13:0;;60321:127;;;60411:29;;-1:-1:-1;;;60411:29:0;;26993:2:1;60411:29:0;;;26975:21:1;27032:2;27012:18;;;27005:30;-1:-1:-1;;;27051:18:1;;;27044:49;27110:18;;60411:29:0;26791:343:1;60321:127:0;60530:16;60575:5;60566:6;60549:14;;:23;;;;:::i;:::-;:31;;;;:::i;:::-;60530:50;-1:-1:-1;60685:8:0;60660:21;60685:8;60530:50;60660:21;:::i;:::-;:34;;;;:::i;:::-;60653:41;59497:1201;-1:-1:-1;;;;;;59497:1201:0:o;73723:99::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73789:16:::1;:25:::0;;-1:-1:-1;;73789:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73723:99::o;72378:120::-;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;72458:14:::1;:32:::0;72378:120::o;58629:41::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37353:104::-;37409:13;37442:7;37435:14;;;;;:::i;39080:314::-;29459:10;-1:-1:-1;;;;;39204:24:0;;;39200:54;;39237:17;;-1:-1:-1;;;39237:17:0;;;;;;;;;;;39200:54;29459:10;39267:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39267:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39267:53:0;;;;;;;;;;39338:48;;725:41:1;;;39267:42:0;;29459:10;39338:48;;698:18:1;39338:48:0;;;;;;;39080:314;;:::o;71668:93::-;71712:7;71739:14;33041:1;33833:13;-1:-1:-1;;33833:31:0;;33596:287;71739:14;71732:21;;71668:93;:::o;70644:239::-;70811:4;6396:42;7670:43;:47;7666:789;;7957:10;-1:-1:-1;;;;;7949:18:0;;;7945:85;;70828:47:::1;70851:4;70857:2;70861:7;70870:4;70828:22;:47::i;:::-;8008:7:::0;;7945:85;8068:128;;-1:-1:-1;;;8068:128:0;;8139:4;8068:128;;;22063:34:1;8167:10:0;22113:18:1;;;22106:43;6396:42:0;;8068:40;;21998:18:1;;8068:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;8221:134:0;;-1:-1:-1;;;8221:134:0;;8296:4;8221:134;;;22063:34:1;-1:-1:-1;;;;;22133:15:1;;22113:18;;;22106:43;6396:42:0;;8221:40;;21998:18:1;;8221:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8044:400;;8398:30;;-1:-1:-1;;;8398:30:0;;8417:10;8398:30;;;5201:51:1;5174:18;;8398:30:0;5055:203:1;8044:400:0;70828:47:::1;70851:4;70857:2;70861:7;70870:4;70828:22;:47::i;73191:98::-:0;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;73260:12:::1;:21:::0;73191:98::o;70938:482::-;71028:13;71076:17;71084:8;71076:7;:17::i;:::-;71054:114;;;;-1:-1:-1;;;71054:114:0;;27598:2:1;71054:114:0;;;27580:21:1;27637:2;27617:18;;;27610:30;27676:34;27656:18;;;27649:62;-1:-1:-1;;;27727:18:1;;;27720:45;27782:19;;71054:114:0;27396:411:1;71054:114:0;71181:28;71212:10;:8;:10::i;:::-;71181:41;;71286:1;71261:14;71255:28;:32;:157;;;;;;;;;;;;;;;;;71342:14;71358:9;:19;71368:8;71358:19;;;;;;;;;;;71325:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71255:157;71235:177;70938:482;-1:-1:-1;;;70938:482:0:o;64371:694::-;64454:7;64470:18;64563:11;64578:1;64563:16;64559:342;;-1:-1:-1;64605:15:0;;64559:342;;;64638:11;64653:1;64638:16;64634:267;;-1:-1:-1;64680:13:0;;64634:267;;;64711:11;64726:1;64711:16;64707:194;;-1:-1:-1;64753:13:0;;64707:194;;;64784:11;64799:1;64784:16;64780:121;;-1:-1:-1;64826:15:0;;64780:121;65026:22;;;;:11;:22;;;;;;;;:35;;;;;;;;;65013:48;;:10;:48;:::i;:::-;65006:55;64371:694;-1:-1:-1;;;;64371:694:0:o;71489:115::-;-1:-1:-1;;;;;34744:19:0;;71548:7;34744:19;;;:12;:19;;;;;:32;-1:-1:-1;;;34744:32:0;;-1:-1:-1;;;;;34744:32:0;71575:21;34648:137;54139:238;53730:7;53757:6;-1:-1:-1;;;;;53757:6:0;29459:10;53904:23;53896:68;;;;-1:-1:-1;;;53896:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54242:22:0;::::1;54220:110;;;::::0;-1:-1:-1;;;54220:110:0;;29208:2:1;54220:110:0::1;::::0;::::1;29190:21:1::0;29247:2;29227:18;;;29220:30;29286:34;29266:18;;;29259:62;-1:-1:-1;;;29337:18:1;;;29330:36;29383:19;;54220:110:0::1;29006:402:1::0;54220:110:0::1;54341:28;54360:8;54341:18;:28::i;40919:213::-:0;40976:4;41032:7;33041:1;41013:26;;:66;;;;;41066:13;;41056:7;:23;41013:66;:111;;;;-1:-1:-1;;41097:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41097:27:0;;;;41096:28;;40919:213::o;49464:164::-;49545:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49545:29:0;-1:-1:-1;;;;;49545:29:0;;;;;;;;;49592:28;;49545:24;;49592:28;;;;;;;49464:164;;;:::o;65820:179::-;65881:4;65894:8;65914:6;65909:70;65930:3;:10;65926:1;:14;65909:70;;;65965:3;65969:1;65965:6;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;65958:13:0;;;;;;:::i;:::-;;-1:-1:-1;65942:3:0;;;;:::i;:::-;;;;65909:70;;;-1:-1:-1;65992:3:0;65820:179;-1:-1:-1;;65820:179:0:o;67718:1148::-;67889:13;;67947:17;;67864:22;;67973:890;67988:6;67980:5;:14;67973:890;;;68007:18;68028:69;68038:10;68049:5;68038:17;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68028:69:0;68057:12;68070:5;68057:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68028:69:0;68077:12;68090:5;68077:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68028:69:0;:9;:69::i;:::-;68007:90;;68108:17;68128:12;68141:5;68128:19;;;;;;;;:::i;:::-;;;;;;;68108:39;;68159:27;68190:37;68207:12;68220:5;68207:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68190:37:0;:16;:37::i;:::-;68159:68;;68239:25;68268:48;68280:35;68297:10;68308:5;68297:17;;;;;;;;:::i;68280:35::-;68268:11;:48::i;:::-;68239:77;;68341:6;68336:346;68357:10;-1:-1:-1;;;;;68353:14:0;:1;:14;68336:346;;;68416:14;:10;68429:1;68416:14;:::i;:::-;68403:27;;68516:11;68545:13;68577:28;68594:10;68577:16;:28::i;:::-;68484:122;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;68484:122:0;;;;;;;;;68458:25;;;;:9;68484:122;68458:25;;;:148;;:25;:148;:::i;:::-;-1:-1:-1;68652:18:0;:14;68669:1;68652:18;:::i;:::-;68635:35;-1:-1:-1;68967:1:0;68963:5;68336:346;;;;68748:12;68761:5;68748:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68693:74:0;:11;:30;68705:10;68716:5;68705:17;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68693:30:0;;;;;;;;;;;;:51;68724:12;68737:5;68724:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;68693:51:0;;;;;;;;;;;;;:74;;;;;;;:::i;:::-;;;;;;;;68800:12;68813:5;68800:19;;;;;;;;:::i;:::-;;;;;;;;;;;68779:17;:40;;:17;;:40;;68800:19;;-1:-1:-1;;;;;68779:40:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;68779:40:0;;;;;-1:-1:-1;;;;;68779:40:0;;;;;;68838:17;68849:5;68967:1;68963:5;;68877:101;68838:17;68830:25;;67996:867;;;;67973:890;;;67857:1009;;;67718:1148;;;:::o;41140:104::-;41209:27;41219:2;41223:8;41209:27;;;;;;;;;;;;:9;:27::i;39733:170::-;39867:28;39877:4;39883:2;39887:7;39867:9;:28::i;39980:185::-;40118:39;40135:4;40141:2;40145:7;40118:39;;;;;;;;;;;;:16;:39::i;46890:2446::-;46970:35;47008:21;47021:7;47008:12;:21::i;:::-;47057:18;;46970:59;;-1:-1:-1;47088:290:0;;;;47122:22;29459:10;-1:-1:-1;;;;;47148:20:0;;;;:77;;-1:-1:-1;47189:36:0;47206:4;29459:10;39471:189;:::i;47189:36::-;47148:134;;;-1:-1:-1;29459:10:0;47246:20;47258:7;47246:11;:20::i;:::-;-1:-1:-1;;;;;47246:36:0;;47148:134;47122:161;;47305:17;47300:66;;47331:35;;-1:-1:-1;;;47331:35:0;;;;;;;;;;;47300:66;47107:271;47088:290;47508:35;47525:1;47529:7;47538:4;47508:8;:35::i;:::-;-1:-1:-1;;;;;47879:18:0;;;47845:31;47879:18;;;:12;:18;;;;;;;;47914:24;;-1:-1:-1;;;;;;;;;;47914:24:0;;;;;;;;;-1:-1:-1;;47914:24:0;;;;47955:29;;;;;47937:1;47955:29;;;;;;;;-1:-1:-1;;47955:29:0;;;;;;;;;;48119:20;;;:11;:20;;;;;;48156;;-1:-1:-1;;;;48226:15:0;48193:49;;;-1:-1:-1;;;48193:49:0;-1:-1:-1;;;;;;48193:49:0;;;;;;;;;;48259:22;-1:-1:-1;;;48259:22:0;;;48555:11;;;48617:24;;;;;48662:13;;47879:18;;48617:24;;48662:13;48658:390;;48876:13;;48861:11;:28;48857:176;;48914:20;;48985:28;;;;-1:-1:-1;;;;;48959:54:0;-1:-1:-1;;;48959:54:0;-1:-1:-1;;;;;;48959:54:0;;;-1:-1:-1;;;;;48914:20:0;;48959:54;;;;48857:176;-1:-1:-1;;49076:35:0;;49103:7;;-1:-1:-1;49099:1:0;;-1:-1:-1;;;;;;49076:35:0;;;-1:-1:-1;;;;;;;;;;;49076:35:0;49099:1;;49076:35;-1:-1:-1;;49303:12:0;:14;;;;;;-1:-1:-1;;46890:2446:0:o;35769:1143::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35896:7:0;;33041:1;35945:23;;:47;;;;;35979:13;;35972:4;:20;35945:47;35941:902;;;36013:31;36047:17;;;:11;:17;;;;;;;;;36013:51;;;;;;;;;-1:-1:-1;;;;;36013:51:0;;;;-1:-1:-1;;;36013:51:0;;-1:-1:-1;;;;;36013:51:0;;;;;;;;-1:-1:-1;;;36013:51:0;;;;;;;;;;;;;;36085:743;;36135:14;;-1:-1:-1;;;;;36135:28:0;;36131:101;;36199:9;35769:1143;-1:-1:-1;;;35769:1143:0:o;36131:101::-;-1:-1:-1;;;36584:6:0;36631:17;;;;:11;:17;;;;;;;;;36619:29;;;;;;;;;-1:-1:-1;;;;;36619:29:0;;;;;-1:-1:-1;;;36619:29:0;;-1:-1:-1;;;;;36619:29:0;;;;;;;;-1:-1:-1;;;36619:29:0;;;;;;;;;;;;;36681:28;36677:109;;36749:9;35769:1143;-1:-1:-1;;;35769:1143:0:o;36677:109::-;36544:265;;;35994:849;35941:902;36873:31;;-1:-1:-1;;;36873:31:0;;;;;;;;;;;9192:723;9248:13;9469:5;9478:1;9469:10;9465:53;;-1:-1:-1;;9496:10:0;;;;;;;;;;;;-1:-1:-1;;;9496:10:0;;;;;9192:723::o;9465:53::-;9543:5;9528:12;9584:78;9591:9;;9584:78;;9617:8;;;;:::i;:::-;;-1:-1:-1;9640:10:0;;-1:-1:-1;9648:2:0;9640:10;;:::i;:::-;;;9584:78;;;9672:19;9704:6;-1:-1:-1;;;;;9694:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9694:17:0;;9672:39;;9722:154;9729:10;;9722:154;;9756:11;9766:1;9756:11;;:::i;:::-;;-1:-1:-1;9825:10:0;9833:2;9825:5;:10;:::i;:::-;9812:24;;:2;:24;:::i;:::-;9799:39;;9782:6;9789;9782:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9782:56:0;;;;;;;;-1:-1:-1;9853:11:0;9862:2;9853:11;;:::i;:::-;;;9722:154;;40242:408;40409:28;40419:4;40425:2;40429:7;40409:9;:28::i;:::-;-1:-1:-1;;;;;40468:13:0;;12502:19;:23;;40468:89;;;;;40501:56;40532:4;40538:2;40542:7;40551:5;40501:30;:56::i;:::-;40500:57;40468:89;40450:193;;;40591:40;;-1:-1:-1;;;40591:40:0;;;;;;;;;;;72150:113;72210:13;72243:12;72236:19;;;;;:::i;54537:191::-;54611:16;54630:6;;-1:-1:-1;;;;;54647:17:0;;;-1:-1:-1;;;;;;54647:17:0;;;;;;54680:40;;54630:6;;;;;;;54680:40;;54611:16;54680:40;54600:128;54537:191;:::o;68982:411::-;69050:13;69090:7;69084:21;69107:1;69084:24;69081:308;;69148:7;69128:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;69121:35;;68982:411;;;:::o;69081:308::-;69182:7;69176:21;69199:1;69176:24;69173:216;;69239:7;69220:27;;;;;;;;:::i;69173:216::-;69273:7;69267:21;69290:1;69267:24;69264:125;;69329:7;69311:26;;;;;;;;:::i;69264:125::-;-1:-1:-1;69373:7:0;68982:411::o;41627:163::-;41750:32;41756:2;41760:8;41770:5;41777:4;41750:5;:32::i;44335:2128::-;44416:35;44454:21;44467:7;44454:12;:21::i;:::-;44416:59;;44514:4;-1:-1:-1;;;;;44492:26:0;:13;:18;;;-1:-1:-1;;;;;44492:26:0;;44488:67;;44527:28;;-1:-1:-1;;;44527:28:0;;;;;;;;;;;44488:67;44568:22;29459:10;-1:-1:-1;;;;;44594:20:0;;;;:73;;-1:-1:-1;44631:36:0;44648:4;29459:10;39471:189;:::i;44631:36::-;44594:126;;;-1:-1:-1;29459:10:0;44684:20;44696:7;44684:11;:20::i;:::-;-1:-1:-1;;;;;44684:36:0;;44594:126;44568:153;;44739:17;44734:66;;44765:35;;-1:-1:-1;;;44765:35:0;;;;;;;;;;;44734:66;-1:-1:-1;;;;;44817:16:0;;44813:52;;44842:23;;-1:-1:-1;;;44842:23:0;;;;;;;;;;;44813:52;44988:35;45005:1;45009:7;45018:4;44988:8;:35::i;:::-;-1:-1:-1;;;;;45325:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45325:31:0;;;-1:-1:-1;;;;;45325:31:0;;;-1:-1:-1;;45325:31:0;;;;;;;45373:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45373:29:0;;;;;;;;;;;45453:20;;;:11;:20;;;;;;45490:18;;-1:-1:-1;;;;;;45525:49:0;;;;-1:-1:-1;;;45558:15:0;45525:49;;;;;;;;;;45852:11;;45914:24;;;;;45959:13;;45453:20;;45914:24;;45959:13;45955:390;;46173:13;;46158:11;:28;46154:176;;46211:20;;46282:28;;;;-1:-1:-1;;;;;46256:54:0;-1:-1:-1;;;46256:54:0;-1:-1:-1;;;;;;46256:54:0;;;-1:-1:-1;;;;;46211:20:0;;46256:54;;;;46154:176;45300:1056;;;46392:7;46388:2;-1:-1:-1;;;;;46373:27:0;46382:4;-1:-1:-1;;;;;46373:27:0;-1:-1:-1;;;;;;;;;;;46373:27:0;;;;;;;;;46413:42;70226:197;50138:772;50335:155;;-1:-1:-1;;;50335:155:0;;50301:4;;-1:-1:-1;;;;;50335:36:0;;;;;:155;;29459:10;;50421:4;;50444:7;;50470:5;;50335:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50335:155:0;;;;;;;;-1:-1:-1;;50335:155:0;;;;;;;;;;;;:::i;:::-;;;50318:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50661:6;:13;50678:1;50661:18;50657:235;;50707:40;;-1:-1:-1;;;50707:40:0;;;;;;;;;;;50657:235;50850:6;50844:13;50835:6;50831:2;50827:15;50820:38;50318:585;-1:-1:-1;;;;;;50546:55:0;-1:-1:-1;;;50546:55:0;;-1:-1:-1;50138:772:0;;;;;;:::o;42069:1992::-;42231:13;;-1:-1:-1;;;;;42261:16:0;;42257:48;;42286:19;;-1:-1:-1;;;42286:19:0;;;;;;;;;;;42257:48;42322:8;42334:1;42322:13;42318:44;;42344:18;;-1:-1:-1;;;42344:18:0;;;;;;;;;;;42318:44;-1:-1:-1;;;;;42719:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;42780:49:0;;-1:-1:-1;;;;;42719:44:0;;;;;;;42780:49;;;-1:-1:-1;;;;;42719:44:0;;;;;;42780:49;;;;;;;;;;;;;;;;42846:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42898:66:0;;;;-1:-1:-1;;;42948:15:0;42898:66;;;;;;;;;;42846:25;43047:23;;;43091:4;:23;;;;-1:-1:-1;;;;;;43099:13:0;;12502:19;:23;;43099:15;43087:838;;;43135:507;43166:38;;43191:12;;-1:-1:-1;;;;;43166:38:0;;;43183:1;;-1:-1:-1;;;;;;;;;;;43166:38:0;43183:1;;43166:38;43260:212;43329:1;43362:2;43395:14;;;;;;43440:5;43260:30;:212::i;:::-;43229:365;;43530:40;;-1:-1:-1;;;43530:40:0;;;;;;;;;;;43229:365;43637:3;43621:12;:19;43135:507;;43727:12;43710:13;;:29;43706:43;;43741:8;;;43706:43;43087:838;;;43790:120;43821:40;;43846:14;;;;;-1:-1:-1;;;;;43821:40:0;;;43838:1;;-1:-1:-1;;;;;;;;;;;43821:40:0;43838:1;;43821:40;43905:3;43889:12;:19;43790:120;;43087:838;-1:-1:-1;43941:13:0;:28;43993:60;70226: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:127::-;838:10;833:3;829:20;826:1;819:31;869:4;866:1;859:15;893:4;890:1;883:15;909:257;981:4;975:11;;;1013:17;;-1:-1:-1;;;;;1045:34:1;;1081:22;;;1042:62;1039:88;;;1107:18;;:::i;:::-;1143:4;1136:24;909:257;:::o;1171:275::-;1242:2;1236:9;1307:2;1288:13;;-1:-1:-1;;1284:27:1;1272:40;;-1:-1:-1;;;;;1327:34:1;;1363:22;;;1324:62;1321:88;;;1389:18;;:::i;:::-;1425:2;1418:22;1171:275;;-1:-1:-1;1171:275:1:o;1451:183::-;1511:4;-1:-1:-1;;;;;1536:6:1;1533:30;1530:56;;;1566:18;;:::i;:::-;-1:-1:-1;1611:1:1;1607:14;1623:4;1603:25;;1451:183::o;1639:407::-;1704:5;-1:-1:-1;;;;;1730:6:1;1727:30;1724:56;;;1760:18;;:::i;:::-;1798:57;1843:2;1822:15;;-1:-1:-1;;1818:29:1;1849:4;1814:40;1798:57;:::i;:::-;1789:66;;1878:6;1871:5;1864:21;1918:3;1909:6;1904:3;1900:16;1897:25;1894:45;;;1935:1;1932;1925:12;1894:45;1984:6;1979:3;1972:4;1965:5;1961:16;1948:43;2038:1;2031:4;2022:6;2015:5;2011:18;2007:29;2000:40;1639:407;;;;;:::o;2051:1089::-;2104:5;2157:3;2150:4;2142:6;2138:17;2134:27;2124:55;;2175:1;2172;2165:12;2124:55;2211:6;2198:20;2237:4;2261:60;2277:43;2317:2;2277:43;:::i;:::-;2261:60;:::i;:::-;2355:15;;;2441:1;2437:10;;;;2425:23;;2421:32;;;2386:12;;;;2465:15;;;2462:35;;;2493:1;2490;2483:12;2462:35;2529:2;2521:6;2517:15;2541:570;2557:6;2552:3;2549:15;2541:570;;;2643:3;2630:17;-1:-1:-1;;;;;2666:11:1;2663:35;2660:125;;;2739:1;2768:2;2764;2757:14;2660:125;2808:24;;2867:2;2859:11;;2855:21;-1:-1:-1;2845:119:1;;2918:1;2947:2;2943;2936:14;2845:119;2989:79;3064:3;3058:2;3054;3050:11;3037:25;3032:2;3028;3024:11;2989:79;:::i;:::-;2977:92;;-1:-1:-1;3089:12:1;;;;2574;;2541:570;;;-1:-1:-1;3129:5:1;2051:1089;-1:-1:-1;;;;;;2051:1089:1:o;3145:1149::-;3273:6;3281;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;3390:9;3377:23;-1:-1:-1;;;;;3460:2:1;3452:6;3449:14;3446:34;;;3476:1;3473;3466:12;3446:34;3514:6;3503:9;3499:22;3489:32;;3559:7;3552:4;3548:2;3544:13;3540:27;3530:55;;3581:1;3578;3571:12;3530:55;3617:2;3604:16;3639:4;3663:60;3679:43;3719:2;3679:43;:::i;3663:60::-;3757:15;;;3839:1;3835:10;;;;3827:19;;3823:28;;;3788:12;;;;3863:19;;;3860:39;;;3895:1;3892;3885:12;3860:39;3919:11;;;;3939:142;3955:6;3950:3;3947:15;3939:142;;;4021:17;;4009:30;;3972:12;;;;4059;;;;3939:142;;;4100:5;-1:-1:-1;;4143:18:1;;4130:32;;-1:-1:-1;;4174:16:1;;;4171:36;;;4203:1;4200;4193:12;4171:36;;4226:62;4280:7;4269:8;4258:9;4254:24;4226:62;:::i;:::-;4216:72;;;3145:1149;;;;;:::o;4299:250::-;4384:1;4394:113;4408:6;4405:1;4402:13;4394:113;;;4484:11;;;4478:18;4465:11;;;4458:39;4430:2;4423:10;4394:113;;;-1:-1:-1;;4541:1:1;4523:16;;4516:27;4299:250::o;4554:271::-;4596:3;4634:5;4628:12;4661:6;4656:3;4649:19;4677:76;4746:6;4739:4;4734:3;4730:14;4723:4;4716:5;4712:16;4677:76;:::i;:::-;4807:2;4786:15;-1:-1:-1;;4782:29:1;4773:39;;;;4814:4;4769:50;;4554:271;-1:-1:-1;;4554:271:1:o;4830:220::-;4979:2;4968:9;4961:21;4942:4;4999:45;5040:2;5029:9;5025:18;5017:6;4999:45;:::i;5263:131::-;-1:-1:-1;;;;;5338:31:1;;5328:42;;5318:70;;5384:1;5381;5374:12;5399:315;5467:6;5475;5528:2;5516:9;5507:7;5503:23;5499:32;5496:52;;;5544:1;5541;5534:12;5496:52;5583:9;5570:23;5602:31;5627:5;5602:31;:::i;:::-;5652:5;5704:2;5689:18;;;;5676:32;;-1:-1:-1;;;5399:315:1:o;5719:844::-;5772:5;5825:3;5818:4;5810:6;5806:17;5802:27;5792:55;;5843:1;5840;5833:12;5792:55;5879:6;5866:20;5905:4;5929:60;5945:43;5985:2;5945:43;:::i;5929:60::-;6023:15;;;6109:1;6105:10;;;;6093:23;;6089:32;;;6054:12;;;;6133:15;;;6130:35;;;6161:1;6158;6151:12;6130:35;6197:2;6189:6;6185:15;6209:325;6225:6;6220:3;6217:15;6209:325;;;6305:3;6292:17;-1:-1:-1;;;;;6346:5:1;6342:30;6335:5;6332:41;6322:139;;6415:1;6444:2;6440;6433:14;6322:139;6474:18;;6512:12;;;;6242;;6209:325;;6568:815;6717:6;6725;6733;6786:2;6774:9;6765:7;6761:23;6757:32;6754:52;;;6802:1;6799;6792:12;6754:52;6842:9;6829:23;-1:-1:-1;;;;;6912:2:1;6904:6;6901:14;6898:34;;;6928:1;6925;6918:12;6898:34;6951:60;7003:7;6994:6;6983:9;6979:22;6951:60;:::i;:::-;6941:70;;7064:2;7053:9;7049:18;7036:32;7020:48;;7093:2;7083:8;7080:16;7077:36;;;7109:1;7106;7099:12;7077:36;7132:62;7186:7;7175:8;7164:9;7160:24;7132:62;:::i;:::-;7122:72;;7247:2;7236:9;7232:18;7219:32;7203:48;;7276:2;7266:8;7263:16;7260:36;;;7292:1;7289;7282:12;7260:36;;7315:62;7369:7;7358:8;7347:9;7343:24;7315:62;:::i;:::-;7305:72;;;6568:815;;;;;:::o;7570:456::-;7647:6;7655;7663;7716:2;7704:9;7695:7;7691:23;7687:32;7684:52;;;7732:1;7729;7722:12;7684:52;7771:9;7758:23;7790:31;7815:5;7790:31;:::i;:::-;7840:5;-1:-1:-1;7897:2:1;7882:18;;7869:32;7910:33;7869:32;7910:33;:::i;:::-;7570:456;;7962:7;;-1:-1:-1;;;8016:2:1;8001:18;;;;7988:32;;7570:456::o;8031:1195::-;8142:6;8173:2;8216;8204:9;8195:7;8191:23;8187:32;8184:52;;;8232:1;8229;8222:12;8184:52;8272:9;8259:23;-1:-1:-1;;;;;8297:6:1;8294:30;8291:50;;;8337:1;8334;8327:12;8291:50;8360:22;;8413:4;8405:13;;8401:27;-1:-1:-1;8391:55:1;;8442:1;8439;8432:12;8391:55;8478:2;8465:16;8501:60;8517:43;8557:2;8517:43;:::i;8501:60::-;8595:15;;;8677:1;8673:10;;;;8665:19;;8661:28;;;8626:12;;;;8701:19;;;8698:39;;;8733:1;8730;8723:12;8698:39;8757:11;;;;8777:419;8793:6;8788:3;8785:15;8777:419;;;8875:4;8869:3;8860:7;8856:17;8852:28;8849:118;;;8921:1;8950:2;8946;8939:14;8849:118;8993:22;;:::i;:::-;9042:17;;9028:32;;9109:12;;;9096:26;9080:14;;;9073:50;9136:18;;8819:4;8810:14;;;;9174:12;;;;8777:419;;;9215:5;8031:1195;-1:-1:-1;;;;;;;8031:1195:1:o;9231:247::-;9290:6;9343:2;9331:9;9322:7;9318:23;9314:32;9311:52;;;9359:1;9356;9349:12;9311:52;9398:9;9385:23;9417:31;9442:5;9417:31;:::i;9483:632::-;9654:2;9706:21;;;9776:13;;9679:18;;;9798:22;;;9625:4;;9654:2;9877:15;;;;9851:2;9836:18;;;9625:4;9920:169;9934:6;9931:1;9928:13;9920:169;;;9995:13;;9983:26;;10064:15;;;;10029:12;;;;9956:1;9949:9;9920:169;;;-1:-1:-1;10106:3:1;;9483:632;-1:-1:-1;;;;;;9483:632:1:o;10387:592::-;10458:6;10466;10519:2;10507:9;10498:7;10494:23;10490:32;10487:52;;;10535:1;10532;10525:12;10487:52;10575:9;10562:23;-1:-1:-1;;;;;10645:2:1;10637:6;10634:14;10631:34;;;10661:1;10658;10651:12;10631:34;10699:6;10688:9;10684:22;10674:32;;10744:7;10737:4;10733:2;10729:13;10725:27;10715:55;;10766:1;10763;10756:12;10715:55;10806:2;10793:16;10832:2;10824:6;10821:14;10818:34;;;10848:1;10845;10838:12;10818:34;10893:7;10888:2;10879:6;10875:2;10871:15;10867:24;10864:37;10861:57;;;10914:1;10911;10904:12;10861:57;10945:2;10937:11;;;;;10967:6;;-1:-1:-1;10387:592:1;;-1:-1:-1;;;;10387:592:1:o;10984:951::-;11142:6;11150;11158;11166;11219:3;11207:9;11198:7;11194:23;11190:33;11187:53;;;11236:1;11233;11226:12;11187:53;11276:9;11263:23;-1:-1:-1;;;;;11346:2:1;11338:6;11335:14;11332:34;;;11362:1;11359;11352:12;11332:34;11385:60;11437:7;11428:6;11417:9;11413:22;11385:60;:::i;:::-;11375:70;;11498:2;11487:9;11483:18;11470:32;11454:48;;11527:2;11517:8;11514:16;11511:36;;;11543:1;11540;11533:12;11511:36;11566:62;11620:7;11609:8;11598:9;11594:24;11566:62;:::i;:::-;11556:72;;11681:2;11670:9;11666:18;11653:32;11637:48;;11710:2;11700:8;11697:16;11694:36;;;11726:1;11723;11716:12;11694:36;;11749:62;11803:7;11792:8;11781:9;11777:24;11749:62;:::i;:::-;11739:72;;;11861:2;11850:9;11846:18;11833:32;11874:31;11899:5;11874:31;:::i;:::-;10984:951;;;;-1:-1:-1;10984:951:1;;-1:-1:-1;;10984:951:1:o;11940:316::-;12017:6;12025;12033;12086:2;12074:9;12065:7;12061:23;12057:32;12054:52;;;12102:1;12099;12092:12;12054:52;-1:-1:-1;;12125:23:1;;;12195:2;12180:18;;12167:32;;-1:-1:-1;12246:2:1;12231:18;;;12218:32;;11940:316;-1:-1:-1;11940:316:1:o;12261:248::-;12329:6;12337;12390:2;12378:9;12369:7;12365:23;12361:32;12358:52;;;12406:1;12403;12396:12;12358:52;-1:-1:-1;;12429:23:1;;;12499:2;12484:18;;;12471:32;;-1:-1:-1;12261:248:1:o;12514:118::-;12600:5;12593:13;12586:21;12579:5;12576:32;12566:60;;12622:1;12619;12612:12;12637:241;12693:6;12746:2;12734:9;12725:7;12721:23;12717:32;12714:52;;;12762:1;12759;12752:12;12714:52;12801:9;12788:23;12820:28;12842:5;12820:28;:::i;12883:382::-;12948:6;12956;13009:2;12997:9;12988:7;12984:23;12980:32;12977:52;;;13025:1;13022;13015:12;12977:52;13064:9;13051:23;13083:31;13108:5;13083:31;:::i;:::-;13133:5;-1:-1:-1;13190:2:1;13175:18;;13162:32;13203:30;13162:32;13203:30;:::i;:::-;13252:7;13242:17;;;12883:382;;;;;:::o;13270:795::-;13365:6;13373;13381;13389;13442:3;13430:9;13421:7;13417:23;13413:33;13410:53;;;13459:1;13456;13449:12;13410:53;13498:9;13485:23;13517:31;13542:5;13517:31;:::i;:::-;13567:5;-1:-1:-1;13624:2:1;13609:18;;13596:32;13637:33;13596:32;13637:33;:::i;:::-;13689:7;-1:-1:-1;13743:2:1;13728:18;;13715:32;;-1:-1:-1;13798:2:1;13783:18;;13770:32;-1:-1:-1;;;;;13814:30:1;;13811:50;;;13857:1;13854;13847:12;13811:50;13880:22;;13933:4;13925:13;;13921:27;-1:-1:-1;13911:55:1;;13962:1;13959;13952:12;13911:55;13985:74;14051:7;14046:2;14033:16;14028:2;14024;14020:11;13985:74;:::i;:::-;13975:84;;;13270:795;;;;;;;:::o;14275:388::-;14343:6;14351;14404:2;14392:9;14383:7;14379:23;14375:32;14372:52;;;14420:1;14417;14410:12;14372:52;14459:9;14446:23;14478:31;14503:5;14478:31;:::i;:::-;14528:5;-1:-1:-1;14585:2:1;14570:18;;14557:32;14598:33;14557:32;14598:33;:::i;14668:356::-;14870:2;14852:21;;;14889:18;;;14882:30;14948:34;14943:2;14928:18;;14921:62;15015:2;15000:18;;14668:356::o;15029:127::-;15090:10;15085:3;15081:20;15078:1;15071:31;15121:4;15118:1;15111:15;15145:4;15142:1;15135:15;15161:380;15240:1;15236:12;;;;15283;;;15304:61;;15358:4;15350:6;15346:17;15336:27;;15304:61;15411:2;15403:6;15400:14;15380:18;15377:38;15374:161;;15457:10;15452:3;15448:20;15445:1;15438:31;15492:4;15489:1;15482:15;15520:4;15517:1;15510:15;15374:161;;15161:380;;;:::o;15672:545::-;15774:2;15769:3;15766:11;15763:448;;;15810:1;15835:5;15831:2;15824:17;15880:4;15876:2;15866:19;15950:2;15938:10;15934:19;15931:1;15927:27;15921:4;15917:38;15986:4;15974:10;15971:20;15968:47;;;-1:-1:-1;16009:4:1;15968:47;16064:2;16059:3;16055:12;16052:1;16048:20;16042:4;16038:31;16028:41;;16119:82;16137:2;16130:5;16127:13;16119:82;;;16182:17;;;16163:1;16152:13;16119:82;;16393:1352;16519:3;16513:10;-1:-1:-1;;;;;16538:6:1;16535:30;16532:56;;;16568:18;;:::i;:::-;16597:97;16687:6;16647:38;16679:4;16673:11;16647:38;:::i;:::-;16641:4;16597:97;:::i;:::-;16749:4;;16813:2;16802:14;;16830:1;16825:663;;;;17532:1;17549:6;17546:89;;;-1:-1:-1;17601:19:1;;;17595:26;17546:89;-1:-1:-1;;16350:1:1;16346:11;;;16342:24;16338:29;16328:40;16374:1;16370:11;;;16325:57;17648:81;;16795:944;;16825:663;15619:1;15612:14;;;15656:4;15643:18;;-1:-1:-1;;16861:20:1;;;16979:236;16993:7;16990:1;16987:14;16979:236;;;17082:19;;;17076:26;17061:42;;17174:27;;;;17142:1;17130:14;;;;17009:19;;16979:236;;;16983:3;17243:6;17234:7;17231:19;17228:201;;;17304:19;;;17298:26;-1:-1:-1;;17387:1:1;17383:14;;;17399:3;17379:24;17375:37;17371:42;17356:58;17341:74;;17228:201;-1:-1:-1;;;;;17475:1:1;17459:14;;;17455:22;17442:36;;-1:-1:-1;16393:1352:1:o;17750:127::-;17811:10;17806:3;17802:20;17799:1;17792:31;17842:4;17839:1;17832:15;17866:4;17863:1;17856:15;17882:135;17921:3;17942:17;;;17939:43;;17962:18;;:::i;:::-;-1:-1:-1;18009:1:1;17998:13;;17882:135::o;18725:344::-;18927:2;18909:21;;;18966:2;18946:18;;;18939:30;-1:-1:-1;;;19000:2:1;18985:18;;18978:50;19060:2;19045:18;;18725:344::o;19775:125::-;19840:9;;;19861:10;;;19858:36;;;19874:18;;:::i;21678:168::-;21751:9;;;21782;;21799:15;;;21793:22;;21779:37;21769:71;;21820:18;;:::i;22160:245::-;22227:6;22280:2;22268:9;22259:7;22255:23;22251:32;22248:52;;;22296:1;22293;22286:12;22248:52;22328:9;22322:16;22347:28;22369:5;22347:28;:::i;23324:184::-;23394:6;23447:2;23435:9;23426:7;23422:23;23418:32;23415:52;;;23463:1;23460;23453:12;23415:52;-1:-1:-1;23486:16:1;;23324:184;-1:-1:-1;23324:184:1:o;23792:1206::-;-1:-1:-1;;;;;23911:3:1;23908:27;23905:53;;;23938:18;;:::i;:::-;23967:94;24057:3;24017:38;24049:4;24043:11;24017:38;:::i;:::-;24011:4;23967:94;:::i;:::-;24087:1;24112:2;24107:3;24104:11;24129:1;24124:616;;;;24784:1;24801:3;24798:93;;;-1:-1:-1;24857:19:1;;;24844:33;24798:93;-1:-1:-1;;16350:1:1;16346:11;;;16342:24;16338:29;16328:40;16374:1;16370:11;;;16325:57;24904:78;;24097:895;;24124:616;15619:1;15612:14;;;15656:4;15643:18;;-1:-1:-1;;24160:17:1;;;24261:9;24283:229;24297:7;24294:1;24291:14;24283:229;;;24386:19;;;24373:33;24358:49;;24493:4;24478:20;;;;24446:1;24434:14;;;;24313:12;24283:229;;;24287:3;24540;24531:7;24528:16;24525:159;;;24664:1;24660:6;24654:3;24648;24645:1;24641:11;24637:21;24633:34;24629:39;24616:9;24611:3;24607:19;24594:33;24590:79;24582:6;24575:95;24525:159;;;24727:1;24721:3;24718:1;24714:11;24710:19;24704:4;24697:33;24097:895;;23792:1206;;;:::o;25003:128::-;25070:9;;;25091:11;;;25088:37;;;25105:18;;:::i;25136:1304::-;25681:3;25719:6;25713:13;25735:66;25794:6;25789:3;25782:4;25774:6;25770:17;25735:66;:::i;:::-;25832:6;25827:3;25823:16;25810:29;;-1:-1:-1;;;25884:2:1;25877:5;25870:17;25918:6;25912:13;25934:78;26003:8;25999:1;25992:5;25988:13;25981:4;25973:6;25969:17;25934:78;:::i;:::-;26075:1;26031:20;;26067:10;;;26060:22;;;26107:13;;26129:75;26107:13;26191:1;26183:10;;26176:4;26164:17;;26129:75;:::i;:::-;26264:1;26223:17;;26256:10;;;26249:22;26296:13;;26318:75;26296:13;26380:1;26372:10;;26365:4;26353:17;;26318:75;:::i;:::-;26413:17;26432:1;26409:25;;25136:1304;-1:-1:-1;;;;;;25136:1304:1:o;27139:127::-;27200:10;27195:3;27191:20;27188:1;27181:31;27231:4;27228:1;27221:15;27255:4;27252:1;27245:15;27271:120;27311:1;27337;27327:35;;27342:18;;:::i;:::-;-1:-1:-1;27376:9:1;;27271:120::o;27812:1189::-;28089:3;28127:6;28121:13;28153:4;28166:64;28223:6;28218:3;28213:2;28205:6;28201:15;28166:64;:::i;:::-;28261:6;28256:3;28252:16;28239:29;;28288:1;28321:6;28315:13;28353:36;28379:9;28353:36;:::i;:::-;28408:1;28425:18;;;28452:141;;;;28607:1;28602:337;;;;28418:521;;28452:141;-1:-1:-1;;28487:24:1;;28473:39;;28564:16;;28557:24;28543:39;;28532:51;;;-1:-1:-1;28452:141:1;;28602:337;28633:6;28630:1;28623:17;28681:2;28678:1;28668:16;28706:1;28720:169;28734:8;28731:1;28728:15;28720:169;;;28816:14;;28801:13;;;28794:37;28859:16;;;;28751:10;;28720:169;;;28724:3;;28920:8;28913:5;28909:20;28902:27;;28418:521;-1:-1:-1;;;;;28948:20:1;;-1:-1:-1;;28993:1:1;28984:11;;27812:1189;-1:-1:-1;;;;;;27812:1189:1:o;29413:703::-;29640:3;29678:6;29672:13;29694:66;29753:6;29748:3;29741:4;29733:6;29729:17;29694:66;:::i;:::-;29823:13;;29782:16;;;;29845:70;29823:13;29782:16;29892:4;29880:17;;29845:70;:::i;:::-;29982:13;;29937:20;;;30004:70;29982:13;29937:20;30051:4;30039:17;;30004:70;:::i;:::-;30090:20;;29413:703;-1:-1:-1;;;;;29413:703:1:o;30121:180::-;-1:-1:-1;;;;;30226:10:1;;;30238;;;30222:27;;30261:11;;;30258:37;;;30275:18;;:::i;30306:112::-;30338:1;30364;30354:35;;30369:18;;:::i;:::-;-1:-1:-1;30403:9:1;;30306:112::o;30423:422::-;-1:-1:-1;;;30669:3:1;30662:18;30644:3;30709:6;30703:13;30725:74;30792:6;30788:1;30783:3;30779:11;30772:4;30764:6;30760:17;30725:74;:::i;:::-;30819:16;;;;30837:1;30815:24;;30423:422;-1:-1:-1;;30423:422:1:o;30850:421::-;-1:-1:-1;;;31096:3:1;31089:17;31071:3;31135:6;31129:13;31151:74;31218:6;31214:1;31209:3;31205:11;31198:4;31190:6;31186:17;31151:74;:::i;:::-;31245:16;;;;31263:1;31241:24;;30850:421;-1:-1:-1;;30850:421:1:o;31276:420::-;-1:-1:-1;;;31522:3:1;31515:16;31497:3;31560:6;31554:13;31576:74;31643:6;31639:1;31634:3;31630:11;31623:4;31615:6;31611:17;31576:74;:::i;:::-;31670:16;;;;31688:1;31666:24;;31276:420;-1:-1:-1;;31276:420:1:o;31701:489::-;-1:-1:-1;;;;;31970:15:1;;;31952:34;;32022:15;;32017:2;32002:18;;31995:43;32069:2;32054:18;;32047:34;;;32117:3;32112:2;32097:18;;32090:31;;;31895:4;;32138:46;;32164:19;;32156:6;32138:46;:::i;32195:249::-;32264:6;32317:2;32305:9;32296:7;32292:23;32288:32;32285:52;;;32333:1;32330;32323:12;32285:52;32365:9;32359:16;32384:30;32408:5;32384:30;:::i

Swarm Source

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