ETH Price: $3,454.87 (-0.93%)
Gas: 3 Gwei

Token

Kyoshi's Kingdom (KK)
 

Overview

Max Total Supply

5,555 KK

Holders

1,562

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 KK
0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kyoshi's Kingdom has ruled with an iron fist for generations. Yet, word has spread that neighboring warlords are preparing an assault on the kingdom. 5,555 soldiers have been informed to prepare for a nearing siege. Call up your soldiers and defend the kingdom!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KyoshiKingdom

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-30
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @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: 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: KyoshiKingdom.sol


pragma solidity ^0.8.0;





contract KyoshiKingdom is ERC721A, Ownable {
    using Strings for uint256;

    string public hiddenMetadataUri = "ipfs://QmRF79vsaSFruJ1unds8MUCEDiBvmAXgnapkXmBWNuXMMT/hidden.json";
    string public baseURI;
    string public baseExtension = ".json";
    bool public presale = false;
    bool public publicSale = false;
    bool public revealed;
    bytes32 public merkleRoot;
    uint256 public maxSupply = 5555;
    uint256 public freeSupply = 555;
    uint256 public maxWhitelist = 8;
    uint256 public maxPublic = 8;
    uint256 public maxFreeMint = 1;
    uint256 public maxPerTx = 4;
    uint256 public presaleCost = .02 ether;
    uint256 public publicCost = .02 ether;


    constructor(string memory _initBaseURI) ERC721A("Kyoshi's Kingdom", "KK") {
        setBaseURI(_initBaseURI);
    }

    // whitelist mint
    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
    {
        require(presale, "The whitelist sale is not enabled!"); 
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(quantity <= maxPerTx, "Quantity Exceeds The Limit");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(
            balanceOf(msg.sender) + quantity <= maxWhitelist,
            "You're not allowed to mint this Much!"
        );
        require(msg.value >= presaleCost * quantity, "Not enough ether!");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        _safeMint(msg.sender, quantity);

    }

    // public mint
    function mint(uint256 quantity) external payable {
        require(publicSale, "The public sale is not enabled!");
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        

        if (supply < freeSupply) {
            require(
                balanceOf(msg.sender) + quantity <= maxFreeMint,
                "You're not allowed to mint this Much!"
            );
        } else {
            require(quantity <= maxPerTx, "Quantity Exceeds The Limit");
            require(supply + quantity <= maxSupply, "Max supply reached!");
            require(
                balanceOf(msg.sender) + quantity <= maxPublic,
                "You're not allowed to mint this Much!"
            );
            require(msg.value >= publicCost * quantity, "Not enough ether!");
        }

        _safeMint(msg.sender, quantity);
    }

    function devMint(uint256 quantity) external onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(msg.sender, quantity);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (!revealed) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();

        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function setMaxSupply(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function setFreeSupply(uint256 _amount) public onlyOwner {
        freeSupply = _amount;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setSale(bool _presale, bool _publicSale) public onlyOwner {
        presale = _presale;
        publicSale = _publicSale;
    }

    function setMax(uint256 _presale, uint256 _public, uint256 _free) public onlyOwner {
        maxWhitelist = _presale;
        maxPublic = _public;
        maxFreeMint = _free;
    }

    function setTx(uint256 _amount) public onlyOwner {
        maxPerTx = _amount;
    }

    function setPrice(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner {
        presaleCost = _whitelistCost;
        publicCost = _publicCost;
    }

    function setReveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function airdrop(uint256 quantity, address _address) public onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity must be higher than zero!");
        require(supply + quantity <= maxSupply, "Max supply reached!");
        _safeMint(_address, quantity);
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":[],"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"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presale","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"},{"internalType":"uint256","name":"_free","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"},{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"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":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806041815260200162004da5604191396009908051906020019062000035929190620003cf565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000083929190620003cf565b506000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506115b3600e5561022b600f55600860105560086011556001601255600460135566470de4df82000060145566470de4df820000601555348015620000fd57600080fd5b5060405162004de638038062004de68339818101604052810190620001239190620004fd565b6040518060400160405280601081526020017f4b796f7368692773204b696e67646f6d000000000000000000000000000000008152506040518060400160405280600281526020017f4b4b0000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001a7929190620003cf565b508060039080519060200190620001c0929190620003cf565b50620001d16200021160201b60201c565b6000819055505050620001f9620001ed6200021a60201b60201c565b6200022260201b60201c565b6200020a81620002e860201b60201c565b5062000755565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f86200031460201b60201c565b80600a908051906020019062000310929190620003cf565b5050565b620003246200021a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034a620003a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039a9062000575565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003dd906200063d565b90600052602060002090601f0160209004810192826200040157600085556200044d565b82601f106200041c57805160ff19168380011785556200044d565b828001600101855582156200044d579182015b828111156200044c5782518255916020019190600101906200042f565b5b5090506200045c919062000460565b5090565b5b808211156200047b57600081600090555060010162000461565b5090565b6000620004966200049084620005c0565b62000597565b905082815260208101848484011115620004b557620004b46200070c565b5b620004c284828562000607565b509392505050565b600082601f830112620004e257620004e162000707565b5b8151620004f48482602086016200047f565b91505092915050565b60006020828403121562000516576200051562000716565b5b600082015167ffffffffffffffff81111562000537576200053662000711565b5b6200054584828501620004ca565b91505092915050565b60006200055d602083620005f6565b91506200056a826200072c565b602082019050919050565b6000602082019050818103600083015262000590816200054e565b9050919050565b6000620005a3620005b6565b9050620005b1828262000673565b919050565b6000604051905090565b600067ffffffffffffffff821115620005de57620005dd620006d8565b5b620005e9826200071b565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006275780820151818401526020810190506200060a565b8381111562000637576000848401525b50505050565b600060028204905060018216806200065657607f821691505b602082108114156200066d576200066c620006a9565b5b50919050565b6200067e826200071b565b810181811067ffffffffffffffff82111715620006a0576200069f620006d8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61464080620007656000396000f3fe6080604052600436106102935760003560e01c80637cb647591161015a578063c6682862116100c1578063ee82e5a01161007a578063ee82e5a0146109ae578063f2fde38b146109d7578063f676308a14610a00578063f7d9757714610a29578063f968adbe14610a52578063fdea8e0b14610a7d57610293565b8063c668286214610899578063c87b56dd146108c4578063d2cab05614610901578063d5abeb011461091d578063da3ef23f14610948578063e985e9c51461097157610293565b8063a22cb46511610113578063a22cb4651461079d578063a45ba8e7146107c6578063a591252d146107f1578063b88d4fde1461081c578063bc63f02e14610845578063bf0d96c31461086e57610293565b80637cb64759146106ac5780637dc42975146106d55780638693da20146107005780638da5cb5b1461072b57806395d89b4114610756578063a0712d681461078157610293565b80633ccfd60b116101fe5780636352211e116101b75780636352211e1461059e5780636c0360eb146105db5780636f609852146106065780636f8b44b01461062f57806370a0823114610658578063715018a61461069557610293565b80633ccfd60b146104b857806342842e0e146104cf5780634fdd43cb146104f8578063518302271461052157806355f804b31461054c578063620cc86c1461057557610293565b806324a6ab0c1161025057806324a6ab0c146103ba5780632a23d07d146103e55780632a3f300c146104105780632eb4a7ab1461043957806333bc1c5c14610464578063375a069a1461048f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806318160ddd1461036657806323b872dd14610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613577565b610aa8565b6040516102cc9190613ba1565b60405180910390f35b3480156102e157600080fd5b506102ea610b8a565b6040516102f79190613bd7565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061361a565b610c1c565b6040516103349190613b3a565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061349d565b610c98565b005b34801561037257600080fd5b5061037b610da3565b6040516103889190613d99565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613387565b610dba565b005b3480156103c657600080fd5b506103cf610dca565b6040516103dc9190613d99565b60405180910390f35b3480156103f157600080fd5b506103fa610dd0565b6040516104079190613d99565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906134dd565b610dd6565b005b34801561044557600080fd5b5061044e610dfb565b60405161045b9190613bbc565b60405180910390f35b34801561047057600080fd5b50610479610e01565b6040516104869190613ba1565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061361a565b610e14565b005b3480156104c457600080fd5b506104cd610ec9565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613387565b610f51565b005b34801561050457600080fd5b5061051f600480360381019061051a91906135d1565b610f71565b005b34801561052d57600080fd5b50610536610f93565b6040516105439190613ba1565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906135d1565b610fa6565b005b34801561058157600080fd5b5061059c6004803603810190610597919061361a565b610fc8565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061361a565b610fda565b6040516105d29190613b3a565b60405180910390f35b3480156105e757600080fd5b506105f0610ff0565b6040516105fd9190613bd7565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613727565b61107e565b005b34801561063b57600080fd5b506106566004803603810190610651919061361a565b6110a0565b005b34801561066457600080fd5b5061067f600480360381019061067a919061331a565b6110b2565b60405161068c9190613d99565b60405180910390f35b3480156106a157600080fd5b506106aa611182565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061354a565b611196565b005b3480156106e157600080fd5b506106ea6111a8565b6040516106f79190613d99565b60405180910390f35b34801561070c57600080fd5b506107156111ae565b6040516107229190613d99565b60405180910390f35b34801561073757600080fd5b506107406111b4565b60405161074d9190613b3a565b60405180910390f35b34801561076257600080fd5b5061076b6111de565b6040516107789190613bd7565b60405180910390f35b61079b6004803603810190610796919061361a565b611270565b005b3480156107a957600080fd5b506107c460048036038101906107bf919061345d565b6114c1565b005b3480156107d257600080fd5b506107db611639565b6040516107e89190613bd7565b60405180910390f35b3480156107fd57600080fd5b506108066116c7565b6040516108139190613d99565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906133da565b6116cd565b005b34801561085157600080fd5b5061086c60048036038101906108679190613647565b611749565b005b34801561087a57600080fd5b506108836117ff565b6040516108909190613d99565b60405180910390f35b3480156108a557600080fd5b506108ae611805565b6040516108bb9190613bd7565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061361a565b611893565b6040516108f89190613bd7565b60405180910390f35b61091b60048036038101906109169190613687565b6119e4565b005b34801561092957600080fd5b50610932611c88565b60405161093f9190613d99565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906135d1565b611c8e565b005b34801561097d57600080fd5b5061099860048036038101906109939190613347565b611cb0565b6040516109a59190613ba1565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d0919061350a565b611d44565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061331a565b611d84565b005b348015610a0c57600080fd5b50610a276004803603810190610a22919061361a565b611e08565b005b348015610a3557600080fd5b50610a506004803603810190610a4b91906136e7565b611e1a565b005b348015610a5e57600080fd5b50610a67611e34565b604051610a749190613d99565b60405180910390f35b348015610a8957600080fd5b50610a92611e3a565b604051610a9f9190613ba1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b835750610b8282611e4d565b5b9050919050565b606060028054610b9990614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590614073565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c2782611eb7565b610c5d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca382610fda565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2a611f05565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5c5750610d5a81610d55611f05565b611cb0565b155b15610d93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9e838383611f0d565b505050565b6000610dad611fbf565b6001546000540303905090565b610dc5838383611fc8565b505050565b600f5481565b60145481565b610dde61247e565b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b600c60019054906101000a900460ff1681565b610e1c61247e565b6000610e26610da3565b905060008211610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613cb9565b60405180910390fd5b600e548282610e7a9190613e9e565b1115610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613d19565b60405180910390fd5b610ec533836124fc565b5050565b610ed161247e565b6000610edb6111b4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610efe90613b25565b60006040518083038185875af1925050503d8060008114610f3b576040519150601f19603f3d011682016040523d82523d6000602084013e610f40565b606091505b5050905080610f4e57600080fd5b50565b610f6c838383604051806020016040528060008152506116cd565b505050565b610f7961247e565b8060099080519060200190610f8f929190613080565b5050565b600c60029054906101000a900460ff1681565b610fae61247e565b80600a9080519060200190610fc4929190613080565b5050565b610fd061247e565b8060138190555050565b6000610fe58261251a565b600001519050919050565b600a8054610ffd90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461102990614073565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b61108661247e565b826010819055508160118190555080601281905550505050565b6110a861247e565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61118a61247e565b61119460006127a9565b565b61119e61247e565b80600d8190555050565b60115481565b60155481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111ed90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461121990614073565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b600c60019054906101000a900460ff166112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613d79565b60405180910390fd5b60006112c9610da3565b90506000821161130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613cb9565b60405180910390fd5b600f548110156113755760125482611325336110b2565b61132f9190613e9e565b1115611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790613c19565b60405180910390fd5b6114b3565b6013548211156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190613c59565b60405180910390fd5b600e5482826113c99190613e9e565b111561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613d19565b60405180910390fd5b60115482611417336110b2565b6114219190613e9e565b1115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613c19565b60405180910390fd5b816015546114709190613f25565b3410156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613bf9565b60405180910390fd5b5b6114bd33836124fc565b5050565b6114c9611f05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061153b611f05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e8611f05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162d9190613ba1565b60405180910390a35050565b6009805461164690614073565b80601f016020809104026020016040519081016040528092919081815260200182805461167290614073565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b505050505081565b60125481565b6116d8848484611fc8565b6116f78373ffffffffffffffffffffffffffffffffffffffff1661286f565b801561170c575061170a84848484612892565b155b15611743576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175161247e565b600061175b610da3565b9050600083116117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613cb9565b60405180910390fd5b600e5483826117af9190613e9e565b11156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613d19565b60405180910390fd5b6117fa82846124fc565b505050565b60105481565b600b805461181290614073565b80601f016020809104026020016040519081016040528092919081815260200182805461183e90614073565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b505050505081565b606061189e82611eb7565b6118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613cf9565b60405180910390fd5b600c60029054906101000a900460ff1661198357600980546118fe90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90614073565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b505050505090506119df565b600061198d6129f2565b905060008151116119ad57604051806020016040528060008152506119db565b806119b784612a84565b600b6040516020016119cb93929190613af4565b6040516020818303038152906040525b9150505b919050565b600c60009054906101000a900460ff16611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613d39565b60405180910390fd5b6000611a3d610da3565b905060008411611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613c99565b60405180910390fd5b601354841115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613c59565b60405180910390fd5b600e548482611ad69190613e9e565b1115611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613d59565b60405180910390fd5b60105484611b24336110b2565b611b2e9190613e9e565b1115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613c19565b60405180910390fd5b83601454611b7d9190613f25565b341015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613bf9565b60405180910390fd5b600033604051602001611bd29190613ad9565b604051602081830303815290604052805190602001209050611c38848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612be5565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613c39565b60405180910390fd5b611c8133866124fc565b5050505050565b600e5481565b611c9661247e565b80600b9080519060200190611cac929190613080565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d4c61247e565b81600c60006101000a81548160ff02191690831515021790555080600c60016101000a81548160ff0219169083151502179055505050565b611d8c61247e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613c79565b60405180910390fd5b611e05816127a9565b50565b611e1061247e565b80600f8190555050565b611e2261247e565b81601481905550806015819055505050565b60135481565b600c60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ec2611fbf565b11158015611ed1575060005482105b8015611efe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd38261251a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661205f611f05565b73ffffffffffffffffffffffffffffffffffffffff16148061208e575061208d85612088611f05565b611cb0565b5b806120d3575061209c611f05565b73ffffffffffffffffffffffffffffffffffffffff166120bb84610c1c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061210c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612173576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121808585856001612bfc565b61218c60008487611f0d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561240c57600054821461240b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124778585856001612c02565b5050505050565b612486611f05565b73ffffffffffffffffffffffffffffffffffffffff166124a46111b4565b73ffffffffffffffffffffffffffffffffffffffff16146124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190613cd9565b60405180910390fd5b565b612516828260405180602001604052806000815250612c08565b5050565b612522613106565b600082905080612530611fbf565b1115801561253f575060005481105b15612772576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126545780925050506127a4565b5b60011561276f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461276a5780925050506127a4565b612655565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611f05565b8786866040518563ffffffff1660e01b81526004016128da9493929190613b55565b602060405180830381600087803b1580156128f457600080fd5b505af192505050801561292557506040513d601f19601f8201168201806040525081019061292291906135a4565b60015b61299f573d8060008114612955576040519150601f19603f3d011682016040523d82523d6000602084013e61295a565b606091505b50600081511415612997576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a0190614073565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2d90614073565b8015612a7a5780601f10612a4f57610100808354040283529160200191612a7a565b820191906000526020600020905b815481529060010190602001808311612a5d57829003601f168201915b5050505050905090565b60606000821415612acc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be0565b600082905060005b60008214612afe578080612ae7906140d6565b915050600a82612af79190613ef4565b9150612ad4565b60008167ffffffffffffffff811115612b1a57612b19614230565b5b6040519080825280601f01601f191660200182016040528015612b4c5781602001600182028036833780820191505090505b5090505b60008514612bd957600182612b659190613f7f565b9150600a85612b749190614143565b6030612b809190613e9e565b60f81b818381518110612b9657612b95614201565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd29190613ef4565b9450612b50565b8093505050505b919050565b600082612bf28584612c1a565b1490509392505050565b50505050565b50505050565b612c158383836001612c70565b505050565b60008082905060005b8451811015612c6557612c5082868381518110612c4357612c42614201565b5b602002602001015161303e565b91508080612c5d906140d6565b915050612c23565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cdd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d18576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d256000868387612bfc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612eef5750612eee8773ffffffffffffffffffffffffffffffffffffffff1661286f565b5b15612fb5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f646000888480600101955088612892565b612f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ef5578260005414612fb057600080fd5b613021565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fb6575b8160008190555050506130376000868387612c02565b5050505050565b6000818310613056576130518284613069565b613061565b6130608383613069565b5b905092915050565b600082600052816020526040600020905092915050565b82805461308c90614073565b90600052602060002090601f0160209004810192826130ae57600085556130f5565b82601f106130c757805160ff19168380011785556130f5565b828001600101855582156130f5579182015b828111156130f45782518255916020019190600101906130d9565b5b5090506131029190613149565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561316257600081600090555060010161314a565b5090565b600061317961317484613dd9565b613db4565b9050828152602081018484840111156131955761319461426e565b5b6131a0848285614031565b509392505050565b60006131bb6131b684613e0a565b613db4565b9050828152602081018484840111156131d7576131d661426e565b5b6131e2848285614031565b509392505050565b6000813590506131f981614597565b92915050565b60008083601f84011261321557613214614264565b5b8235905067ffffffffffffffff8111156132325761323161425f565b5b60208301915083602082028301111561324e5761324d614269565b5b9250929050565b600081359050613264816145ae565b92915050565b600081359050613279816145c5565b92915050565b60008135905061328e816145dc565b92915050565b6000815190506132a3816145dc565b92915050565b600082601f8301126132be576132bd614264565b5b81356132ce848260208601613166565b91505092915050565b600082601f8301126132ec576132eb614264565b5b81356132fc8482602086016131a8565b91505092915050565b600081359050613314816145f3565b92915050565b6000602082840312156133305761332f614278565b5b600061333e848285016131ea565b91505092915050565b6000806040838503121561335e5761335d614278565b5b600061336c858286016131ea565b925050602061337d858286016131ea565b9150509250929050565b6000806000606084860312156133a05761339f614278565b5b60006133ae868287016131ea565b93505060206133bf868287016131ea565b92505060406133d086828701613305565b9150509250925092565b600080600080608085870312156133f4576133f3614278565b5b6000613402878288016131ea565b9450506020613413878288016131ea565b935050604061342487828801613305565b925050606085013567ffffffffffffffff81111561344557613444614273565b5b613451878288016132a9565b91505092959194509250565b6000806040838503121561347457613473614278565b5b6000613482858286016131ea565b925050602061349385828601613255565b9150509250929050565b600080604083850312156134b4576134b3614278565b5b60006134c2858286016131ea565b92505060206134d385828601613305565b9150509250929050565b6000602082840312156134f3576134f2614278565b5b600061350184828501613255565b91505092915050565b6000806040838503121561352157613520614278565b5b600061352f85828601613255565b925050602061354085828601613255565b9150509250929050565b6000602082840312156135605761355f614278565b5b600061356e8482850161326a565b91505092915050565b60006020828403121561358d5761358c614278565b5b600061359b8482850161327f565b91505092915050565b6000602082840312156135ba576135b9614278565b5b60006135c884828501613294565b91505092915050565b6000602082840312156135e7576135e6614278565b5b600082013567ffffffffffffffff81111561360557613604614273565b5b613611848285016132d7565b91505092915050565b6000602082840312156136305761362f614278565b5b600061363e84828501613305565b91505092915050565b6000806040838503121561365e5761365d614278565b5b600061366c85828601613305565b925050602061367d858286016131ea565b9150509250929050565b6000806000604084860312156136a05761369f614278565b5b60006136ae86828701613305565b935050602084013567ffffffffffffffff8111156136cf576136ce614273565b5b6136db868287016131ff565b92509250509250925092565b600080604083850312156136fe576136fd614278565b5b600061370c85828601613305565b925050602061371d85828601613305565b9150509250929050565b6000806000606084860312156137405761373f614278565b5b600061374e86828701613305565b935050602061375f86828701613305565b925050604061377086828701613305565b9150509250925092565b61378381613fb3565b82525050565b61379a61379582613fb3565b61411f565b82525050565b6137a981613fc5565b82525050565b6137b881613fd1565b82525050565b60006137c982613e50565b6137d38185613e66565b93506137e3818560208601614040565b6137ec8161427d565b840191505092915050565b600061380282613e5b565b61380c8185613e82565b935061381c818560208601614040565b6138258161427d565b840191505092915050565b600061383b82613e5b565b6138458185613e93565b9350613855818560208601614040565b80840191505092915050565b6000815461386e81614073565b6138788186613e93565b9450600182166000811461389357600181146138a4576138d7565b60ff198316865281860193506138d7565b6138ad85613e3b565b60005b838110156138cf578154818901526001820191506020810190506138b0565b838801955050505b50505092915050565b60006138ed601183613e82565b91506138f88261429b565b602082019050919050565b6000613910602583613e82565b915061391b826142c4565b604082019050919050565b6000613933600e83613e82565b915061393e82614313565b602082019050919050565b6000613956601a83613e82565b91506139618261433c565b602082019050919050565b6000613979602683613e82565b915061398482614365565b604082019050919050565b600061399c602183613e82565b91506139a7826143b4565b604082019050919050565b60006139bf602283613e82565b91506139ca82614403565b604082019050919050565b60006139e2602083613e82565b91506139ed82614452565b602082019050919050565b6000613a05602f83613e82565b9150613a108261447b565b604082019050919050565b6000613a28600083613e77565b9150613a33826144ca565b600082019050919050565b6000613a4b601383613e82565b9150613a56826144cd565b602082019050919050565b6000613a6e602283613e82565b9150613a79826144f6565b604082019050919050565b6000613a91601283613e82565b9150613a9c82614545565b602082019050919050565b6000613ab4601f83613e82565b9150613abf8261456e565b602082019050919050565b613ad381614027565b82525050565b6000613ae58284613789565b60148201915081905092915050565b6000613b008286613830565b9150613b0c8285613830565b9150613b188284613861565b9150819050949350505050565b6000613b3082613a1b565b9150819050919050565b6000602082019050613b4f600083018461377a565b92915050565b6000608082019050613b6a600083018761377a565b613b77602083018661377a565b613b846040830185613aca565b8181036060830152613b9681846137be565b905095945050505050565b6000602082019050613bb660008301846137a0565b92915050565b6000602082019050613bd160008301846137af565b92915050565b60006020820190508181036000830152613bf181846137f7565b905092915050565b60006020820190508181036000830152613c12816138e0565b9050919050565b60006020820190508181036000830152613c3281613903565b9050919050565b60006020820190508181036000830152613c5281613926565b9050919050565b60006020820190508181036000830152613c7281613949565b9050919050565b60006020820190508181036000830152613c928161396c565b9050919050565b60006020820190508181036000830152613cb28161398f565b9050919050565b60006020820190508181036000830152613cd2816139b2565b9050919050565b60006020820190508181036000830152613cf2816139d5565b9050919050565b60006020820190508181036000830152613d12816139f8565b9050919050565b60006020820190508181036000830152613d3281613a3e565b9050919050565b60006020820190508181036000830152613d5281613a61565b9050919050565b60006020820190508181036000830152613d7281613a84565b9050919050565b60006020820190508181036000830152613d9281613aa7565b9050919050565b6000602082019050613dae6000830184613aca565b92915050565b6000613dbe613dcf565b9050613dca82826140a5565b919050565b6000604051905090565b600067ffffffffffffffff821115613df457613df3614230565b5b613dfd8261427d565b9050602081019050919050565b600067ffffffffffffffff821115613e2557613e24614230565b5b613e2e8261427d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea982614027565b9150613eb483614027565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee957613ee8614174565b5b828201905092915050565b6000613eff82614027565b9150613f0a83614027565b925082613f1a57613f196141a3565b5b828204905092915050565b6000613f3082614027565b9150613f3b83614027565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7457613f73614174565b5b828202905092915050565b6000613f8a82614027565b9150613f9583614027565b925082821015613fa857613fa7614174565b5b828203905092915050565b6000613fbe82614007565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561405e578082015181840152602081019050614043565b8381111561406d576000848401525b50505050565b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e6141d2565b5b50919050565b6140ae8261427d565b810181811067ffffffffffffffff821117156140cd576140cc614230565b5b80604052505050565b60006140e182614027565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561411457614113614174565b5b600182019050919050565b600061412a82614131565b9050919050565b600061413c8261428e565b9050919050565b600061414e82614027565b915061415983614027565b925082614169576141686141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f5175616e74697479204578636565647320546865204c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b6145a081613fb3565b81146145ab57600080fd5b50565b6145b781613fc5565b81146145c257600080fd5b50565b6145ce81613fd1565b81146145d957600080fd5b50565b6145e581613fdb565b81146145f057600080fd5b50565b6145fc81614027565b811461460757600080fd5b5056fea26469706673582212203d39489dea02a42ea97090219443db66c8a5eaf86143b59a121070d4bc1025f364736f6c63430008070033697066733a2f2f516d52463739767361534672754a31756e6473384d554345446942766d4158676e61706b586d42574e75584d4d542f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000012e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637cb647591161015a578063c6682862116100c1578063ee82e5a01161007a578063ee82e5a0146109ae578063f2fde38b146109d7578063f676308a14610a00578063f7d9757714610a29578063f968adbe14610a52578063fdea8e0b14610a7d57610293565b8063c668286214610899578063c87b56dd146108c4578063d2cab05614610901578063d5abeb011461091d578063da3ef23f14610948578063e985e9c51461097157610293565b8063a22cb46511610113578063a22cb4651461079d578063a45ba8e7146107c6578063a591252d146107f1578063b88d4fde1461081c578063bc63f02e14610845578063bf0d96c31461086e57610293565b80637cb64759146106ac5780637dc42975146106d55780638693da20146107005780638da5cb5b1461072b57806395d89b4114610756578063a0712d681461078157610293565b80633ccfd60b116101fe5780636352211e116101b75780636352211e1461059e5780636c0360eb146105db5780636f609852146106065780636f8b44b01461062f57806370a0823114610658578063715018a61461069557610293565b80633ccfd60b146104b857806342842e0e146104cf5780634fdd43cb146104f8578063518302271461052157806355f804b31461054c578063620cc86c1461057557610293565b806324a6ab0c1161025057806324a6ab0c146103ba5780632a23d07d146103e55780632a3f300c146104105780632eb4a7ab1461043957806333bc1c5c14610464578063375a069a1461048f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806318160ddd1461036657806323b872dd14610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613577565b610aa8565b6040516102cc9190613ba1565b60405180910390f35b3480156102e157600080fd5b506102ea610b8a565b6040516102f79190613bd7565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061361a565b610c1c565b6040516103349190613b3a565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061349d565b610c98565b005b34801561037257600080fd5b5061037b610da3565b6040516103889190613d99565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613387565b610dba565b005b3480156103c657600080fd5b506103cf610dca565b6040516103dc9190613d99565b60405180910390f35b3480156103f157600080fd5b506103fa610dd0565b6040516104079190613d99565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906134dd565b610dd6565b005b34801561044557600080fd5b5061044e610dfb565b60405161045b9190613bbc565b60405180910390f35b34801561047057600080fd5b50610479610e01565b6040516104869190613ba1565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061361a565b610e14565b005b3480156104c457600080fd5b506104cd610ec9565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613387565b610f51565b005b34801561050457600080fd5b5061051f600480360381019061051a91906135d1565b610f71565b005b34801561052d57600080fd5b50610536610f93565b6040516105439190613ba1565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906135d1565b610fa6565b005b34801561058157600080fd5b5061059c6004803603810190610597919061361a565b610fc8565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061361a565b610fda565b6040516105d29190613b3a565b60405180910390f35b3480156105e757600080fd5b506105f0610ff0565b6040516105fd9190613bd7565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613727565b61107e565b005b34801561063b57600080fd5b506106566004803603810190610651919061361a565b6110a0565b005b34801561066457600080fd5b5061067f600480360381019061067a919061331a565b6110b2565b60405161068c9190613d99565b60405180910390f35b3480156106a157600080fd5b506106aa611182565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061354a565b611196565b005b3480156106e157600080fd5b506106ea6111a8565b6040516106f79190613d99565b60405180910390f35b34801561070c57600080fd5b506107156111ae565b6040516107229190613d99565b60405180910390f35b34801561073757600080fd5b506107406111b4565b60405161074d9190613b3a565b60405180910390f35b34801561076257600080fd5b5061076b6111de565b6040516107789190613bd7565b60405180910390f35b61079b6004803603810190610796919061361a565b611270565b005b3480156107a957600080fd5b506107c460048036038101906107bf919061345d565b6114c1565b005b3480156107d257600080fd5b506107db611639565b6040516107e89190613bd7565b60405180910390f35b3480156107fd57600080fd5b506108066116c7565b6040516108139190613d99565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906133da565b6116cd565b005b34801561085157600080fd5b5061086c60048036038101906108679190613647565b611749565b005b34801561087a57600080fd5b506108836117ff565b6040516108909190613d99565b60405180910390f35b3480156108a557600080fd5b506108ae611805565b6040516108bb9190613bd7565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061361a565b611893565b6040516108f89190613bd7565b60405180910390f35b61091b60048036038101906109169190613687565b6119e4565b005b34801561092957600080fd5b50610932611c88565b60405161093f9190613d99565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906135d1565b611c8e565b005b34801561097d57600080fd5b5061099860048036038101906109939190613347565b611cb0565b6040516109a59190613ba1565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d0919061350a565b611d44565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061331a565b611d84565b005b348015610a0c57600080fd5b50610a276004803603810190610a22919061361a565b611e08565b005b348015610a3557600080fd5b50610a506004803603810190610a4b91906136e7565b611e1a565b005b348015610a5e57600080fd5b50610a67611e34565b604051610a749190613d99565b60405180910390f35b348015610a8957600080fd5b50610a92611e3a565b604051610a9f9190613ba1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b835750610b8282611e4d565b5b9050919050565b606060028054610b9990614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590614073565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c2782611eb7565b610c5d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca382610fda565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2a611f05565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5c5750610d5a81610d55611f05565b611cb0565b155b15610d93576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9e838383611f0d565b505050565b6000610dad611fbf565b6001546000540303905090565b610dc5838383611fc8565b505050565b600f5481565b60145481565b610dde61247e565b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b600c60019054906101000a900460ff1681565b610e1c61247e565b6000610e26610da3565b905060008211610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613cb9565b60405180910390fd5b600e548282610e7a9190613e9e565b1115610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613d19565b60405180910390fd5b610ec533836124fc565b5050565b610ed161247e565b6000610edb6111b4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610efe90613b25565b60006040518083038185875af1925050503d8060008114610f3b576040519150601f19603f3d011682016040523d82523d6000602084013e610f40565b606091505b5050905080610f4e57600080fd5b50565b610f6c838383604051806020016040528060008152506116cd565b505050565b610f7961247e565b8060099080519060200190610f8f929190613080565b5050565b600c60029054906101000a900460ff1681565b610fae61247e565b80600a9080519060200190610fc4929190613080565b5050565b610fd061247e565b8060138190555050565b6000610fe58261251a565b600001519050919050565b600a8054610ffd90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461102990614073565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b61108661247e565b826010819055508160118190555080601281905550505050565b6110a861247e565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61118a61247e565b61119460006127a9565b565b61119e61247e565b80600d8190555050565b60115481565b60155481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111ed90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461121990614073565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b600c60019054906101000a900460ff166112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690613d79565b60405180910390fd5b60006112c9610da3565b90506000821161130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613cb9565b60405180910390fd5b600f548110156113755760125482611325336110b2565b61132f9190613e9e565b1115611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790613c19565b60405180910390fd5b6114b3565b6013548211156113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190613c59565b60405180910390fd5b600e5482826113c99190613e9e565b111561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613d19565b60405180910390fd5b60115482611417336110b2565b6114219190613e9e565b1115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613c19565b60405180910390fd5b816015546114709190613f25565b3410156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613bf9565b60405180910390fd5b5b6114bd33836124fc565b5050565b6114c9611f05565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061153b611f05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e8611f05565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162d9190613ba1565b60405180910390a35050565b6009805461164690614073565b80601f016020809104026020016040519081016040528092919081815260200182805461167290614073565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b505050505081565b60125481565b6116d8848484611fc8565b6116f78373ffffffffffffffffffffffffffffffffffffffff1661286f565b801561170c575061170a84848484612892565b155b15611743576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61175161247e565b600061175b610da3565b9050600083116117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613cb9565b60405180910390fd5b600e5483826117af9190613e9e565b11156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613d19565b60405180910390fd5b6117fa82846124fc565b505050565b60105481565b600b805461181290614073565b80601f016020809104026020016040519081016040528092919081815260200182805461183e90614073565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b505050505081565b606061189e82611eb7565b6118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490613cf9565b60405180910390fd5b600c60029054906101000a900460ff1661198357600980546118fe90614073565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90614073565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b505050505090506119df565b600061198d6129f2565b905060008151116119ad57604051806020016040528060008152506119db565b806119b784612a84565b600b6040516020016119cb93929190613af4565b6040516020818303038152906040525b9150505b919050565b600c60009054906101000a900460ff16611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613d39565b60405180910390fd5b6000611a3d610da3565b905060008411611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613c99565b60405180910390fd5b601354841115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613c59565b60405180910390fd5b600e548482611ad69190613e9e565b1115611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613d59565b60405180910390fd5b60105484611b24336110b2565b611b2e9190613e9e565b1115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613c19565b60405180910390fd5b83601454611b7d9190613f25565b341015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613bf9565b60405180910390fd5b600033604051602001611bd29190613ad9565b604051602081830303815290604052805190602001209050611c38848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612be5565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613c39565b60405180910390fd5b611c8133866124fc565b5050505050565b600e5481565b611c9661247e565b80600b9080519060200190611cac929190613080565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d4c61247e565b81600c60006101000a81548160ff02191690831515021790555080600c60016101000a81548160ff0219169083151502179055505050565b611d8c61247e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613c79565b60405180910390fd5b611e05816127a9565b50565b611e1061247e565b80600f8190555050565b611e2261247e565b81601481905550806015819055505050565b60135481565b600c60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ec2611fbf565b11158015611ed1575060005482105b8015611efe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd38261251a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661205f611f05565b73ffffffffffffffffffffffffffffffffffffffff16148061208e575061208d85612088611f05565b611cb0565b5b806120d3575061209c611f05565b73ffffffffffffffffffffffffffffffffffffffff166120bb84610c1c565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061210c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612173576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121808585856001612bfc565b61218c60008487611f0d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561240c57600054821461240b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124778585856001612c02565b5050505050565b612486611f05565b73ffffffffffffffffffffffffffffffffffffffff166124a46111b4565b73ffffffffffffffffffffffffffffffffffffffff16146124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190613cd9565b60405180910390fd5b565b612516828260405180602001604052806000815250612c08565b5050565b612522613106565b600082905080612530611fbf565b1115801561253f575060005481105b15612772576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126545780925050506127a4565b5b60011561276f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461276a5780925050506127a4565b612655565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611f05565b8786866040518563ffffffff1660e01b81526004016128da9493929190613b55565b602060405180830381600087803b1580156128f457600080fd5b505af192505050801561292557506040513d601f19601f8201168201806040525081019061292291906135a4565b60015b61299f573d8060008114612955576040519150601f19603f3d011682016040523d82523d6000602084013e61295a565b606091505b50600081511415612997576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a0190614073565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2d90614073565b8015612a7a5780601f10612a4f57610100808354040283529160200191612a7a565b820191906000526020600020905b815481529060010190602001808311612a5d57829003601f168201915b5050505050905090565b60606000821415612acc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612be0565b600082905060005b60008214612afe578080612ae7906140d6565b915050600a82612af79190613ef4565b9150612ad4565b60008167ffffffffffffffff811115612b1a57612b19614230565b5b6040519080825280601f01601f191660200182016040528015612b4c5781602001600182028036833780820191505090505b5090505b60008514612bd957600182612b659190613f7f565b9150600a85612b749190614143565b6030612b809190613e9e565b60f81b818381518110612b9657612b95614201565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bd29190613ef4565b9450612b50565b8093505050505b919050565b600082612bf28584612c1a565b1490509392505050565b50505050565b50505050565b612c158383836001612c70565b505050565b60008082905060005b8451811015612c6557612c5082868381518110612c4357612c42614201565b5b602002602001015161303e565b91508080612c5d906140d6565b915050612c23565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cdd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d18576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d256000868387612bfc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612eef5750612eee8773ffffffffffffffffffffffffffffffffffffffff1661286f565b5b15612fb5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f646000888480600101955088612892565b612f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ef5578260005414612fb057600080fd5b613021565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612fb6575b8160008190555050506130376000868387612c02565b5050505050565b6000818310613056576130518284613069565b613061565b6130608383613069565b5b905092915050565b600082600052816020526040600020905092915050565b82805461308c90614073565b90600052602060002090601f0160209004810192826130ae57600085556130f5565b82601f106130c757805160ff19168380011785556130f5565b828001600101855582156130f5579182015b828111156130f45782518255916020019190600101906130d9565b5b5090506131029190613149565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561316257600081600090555060010161314a565b5090565b600061317961317484613dd9565b613db4565b9050828152602081018484840111156131955761319461426e565b5b6131a0848285614031565b509392505050565b60006131bb6131b684613e0a565b613db4565b9050828152602081018484840111156131d7576131d661426e565b5b6131e2848285614031565b509392505050565b6000813590506131f981614597565b92915050565b60008083601f84011261321557613214614264565b5b8235905067ffffffffffffffff8111156132325761323161425f565b5b60208301915083602082028301111561324e5761324d614269565b5b9250929050565b600081359050613264816145ae565b92915050565b600081359050613279816145c5565b92915050565b60008135905061328e816145dc565b92915050565b6000815190506132a3816145dc565b92915050565b600082601f8301126132be576132bd614264565b5b81356132ce848260208601613166565b91505092915050565b600082601f8301126132ec576132eb614264565b5b81356132fc8482602086016131a8565b91505092915050565b600081359050613314816145f3565b92915050565b6000602082840312156133305761332f614278565b5b600061333e848285016131ea565b91505092915050565b6000806040838503121561335e5761335d614278565b5b600061336c858286016131ea565b925050602061337d858286016131ea565b9150509250929050565b6000806000606084860312156133a05761339f614278565b5b60006133ae868287016131ea565b93505060206133bf868287016131ea565b92505060406133d086828701613305565b9150509250925092565b600080600080608085870312156133f4576133f3614278565b5b6000613402878288016131ea565b9450506020613413878288016131ea565b935050604061342487828801613305565b925050606085013567ffffffffffffffff81111561344557613444614273565b5b613451878288016132a9565b91505092959194509250565b6000806040838503121561347457613473614278565b5b6000613482858286016131ea565b925050602061349385828601613255565b9150509250929050565b600080604083850312156134b4576134b3614278565b5b60006134c2858286016131ea565b92505060206134d385828601613305565b9150509250929050565b6000602082840312156134f3576134f2614278565b5b600061350184828501613255565b91505092915050565b6000806040838503121561352157613520614278565b5b600061352f85828601613255565b925050602061354085828601613255565b9150509250929050565b6000602082840312156135605761355f614278565b5b600061356e8482850161326a565b91505092915050565b60006020828403121561358d5761358c614278565b5b600061359b8482850161327f565b91505092915050565b6000602082840312156135ba576135b9614278565b5b60006135c884828501613294565b91505092915050565b6000602082840312156135e7576135e6614278565b5b600082013567ffffffffffffffff81111561360557613604614273565b5b613611848285016132d7565b91505092915050565b6000602082840312156136305761362f614278565b5b600061363e84828501613305565b91505092915050565b6000806040838503121561365e5761365d614278565b5b600061366c85828601613305565b925050602061367d858286016131ea565b9150509250929050565b6000806000604084860312156136a05761369f614278565b5b60006136ae86828701613305565b935050602084013567ffffffffffffffff8111156136cf576136ce614273565b5b6136db868287016131ff565b92509250509250925092565b600080604083850312156136fe576136fd614278565b5b600061370c85828601613305565b925050602061371d85828601613305565b9150509250929050565b6000806000606084860312156137405761373f614278565b5b600061374e86828701613305565b935050602061375f86828701613305565b925050604061377086828701613305565b9150509250925092565b61378381613fb3565b82525050565b61379a61379582613fb3565b61411f565b82525050565b6137a981613fc5565b82525050565b6137b881613fd1565b82525050565b60006137c982613e50565b6137d38185613e66565b93506137e3818560208601614040565b6137ec8161427d565b840191505092915050565b600061380282613e5b565b61380c8185613e82565b935061381c818560208601614040565b6138258161427d565b840191505092915050565b600061383b82613e5b565b6138458185613e93565b9350613855818560208601614040565b80840191505092915050565b6000815461386e81614073565b6138788186613e93565b9450600182166000811461389357600181146138a4576138d7565b60ff198316865281860193506138d7565b6138ad85613e3b565b60005b838110156138cf578154818901526001820191506020810190506138b0565b838801955050505b50505092915050565b60006138ed601183613e82565b91506138f88261429b565b602082019050919050565b6000613910602583613e82565b915061391b826142c4565b604082019050919050565b6000613933600e83613e82565b915061393e82614313565b602082019050919050565b6000613956601a83613e82565b91506139618261433c565b602082019050919050565b6000613979602683613e82565b915061398482614365565b604082019050919050565b600061399c602183613e82565b91506139a7826143b4565b604082019050919050565b60006139bf602283613e82565b91506139ca82614403565b604082019050919050565b60006139e2602083613e82565b91506139ed82614452565b602082019050919050565b6000613a05602f83613e82565b9150613a108261447b565b604082019050919050565b6000613a28600083613e77565b9150613a33826144ca565b600082019050919050565b6000613a4b601383613e82565b9150613a56826144cd565b602082019050919050565b6000613a6e602283613e82565b9150613a79826144f6565b604082019050919050565b6000613a91601283613e82565b9150613a9c82614545565b602082019050919050565b6000613ab4601f83613e82565b9150613abf8261456e565b602082019050919050565b613ad381614027565b82525050565b6000613ae58284613789565b60148201915081905092915050565b6000613b008286613830565b9150613b0c8285613830565b9150613b188284613861565b9150819050949350505050565b6000613b3082613a1b565b9150819050919050565b6000602082019050613b4f600083018461377a565b92915050565b6000608082019050613b6a600083018761377a565b613b77602083018661377a565b613b846040830185613aca565b8181036060830152613b9681846137be565b905095945050505050565b6000602082019050613bb660008301846137a0565b92915050565b6000602082019050613bd160008301846137af565b92915050565b60006020820190508181036000830152613bf181846137f7565b905092915050565b60006020820190508181036000830152613c12816138e0565b9050919050565b60006020820190508181036000830152613c3281613903565b9050919050565b60006020820190508181036000830152613c5281613926565b9050919050565b60006020820190508181036000830152613c7281613949565b9050919050565b60006020820190508181036000830152613c928161396c565b9050919050565b60006020820190508181036000830152613cb28161398f565b9050919050565b60006020820190508181036000830152613cd2816139b2565b9050919050565b60006020820190508181036000830152613cf2816139d5565b9050919050565b60006020820190508181036000830152613d12816139f8565b9050919050565b60006020820190508181036000830152613d3281613a3e565b9050919050565b60006020820190508181036000830152613d5281613a61565b9050919050565b60006020820190508181036000830152613d7281613a84565b9050919050565b60006020820190508181036000830152613d9281613aa7565b9050919050565b6000602082019050613dae6000830184613aca565b92915050565b6000613dbe613dcf565b9050613dca82826140a5565b919050565b6000604051905090565b600067ffffffffffffffff821115613df457613df3614230565b5b613dfd8261427d565b9050602081019050919050565b600067ffffffffffffffff821115613e2557613e24614230565b5b613e2e8261427d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea982614027565b9150613eb483614027565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee957613ee8614174565b5b828201905092915050565b6000613eff82614027565b9150613f0a83614027565b925082613f1a57613f196141a3565b5b828204905092915050565b6000613f3082614027565b9150613f3b83614027565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7457613f73614174565b5b828202905092915050565b6000613f8a82614027565b9150613f9583614027565b925082821015613fa857613fa7614174565b5b828203905092915050565b6000613fbe82614007565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561405e578082015181840152602081019050614043565b8381111561406d576000848401525b50505050565b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e6141d2565b5b50919050565b6140ae8261427d565b810181811067ffffffffffffffff821117156140cd576140cc614230565b5b80604052505050565b60006140e182614027565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561411457614113614174565b5b600182019050919050565b600061412a82614131565b9050919050565b600061413c8261428e565b9050919050565b600061414e82614027565b915061415983614027565b925082614169576141686141a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f5175616e74697479204578636565647320546865204c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206d75737420626520686967686572207468616e207a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865642100000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f546865207075626c69632073616c65206973206e6f7420656e61626c65642100600082015250565b6145a081613fb3565b81146145ab57600080fd5b50565b6145b781613fc5565b81146145c257600080fd5b50565b6145ce81613fd1565b81146145d957600080fd5b50565b6145e581613fdb565b81146145f057600080fd5b50565b6145fc81614027565b811461460757600080fd5b5056fea26469706673582212203d39489dea02a42ea97090219443db66c8a5eaf86143b59a121070d4bc1025f364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000012e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): .

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 2e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54117:5744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39420:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40923:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40486:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35556:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41788:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54549:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54731:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58891:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54415:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56810:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59711:147;;;;;;;;;;;;;:::i;:::-;;42029:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59096:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54452:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58984:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58627:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39228:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54309:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58434:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57969:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36676:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;58175:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54625:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54776:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39589:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55898:904;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41199:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54201:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54660:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42285:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59242:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54587:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54337:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57239:722;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54972:898;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54511:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59552:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41557:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58287:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58071:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58721:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54697:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54381;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:305;36409:4;36461:25;36446:40;;;:11;:40;;;;:105;;;;36518:33;36503:48;;;:11;:48;;;;36446:105;:158;;;;36568:36;36592:11;36568:23;:36::i;:::-;36446:158;36426:178;;36307:305;;;:::o;39420:100::-;39474:13;39507:5;39500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39420:100;:::o;40923:204::-;40991:7;41016:16;41024:7;41016;:16::i;:::-;41011:64;;41041:34;;;;;;;;;;;;;;41011:64;41095:15;:24;41111:7;41095:24;;;;;;;;;;;;;;;;;;;;;41088:31;;40923:204;;;:::o;40486:371::-;40559:13;40575:24;40591:7;40575:15;:24::i;:::-;40559:40;;40620:5;40614:11;;:2;:11;;;40610:48;;;40634:24;;;;;;;;;;;;;;40610:48;40691:5;40675:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40701:37;40718:5;40725:12;:10;:12::i;:::-;40701:16;:37::i;:::-;40700:38;40675:63;40671:138;;;40762:35;;;;;;;;;;;;;;40671:138;40821:28;40830:2;40834:7;40843:5;40821:8;:28::i;:::-;40548:309;40486:371;;:::o;35556:303::-;35600:7;35825:15;:13;:15::i;:::-;35810:12;;35794:13;;:28;:46;35787:53;;35556:303;:::o;41788:170::-;41922:28;41932:4;41938:2;41942:7;41922:9;:28::i;:::-;41788:170;;;:::o;54549:31::-;;;;:::o;54731:38::-;;;;:::o;58891:85::-;13236:13;:11;:13::i;:::-;58962:6:::1;58951:8;;:17;;;;;;;;;;;;;;;;;;58891:85:::0;:::o;54479:25::-;;;;:::o;54415:30::-;;;;;;;;;;;;;:::o;56810:288::-;13236:13;:11;:13::i;:::-;56875:14:::1;56892:13;:11;:13::i;:::-;56875:30;;56935:1;56924:8;:12;56916:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57015:9;;57003:8;56994:6;:17;;;;:::i;:::-;:30;;56986:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57059:31;57069:10;57081:8;57059:9;:31::i;:::-;56864:234;56810:288:::0;:::o;59711:147::-;13236:13;:11;:13::i;:::-;59760:7:::1;59781;:5;:7::i;:::-;59773:21;;59802;59773:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59759:69;;;59847:2;59839:11;;;::::0;::::1;;59748:110;59711:147::o:0;42029:185::-;42167:39;42184:4;42190:2;42194:7;42167:39;;;;;;;;;;;;:16;:39::i;:::-;42029:185;;;:::o;59096:138::-;13236:13;:11;:13::i;:::-;59208:18:::1;59188:17;:38;;;;;;;;;;;;:::i;:::-;;59096:138:::0;:::o;54452:20::-;;;;;;;;;;;;;:::o;58984:104::-;13236:13;:11;:13::i;:::-;59069:11:::1;59059:7;:21;;;;;;;;;;;;:::i;:::-;;58984:104:::0;:::o;58627:86::-;13236:13;:11;:13::i;:::-;58698:7:::1;58687:8;:18;;;;58627:86:::0;:::o;39228:125::-;39292:7;39319:21;39332:7;39319:12;:21::i;:::-;:26;;;39312:33;;39228:125;;;:::o;54309:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58434:185::-;13236:13;:11;:13::i;:::-;58543:8:::1;58528:12;:23;;;;58574:7;58562:9;:19;;;;58606:5;58592:11;:19;;;;58434:185:::0;;;:::o;57969:94::-;13236:13;:11;:13::i;:::-;58048:7:::1;58036:9;:19;;;;57969:94:::0;:::o;36676:206::-;36740:7;36781:1;36764:19;;:5;:19;;;36760:60;;;36792:28;;;;;;;;;;;;;;36760:60;36846:12;:19;36859:5;36846:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;36838:36;;36831:43;;36676:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;58175:104::-;13236:13;:11;:13::i;:::-;58260:11:::1;58247:10;:24;;;;58175:104:::0;:::o;54625:28::-;;;;:::o;54776:37::-;;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;39589:104::-;39645:13;39678:7;39671:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39589:104;:::o;55898:904::-;55966:10;;;;;;;;;;;55958:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56023:14;56040:13;:11;:13::i;:::-;56023:30;;56083:1;56072:8;:12;56064:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56159:10;;56150:6;:19;56146:605;;;56248:11;;56236:8;56212:21;56222:10;56212:9;:21::i;:::-;:32;;;;:::i;:::-;:47;;56186:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;56146:605;;;56385:8;;56373;:20;;56365:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56468:9;;56456:8;56447:6;:17;;;;:::i;:::-;:30;;56439:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56578:9;;56566:8;56542:21;56552:10;56542:9;:21::i;:::-;:32;;;;:::i;:::-;:45;;56516:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;56709:8;56696:10;;:21;;;;:::i;:::-;56683:9;:34;;56675:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;56146:605;56763:31;56773:10;56785:8;56763:9;:31::i;:::-;55947:855;55898:904;:::o;41199:287::-;41310:12;:10;:12::i;:::-;41298:24;;:8;:24;;;41294:54;;;41331:17;;;;;;;;;;;;;;41294:54;41406:8;41361:18;:32;41380:12;:10;:12::i;:::-;41361:32;;;;;;;;;;;;;;;:42;41394:8;41361:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41459:8;41430:48;;41445:12;:10;:12::i;:::-;41430:48;;;41469:8;41430:48;;;;;;:::i;:::-;;;;;;;;41199:287;;:::o;54201:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54660:30::-;;;;:::o;42285:369::-;42452:28;42462:4;42468:2;42472:7;42452:9;:28::i;:::-;42495:15;:2;:13;;;:15::i;:::-;:76;;;;;42515:56;42546:4;42552:2;42556:7;42565:5;42515:30;:56::i;:::-;42514:57;42495:76;42491:156;;;42595:40;;;;;;;;;;;;;;42491:156;42285:369;;;;:::o;59242:302::-;13236:13;:11;:13::i;:::-;59323:14:::1;59340:13;:11;:13::i;:::-;59323:30;;59383:1;59372:8;:12;59364:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59463:9;;59451:8;59442:6;:17;;;;:::i;:::-;:30;;59434:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59507:29;59517:8;59527;59507:9;:29::i;:::-;59312:232;59242:302:::0;;:::o;54587:31::-;;;;:::o;54337:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57239:722::-;57357:13;57410:16;57418:7;57410;:16::i;:::-;57388:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57519:8;;;;;;;;;;;57514:66;;57551:17;57544:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57514:66;57592:28;57623:10;:8;:10::i;:::-;57592:41;;57697:1;57672:14;57666:28;:32;:287;;;;;;;;;;;;;;;;;57790:14;57831:18;:7;:16;:18::i;:::-;57876:13;57747:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57666:287;57646:307;;;57239:722;;;;:::o;54972:898::-;55103:7;;;;;;;;;;;55095:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55161:14;55178:13;:11;:13::i;:::-;55161:30;;55221:1;55210:8;:12;55202:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55291:8;;55279;:20;;55271:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55370:9;;55358:8;55349:6;:17;;;;:::i;:::-;:30;;55341:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55471:12;;55459:8;55435:21;55445:10;55435:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;55413:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;55594:8;55580:11;;:22;;;;:::i;:::-;55567:9;:35;;55559:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55637:12;55679:10;55662:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55652:39;;;;;;55637:54;;55724:50;55743:12;;55724:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55757:10;;55769:4;55724:18;:50::i;:::-;55702:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;55829:31;55839:10;55851:8;55829:9;:31::i;:::-;55084:786;;54972:898;;;:::o;54511:31::-;;;;:::o;59552:151::-;13236:13;:11;:13::i;:::-;59678:17:::1;59662:13;:33;;;;;;;;;;;;:::i;:::-;;59552:151:::0;:::o;41557:164::-;41654:4;41678:18;:25;41697:5;41678:25;;;;;;;;;;;;;;;:35;41704:8;41678:35;;;;;;;;;;;;;;;;;;;;;;;;;41671:42;;41557:164;;;;:::o;58287:139::-;13236:13;:11;:13::i;:::-;58375:8:::1;58365:7;;:18;;;;;;;;;;;;;;;;;;58407:11;58394:10;;:24;;;;;;;;;;;;;;;;;;58287:139:::0;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;58071:96::-;13236:13;:11;:13::i;:::-;58152:7:::1;58139:10;:20;;;;58071:96:::0;:::o;58721:162::-;13236:13;:11;:13::i;:::-;58826:14:::1;58812:11;:28;;;;58864:11;58851:10;:24;;;;58721:162:::0;;:::o;54697:27::-;;;;:::o;54381:::-;;;;;;;;;;;;;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;42909:174::-;42966:4;43009:7;42990:15;:13;:15::i;:::-;:26;;:53;;;;;43030:13;;43020:7;:23;42990:53;:85;;;;;43048:11;:20;43060:7;43048:20;;;;;;;;;;;:27;;;;;;;;;;;;43047:28;42990:85;42983:92;;42909:174;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;51066:196::-;51208:2;51181:15;:24;51197:7;51181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51246:7;51242:2;51226:28;;51235:5;51226:28;;;;;;;;;;;;51066:196;;;:::o;35330:92::-;35386:7;35413:1;35406:8;;35330:92;:::o;46009:2130::-;46124:35;46162:21;46175:7;46162:12;:21::i;:::-;46124:59;;46222:4;46200:26;;:13;:18;;;:26;;;46196:67;;46235:28;;;;;;;;;;;;;;46196:67;46276:22;46318:4;46302:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;46339:36;46356:4;46362:12;:10;:12::i;:::-;46339:16;:36::i;:::-;46302:73;:126;;;;46416:12;:10;:12::i;:::-;46392:36;;:20;46404:7;46392:11;:20::i;:::-;:36;;;46302:126;46276:153;;46447:17;46442:66;;46473:35;;;;;;;;;;;;;;46442:66;46537:1;46523:16;;:2;:16;;;46519:52;;;46548:23;;;;;;;;;;;;;;46519:52;46584:43;46606:4;46612:2;46616:7;46625:1;46584:21;:43::i;:::-;46692:35;46709:1;46713:7;46722:4;46692:8;:35::i;:::-;47053:1;47023:12;:18;47036:4;47023:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47097:1;47069:12;:16;47082:2;47069:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47115:31;47149:11;:20;47161:7;47149:20;;;;;;;;;;;47115:54;;47200:2;47184:8;:13;;;:18;;;;;;;;;;;;;;;;;;47250:15;47217:8;:23;;;:49;;;;;;;;;;;;;;;;;;47518:19;47550:1;47540:7;:11;47518:33;;47566:31;47600:11;:24;47612:11;47600:24;;;;;;;;;;;47566:58;;47668:1;47643:27;;:8;:13;;;;;;;;;;;;:27;;;47639:384;;;47853:13;;47838:11;:28;47834:174;;47907:4;47891:8;:13;;;:20;;;;;;;;;;;;;;;;;;47960:13;:28;;;47934:8;:23;;;:54;;;;;;;;;;;;;;;;;;47834:174;47639:384;46998:1036;;;48070:7;48066:2;48051:27;;48060:4;48051:27;;;;;;;;;;;;48089:42;48110:4;48116:2;48120:7;48129:1;48089:20;:42::i;:::-;46113:2026;;46009:2130;;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;43091:104::-;43160:27;43170:2;43174:8;43160:27;;;;;;;;;;;;:9;:27::i;:::-;43091:104;;:::o;38057:1109::-;38119:21;;:::i;:::-;38153:12;38168:7;38153:22;;38236:4;38217:15;:13;:15::i;:::-;:23;;:47;;;;;38251:13;;38244:4;:20;38217:47;38213:886;;;38285:31;38319:11;:17;38331:4;38319:17;;;;;;;;;;;38285:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38360:9;:16;;;38355:729;;38431:1;38405:28;;:9;:14;;;:28;;;38401:101;;38469:9;38462:16;;;;;;38401:101;38804:261;38811:4;38804:261;;;38844:6;;;;;;;;38889:11;:17;38901:4;38889:17;;;;;;;;;;;38877:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38963:1;38937:28;;:9;:14;;;:28;;;38933:109;;39005:9;38998:16;;;;;;38933:109;38804:261;;;38355:729;38266:833;38213:886;39127:31;;;;;;;;;;;;;;38057:1109;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::o;51754:667::-;51917:4;51954:2;51938:36;;;51975:12;:10;:12::i;:::-;51989:4;51995:7;52004:5;51938:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51934:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52189:1;52172:6;:13;:18;52168:235;;;52218:40;;;;;;;;;;;;;;52168:235;52361:6;52355:13;52346:6;52342:2;52338:15;52331:38;51934:480;52067:45;;;52057:55;;;:6;:55;;;;52050:62;;;51754:667;;;;;;:::o;57123:108::-;57183:13;57216:7;57209:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57123:108;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;53069:159::-;;;;;:::o;53887:158::-;;;;;:::o;43558:163::-;43681:32;43687:2;43691:8;43701:5;43708:4;43681:5;:32::i;:::-;43558:163;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;43980:1775::-;44119:20;44142:13;;44119:36;;44184:1;44170:16;;:2;:16;;;44166:48;;;44195:19;;;;;;;;;;;;;;44166:48;44241:1;44229:8;:13;44225:44;;;44251:18;;;;;;;;;;;;;;44225:44;44282:61;44312:1;44316:2;44320:12;44334:8;44282:21;:61::i;:::-;44655:8;44620:12;:16;44633:2;44620:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44719:8;44679:12;:16;44692:2;44679:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44778:2;44745:11;:25;44757:12;44745:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44845:15;44795:11;:25;44807:12;44795:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44878:20;44901:12;44878:35;;44928:11;44957:8;44942:12;:23;44928:37;;44986:4;:23;;;;;44994:15;:2;:13;;;:15::i;:::-;44986:23;44982:641;;;45030:314;45086:12;45082:2;45061:38;;45078:1;45061:38;;;;;;;;;;;;45127:69;45166:1;45170:2;45174:14;;;;;;45190:5;45127:30;:69::i;:::-;45122:174;;45232:40;;;;;;;;;;;;;;45122:174;45339:3;45323:12;:19;;45030:314;;45425:12;45408:13;;:29;45404:43;;45439:8;;;45404:43;44982:641;;;45488:120;45544:14;;;;;;45540:2;45519:40;;45536:1;45519:40;;;;;;;;;;;;45603:3;45587:12;:19;;45488:120;;44982:641;45653:12;45637:13;:28;;;;44595:1082;;45687:60;45716:1;45720:2;45724:12;45738:8;45687:20;:60::i;:::-;44108:1647;43980:1775;;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:462::-;6747:6;6755;6804:2;6792:9;6783:7;6779:23;6775:32;6772:119;;;6810:79;;:::i;:::-;6772:119;6930:1;6955:50;6997:7;6988:6;6977:9;6973:22;6955:50;:::i;:::-;6945:60;;6901:114;7054:2;7080:50;7122:7;7113:6;7102:9;7098:22;7080:50;:::i;:::-;7070:60;;7025:115;6685:462;;;;;:::o;7153:329::-;7212:6;7261:2;7249:9;7240:7;7236:23;7232:32;7229:119;;;7267:79;;:::i;:::-;7229:119;7387:1;7412:53;7457:7;7448:6;7437:9;7433:22;7412:53;:::i;:::-;7402:63;;7358:117;7153:329;;;;:::o;7488:327::-;7546:6;7595:2;7583:9;7574:7;7570:23;7566:32;7563:119;;;7601:79;;:::i;:::-;7563:119;7721:1;7746:52;7790:7;7781:6;7770:9;7766:22;7746:52;:::i;:::-;7736:62;;7692:116;7488:327;;;;:::o;7821:349::-;7890:6;7939:2;7927:9;7918:7;7914:23;7910:32;7907:119;;;7945:79;;:::i;:::-;7907:119;8065:1;8090:63;8145:7;8136:6;8125:9;8121:22;8090:63;:::i;:::-;8080:73;;8036:127;7821:349;;;;:::o;8176:509::-;8245:6;8294:2;8282:9;8273:7;8269:23;8265:32;8262:119;;;8300:79;;:::i;:::-;8262:119;8448:1;8437:9;8433:17;8420:31;8478:18;8470:6;8467:30;8464:117;;;8500:79;;:::i;:::-;8464:117;8605:63;8660:7;8651:6;8640:9;8636:22;8605:63;:::i;:::-;8595:73;;8391:287;8176:509;;;;:::o;8691:329::-;8750:6;8799:2;8787:9;8778:7;8774:23;8770:32;8767:119;;;8805:79;;:::i;:::-;8767:119;8925:1;8950:53;8995:7;8986:6;8975:9;8971:22;8950:53;:::i;:::-;8940:63;;8896:117;8691:329;;;;:::o;9026:474::-;9094:6;9102;9151:2;9139:9;9130:7;9126:23;9122:32;9119:119;;;9157:79;;:::i;:::-;9119:119;9277:1;9302:53;9347:7;9338:6;9327:9;9323:22;9302:53;:::i;:::-;9292:63;;9248:117;9404:2;9430:53;9475:7;9466:6;9455:9;9451:22;9430:53;:::i;:::-;9420:63;;9375:118;9026:474;;;;;:::o;9506:704::-;9601:6;9609;9617;9666:2;9654:9;9645:7;9641:23;9637:32;9634:119;;;9672:79;;:::i;:::-;9634:119;9792:1;9817:53;9862:7;9853:6;9842:9;9838:22;9817:53;:::i;:::-;9807:63;;9763:117;9947:2;9936:9;9932:18;9919:32;9978:18;9970:6;9967:30;9964:117;;;10000:79;;:::i;:::-;9964:117;10113:80;10185:7;10176:6;10165:9;10161:22;10113:80;:::i;:::-;10095:98;;;;9890:313;9506:704;;;;;:::o;10216:474::-;10284:6;10292;10341:2;10329:9;10320:7;10316:23;10312:32;10309:119;;;10347:79;;:::i;:::-;10309:119;10467:1;10492:53;10537:7;10528:6;10517:9;10513:22;10492:53;:::i;:::-;10482:63;;10438:117;10594:2;10620:53;10665:7;10656:6;10645:9;10641:22;10620:53;:::i;:::-;10610:63;;10565:118;10216:474;;;;;:::o;10696:619::-;10773:6;10781;10789;10838:2;10826:9;10817:7;10813:23;10809:32;10806:119;;;10844:79;;:::i;:::-;10806:119;10964:1;10989:53;11034:7;11025:6;11014:9;11010:22;10989:53;:::i;:::-;10979:63;;10935:117;11091:2;11117:53;11162:7;11153:6;11142:9;11138:22;11117:53;:::i;:::-;11107:63;;11062:118;11219:2;11245:53;11290:7;11281:6;11270:9;11266:22;11245:53;:::i;:::-;11235:63;;11190:118;10696:619;;;;;:::o;11321:118::-;11408:24;11426:5;11408:24;:::i;:::-;11403:3;11396:37;11321:118;;:::o;11445:157::-;11550:45;11570:24;11588:5;11570:24;:::i;:::-;11550:45;:::i;:::-;11545:3;11538:58;11445:157;;:::o;11608:109::-;11689:21;11704:5;11689:21;:::i;:::-;11684:3;11677:34;11608:109;;:::o;11723:118::-;11810:24;11828:5;11810:24;:::i;:::-;11805:3;11798:37;11723:118;;:::o;11847:360::-;11933:3;11961:38;11993:5;11961:38;:::i;:::-;12015:70;12078:6;12073:3;12015:70;:::i;:::-;12008:77;;12094:52;12139:6;12134:3;12127:4;12120:5;12116:16;12094:52;:::i;:::-;12171:29;12193:6;12171:29;:::i;:::-;12166:3;12162:39;12155:46;;11937:270;11847:360;;;;:::o;12213:364::-;12301:3;12329:39;12362:5;12329:39;:::i;:::-;12384:71;12448:6;12443:3;12384:71;:::i;:::-;12377:78;;12464:52;12509:6;12504:3;12497:4;12490:5;12486:16;12464:52;:::i;:::-;12541:29;12563:6;12541:29;:::i;:::-;12536:3;12532:39;12525:46;;12305:272;12213:364;;;;:::o;12583:377::-;12689:3;12717:39;12750:5;12717:39;:::i;:::-;12772:89;12854:6;12849:3;12772:89;:::i;:::-;12765:96;;12870:52;12915:6;12910:3;12903:4;12896:5;12892:16;12870:52;:::i;:::-;12947:6;12942:3;12938:16;12931:23;;12693:267;12583:377;;;;:::o;12990:845::-;13093:3;13130:5;13124:12;13159:36;13185:9;13159:36;:::i;:::-;13211:89;13293:6;13288:3;13211:89;:::i;:::-;13204:96;;13331:1;13320:9;13316:17;13347:1;13342:137;;;;13493:1;13488:341;;;;13309:520;;13342:137;13426:4;13422:9;13411;13407:25;13402:3;13395:38;13462:6;13457:3;13453:16;13446:23;;13342:137;;13488:341;13555:38;13587:5;13555:38;:::i;:::-;13615:1;13629:154;13643:6;13640:1;13637:13;13629:154;;;13717:7;13711:14;13707:1;13702:3;13698:11;13691:35;13767:1;13758:7;13754:15;13743:26;;13665:4;13662:1;13658:12;13653:17;;13629:154;;;13812:6;13807:3;13803:16;13796:23;;13495:334;;13309:520;;13097:738;;12990:845;;;;:::o;13841:366::-;13983:3;14004:67;14068:2;14063:3;14004:67;:::i;:::-;13997:74;;14080:93;14169:3;14080:93;:::i;:::-;14198:2;14193:3;14189:12;14182:19;;13841:366;;;:::o;14213:::-;14355:3;14376:67;14440:2;14435:3;14376:67;:::i;:::-;14369:74;;14452:93;14541:3;14452:93;:::i;:::-;14570:2;14565:3;14561:12;14554:19;;14213:366;;;:::o;14585:::-;14727:3;14748:67;14812:2;14807:3;14748:67;:::i;:::-;14741:74;;14824:93;14913:3;14824:93;:::i;:::-;14942:2;14937:3;14933:12;14926:19;;14585:366;;;:::o;14957:::-;15099:3;15120:67;15184:2;15179:3;15120:67;:::i;:::-;15113:74;;15196:93;15285:3;15196:93;:::i;:::-;15314:2;15309:3;15305:12;15298:19;;14957:366;;;:::o;15329:::-;15471:3;15492:67;15556:2;15551:3;15492:67;:::i;:::-;15485:74;;15568:93;15657:3;15568:93;:::i;:::-;15686:2;15681:3;15677:12;15670:19;;15329:366;;;:::o;15701:::-;15843:3;15864:67;15928:2;15923:3;15864:67;:::i;:::-;15857:74;;15940:93;16029:3;15940:93;:::i;:::-;16058:2;16053:3;16049:12;16042:19;;15701:366;;;:::o;16073:::-;16215:3;16236:67;16300:2;16295:3;16236:67;:::i;:::-;16229:74;;16312:93;16401:3;16312:93;:::i;:::-;16430:2;16425:3;16421:12;16414:19;;16073:366;;;:::o;16445:::-;16587:3;16608:67;16672:2;16667:3;16608:67;:::i;:::-;16601:74;;16684:93;16773:3;16684:93;:::i;:::-;16802:2;16797:3;16793:12;16786:19;;16445:366;;;:::o;16817:::-;16959:3;16980:67;17044:2;17039:3;16980:67;:::i;:::-;16973:74;;17056:93;17145:3;17056:93;:::i;:::-;17174:2;17169:3;17165:12;17158:19;;16817:366;;;:::o;17189:398::-;17348:3;17369:83;17450:1;17445:3;17369:83;:::i;:::-;17362:90;;17461:93;17550:3;17461:93;:::i;:::-;17579:1;17574:3;17570:11;17563:18;;17189:398;;;:::o;17593:366::-;17735:3;17756:67;17820:2;17815:3;17756:67;:::i;:::-;17749:74;;17832:93;17921:3;17832:93;:::i;:::-;17950:2;17945:3;17941:12;17934:19;;17593:366;;;:::o;17965:::-;18107:3;18128:67;18192:2;18187:3;18128:67;:::i;:::-;18121:74;;18204:93;18293:3;18204:93;:::i;:::-;18322:2;18317:3;18313:12;18306:19;;17965:366;;;:::o;18337:::-;18479:3;18500:67;18564:2;18559:3;18500:67;:::i;:::-;18493:74;;18576:93;18665:3;18576:93;:::i;:::-;18694:2;18689:3;18685:12;18678:19;;18337:366;;;:::o;18709:::-;18851:3;18872:67;18936:2;18931:3;18872:67;:::i;:::-;18865:74;;18948:93;19037:3;18948:93;:::i;:::-;19066:2;19061:3;19057:12;19050:19;;18709:366;;;:::o;19081:118::-;19168:24;19186:5;19168:24;:::i;:::-;19163:3;19156:37;19081:118;;:::o;19205:256::-;19317:3;19332:75;19403:3;19394:6;19332:75;:::i;:::-;19432:2;19427:3;19423:12;19416:19;;19452:3;19445:10;;19205:256;;;;:::o;19467:589::-;19692:3;19714:95;19805:3;19796:6;19714:95;:::i;:::-;19707:102;;19826:95;19917:3;19908:6;19826:95;:::i;:::-;19819:102;;19938:92;20026:3;20017:6;19938:92;:::i;:::-;19931:99;;20047:3;20040:10;;19467:589;;;;;;:::o;20062:379::-;20246:3;20268:147;20411:3;20268:147;:::i;:::-;20261:154;;20432:3;20425:10;;20062:379;;;:::o;20447:222::-;20540:4;20578:2;20567:9;20563:18;20555:26;;20591:71;20659:1;20648:9;20644:17;20635:6;20591:71;:::i;:::-;20447:222;;;;:::o;20675:640::-;20870:4;20908:3;20897:9;20893:19;20885:27;;20922:71;20990:1;20979:9;20975:17;20966:6;20922:71;:::i;:::-;21003:72;21071:2;21060:9;21056:18;21047:6;21003:72;:::i;:::-;21085;21153:2;21142:9;21138:18;21129:6;21085:72;:::i;:::-;21204:9;21198:4;21194:20;21189:2;21178:9;21174:18;21167:48;21232:76;21303:4;21294:6;21232:76;:::i;:::-;21224:84;;20675:640;;;;;;;:::o;21321:210::-;21408:4;21446:2;21435:9;21431:18;21423:26;;21459:65;21521:1;21510:9;21506:17;21497:6;21459:65;:::i;:::-;21321:210;;;;:::o;21537:222::-;21630:4;21668:2;21657:9;21653:18;21645:26;;21681:71;21749:1;21738:9;21734:17;21725:6;21681:71;:::i;:::-;21537:222;;;;:::o;21765:313::-;21878:4;21916:2;21905:9;21901:18;21893:26;;21965:9;21959:4;21955:20;21951:1;21940:9;21936:17;21929:47;21993:78;22066:4;22057:6;21993:78;:::i;:::-;21985:86;;21765:313;;;;:::o;22084:419::-;22250:4;22288:2;22277:9;22273:18;22265:26;;22337:9;22331:4;22327:20;22323:1;22312:9;22308:17;22301:47;22365:131;22491:4;22365:131;:::i;:::-;22357:139;;22084:419;;;:::o;22509:::-;22675:4;22713:2;22702:9;22698:18;22690:26;;22762:9;22756:4;22752:20;22748:1;22737:9;22733:17;22726:47;22790:131;22916:4;22790:131;:::i;:::-;22782:139;;22509:419;;;:::o;22934:::-;23100:4;23138:2;23127:9;23123:18;23115:26;;23187:9;23181:4;23177:20;23173:1;23162:9;23158:17;23151:47;23215:131;23341:4;23215:131;:::i;:::-;23207:139;;22934:419;;;:::o;23359:::-;23525:4;23563:2;23552:9;23548:18;23540:26;;23612:9;23606:4;23602:20;23598:1;23587:9;23583:17;23576:47;23640:131;23766:4;23640:131;:::i;:::-;23632:139;;23359:419;;;:::o;23784:::-;23950:4;23988:2;23977:9;23973:18;23965:26;;24037:9;24031:4;24027:20;24023:1;24012:9;24008:17;24001:47;24065:131;24191:4;24065:131;:::i;:::-;24057:139;;23784:419;;;:::o;24209:::-;24375:4;24413:2;24402:9;24398:18;24390:26;;24462:9;24456:4;24452:20;24448:1;24437:9;24433:17;24426:47;24490:131;24616:4;24490:131;:::i;:::-;24482:139;;24209:419;;;:::o;24634:::-;24800:4;24838:2;24827:9;24823:18;24815:26;;24887:9;24881:4;24877:20;24873:1;24862:9;24858:17;24851:47;24915:131;25041:4;24915:131;:::i;:::-;24907:139;;24634:419;;;:::o;25059:::-;25225:4;25263:2;25252:9;25248:18;25240:26;;25312:9;25306:4;25302:20;25298:1;25287:9;25283:17;25276:47;25340:131;25466:4;25340:131;:::i;:::-;25332:139;;25059:419;;;:::o;25484:::-;25650:4;25688:2;25677:9;25673:18;25665:26;;25737:9;25731:4;25727:20;25723:1;25712:9;25708:17;25701:47;25765:131;25891:4;25765:131;:::i;:::-;25757:139;;25484:419;;;:::o;25909:::-;26075:4;26113:2;26102:9;26098:18;26090:26;;26162:9;26156:4;26152:20;26148:1;26137:9;26133:17;26126:47;26190:131;26316:4;26190:131;:::i;:::-;26182:139;;25909:419;;;:::o;26334:::-;26500:4;26538:2;26527:9;26523:18;26515:26;;26587:9;26581:4;26577:20;26573:1;26562:9;26558:17;26551:47;26615:131;26741:4;26615:131;:::i;:::-;26607:139;;26334:419;;;:::o;26759:::-;26925:4;26963:2;26952:9;26948:18;26940:26;;27012:9;27006:4;27002:20;26998:1;26987:9;26983:17;26976:47;27040:131;27166:4;27040:131;:::i;:::-;27032:139;;26759:419;;;:::o;27184:::-;27350:4;27388:2;27377:9;27373:18;27365:26;;27437:9;27431:4;27427:20;27423:1;27412:9;27408:17;27401:47;27465:131;27591:4;27465:131;:::i;:::-;27457:139;;27184:419;;;:::o;27609:222::-;27702:4;27740:2;27729:9;27725:18;27717:26;;27753:71;27821:1;27810:9;27806:17;27797:6;27753:71;:::i;:::-;27609:222;;;;:::o;27837:129::-;27871:6;27898:20;;:::i;:::-;27888:30;;27927:33;27955:4;27947:6;27927:33;:::i;:::-;27837:129;;;:::o;27972:75::-;28005:6;28038:2;28032:9;28022:19;;27972:75;:::o;28053:307::-;28114:4;28204:18;28196:6;28193:30;28190:56;;;28226:18;;:::i;:::-;28190:56;28264:29;28286:6;28264:29;:::i;:::-;28256:37;;28348:4;28342;28338:15;28330:23;;28053:307;;;:::o;28366:308::-;28428:4;28518:18;28510:6;28507:30;28504:56;;;28540:18;;:::i;:::-;28504:56;28578:29;28600:6;28578:29;:::i;:::-;28570:37;;28662:4;28656;28652:15;28644:23;;28366:308;;;:::o;28680:141::-;28729:4;28752:3;28744:11;;28775:3;28772:1;28765:14;28809:4;28806:1;28796:18;28788:26;;28680:141;;;:::o;28827:98::-;28878:6;28912:5;28906:12;28896:22;;28827:98;;;:::o;28931:99::-;28983:6;29017:5;29011:12;29001:22;;28931:99;;;:::o;29036:168::-;29119:11;29153:6;29148:3;29141:19;29193:4;29188:3;29184:14;29169:29;;29036:168;;;;:::o;29210:147::-;29311:11;29348:3;29333:18;;29210:147;;;;:::o;29363:169::-;29447:11;29481:6;29476:3;29469:19;29521:4;29516:3;29512:14;29497:29;;29363:169;;;;:::o;29538:148::-;29640:11;29677:3;29662:18;;29538:148;;;;:::o;29692:305::-;29732:3;29751:20;29769:1;29751:20;:::i;:::-;29746:25;;29785:20;29803:1;29785:20;:::i;:::-;29780:25;;29939:1;29871:66;29867:74;29864:1;29861:81;29858:107;;;29945:18;;:::i;:::-;29858:107;29989:1;29986;29982:9;29975:16;;29692:305;;;;:::o;30003:185::-;30043:1;30060:20;30078:1;30060:20;:::i;:::-;30055:25;;30094:20;30112:1;30094:20;:::i;:::-;30089:25;;30133:1;30123:35;;30138:18;;:::i;:::-;30123:35;30180:1;30177;30173:9;30168:14;;30003:185;;;;:::o;30194:348::-;30234:7;30257:20;30275:1;30257:20;:::i;:::-;30252:25;;30291:20;30309:1;30291:20;:::i;:::-;30286:25;;30479:1;30411:66;30407:74;30404:1;30401:81;30396:1;30389:9;30382:17;30378:105;30375:131;;;30486:18;;:::i;:::-;30375:131;30534:1;30531;30527:9;30516:20;;30194:348;;;;:::o;30548:191::-;30588:4;30608:20;30626:1;30608:20;:::i;:::-;30603:25;;30642:20;30660:1;30642:20;:::i;:::-;30637:25;;30681:1;30678;30675:8;30672:34;;;30686:18;;:::i;:::-;30672:34;30731:1;30728;30724:9;30716:17;;30548:191;;;;:::o;30745:96::-;30782:7;30811:24;30829:5;30811:24;:::i;:::-;30800:35;;30745:96;;;:::o;30847:90::-;30881:7;30924:5;30917:13;30910:21;30899:32;;30847:90;;;:::o;30943:77::-;30980:7;31009:5;30998:16;;30943:77;;;:::o;31026:149::-;31062:7;31102:66;31095:5;31091:78;31080:89;;31026:149;;;:::o;31181:126::-;31218:7;31258:42;31251:5;31247:54;31236:65;;31181:126;;;:::o;31313:77::-;31350:7;31379:5;31368:16;;31313:77;;;:::o;31396:154::-;31480:6;31475:3;31470;31457:30;31542:1;31533:6;31528:3;31524:16;31517:27;31396:154;;;:::o;31556:307::-;31624:1;31634:113;31648:6;31645:1;31642:13;31634:113;;;31733:1;31728:3;31724:11;31718:18;31714:1;31709:3;31705:11;31698:39;31670:2;31667:1;31663:10;31658:15;;31634:113;;;31765:6;31762:1;31759:13;31756:101;;;31845:1;31836:6;31831:3;31827:16;31820:27;31756:101;31605:258;31556:307;;;:::o;31869:320::-;31913:6;31950:1;31944:4;31940:12;31930:22;;31997:1;31991:4;31987:12;32018:18;32008:81;;32074:4;32066:6;32062:17;32052:27;;32008:81;32136:2;32128:6;32125:14;32105:18;32102:38;32099:84;;;32155:18;;:::i;:::-;32099:84;31920:269;31869:320;;;:::o;32195:281::-;32278:27;32300:4;32278:27;:::i;:::-;32270:6;32266:40;32408:6;32396:10;32393:22;32372:18;32360:10;32357:34;32354:62;32351:88;;;32419:18;;:::i;:::-;32351:88;32459:10;32455:2;32448:22;32238:238;32195:281;;:::o;32482:233::-;32521:3;32544:24;32562:5;32544:24;:::i;:::-;32535:33;;32590:66;32583:5;32580:77;32577:103;;;32660:18;;:::i;:::-;32577:103;32707:1;32700:5;32696:13;32689:20;;32482:233;;;:::o;32721:100::-;32760:7;32789:26;32809:5;32789:26;:::i;:::-;32778:37;;32721:100;;;:::o;32827:94::-;32866:7;32895:20;32909:5;32895:20;:::i;:::-;32884:31;;32827:94;;;:::o;32927:176::-;32959:1;32976:20;32994:1;32976:20;:::i;:::-;32971:25;;33010:20;33028:1;33010:20;:::i;:::-;33005:25;;33049:1;33039:35;;33054:18;;:::i;:::-;33039:35;33095:1;33092;33088:9;33083:14;;32927:176;;;;:::o;33109:180::-;33157:77;33154:1;33147:88;33254:4;33251:1;33244:15;33278:4;33275:1;33268:15;33295:180;33343:77;33340:1;33333:88;33440:4;33437:1;33430:15;33464:4;33461:1;33454:15;33481:180;33529:77;33526:1;33519:88;33626:4;33623:1;33616:15;33650:4;33647:1;33640:15;33667:180;33715:77;33712:1;33705:88;33812:4;33809:1;33802:15;33836:4;33833:1;33826:15;33853:180;33901:77;33898:1;33891:88;33998:4;33995:1;33988:15;34022:4;34019:1;34012:15;34039:117;34148:1;34145;34138:12;34162:117;34271:1;34268;34261:12;34285:117;34394:1;34391;34384:12;34408:117;34517:1;34514;34507:12;34531:117;34640:1;34637;34630:12;34654:117;34763:1;34760;34753:12;34777:102;34818:6;34869:2;34865:7;34860:2;34853:5;34849:14;34845:28;34835:38;;34777:102;;;:::o;34885:94::-;34918:8;34966:5;34962:2;34958:14;34937:35;;34885:94;;;:::o;34985:167::-;35125:19;35121:1;35113:6;35109:14;35102:43;34985:167;:::o;35158:224::-;35298:34;35294:1;35286:6;35282:14;35275:58;35367:7;35362:2;35354:6;35350:15;35343:32;35158:224;:::o;35388:164::-;35528:16;35524:1;35516:6;35512:14;35505:40;35388:164;:::o;35558:176::-;35698:28;35694:1;35686:6;35682:14;35675:52;35558:176;:::o;35740:225::-;35880:34;35876:1;35868:6;35864:14;35857:58;35949:8;35944:2;35936:6;35932:15;35925:33;35740:225;:::o;35971:220::-;36111:34;36107:1;36099:6;36095:14;36088:58;36180:3;36175:2;36167:6;36163:15;36156:28;35971:220;:::o;36197:221::-;36337:34;36333:1;36325:6;36321:14;36314:58;36406:4;36401:2;36393:6;36389:15;36382:29;36197:221;:::o;36424:182::-;36564:34;36560:1;36552:6;36548:14;36541:58;36424:182;:::o;36612:234::-;36752:34;36748:1;36740:6;36736:14;36729:58;36821:17;36816:2;36808:6;36804:15;36797:42;36612:234;:::o;36852:114::-;;:::o;36972:169::-;37112:21;37108:1;37100:6;37096:14;37089:45;36972:169;:::o;37147:221::-;37287:34;37283:1;37275:6;37271:14;37264:58;37356:4;37351:2;37343:6;37339:15;37332:29;37147:221;:::o;37374:168::-;37514:20;37510:1;37502:6;37498:14;37491:44;37374:168;:::o;37548:181::-;37688:33;37684:1;37676:6;37672:14;37665:57;37548:181;:::o;37735:122::-;37808:24;37826:5;37808:24;:::i;:::-;37801:5;37798:35;37788:63;;37847:1;37844;37837:12;37788:63;37735:122;:::o;37863:116::-;37933:21;37948:5;37933:21;:::i;:::-;37926:5;37923:32;37913:60;;37969:1;37966;37959:12;37913:60;37863:116;:::o;37985:122::-;38058:24;38076:5;38058:24;:::i;:::-;38051:5;38048:35;38038:63;;38097:1;38094;38087:12;38038:63;37985:122;:::o;38113:120::-;38185:23;38202:5;38185:23;:::i;:::-;38178:5;38175:34;38165:62;;38223:1;38220;38213:12;38165:62;38113:120;:::o;38239:122::-;38312:24;38330:5;38312:24;:::i;:::-;38305:5;38302:35;38292:63;;38351:1;38348;38341:12;38292:63;38239:122;:::o

Swarm Source

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