ETH Price: $2,515.76 (+0.98%)

Token

Annunakis (ANK)
 

Overview

Max Total Supply

502 ANK

Holders

75

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Anunnakis_Contract

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-12-09
*/

// SPDX-License-Identifier: MIT
// 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/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: annunakis.sol

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/


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

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/



// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev 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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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}.
 */

// 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.
 */

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


// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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


pragma solidity ^0.8.7;




contract Anunnakis_Contract is ERC721A, ERC2981, Ownable, ReentrancyGuard {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public whitelistClaimed;

    string public baseURI;
    string public hiddenMetadataURI="ipfs://bafkreiadmqoks7iz3v2nc6q5duggshh2saxjpvbs2a7o7dexzmm6pg64du";
    bool public revealed;
    bool public paused = true;
    address public ROYALITY__ADDRESS;
    uint96 public ROYALITY__VALUE;
    uint256 public publicPrice = 0.1 ether;
    uint256 public presalePrice = 0.05 ether;
    uint256 public publicMintPerTx = 5;
    uint256 public whitelistMintPerTx = 1;
    bool public isVip=true;
    uint256 public maxSupply = 3333;
    bool public whitelistStatus = true;
    bool public presaleStatus = true;
    bytes32 public root = 0x11d251a3c7c541a8a68635af1ed366692175fbdc9f3b07da18af66c111f85800;

    constructor() ERC721A("Annunakis", "ANK") {
        ROYALITY__ADDRESS = msg.sender;
        ROYALITY__VALUE = 100;
        _setDefaultRoyalty(ROYALITY__ADDRESS, ROYALITY__VALUE);
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 quantity, bytes32[] calldata proofs) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        if(whitelistStatus) {
            require(isValid(proofs), "You're not whitelisted");
            require(whitelistClaimed[msg.sender] + quantity <= whitelistMintPerTx, "You can't mint this amount");
            whitelistClaimed[msg.sender] += quantity;

        } else {
            require(publicClaimed[msg.sender] + quantity <= publicMintPerTx, "You can't mint this amount");
            publicClaimed[msg.sender] += quantity;
        }
        if(presaleStatus) {
            require(msg.value >= presalePrice * quantity, "Insufficient Funds!");
        } else {
            require(msg.value >= publicPrice * quantity, "Insufficient Funds!");
        }
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function isValid(bytes32[] calldata _merkleProof) internal view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, root, leaf), "Address is not whitelisted!");
        return true;
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataURI;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721A, ERC2981)
    returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }
    function setRoot(bytes32 _newRoot) external onlyOwner {
        root = _newRoot;
    }
    function setWhitelistStatus(bool _newState) external onlyOwner {
        whitelistStatus = _newState;
    }
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }
    function setWhitelistMintPerTx(uint256 _newState) external onlyOwner {
        whitelistMintPerTx = _newState;
    }
    function setPresalePrice(uint256 _newState) external onlyOwner {
        presalePrice = _newState;
    }
    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }
    function setPresaleStatus(bool _newState) external onlyOwner {
        presaleStatus = _newState;
    }
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        publicMintPerTx = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataURI(string memory _URI) external onlyOwner {
        hiddenMetadataURI = _URI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
    function setIsVip(bool newState) external  onlyOwner {
        isVip = newState;
    }

    function airDropBatch(address[] memory _addresses) external onlyOwner {
        for(uint256 i = 0 ;i < _addresses.length; i ++) {
            _safeMint(_addresses[i], 1);
        }
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":[],"name":"ROYALITY__ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALITY__VALUE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropBatch","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"isVip","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proofs","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setIsVip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setWhitelistMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setWhitelistStatus","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":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806042815260200162005ab360429139600f90805190602001906200003592919062000528565b506001601060016101000a81548160ff02191690831515021790555067016345785d8a000060125566b1a2bc2ec50000601355600560145560016015556001601660006101000a81548160ff021916908315150217905550610d056017556001601860006101000a81548160ff0219169083151502179055506001601860016101000a81548160ff0219169083151502179055507f11d251a3c7c541a8a68635af1ed366692175fbdc9f3b07da18af66c111f8580060001b601955348015620000fd57600080fd5b506040518060400160405280600981526020017f416e6e756e616b697300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414e4b000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018292919062000528565b5080600390805190602001906200019b92919062000528565b50620001ac620002a360201b60201c565b6000819055505050620001d4620001c8620002ac60201b60201c565b620002b460201b60201c565b6001600b8190555033601060026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064601160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506200029d601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a90046bffffffffffffffffffffffff166200037a60201b60201c565b62000758565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200038a6200051e60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e29062000626565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200045e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004559062000648565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b82805462000536906200067b565b90600052602060002090601f0160209004810192826200055a5760008555620005a6565b82601f106200057557805160ff1916838001178555620005a6565b82800160010185558215620005a6579182015b82811115620005a557825182559160200191906001019062000588565b5b509050620005b59190620005b9565b5090565b5b80821115620005d4576000816000905550600101620005ba565b5090565b6000620005e7602a836200066a565b9150620005f482620006e0565b604082019050919050565b60006200060e6019836200066a565b91506200061b826200072f565b602082019050919050565b600060208201905081810360008301526200064181620005d8565b9050919050565b600060208201905081810360008301526200066381620005ff565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200069457607f821691505b60208210811415620006ab57620006aa620006b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61534b80620007686000396000f3fe6080604052600436106103195760003560e01c806395d89b41116101ab578063c3356837116100f7578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610ba1578063f49b472f14610bca578063fae1f6e214610bf3578063fbdb849414610c1c57610319565b8063e0a8085314610b10578063e985e9c514610b39578063ebf0c71714610b7657610319565b8063d5abeb01116100d1578063d5abeb0114610a54578063d80a52aa14610a7f578063dab5f34014610aaa578063db4bec4414610ad357610319565b8063c3356837146109c3578063c561314c146109ec578063c87b56dd14610a1757610319565b8063acfb235511610164578063b88d4fde1161013e578063b88d4fde1461092a578063ba41b0c614610953578063ba9e12f71461096f578063c21b471b1461099a57610319565b8063acfb235514610899578063aed38015146108c4578063b5b1cd7c146108ed57610319565b806395d89b411461079b5780639a87a46d146107c65780639ddf7ad3146107f15780639ec571d51461081c578063a22cb46514610845578063a945bf801461086e57610319565b806342842e0e1161026a5780635c975abb1161022357806370a08231116101fd57806370a08231146106f3578063715018a6146107305780638895283f146107475780638da5cb5b1461077057610319565b80635c975abb146106605780636352211e1461068b5780636c0360eb146106c857610319565b806342842e0e1461056857806344a0d68a146105915780634a999118146105ba578063512507c6146105e3578063518302271461060c57806355f804b31461063757610319565b806316c38b3c116102d757806323b872dd116102b157806323b872dd146104c15780632a55205a146104ea5780633549345e146105285780633ccfd60b1461055157610319565b806316c38b3c1461044257806318160ddd1461046b5780631f32975e1461049657610319565b80620e7fa81461031e57806301ffc9a71461034957806306fdde0314610386578063081812fc146103b1578063095ea7b3146103ee5780630caea53b14610417575b600080fd5b34801561032a57600080fd5b50610333610c45565b6040516103409190614ab5565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061434f565b610c4b565b60405161037d91906148dd565b60405180910390f35b34801561039257600080fd5b5061039b610c6d565b6040516103a89190614913565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d391906143f2565b610cff565b6040516103e5919061484d565b60405180910390f35b3480156103fa57600080fd5b506104156004803603810190610410919061422c565b610d7b565b005b34801561042357600080fd5b5061042c610e86565b6040516104399190614ab5565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906142f5565b610e8c565b005b34801561047757600080fd5b50610480610f25565b60405161048d9190614ab5565b60405180910390f35b3480156104a257600080fd5b506104ab610f3c565b6040516104b89190614ad0565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190614116565b610f5a565b005b3480156104f657600080fd5b50610511600480360381019061050c91906144bf565b610f6a565b60405161051f9291906148b4565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906143f2565b611155565b005b34801561055d57600080fd5b506105666111db565b005b34801561057457600080fd5b5061058f600480360381019061058a9190614116565b6112d7565b005b34801561059d57600080fd5b506105b860048036038101906105b391906143f2565b6112f7565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906142f5565b61137d565b005b3480156105ef57600080fd5b5061060a600480360381019061060591906143a9565b611416565b005b34801561061857600080fd5b506106216114ac565b60405161062e91906148dd565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906143a9565b6114bf565b005b34801561066c57600080fd5b50610675611555565b60405161068291906148dd565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906143f2565b611568565b6040516106bf919061484d565b60405180910390f35b3480156106d457600080fd5b506106dd61157e565b6040516106ea9190614913565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906140a9565b61160c565b6040516107279190614ab5565b60405180910390f35b34801561073c57600080fd5b506107456116dc565b005b34801561075357600080fd5b5061076e600480360381019061076991906142f5565b611764565b005b34801561077c57600080fd5b506107856117fd565b604051610792919061484d565b60405180910390f35b3480156107a757600080fd5b506107b0611827565b6040516107bd9190614913565b60405180910390f35b3480156107d257600080fd5b506107db6118b9565b6040516107e8919061484d565b60405180910390f35b3480156107fd57600080fd5b506108066118df565b60405161081391906148dd565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906143f2565b6118f2565b005b34801561085157600080fd5b5061086c600480360381019061086791906141ec565b611978565b005b34801561087a57600080fd5b50610883611af0565b6040516108909190614ab5565b60405180910390f35b3480156108a557600080fd5b506108ae611af6565b6040516108bb91906148dd565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061441f565b611b09565b005b3480156108f957600080fd5b50610914600480360381019061090f91906140a9565b611b93565b6040516109219190614ab5565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190614169565b611bab565b005b61096d6004803603810190610968919061445f565b611c27565b005b34801561097b57600080fd5b50610984612028565b6040516109919190614913565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc919061426c565b6120b6565b005b3480156109cf57600080fd5b506109ea60048036038101906109e591906142f5565b612140565b005b3480156109f857600080fd5b50610a016121d9565b604051610a0e9190614ab5565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a3991906143f2565b6121df565b604051610a4b9190614913565b60405180910390f35b348015610a6057600080fd5b50610a69612335565b604051610a769190614ab5565b60405180910390f35b348015610a8b57600080fd5b50610a9461233b565b604051610aa191906148dd565b60405180910390f35b348015610ab657600080fd5b50610ad16004803603810190610acc9190614322565b61234e565b005b348015610adf57600080fd5b50610afa6004803603810190610af591906140a9565b6123d4565b604051610b079190614ab5565b60405180910390f35b348015610b1c57600080fd5b50610b376004803603810190610b3291906142f5565b6123ec565b005b348015610b4557600080fd5b50610b606004803603810190610b5b91906140d6565b612485565b604051610b6d91906148dd565b60405180910390f35b348015610b8257600080fd5b50610b8b612519565b604051610b9891906148f8565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc391906140a9565b61251f565b005b348015610bd657600080fd5b50610bf16004803603810190610bec91906143f2565b612617565b005b348015610bff57600080fd5b50610c1a6004803603810190610c1591906142ac565b61269d565b005b348015610c2857600080fd5b50610c436004803603810190610c3e91906143f2565b612761565b005b60135481565b6000610c56826127e7565b80610c665750610c65826128c9565b5b9050919050565b606060028054610c7c90614dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca890614dd9565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b5050505050905090565b6000610d0a82612943565b610d40576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d8682611568565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0d612991565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e3f5750610e3d81610e38612991565b612485565b155b15610e76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e81838383612999565b505050565b60145481565b610e94612991565b73ffffffffffffffffffffffffffffffffffffffff16610eb26117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906149d5565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610f2f612a4b565b6001546000540303905090565b601160009054906101000a90046bffffffffffffffffffffffff1681565b610f65838383612a54565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156111005760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061110a612f0a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866111369190614c73565b6111409190614c42565b90508160000151819350935050509250929050565b61115d612991565b73ffffffffffffffffffffffffffffffffffffffff1661117b6117fd565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c8906149d5565b60405180910390fd5b8060138190555050565b6111e3612991565b73ffffffffffffffffffffffffffffffffffffffff166112016117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906149d5565b60405180910390fd5b60006112616117fd565b73ffffffffffffffffffffffffffffffffffffffff164760405161128490614838565b60006040518083038185875af1925050503d80600081146112c1576040519150601f19603f3d011682016040523d82523d6000602084013e6112c6565b606091505b50509050806112d457600080fd5b50565b6112f283838360405180602001604052806000815250611bab565b505050565b6112ff612991565b73ffffffffffffffffffffffffffffffffffffffff1661131d6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906149d5565b60405180910390fd5b8060128190555050565b611385612991565b73ffffffffffffffffffffffffffffffffffffffff166113a36117fd565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906149d5565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b61141e612991565b73ffffffffffffffffffffffffffffffffffffffff1661143c6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906149d5565b60405180910390fd5b80600f90805190602001906114a8929190613d5c565b5050565b601060009054906101000a900460ff1681565b6114c7612991565b73ffffffffffffffffffffffffffffffffffffffff166114e56117fd565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906149d5565b60405180910390fd5b80600e9080519060200190611551929190613d5c565b5050565b601060019054906101000a900460ff1681565b600061157382612f14565b600001519050919050565b600e805461158b90614dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546115b790614dd9565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611674576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116e4612991565b73ffffffffffffffffffffffffffffffffffffffff166117026117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906149d5565b60405180910390fd5b61176260006131a3565b565b61176c612991565b73ffffffffffffffffffffffffffffffffffffffff1661178a6117fd565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906149d5565b60405180910390fd5b80601860016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461183690614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614dd9565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b5050505050905090565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601860009054906101000a900460ff1681565b6118fa612991565b73ffffffffffffffffffffffffffffffffffffffff166119186117fd565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906149d5565b60405180910390fd5b8060178190555050565b611980612991565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119f2612991565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9f612991565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae491906148dd565b60405180910390a35050565b60125481565b601860019054906101000a900460ff1681565b611b11612991565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906149d5565b60405180910390fd5b611b8f8183613269565b5050565b600c6020528060005260406000206000915090505481565b611bb6848484612a54565b611bd58373ffffffffffffffffffffffffffffffffffffffff16613287565b8015611bea5750611be8848484846132aa565b155b15611c21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6002600b541415611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614a75565b60405180910390fd5b6002600b81905550601060019054906101000a900460ff1615611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906149f5565b60405180910390fd5b600083118015611ce9575060175483611cdc610f25565b611ce69190614bec565b11155b611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f906149b5565b60405180910390fd5b601860009054906101000a900460ff1615611e7057611d47828261340a565b611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d90614955565b60405180910390fd5b60155483600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dd49190614bec565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90614a55565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190614bec565b92505081905550611f56565b60145483600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ebe9190614bec565b1115611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614a55565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4e9190614bec565b925050819055505b601860019054906101000a900460ff1615611fc05782601354611f799190614c73565b341015611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290614975565b60405180910390fd5b612011565b82601254611fce9190614c73565b341015612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614975565b60405180910390fd5b5b61201b3384613269565b6001600b81905550505050565b600f805461203590614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461206190614dd9565b80156120ae5780601f10612083576101008083540402835291602001916120ae565b820191906000526020600020905b81548152906001019060200180831161209157829003601f168201915b505050505081565b6120be612991565b73ffffffffffffffffffffffffffffffffffffffff166120dc6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612129906149d5565b60405180910390fd5b61213c82826134ce565b5050565b612148612991565b73ffffffffffffffffffffffffffffffffffffffff166121666117fd565b73ffffffffffffffffffffffffffffffffffffffff16146121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b3906149d5565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b60155481565b60606121ea82612943565b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614a15565b60405180910390fd5b60001515601060009054906101000a900460ff16151514156122d757600f805461225290614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461227e90614dd9565b80156122cb5780601f106122a0576101008083540402835291602001916122cb565b820191906000526020600020905b8154815290600101906020018083116122ae57829003601f168201915b50505050509050612330565b60006122e1613664565b90506000815111612301576040518060200160405280600081525061232c565b8061230b846136f6565b60405160200161231c929190614809565b6040516020818303038152906040525b9150505b919050565b60175481565b601660009054906101000a900460ff1681565b612356612991565b73ffffffffffffffffffffffffffffffffffffffff166123746117fd565b73ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906149d5565b60405180910390fd5b8060198190555050565b600d6020528060005260406000206000915090505481565b6123f4612991565b73ffffffffffffffffffffffffffffffffffffffff166124126117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f906149d5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60195481565b612527612991565b73ffffffffffffffffffffffffffffffffffffffff166125456117fd565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612592906149d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290614935565b60405180910390fd5b612614816131a3565b50565b61261f612991565b73ffffffffffffffffffffffffffffffffffffffff1661263d6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a906149d5565b60405180910390fd5b8060158190555050565b6126a5612991565b73ffffffffffffffffffffffffffffffffffffffff166126c36117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612710906149d5565b60405180910390fd5b60005b815181101561275d5761274a82828151811061273b5761273a614f67565b5b60200260200101516001613269565b808061275590614e3c565b91505061271c565b5050565b612769612991565b73ffffffffffffffffffffffffffffffffffffffff166127876117fd565b73ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906149d5565b60405180910390fd5b8060148190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c257506128c182613857565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061293c575061293b826127e7565b5b9050919050565b60008161294e612a4b565b1115801561295d575060005482105b801561298a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612a5f82612f14565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612aeb612991565b73ffffffffffffffffffffffffffffffffffffffff161480612b1a5750612b1985612b14612991565b612485565b5b80612b5f5750612b28612991565b73ffffffffffffffffffffffffffffffffffffffff16612b4784610cff565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b98576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0c85858560016138c1565b612c1860008487612999565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e98576000548214612e9757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0385858560016138c7565b5050505050565b6000612710905090565b612f1c613de2565b600082905080612f2a612a4b565b11158015612f39575060005481105b1561316c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161316a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461304e57809250505061319e565b5b60011561316957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461316457809250505061319e565b61304f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132838282604051806020016040528060008152506138cd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d0612991565b8786866040518563ffffffff1660e01b81526004016132f29493929190614868565b602060405180830381600087803b15801561330c57600080fd5b505af192505050801561333d57506040513d601f19601f8201168201806040525081019061333a919061437c565b60015b6133b7573d806000811461336d576040519150601f19603f3d011682016040523d82523d6000602084013e613372565b606091505b506000815114156133af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000803360405160200161341e91906147ee565b604051602081830303815290604052805190602001209050613484848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601954836138df565b6134c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ba90614995565b60405180910390fd5b600191505092915050565b6134d6612f0a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90614a95565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600e805461367390614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461369f90614dd9565b80156136ec5780601f106136c1576101008083540402835291602001916136ec565b820191906000526020600020905b8154815290600101906020018083116136cf57829003601f168201915b5050505050905090565b6060600082141561373e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613852565b600082905060005b6000821461377057808061375990614e3c565b915050600a826137699190614c42565b9150613746565b60008167ffffffffffffffff81111561378c5761378b614f96565b5b6040519080825280601f01601f1916602001820160405280156137be5781602001600182028036833780820191505090505b5090505b6000851461384b576001826137d79190614ccd565b9150600a856137e69190614ea9565b60306137f29190614bec565b60f81b81838151811061380857613807614f67565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138449190614c42565b94506137c2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6138da83838360016138f6565b505050565b6000826138ec8584613cc4565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613963576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561399e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139ab60008683876138c1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613b755750613b748773ffffffffffffffffffffffffffffffffffffffff16613287565b5b15613c3b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bea60008884806001019550886132aa565b613c20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613b7b578260005414613c3657600080fd5b613ca7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c3c575b816000819055505050613cbd60008683876138c7565b5050505050565b60008082905060005b8451811015613d0f57613cfa82868381518110613ced57613cec614f67565b5b6020026020010151613d1a565b91508080613d0790614e3c565b915050613ccd565b508091505092915050565b6000818310613d3257613d2d8284613d45565b613d3d565b613d3c8383613d45565b5b905092915050565b600082600052816020526040600020905092915050565b828054613d6890614dd9565b90600052602060002090601f016020900481019282613d8a5760008555613dd1565b82601f10613da357805160ff1916838001178555613dd1565b82800160010185558215613dd1579182015b82811115613dd0578251825591602001919060010190613db5565b5b509050613dde9190613e25565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e3e576000816000905550600101613e26565b5090565b6000613e55613e5084614b10565b614aeb565b90508083825260208201905082856020860282011115613e7857613e77614fcf565b5b60005b85811015613ea85781613e8e8882613f36565b845260208401935060208301925050600181019050613e7b565b5050509392505050565b6000613ec5613ec084614b3c565b614aeb565b905082815260208101848484011115613ee157613ee0614fd4565b5b613eec848285614d97565b509392505050565b6000613f07613f0284614b6d565b614aeb565b905082815260208101848484011115613f2357613f22614fd4565b5b613f2e848285614d97565b509392505050565b600081359050613f458161528b565b92915050565b600082601f830112613f6057613f5f614fca565b5b8135613f70848260208601613e42565b91505092915050565b60008083601f840112613f8f57613f8e614fca565b5b8235905067ffffffffffffffff811115613fac57613fab614fc5565b5b602083019150836020820283011115613fc857613fc7614fcf565b5b9250929050565b600081359050613fde816152a2565b92915050565b600081359050613ff3816152b9565b92915050565b600081359050614008816152d0565b92915050565b60008151905061401d816152d0565b92915050565b600082601f83011261403857614037614fca565b5b8135614048848260208601613eb2565b91505092915050565b600082601f83011261406657614065614fca565b5b8135614076848260208601613ef4565b91505092915050565b60008135905061408e816152e7565b92915050565b6000813590506140a3816152fe565b92915050565b6000602082840312156140bf576140be614fde565b5b60006140cd84828501613f36565b91505092915050565b600080604083850312156140ed576140ec614fde565b5b60006140fb85828601613f36565b925050602061410c85828601613f36565b9150509250929050565b60008060006060848603121561412f5761412e614fde565b5b600061413d86828701613f36565b935050602061414e86828701613f36565b925050604061415f8682870161407f565b9150509250925092565b6000806000806080858703121561418357614182614fde565b5b600061419187828801613f36565b94505060206141a287828801613f36565b93505060406141b38782880161407f565b925050606085013567ffffffffffffffff8111156141d4576141d3614fd9565b5b6141e087828801614023565b91505092959194509250565b6000806040838503121561420357614202614fde565b5b600061421185828601613f36565b925050602061422285828601613fcf565b9150509250929050565b6000806040838503121561424357614242614fde565b5b600061425185828601613f36565b92505060206142628582860161407f565b9150509250929050565b6000806040838503121561428357614282614fde565b5b600061429185828601613f36565b92505060206142a285828601614094565b9150509250929050565b6000602082840312156142c2576142c1614fde565b5b600082013567ffffffffffffffff8111156142e0576142df614fd9565b5b6142ec84828501613f4b565b91505092915050565b60006020828403121561430b5761430a614fde565b5b600061431984828501613fcf565b91505092915050565b60006020828403121561433857614337614fde565b5b600061434684828501613fe4565b91505092915050565b60006020828403121561436557614364614fde565b5b600061437384828501613ff9565b91505092915050565b60006020828403121561439257614391614fde565b5b60006143a08482850161400e565b91505092915050565b6000602082840312156143bf576143be614fde565b5b600082013567ffffffffffffffff8111156143dd576143dc614fd9565b5b6143e984828501614051565b91505092915050565b60006020828403121561440857614407614fde565b5b60006144168482850161407f565b91505092915050565b6000806040838503121561443657614435614fde565b5b60006144448582860161407f565b925050602061445585828601613f36565b9150509250929050565b60008060006040848603121561447857614477614fde565b5b60006144868682870161407f565b935050602084013567ffffffffffffffff8111156144a7576144a6614fd9565b5b6144b386828701613f79565b92509250509250925092565b600080604083850312156144d6576144d5614fde565b5b60006144e48582860161407f565b92505060206144f58582860161407f565b9150509250929050565b61450881614d01565b82525050565b61451f61451a82614d01565b614e85565b82525050565b61452e81614d13565b82525050565b61453d81614d1f565b82525050565b600061454e82614b9e565b6145588185614bb4565b9350614568818560208601614da6565b61457181614fe3565b840191505092915050565b600061458782614ba9565b6145918185614bd0565b93506145a1818560208601614da6565b6145aa81614fe3565b840191505092915050565b60006145c082614ba9565b6145ca8185614be1565b93506145da818560208601614da6565b80840191505092915050565b60006145f3602683614bd0565b91506145fe82615001565b604082019050919050565b6000614616601683614bd0565b915061462182615050565b602082019050919050565b6000614639601383614bd0565b915061464482615079565b602082019050919050565b600061465c601b83614bd0565b9150614667826150a2565b602082019050919050565b600061467f600f83614bd0565b915061468a826150cb565b602082019050919050565b60006146a2600583614be1565b91506146ad826150f4565b600582019050919050565b60006146c5602083614bd0565b91506146d08261511d565b602082019050919050565b60006146e8601783614bd0565b91506146f382615146565b602082019050919050565b600061470b602f83614bd0565b91506147168261516f565b604082019050919050565b600061472e600083614bc5565b9150614739826151be565b600082019050919050565b6000614751602a83614bd0565b915061475c826151c1565b604082019050919050565b6000614774601a83614bd0565b915061477f82615210565b602082019050919050565b6000614797601f83614bd0565b91506147a282615239565b602082019050919050565b60006147ba601983614bd0565b91506147c582615262565b602082019050919050565b6147d981614d75565b82525050565b6147e881614d7f565b82525050565b60006147fa828461450e565b60148201915081905092915050565b600061481582856145b5565b915061482182846145b5565b915061482c82614695565b91508190509392505050565b600061484382614721565b9150819050919050565b600060208201905061486260008301846144ff565b92915050565b600060808201905061487d60008301876144ff565b61488a60208301866144ff565b61489760408301856147d0565b81810360608301526148a98184614543565b905095945050505050565b60006040820190506148c960008301856144ff565b6148d660208301846147d0565b9392505050565b60006020820190506148f26000830184614525565b92915050565b600060208201905061490d6000830184614534565b92915050565b6000602082019050818103600083015261492d818461457c565b905092915050565b6000602082019050818103600083015261494e816145e6565b9050919050565b6000602082019050818103600083015261496e81614609565b9050919050565b6000602082019050818103600083015261498e8161462c565b9050919050565b600060208201905081810360008301526149ae8161464f565b9050919050565b600060208201905081810360008301526149ce81614672565b9050919050565b600060208201905081810360008301526149ee816146b8565b9050919050565b60006020820190508181036000830152614a0e816146db565b9050919050565b60006020820190508181036000830152614a2e816146fe565b9050919050565b60006020820190508181036000830152614a4e81614744565b9050919050565b60006020820190508181036000830152614a6e81614767565b9050919050565b60006020820190508181036000830152614a8e8161478a565b9050919050565b60006020820190508181036000830152614aae816147ad565b9050919050565b6000602082019050614aca60008301846147d0565b92915050565b6000602082019050614ae560008301846147df565b92915050565b6000614af5614b06565b9050614b018282614e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115614b2b57614b2a614f96565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b5757614b56614f96565b5b614b6082614fe3565b9050602081019050919050565b600067ffffffffffffffff821115614b8857614b87614f96565b5b614b9182614fe3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf782614d75565b9150614c0283614d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3757614c36614eda565b5b828201905092915050565b6000614c4d82614d75565b9150614c5883614d75565b925082614c6857614c67614f09565b5b828204905092915050565b6000614c7e82614d75565b9150614c8983614d75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc257614cc1614eda565b5b828202905092915050565b6000614cd882614d75565b9150614ce383614d75565b925082821015614cf657614cf5614eda565b5b828203905092915050565b6000614d0c82614d55565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614dc4578082015181840152602081019050614da9565b83811115614dd3576000848401525b50505050565b60006002820490506001821680614df157607f821691505b60208210811415614e0557614e04614f38565b5b50919050565b614e1482614fe3565b810181811067ffffffffffffffff82111715614e3357614e32614f96565b5b80604052505050565b6000614e4782614d75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e7a57614e79614eda565b5b600182019050919050565b6000614e9082614e97565b9050919050565b6000614ea282614ff4565b9050919050565b6000614eb482614d75565b9150614ebf83614d75565b925082614ecf57614ece614f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f742077686974656c697374656400000000000000000000600082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74207468697320616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61529481614d01565b811461529f57600080fd5b50565b6152ab81614d13565b81146152b657600080fd5b50565b6152c281614d1f565b81146152cd57600080fd5b50565b6152d981614d29565b81146152e457600080fd5b50565b6152f081614d75565b81146152fb57600080fd5b50565b61530781614d7f565b811461531257600080fd5b5056fea26469706673582212204e71bc593bf9da28b966bf0e7ecdfa9f23c20aac9b554875cb95d8000347c26264736f6c63430008070033697066733a2f2f6261666b72656961646d716f6b7337697a3376326e6336713564756767736868327361786a707662733261376f376465787a6d6d36706736346475

Deployed Bytecode

0x6080604052600436106103195760003560e01c806395d89b41116101ab578063c3356837116100f7578063e0a8085311610095578063f2fde38b1161006f578063f2fde38b14610ba1578063f49b472f14610bca578063fae1f6e214610bf3578063fbdb849414610c1c57610319565b8063e0a8085314610b10578063e985e9c514610b39578063ebf0c71714610b7657610319565b8063d5abeb01116100d1578063d5abeb0114610a54578063d80a52aa14610a7f578063dab5f34014610aaa578063db4bec4414610ad357610319565b8063c3356837146109c3578063c561314c146109ec578063c87b56dd14610a1757610319565b8063acfb235511610164578063b88d4fde1161013e578063b88d4fde1461092a578063ba41b0c614610953578063ba9e12f71461096f578063c21b471b1461099a57610319565b8063acfb235514610899578063aed38015146108c4578063b5b1cd7c146108ed57610319565b806395d89b411461079b5780639a87a46d146107c65780639ddf7ad3146107f15780639ec571d51461081c578063a22cb46514610845578063a945bf801461086e57610319565b806342842e0e1161026a5780635c975abb1161022357806370a08231116101fd57806370a08231146106f3578063715018a6146107305780638895283f146107475780638da5cb5b1461077057610319565b80635c975abb146106605780636352211e1461068b5780636c0360eb146106c857610319565b806342842e0e1461056857806344a0d68a146105915780634a999118146105ba578063512507c6146105e3578063518302271461060c57806355f804b31461063757610319565b806316c38b3c116102d757806323b872dd116102b157806323b872dd146104c15780632a55205a146104ea5780633549345e146105285780633ccfd60b1461055157610319565b806316c38b3c1461044257806318160ddd1461046b5780631f32975e1461049657610319565b80620e7fa81461031e57806301ffc9a71461034957806306fdde0314610386578063081812fc146103b1578063095ea7b3146103ee5780630caea53b14610417575b600080fd5b34801561032a57600080fd5b50610333610c45565b6040516103409190614ab5565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061434f565b610c4b565b60405161037d91906148dd565b60405180910390f35b34801561039257600080fd5b5061039b610c6d565b6040516103a89190614913565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d391906143f2565b610cff565b6040516103e5919061484d565b60405180910390f35b3480156103fa57600080fd5b506104156004803603810190610410919061422c565b610d7b565b005b34801561042357600080fd5b5061042c610e86565b6040516104399190614ab5565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906142f5565b610e8c565b005b34801561047757600080fd5b50610480610f25565b60405161048d9190614ab5565b60405180910390f35b3480156104a257600080fd5b506104ab610f3c565b6040516104b89190614ad0565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190614116565b610f5a565b005b3480156104f657600080fd5b50610511600480360381019061050c91906144bf565b610f6a565b60405161051f9291906148b4565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906143f2565b611155565b005b34801561055d57600080fd5b506105666111db565b005b34801561057457600080fd5b5061058f600480360381019061058a9190614116565b6112d7565b005b34801561059d57600080fd5b506105b860048036038101906105b391906143f2565b6112f7565b005b3480156105c657600080fd5b506105e160048036038101906105dc91906142f5565b61137d565b005b3480156105ef57600080fd5b5061060a600480360381019061060591906143a9565b611416565b005b34801561061857600080fd5b506106216114ac565b60405161062e91906148dd565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906143a9565b6114bf565b005b34801561066c57600080fd5b50610675611555565b60405161068291906148dd565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906143f2565b611568565b6040516106bf919061484d565b60405180910390f35b3480156106d457600080fd5b506106dd61157e565b6040516106ea9190614913565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906140a9565b61160c565b6040516107279190614ab5565b60405180910390f35b34801561073c57600080fd5b506107456116dc565b005b34801561075357600080fd5b5061076e600480360381019061076991906142f5565b611764565b005b34801561077c57600080fd5b506107856117fd565b604051610792919061484d565b60405180910390f35b3480156107a757600080fd5b506107b0611827565b6040516107bd9190614913565b60405180910390f35b3480156107d257600080fd5b506107db6118b9565b6040516107e8919061484d565b60405180910390f35b3480156107fd57600080fd5b506108066118df565b60405161081391906148dd565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e91906143f2565b6118f2565b005b34801561085157600080fd5b5061086c600480360381019061086791906141ec565b611978565b005b34801561087a57600080fd5b50610883611af0565b6040516108909190614ab5565b60405180910390f35b3480156108a557600080fd5b506108ae611af6565b6040516108bb91906148dd565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e6919061441f565b611b09565b005b3480156108f957600080fd5b50610914600480360381019061090f91906140a9565b611b93565b6040516109219190614ab5565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190614169565b611bab565b005b61096d6004803603810190610968919061445f565b611c27565b005b34801561097b57600080fd5b50610984612028565b6040516109919190614913565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc919061426c565b6120b6565b005b3480156109cf57600080fd5b506109ea60048036038101906109e591906142f5565b612140565b005b3480156109f857600080fd5b50610a016121d9565b604051610a0e9190614ab5565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a3991906143f2565b6121df565b604051610a4b9190614913565b60405180910390f35b348015610a6057600080fd5b50610a69612335565b604051610a769190614ab5565b60405180910390f35b348015610a8b57600080fd5b50610a9461233b565b604051610aa191906148dd565b60405180910390f35b348015610ab657600080fd5b50610ad16004803603810190610acc9190614322565b61234e565b005b348015610adf57600080fd5b50610afa6004803603810190610af591906140a9565b6123d4565b604051610b079190614ab5565b60405180910390f35b348015610b1c57600080fd5b50610b376004803603810190610b3291906142f5565b6123ec565b005b348015610b4557600080fd5b50610b606004803603810190610b5b91906140d6565b612485565b604051610b6d91906148dd565b60405180910390f35b348015610b8257600080fd5b50610b8b612519565b604051610b9891906148f8565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc391906140a9565b61251f565b005b348015610bd657600080fd5b50610bf16004803603810190610bec91906143f2565b612617565b005b348015610bff57600080fd5b50610c1a6004803603810190610c1591906142ac565b61269d565b005b348015610c2857600080fd5b50610c436004803603810190610c3e91906143f2565b612761565b005b60135481565b6000610c56826127e7565b80610c665750610c65826128c9565b5b9050919050565b606060028054610c7c90614dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca890614dd9565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b5050505050905090565b6000610d0a82612943565b610d40576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d8682611568565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e0d612991565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e3f5750610e3d81610e38612991565b612485565b155b15610e76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e81838383612999565b505050565b60145481565b610e94612991565b73ffffffffffffffffffffffffffffffffffffffff16610eb26117fd565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906149d5565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000610f2f612a4b565b6001546000540303905090565b601160009054906101000a90046bffffffffffffffffffffffff1681565b610f65838383612a54565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156111005760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061110a612f0a565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866111369190614c73565b6111409190614c42565b90508160000151819350935050509250929050565b61115d612991565b73ffffffffffffffffffffffffffffffffffffffff1661117b6117fd565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c8906149d5565b60405180910390fd5b8060138190555050565b6111e3612991565b73ffffffffffffffffffffffffffffffffffffffff166112016117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906149d5565b60405180910390fd5b60006112616117fd565b73ffffffffffffffffffffffffffffffffffffffff164760405161128490614838565b60006040518083038185875af1925050503d80600081146112c1576040519150601f19603f3d011682016040523d82523d6000602084013e6112c6565b606091505b50509050806112d457600080fd5b50565b6112f283838360405180602001604052806000815250611bab565b505050565b6112ff612991565b73ffffffffffffffffffffffffffffffffffffffff1661131d6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906149d5565b60405180910390fd5b8060128190555050565b611385612991565b73ffffffffffffffffffffffffffffffffffffffff166113a36117fd565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f0906149d5565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b61141e612991565b73ffffffffffffffffffffffffffffffffffffffff1661143c6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906149d5565b60405180910390fd5b80600f90805190602001906114a8929190613d5c565b5050565b601060009054906101000a900460ff1681565b6114c7612991565b73ffffffffffffffffffffffffffffffffffffffff166114e56117fd565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906149d5565b60405180910390fd5b80600e9080519060200190611551929190613d5c565b5050565b601060019054906101000a900460ff1681565b600061157382612f14565b600001519050919050565b600e805461158b90614dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546115b790614dd9565b80156116045780601f106115d957610100808354040283529160200191611604565b820191906000526020600020905b8154815290600101906020018083116115e757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611674576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116e4612991565b73ffffffffffffffffffffffffffffffffffffffff166117026117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906149d5565b60405180910390fd5b61176260006131a3565b565b61176c612991565b73ffffffffffffffffffffffffffffffffffffffff1661178a6117fd565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d7906149d5565b60405180910390fd5b80601860016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461183690614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461186290614dd9565b80156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b5050505050905090565b601060029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601860009054906101000a900460ff1681565b6118fa612991565b73ffffffffffffffffffffffffffffffffffffffff166119186117fd565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611965906149d5565b60405180910390fd5b8060178190555050565b611980612991565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119f2612991565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a9f612991565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ae491906148dd565b60405180910390a35050565b60125481565b601860019054906101000a900460ff1681565b611b11612991565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906149d5565b60405180910390fd5b611b8f8183613269565b5050565b600c6020528060005260406000206000915090505481565b611bb6848484612a54565b611bd58373ffffffffffffffffffffffffffffffffffffffff16613287565b8015611bea5750611be8848484846132aa565b155b15611c21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6002600b541415611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614a75565b60405180910390fd5b6002600b81905550601060019054906101000a900460ff1615611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906149f5565b60405180910390fd5b600083118015611ce9575060175483611cdc610f25565b611ce69190614bec565b11155b611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f906149b5565b60405180910390fd5b601860009054906101000a900460ff1615611e7057611d47828261340a565b611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d90614955565b60405180910390fd5b60155483600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dd49190614bec565b1115611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90614a55565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190614bec565b92505081905550611f56565b60145483600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ebe9190614bec565b1115611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614a55565b60405180910390fd5b82600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4e9190614bec565b925050819055505b601860019054906101000a900460ff1615611fc05782601354611f799190614c73565b341015611fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb290614975565b60405180910390fd5b612011565b82601254611fce9190614c73565b341015612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614975565b60405180910390fd5b5b61201b3384613269565b6001600b81905550505050565b600f805461203590614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461206190614dd9565b80156120ae5780601f10612083576101008083540402835291602001916120ae565b820191906000526020600020905b81548152906001019060200180831161209157829003601f168201915b505050505081565b6120be612991565b73ffffffffffffffffffffffffffffffffffffffff166120dc6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612129906149d5565b60405180910390fd5b61213c82826134ce565b5050565b612148612991565b73ffffffffffffffffffffffffffffffffffffffff166121666117fd565b73ffffffffffffffffffffffffffffffffffffffff16146121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b3906149d5565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b60155481565b60606121ea82612943565b612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614a15565b60405180910390fd5b60001515601060009054906101000a900460ff16151514156122d757600f805461225290614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461227e90614dd9565b80156122cb5780601f106122a0576101008083540402835291602001916122cb565b820191906000526020600020905b8154815290600101906020018083116122ae57829003601f168201915b50505050509050612330565b60006122e1613664565b90506000815111612301576040518060200160405280600081525061232c565b8061230b846136f6565b60405160200161231c929190614809565b6040516020818303038152906040525b9150505b919050565b60175481565b601660009054906101000a900460ff1681565b612356612991565b73ffffffffffffffffffffffffffffffffffffffff166123746117fd565b73ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906149d5565b60405180910390fd5b8060198190555050565b600d6020528060005260406000206000915090505481565b6123f4612991565b73ffffffffffffffffffffffffffffffffffffffff166124126117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f906149d5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60195481565b612527612991565b73ffffffffffffffffffffffffffffffffffffffff166125456117fd565b73ffffffffffffffffffffffffffffffffffffffff161461259b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612592906149d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290614935565b60405180910390fd5b612614816131a3565b50565b61261f612991565b73ffffffffffffffffffffffffffffffffffffffff1661263d6117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a906149d5565b60405180910390fd5b8060158190555050565b6126a5612991565b73ffffffffffffffffffffffffffffffffffffffff166126c36117fd565b73ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612710906149d5565b60405180910390fd5b60005b815181101561275d5761274a82828151811061273b5761273a614f67565b5b60200260200101516001613269565b808061275590614e3c565b91505061271c565b5050565b612769612991565b73ffffffffffffffffffffffffffffffffffffffff166127876117fd565b73ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906149d5565b60405180910390fd5b8060148190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c257506128c182613857565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061293c575061293b826127e7565b5b9050919050565b60008161294e612a4b565b1115801561295d575060005482105b801561298a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612a5f82612f14565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612aeb612991565b73ffffffffffffffffffffffffffffffffffffffff161480612b1a5750612b1985612b14612991565b612485565b5b80612b5f5750612b28612991565b73ffffffffffffffffffffffffffffffffffffffff16612b4784610cff565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b98576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bff576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0c85858560016138c1565b612c1860008487612999565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e98576000548214612e9757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f0385858560016138c7565b5050505050565b6000612710905090565b612f1c613de2565b600082905080612f2a612a4b565b11158015612f39575060005481105b1561316c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161316a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461304e57809250505061319e565b5b60011561316957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461316457809250505061319e565b61304f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132838282604051806020016040528060008152506138cd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d0612991565b8786866040518563ffffffff1660e01b81526004016132f29493929190614868565b602060405180830381600087803b15801561330c57600080fd5b505af192505050801561333d57506040513d601f19601f8201168201806040525081019061333a919061437c565b60015b6133b7573d806000811461336d576040519150601f19603f3d011682016040523d82523d6000602084013e613372565b606091505b506000815114156133af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000803360405160200161341e91906147ee565b604051602081830303815290604052805190602001209050613484848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601954836138df565b6134c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ba90614995565b60405180910390fd5b600191505092915050565b6134d6612f0a565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90614a95565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600e805461367390614dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461369f90614dd9565b80156136ec5780601f106136c1576101008083540402835291602001916136ec565b820191906000526020600020905b8154815290600101906020018083116136cf57829003601f168201915b5050505050905090565b6060600082141561373e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613852565b600082905060005b6000821461377057808061375990614e3c565b915050600a826137699190614c42565b9150613746565b60008167ffffffffffffffff81111561378c5761378b614f96565b5b6040519080825280601f01601f1916602001820160405280156137be5781602001600182028036833780820191505090505b5090505b6000851461384b576001826137d79190614ccd565b9150600a856137e69190614ea9565b60306137f29190614bec565b60f81b81838151811061380857613807614f67565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138449190614c42565b94506137c2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6138da83838360016138f6565b505050565b6000826138ec8584613cc4565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613963576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561399e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139ab60008683876138c1565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613b755750613b748773ffffffffffffffffffffffffffffffffffffffff16613287565b5b15613c3b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bea60008884806001019550886132aa565b613c20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613b7b578260005414613c3657600080fd5b613ca7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c3c575b816000819055505050613cbd60008683876138c7565b5050505050565b60008082905060005b8451811015613d0f57613cfa82868381518110613ced57613cec614f67565b5b6020026020010151613d1a565b91508080613d0790614e3c565b915050613ccd565b508091505092915050565b6000818310613d3257613d2d8284613d45565b613d3d565b613d3c8383613d45565b5b905092915050565b600082600052816020526040600020905092915050565b828054613d6890614dd9565b90600052602060002090601f016020900481019282613d8a5760008555613dd1565b82601f10613da357805160ff1916838001178555613dd1565b82800160010185558215613dd1579182015b82811115613dd0578251825591602001919060010190613db5565b5b509050613dde9190613e25565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e3e576000816000905550600101613e26565b5090565b6000613e55613e5084614b10565b614aeb565b90508083825260208201905082856020860282011115613e7857613e77614fcf565b5b60005b85811015613ea85781613e8e8882613f36565b845260208401935060208301925050600181019050613e7b565b5050509392505050565b6000613ec5613ec084614b3c565b614aeb565b905082815260208101848484011115613ee157613ee0614fd4565b5b613eec848285614d97565b509392505050565b6000613f07613f0284614b6d565b614aeb565b905082815260208101848484011115613f2357613f22614fd4565b5b613f2e848285614d97565b509392505050565b600081359050613f458161528b565b92915050565b600082601f830112613f6057613f5f614fca565b5b8135613f70848260208601613e42565b91505092915050565b60008083601f840112613f8f57613f8e614fca565b5b8235905067ffffffffffffffff811115613fac57613fab614fc5565b5b602083019150836020820283011115613fc857613fc7614fcf565b5b9250929050565b600081359050613fde816152a2565b92915050565b600081359050613ff3816152b9565b92915050565b600081359050614008816152d0565b92915050565b60008151905061401d816152d0565b92915050565b600082601f83011261403857614037614fca565b5b8135614048848260208601613eb2565b91505092915050565b600082601f83011261406657614065614fca565b5b8135614076848260208601613ef4565b91505092915050565b60008135905061408e816152e7565b92915050565b6000813590506140a3816152fe565b92915050565b6000602082840312156140bf576140be614fde565b5b60006140cd84828501613f36565b91505092915050565b600080604083850312156140ed576140ec614fde565b5b60006140fb85828601613f36565b925050602061410c85828601613f36565b9150509250929050565b60008060006060848603121561412f5761412e614fde565b5b600061413d86828701613f36565b935050602061414e86828701613f36565b925050604061415f8682870161407f565b9150509250925092565b6000806000806080858703121561418357614182614fde565b5b600061419187828801613f36565b94505060206141a287828801613f36565b93505060406141b38782880161407f565b925050606085013567ffffffffffffffff8111156141d4576141d3614fd9565b5b6141e087828801614023565b91505092959194509250565b6000806040838503121561420357614202614fde565b5b600061421185828601613f36565b925050602061422285828601613fcf565b9150509250929050565b6000806040838503121561424357614242614fde565b5b600061425185828601613f36565b92505060206142628582860161407f565b9150509250929050565b6000806040838503121561428357614282614fde565b5b600061429185828601613f36565b92505060206142a285828601614094565b9150509250929050565b6000602082840312156142c2576142c1614fde565b5b600082013567ffffffffffffffff8111156142e0576142df614fd9565b5b6142ec84828501613f4b565b91505092915050565b60006020828403121561430b5761430a614fde565b5b600061431984828501613fcf565b91505092915050565b60006020828403121561433857614337614fde565b5b600061434684828501613fe4565b91505092915050565b60006020828403121561436557614364614fde565b5b600061437384828501613ff9565b91505092915050565b60006020828403121561439257614391614fde565b5b60006143a08482850161400e565b91505092915050565b6000602082840312156143bf576143be614fde565b5b600082013567ffffffffffffffff8111156143dd576143dc614fd9565b5b6143e984828501614051565b91505092915050565b60006020828403121561440857614407614fde565b5b60006144168482850161407f565b91505092915050565b6000806040838503121561443657614435614fde565b5b60006144448582860161407f565b925050602061445585828601613f36565b9150509250929050565b60008060006040848603121561447857614477614fde565b5b60006144868682870161407f565b935050602084013567ffffffffffffffff8111156144a7576144a6614fd9565b5b6144b386828701613f79565b92509250509250925092565b600080604083850312156144d6576144d5614fde565b5b60006144e48582860161407f565b92505060206144f58582860161407f565b9150509250929050565b61450881614d01565b82525050565b61451f61451a82614d01565b614e85565b82525050565b61452e81614d13565b82525050565b61453d81614d1f565b82525050565b600061454e82614b9e565b6145588185614bb4565b9350614568818560208601614da6565b61457181614fe3565b840191505092915050565b600061458782614ba9565b6145918185614bd0565b93506145a1818560208601614da6565b6145aa81614fe3565b840191505092915050565b60006145c082614ba9565b6145ca8185614be1565b93506145da818560208601614da6565b80840191505092915050565b60006145f3602683614bd0565b91506145fe82615001565b604082019050919050565b6000614616601683614bd0565b915061462182615050565b602082019050919050565b6000614639601383614bd0565b915061464482615079565b602082019050919050565b600061465c601b83614bd0565b9150614667826150a2565b602082019050919050565b600061467f600f83614bd0565b915061468a826150cb565b602082019050919050565b60006146a2600583614be1565b91506146ad826150f4565b600582019050919050565b60006146c5602083614bd0565b91506146d08261511d565b602082019050919050565b60006146e8601783614bd0565b91506146f382615146565b602082019050919050565b600061470b602f83614bd0565b91506147168261516f565b604082019050919050565b600061472e600083614bc5565b9150614739826151be565b600082019050919050565b6000614751602a83614bd0565b915061475c826151c1565b604082019050919050565b6000614774601a83614bd0565b915061477f82615210565b602082019050919050565b6000614797601f83614bd0565b91506147a282615239565b602082019050919050565b60006147ba601983614bd0565b91506147c582615262565b602082019050919050565b6147d981614d75565b82525050565b6147e881614d7f565b82525050565b60006147fa828461450e565b60148201915081905092915050565b600061481582856145b5565b915061482182846145b5565b915061482c82614695565b91508190509392505050565b600061484382614721565b9150819050919050565b600060208201905061486260008301846144ff565b92915050565b600060808201905061487d60008301876144ff565b61488a60208301866144ff565b61489760408301856147d0565b81810360608301526148a98184614543565b905095945050505050565b60006040820190506148c960008301856144ff565b6148d660208301846147d0565b9392505050565b60006020820190506148f26000830184614525565b92915050565b600060208201905061490d6000830184614534565b92915050565b6000602082019050818103600083015261492d818461457c565b905092915050565b6000602082019050818103600083015261494e816145e6565b9050919050565b6000602082019050818103600083015261496e81614609565b9050919050565b6000602082019050818103600083015261498e8161462c565b9050919050565b600060208201905081810360008301526149ae8161464f565b9050919050565b600060208201905081810360008301526149ce81614672565b9050919050565b600060208201905081810360008301526149ee816146b8565b9050919050565b60006020820190508181036000830152614a0e816146db565b9050919050565b60006020820190508181036000830152614a2e816146fe565b9050919050565b60006020820190508181036000830152614a4e81614744565b9050919050565b60006020820190508181036000830152614a6e81614767565b9050919050565b60006020820190508181036000830152614a8e8161478a565b9050919050565b60006020820190508181036000830152614aae816147ad565b9050919050565b6000602082019050614aca60008301846147d0565b92915050565b6000602082019050614ae560008301846147df565b92915050565b6000614af5614b06565b9050614b018282614e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115614b2b57614b2a614f96565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b5757614b56614f96565b5b614b6082614fe3565b9050602081019050919050565b600067ffffffffffffffff821115614b8857614b87614f96565b5b614b9182614fe3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bf782614d75565b9150614c0283614d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c3757614c36614eda565b5b828201905092915050565b6000614c4d82614d75565b9150614c5883614d75565b925082614c6857614c67614f09565b5b828204905092915050565b6000614c7e82614d75565b9150614c8983614d75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cc257614cc1614eda565b5b828202905092915050565b6000614cd882614d75565b9150614ce383614d75565b925082821015614cf657614cf5614eda565b5b828203905092915050565b6000614d0c82614d55565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614dc4578082015181840152602081019050614da9565b83811115614dd3576000848401525b50505050565b60006002820490506001821680614df157607f821691505b60208210811415614e0557614e04614f38565b5b50919050565b614e1482614fe3565b810181811067ffffffffffffffff82111715614e3357614e32614f96565b5b80604052505050565b6000614e4782614d75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e7a57614e79614eda565b5b600182019050919050565b6000614e9082614e97565b9050919050565b6000614ea282614ff4565b9050919050565b6000614eb482614d75565b9150614ebf83614d75565b925082614ecf57614ece614f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f742077686974656c697374656400000000000000000000600082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564210000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f596f752063616e2774206d696e74207468697320616d6f756e74000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61529481614d01565b811461529f57600080fd5b50565b6152ab81614d13565b81146152b657600080fd5b50565b6152c281614d1f565b81146152cd57600080fd5b50565b6152d981614d29565b81146152e457600080fd5b50565b6152f081614d75565b81146152fb57600080fd5b50565b61530781614d7f565b811461531257600080fd5b5056fea26469706673582212204e71bc593bf9da28b966bf0e7ecdfa9f23c20aac9b554875cb95d8000347c26264736f6c63430008070033

Deployed Bytecode Sourcemap

62882:5900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63424:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66210:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48192:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49695:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49258:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63471:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67524:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44328:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63343:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50560:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4533:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;66960:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68366:413;;;;;;;;;;;;;:::i;:::-;;50801:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67072:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66568:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67826:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63245:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67617:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63272:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48000:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63110:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45448:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23545:103;;;;;;;;;;;;;:::i;:::-;;67185:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22894:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48361:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63304:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63623:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67421:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49971:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63379:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63664:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67946:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62995:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51057:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64059:966;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63138:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66683:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68072:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63512:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65486:718;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63585:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63556:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66474:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63050:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67729:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50329:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63703:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23803:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66836:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68168:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67299:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63424:40;;;;:::o;66210:258::-;66325:4;66367:38;66393:11;66367:25;:38::i;:::-;:93;;;;66422:38;66448:11;66422:25;:38::i;:::-;66367:93;66347:113;;66210:258;;;:::o;48192:100::-;48246:13;48279:5;48272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48192:100;:::o;49695:204::-;49763:7;49788:16;49796:7;49788;:16::i;:::-;49783:64;;49813:34;;;;;;;;;;;;;;49783:64;49867:15;:24;49883:7;49867:24;;;;;;;;;;;;;;;;;;;;;49860:31;;49695:204;;;:::o;49258:371::-;49331:13;49347:24;49363:7;49347:15;:24::i;:::-;49331:40;;49392:5;49386:11;;:2;:11;;;49382:48;;;49406:24;;;;;;;;;;;;;;49382:48;49463:5;49447:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;49473:37;49490:5;49497:12;:10;:12::i;:::-;49473:16;:37::i;:::-;49472:38;49447:63;49443:138;;;49534:35;;;;;;;;;;;;;;49443:138;49593:28;49602:2;49606:7;49615:5;49593:8;:28::i;:::-;49320:309;49258:371;;:::o;63471:34::-;;;;:::o;67524:85::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67595:6:::1;67586;;:15;;;;;;;;;;;;;;;;;;67524:85:::0;:::o;44328:303::-;44372:7;44597:15;:13;:15::i;:::-;44582:12;;44566:13;;:28;:46;44559:53;;44328:303;:::o;63343:29::-;;;;;;;;;;;;;:::o;50560:170::-;50694:28;50704:4;50710:2;50714:7;50694:9;:28::i;:::-;50560:170;;;:::o;4533:442::-;4630:7;4639;4659:26;4688:17;:27;4706:8;4688:27;;;;;;;;;;;4659:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4760:1;4732:30;;:7;:16;;;:30;;;4728:92;;;4789:19;4779:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4728:92;4832:21;4897:17;:15;:17::i;:::-;4856:58;;4870:7;:23;;;4857:36;;:10;:36;;;;:::i;:::-;4856:58;;;;:::i;:::-;4832:82;;4935:7;:16;;;4953:13;4927:40;;;;;;4533:442;;;;;:::o;66960:106::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67049:9:::1;67034:12;:24;;;;66960:106:::0;:::o;68366:413::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68591:7:::1;68612;:5;:7::i;:::-;68604:21;;68633;68604:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68590:69;;;68678:2;68670:11;;;::::0;::::1;;68403:376;68366:413::o:0;50801:185::-;50939:39;50956:4;50962:2;50966:7;50939:39;;;;;;;;;;;;:16;:39::i;:::-;50801:185;;;:::o;67072:107::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67157:14:::1;67143:11;:28;;;;67072:107:::0;:::o;66568:109::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66660:9:::1;66642:15;;:27;;;;;;;;;;;;;;;;;;66568:109:::0;:::o;67826:112::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67926:4:::1;67906:17;:24;;;;;;;;;;;;:::i;:::-;;67826:112:::0;:::o;63245:20::-;;;;;;;;;;;;;:::o;67617:106::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67704:11:::1;67694:7;:21;;;;;;;;;;;;:::i;:::-;;67617:106:::0;:::o;63272:25::-;;;;;;;;;;;;;:::o;48000:125::-;48064:7;48091:21;48104:7;48091:12;:21::i;:::-;:26;;;48084:33;;48000:125;;;:::o;63110:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45448:206::-;45512:7;45553:1;45536:19;;:5;:19;;;45532:60;;;45564:28;;;;;;;;;;;;;;45532:60;45618:12;:19;45631:5;45618:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;45610:36;;45603:43;;45448:206;;;:::o;23545:103::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23610:30:::1;23637:1;23610:18;:30::i;:::-;23545:103::o:0;67185:105::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67273:9:::1;67257:13;;:25;;;;;;;;;;;;;;;;;;67185:105:::0;:::o;22894:87::-;22940:7;22967:6;;;;;;;;;;;22960:13;;22894:87;:::o;48361:104::-;48417:13;48450:7;48443:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48361:104;:::o;63304:32::-;;;;;;;;;;;;;:::o;63623:34::-;;;;;;;;;;;;;:::o;67421:95::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67501:7:::1;67489:9;:19;;;;67421:95:::0;:::o;49971:287::-;50082:12;:10;:12::i;:::-;50070:24;;:8;:24;;;50066:54;;;50103:17;;;;;;;;;;;;;;50066:54;50178:8;50133:18;:32;50152:12;:10;:12::i;:::-;50133:32;;;;;;;;;;;;;;;:42;50166:8;50133:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;50231:8;50202:48;;50217:12;:10;:12::i;:::-;50202:48;;;50241:8;50202:48;;;;;;:::i;:::-;;;;;;;;49971:287;;:::o;63379:38::-;;;;:::o;63664:32::-;;;;;;;;;;;;;:::o;67946:120::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68029:29:::1;68039:8;68049;68029:9;:29::i;:::-;67946:120:::0;;:::o;62995:48::-;;;;;;;;;;;;;;;;;:::o;51057:369::-;51224:28;51234:4;51240:2;51244:7;51224:9;:28::i;:::-;51267:15;:2;:13;;;:15::i;:::-;:76;;;;;51287:56;51318:4;51324:2;51328:7;51337:5;51287:30;:56::i;:::-;51286:57;51267:76;51263:156;;;51367:40;;;;;;;;;;;;;;51263:156;51057:369;;;;:::o;64059:966::-;17707:1;18305:7;;:19;;18297:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17707:1;18438:7;:18;;;;64168:6:::1;;;;;;;;;;;64167:7;64159:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64232:1;64221:8;:12;:53;;;;;64265:9;;64253:8;64237:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64221:53;64213:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;64308:15;;;;;;;;;;;64305:448;;;64348:15;64356:6;;64348:7;:15::i;:::-;64340:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;64456:18;;64444:8;64413:16;:28;64430:10;64413:28;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:61;;64405:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;64552:8;64520:16;:28;64537:10;64520:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;64305:448;;;64643:15;;64631:8;64603:13;:25;64617:10;64603:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:55;;64595:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;64733:8;64704:13;:25;64718:10;64704:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;64305:448;64766:13;;;;;;;;;;;64763:213;;;64832:8;64817:12;;:23;;;;:::i;:::-;64804:9;:36;;64796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64763:213;;;64932:8;64918:11;;:22;;;;:::i;:::-;64905:9;:35;;64897:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;64763:213;64986:31;64996:10;65008:8;64986:9;:31::i;:::-;17663:1:::0;18617:7;:22;;;;64059:966;;;:::o;63138:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66683:147::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66777:45:::1;66796:8;66806:15;66777:18;:45::i;:::-;66683:147:::0;;:::o;68072:88::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68144:8:::1;68136:5;;:16;;;;;;;;;;;;;;;;;;68072:88:::0;:::o;63512:37::-;;;;:::o;65486:718::-;65604:13;65657:16;65665:7;65657;:16::i;:::-;65635:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;65775:5;65763:17;;:8;;;;;;;;;;;:17;;;65759:74;;;65804:17;65797:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65759:74;65843:28;65874:10;:8;:10::i;:::-;65843:41;;65946:1;65921:14;65915:28;:32;:281;;;;;;;;;;;;;;;;;66039:14;66080:18;:7;:16;:18::i;:::-;65996:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65915:281;65895:301;;;65486:718;;;;:::o;63585:31::-;;;;:::o;63556:22::-;;;;;;;;;;;;;:::o;66474:88::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66546:8:::1;66539:4;:15;;;;66474:88:::0;:::o;63050:51::-;;;;;;;;;;;;;;;;;:::o;67729:89::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67804:6:::1;67793:8;;:17;;;;;;;;;;;;;;;;;;67729:89:::0;:::o;50329:164::-;50426:4;50450:18;:25;50469:5;50450:25;;;;;;;;;;;;;;;:35;50476:8;50450:35;;;;;;;;;;;;;;;;;;;;;;;;;50443:42;;50329:164;;;;:::o;63703:88::-;;;;:::o;23803:201::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23912:1:::1;23892:22;;:8;:22;;;;23884:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23968:28;23987:8;23968:18;:28::i;:::-;23803:201:::0;:::o;66836:118::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66937:9:::1;66916:18;:30;;;;66836:118:::0;:::o;68168:190::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68253:9:::1;68249:102;68272:10;:17;68268:1;:21;68249:102;;;68312:27;68322:10;68333:1;68322:13;;;;;;;;:::i;:::-;;;;;;;;68337:1;68312:9;:27::i;:::-;68291:4;;;;;:::i;:::-;;;;68249:102;;;;68168:190:::0;:::o;67299:114::-;23125:12;:10;:12::i;:::-;23114:23;;:7;:5;:7::i;:::-;:23;;;23106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67392:13:::1;67374:15;:31;;;;67299:114:::0;:::o;45079:305::-;45181:4;45233:25;45218:40;;;:11;:40;;;;:105;;;;45290:33;45275:48;;;:11;:48;;;;45218:105;:158;;;;45340:36;45364:11;45340:23;:36::i;:::-;45218:158;45198:178;;45079:305;;;:::o;4263:215::-;4365:4;4404:26;4389:41;;;:11;:41;;;;:81;;;;4434:36;4458:11;4434:23;:36::i;:::-;4389:81;4382:88;;4263:215;;;:::o;51681:174::-;51738:4;51781:7;51762:15;:13;:15::i;:::-;:26;;:53;;;;;51802:13;;51792:7;:23;51762:53;:85;;;;;51820:11;:20;51832:7;51820:20;;;;;;;;;;;:27;;;;;;;;;;;;51819:28;51762:85;51755:92;;51681:174;;;:::o;21618:98::-;21671:7;21698:10;21691:17;;21618:98;:::o;59838:196::-;59980:2;59953:15;:24;59969:7;59953:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60018:7;60014:2;59998:28;;60007:5;59998:28;;;;;;;;;;;;59838:196;;;:::o;44102:92::-;44158:7;44185:1;44178:8;;44102:92;:::o;54781:2130::-;54896:35;54934:21;54947:7;54934:12;:21::i;:::-;54896:59;;54994:4;54972:26;;:13;:18;;;:26;;;54968:67;;55007:28;;;;;;;;;;;;;;54968:67;55048:22;55090:4;55074:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;55111:36;55128:4;55134:12;:10;:12::i;:::-;55111:16;:36::i;:::-;55074:73;:126;;;;55188:12;:10;:12::i;:::-;55164:36;;:20;55176:7;55164:11;:20::i;:::-;:36;;;55074:126;55048:153;;55219:17;55214:66;;55245:35;;;;;;;;;;;;;;55214:66;55309:1;55295:16;;:2;:16;;;55291:52;;;55320:23;;;;;;;;;;;;;;55291:52;55356:43;55378:4;55384:2;55388:7;55397:1;55356:21;:43::i;:::-;55464:35;55481:1;55485:7;55494:4;55464:8;:35::i;:::-;55825:1;55795:12;:18;55808:4;55795:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55869:1;55841:12;:16;55854:2;55841:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55887:31;55921:11;:20;55933:7;55921:20;;;;;;;;;;;55887:54;;55972:2;55956:8;:13;;;:18;;;;;;;;;;;;;;;;;;56022:15;55989:8;:23;;;:49;;;;;;;;;;;;;;;;;;56290:19;56322:1;56312:7;:11;56290:33;;56338:31;56372:11;:24;56384:11;56372:24;;;;;;;;;;;56338:58;;56440:1;56415:27;;:8;:13;;;;;;;;;;;;:27;;;56411:384;;;56625:13;;56610:11;:28;56606:174;;56679:4;56663:8;:13;;;:20;;;;;;;;;;;;;;;;;;56732:13;:28;;;56706:8;:23;;;:54;;;;;;;;;;;;;;;;;;56606:174;56411:384;55770:1036;;;56842:7;56838:2;56823:27;;56832:4;56823:27;;;;;;;;;;;;56861:42;56882:4;56888:2;56892:7;56901:1;56861:20;:42::i;:::-;54885:2026;;54781:2130;;;:::o;5257:97::-;5315:6;5341:5;5334:12;;5257:97;:::o;46829:1109::-;46891:21;;:::i;:::-;46925:12;46940:7;46925:22;;47008:4;46989:15;:13;:15::i;:::-;:23;;:47;;;;;47023:13;;47016:4;:20;46989:47;46985:886;;;47057:31;47091:11;:17;47103:4;47091:17;;;;;;;;;;;47057:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47132:9;:16;;;47127:729;;47203:1;47177:28;;:9;:14;;;:28;;;47173:101;;47241:9;47234:16;;;;;;47173:101;47576:261;47583:4;47576:261;;;47616:6;;;;;;;;47661:11;:17;47673:4;47661:17;;;;;;;;;;;47649:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47735:1;47709:28;;:9;:14;;;:28;;;47705:109;;47777:9;47770:16;;;;;;47705:109;47576:261;;;47127:729;47038:833;46985:886;47899:31;;;;;;;;;;;;;;46829:1109;;;;:::o;24164:191::-;24238:16;24257:6;;;;;;;;;;;24238:25;;24283:8;24274:6;;:17;;;;;;;;;;;;;;;;;;24338:8;24307:40;;24328:8;24307:40;;;;;;;;;;;;24227:128;24164:191;:::o;51863:104::-;51932:27;51942:2;51946:8;51932:27;;;;;;;;;;;;:9;:27::i;:::-;51863:104;;:::o;25595:326::-;25655:4;25912:1;25890:7;:19;;;:23;25883:30;;25595:326;;;:::o;60526:667::-;60689:4;60726:2;60710:36;;;60747:12;:10;:12::i;:::-;60761:4;60767:7;60776:5;60710:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60706:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60961:1;60944:6;:13;:18;60940:235;;;60990:40;;;;;;;;;;;;;;60940:235;61133:6;61127:13;61118:6;61114:2;61110:15;61103:38;60706:480;60839:45;;;60829:55;;;:6;:55;;;;60822:62;;;60526:667;;;;;;:::o;65212:268::-;65285:4;65301:12;65343:10;65326:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;65316:39;;;;;;65301:54;;65374:44;65393:12;;65374:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65407:4;;65413;65374:18;:44::i;:::-;65366:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;65468:4;65461:11;;;65212:268;;;;:::o;5625:332::-;5744:17;:15;:17::i;:::-;5728:33;;:12;:33;;;;5720:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5847:1;5827:22;;:8;:22;;;;5819:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5914:35;;;;;;;;5926:8;5914:35;;;;;;5936:12;5914:35;;;;;5892:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5625:332;;:::o;65033:108::-;65093:13;65126:7;65119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65033:108;:::o;19180:723::-;19236:13;19466:1;19457:5;:10;19453:53;;;19484:10;;;;;;;;;;;;;;;;;;;;;19453:53;19516:12;19531:5;19516:20;;19547:14;19572:78;19587:1;19579:4;:9;19572:78;;19605:8;;;;;:::i;:::-;;;;19636:2;19628:10;;;;;:::i;:::-;;;19572:78;;;19660:19;19692:6;19682:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19660:39;;19710:154;19726:1;19717:5;:10;19710:154;;19754:1;19744:11;;;;;:::i;:::-;;;19821:2;19813:5;:10;;;;:::i;:::-;19800:2;:24;;;;:::i;:::-;19787:39;;19770:6;19777;19770:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19850:2;19841:11;;;;;:::i;:::-;;;19710:154;;;19888:6;19874:21;;;;;19180:723;;;;:::o;1815:157::-;1900:4;1939:25;1924:40;;;:11;:40;;;;1917:47;;1815:157;;;:::o;61841:159::-;;;;;:::o;62659:158::-;;;;;:::o;52330:163::-;52453:32;52459:2;52463:8;52473:5;52480:4;52453:5;:32::i;:::-;52330:163;;;:::o;8348:190::-;8473:4;8526;8497:25;8510:5;8517:4;8497:12;:25::i;:::-;:33;8490:40;;8348:190;;;;;:::o;52752:1775::-;52891:20;52914:13;;52891:36;;52956:1;52942:16;;:2;:16;;;52938:48;;;52967:19;;;;;;;;;;;;;;52938:48;53013:1;53001:8;:13;52997:44;;;53023:18;;;;;;;;;;;;;;52997:44;53054:61;53084:1;53088:2;53092:12;53106:8;53054:21;:61::i;:::-;53427:8;53392:12;:16;53405:2;53392:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53491:8;53451:12;:16;53464:2;53451:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53550:2;53517:11;:25;53529:12;53517:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53617:15;53567:11;:25;53579:12;53567:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;53650:20;53673:12;53650:35;;53700:11;53729:8;53714:12;:23;53700:37;;53758:4;:23;;;;;53766:15;:2;:13;;;:15::i;:::-;53758:23;53754:641;;;53802:314;53858:12;53854:2;53833:38;;53850:1;53833:38;;;;;;;;;;;;53899:69;53938:1;53942:2;53946:14;;;;;;53962:5;53899:30;:69::i;:::-;53894:174;;54004:40;;;;;;;;;;;;;;53894:174;54111:3;54095:12;:19;;53802:314;;54197:12;54180:13;;:29;54176:43;;54211:8;;;54176:43;53754:641;;;54260:120;54316:14;;;;;;54312:2;54291:40;;54308:1;54291:40;;;;;;;;;;;;54375:3;54359:12;:19;;54260:120;;53754:641;54425:12;54409:13;:28;;;;53367:1082;;54459:60;54488:1;54492:2;54496:12;54510:8;54459:20;:60::i;:::-;52880:1647;52752:1775;;;;:::o;9215:296::-;9298:7;9318:20;9341:4;9318:27;;9361:9;9356:118;9380:5;:12;9376:1;:16;9356:118;;;9429:33;9439:12;9453:5;9459:1;9453:8;;;;;;;;:::i;:::-;;;;;;;;9429:9;:33::i;:::-;9414:48;;9394:3;;;;;:::i;:::-;;;;9356:118;;;;9491:12;9484:19;;;9215:296;;;;:::o;15422:149::-;15485:7;15516:1;15512;:5;:51;;15543:20;15558:1;15561;15543:14;:20::i;:::-;15512:51;;;15520:20;15535:1;15538;15520:14;:20::i;:::-;15512:51;15505:58;;15422:149;;;;:::o;15579:268::-;15647:13;15754:1;15748:4;15741:15;15783:1;15777:4;15770:15;15824:4;15818;15808:21;15799:30;;15579:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2141:568::-;2214:8;2224:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:122;;2282:79;;:::i;:::-;2241:122;2395:6;2382:20;2372:30;;2425:18;2417:6;2414:30;2411:117;;;2447:79;;:::i;:::-;2411:117;2561:4;2553:6;2549:17;2537:29;;2615:3;2607:4;2599:6;2595:17;2585:8;2581:32;2578:41;2575:128;;;2622:79;;:::i;:::-;2575:128;2141:568;;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:137::-;4196:5;4234:6;4221:20;4212:29;;4250:32;4276:5;4250:32;:::i;:::-;4151:137;;;;:::o;4294:329::-;4353:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:119;;;4408:79;;:::i;:::-;4370:119;4528:1;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4499:117;4294:329;;;;:::o;4629:474::-;4697:6;4705;4754:2;4742:9;4733:7;4729:23;4725:32;4722:119;;;4760:79;;:::i;:::-;4722:119;4880:1;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4851:117;5007:2;5033:53;5078:7;5069:6;5058:9;5054:22;5033:53;:::i;:::-;5023:63;;4978:118;4629:474;;;;;:::o;5109:619::-;5186:6;5194;5202;5251:2;5239:9;5230:7;5226:23;5222:32;5219:119;;;5257:79;;:::i;:::-;5219:119;5377:1;5402:53;5447:7;5438:6;5427:9;5423:22;5402:53;:::i;:::-;5392:63;;5348:117;5504:2;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5475:118;5632:2;5658:53;5703:7;5694:6;5683:9;5679:22;5658:53;:::i;:::-;5648:63;;5603:118;5109:619;;;;;:::o;5734:943::-;5829:6;5837;5845;5853;5902:3;5890:9;5881:7;5877:23;5873:33;5870:120;;;5909:79;;:::i;:::-;5870:120;6029:1;6054:53;6099:7;6090:6;6079:9;6075:22;6054:53;:::i;:::-;6044:63;;6000:117;6156:2;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6127:118;6284:2;6310:53;6355:7;6346:6;6335:9;6331:22;6310:53;:::i;:::-;6300:63;;6255:118;6440:2;6429:9;6425:18;6412:32;6471:18;6463:6;6460:30;6457:117;;;6493:79;;:::i;:::-;6457:117;6598:62;6652:7;6643:6;6632:9;6628:22;6598:62;:::i;:::-;6588:72;;6383:287;5734:943;;;;;;;:::o;6683:468::-;6748:6;6756;6805:2;6793:9;6784:7;6780:23;6776:32;6773:119;;;6811:79;;:::i;:::-;6773:119;6931:1;6956:53;7001:7;6992:6;6981:9;6977:22;6956:53;:::i;:::-;6946:63;;6902:117;7058:2;7084:50;7126:7;7117:6;7106:9;7102:22;7084:50;:::i;:::-;7074:60;;7029:115;6683:468;;;;;:::o;7157:474::-;7225:6;7233;7282:2;7270:9;7261:7;7257:23;7253:32;7250:119;;;7288:79;;:::i;:::-;7250:119;7408:1;7433:53;7478:7;7469:6;7458:9;7454:22;7433:53;:::i;:::-;7423:63;;7379:117;7535:2;7561:53;7606:7;7597:6;7586:9;7582:22;7561:53;:::i;:::-;7551:63;;7506:118;7157:474;;;;;:::o;7637:472::-;7704:6;7712;7761:2;7749:9;7740:7;7736:23;7732:32;7729:119;;;7767:79;;:::i;:::-;7729:119;7887:1;7912:53;7957:7;7948:6;7937:9;7933:22;7912:53;:::i;:::-;7902:63;;7858:117;8014:2;8040:52;8084:7;8075:6;8064:9;8060:22;8040:52;:::i;:::-;8030:62;;7985:117;7637:472;;;;;:::o;8115:539::-;8199:6;8248:2;8236:9;8227:7;8223:23;8219:32;8216:119;;;8254:79;;:::i;:::-;8216:119;8402:1;8391:9;8387:17;8374:31;8432:18;8424:6;8421:30;8418:117;;;8454:79;;:::i;:::-;8418:117;8559:78;8629:7;8620:6;8609:9;8605:22;8559:78;:::i;:::-;8549:88;;8345:302;8115:539;;;;:::o;8660:323::-;8716:6;8765:2;8753:9;8744:7;8740:23;8736:32;8733:119;;;8771:79;;:::i;:::-;8733:119;8891:1;8916:50;8958:7;8949:6;8938:9;8934:22;8916:50;:::i;:::-;8906:60;;8862:114;8660:323;;;;:::o;8989:329::-;9048:6;9097:2;9085:9;9076:7;9072:23;9068:32;9065:119;;;9103:79;;:::i;:::-;9065:119;9223:1;9248:53;9293:7;9284:6;9273:9;9269:22;9248:53;:::i;:::-;9238:63;;9194:117;8989:329;;;;:::o;9324:327::-;9382:6;9431:2;9419:9;9410:7;9406:23;9402:32;9399:119;;;9437:79;;:::i;:::-;9399:119;9557:1;9582:52;9626:7;9617:6;9606:9;9602:22;9582:52;:::i;:::-;9572:62;;9528:116;9324:327;;;;:::o;9657:349::-;9726:6;9775:2;9763:9;9754:7;9750:23;9746:32;9743:119;;;9781:79;;:::i;:::-;9743:119;9901:1;9926:63;9981:7;9972:6;9961:9;9957:22;9926:63;:::i;:::-;9916:73;;9872:127;9657:349;;;;:::o;10012:509::-;10081:6;10130:2;10118:9;10109:7;10105:23;10101:32;10098:119;;;10136:79;;:::i;:::-;10098:119;10284:1;10273:9;10269:17;10256:31;10314:18;10306:6;10303:30;10300:117;;;10336:79;;:::i;:::-;10300:117;10441:63;10496:7;10487:6;10476:9;10472:22;10441:63;:::i;:::-;10431:73;;10227:287;10012:509;;;;:::o;10527:329::-;10586:6;10635:2;10623:9;10614:7;10610:23;10606:32;10603:119;;;10641:79;;:::i;:::-;10603:119;10761:1;10786:53;10831:7;10822:6;10811:9;10807:22;10786:53;:::i;:::-;10776:63;;10732:117;10527:329;;;;:::o;10862:474::-;10930:6;10938;10987:2;10975:9;10966:7;10962:23;10958:32;10955:119;;;10993:79;;:::i;:::-;10955:119;11113:1;11138:53;11183:7;11174:6;11163:9;11159:22;11138:53;:::i;:::-;11128:63;;11084:117;11240:2;11266:53;11311:7;11302:6;11291:9;11287:22;11266:53;:::i;:::-;11256:63;;11211:118;10862:474;;;;;:::o;11342:704::-;11437:6;11445;11453;11502:2;11490:9;11481:7;11477:23;11473:32;11470:119;;;11508:79;;:::i;:::-;11470:119;11628:1;11653:53;11698:7;11689:6;11678:9;11674:22;11653:53;:::i;:::-;11643:63;;11599:117;11783:2;11772:9;11768:18;11755:32;11814:18;11806:6;11803:30;11800:117;;;11836:79;;:::i;:::-;11800:117;11949:80;12021:7;12012:6;12001:9;11997:22;11949:80;:::i;:::-;11931:98;;;;11726:313;11342:704;;;;;:::o;12052:474::-;12120:6;12128;12177:2;12165:9;12156:7;12152:23;12148:32;12145:119;;;12183:79;;:::i;:::-;12145:119;12303:1;12328:53;12373:7;12364:6;12353:9;12349:22;12328:53;:::i;:::-;12318:63;;12274:117;12430:2;12456:53;12501:7;12492:6;12481:9;12477:22;12456:53;:::i;:::-;12446:63;;12401:118;12052:474;;;;;:::o;12532:118::-;12619:24;12637:5;12619:24;:::i;:::-;12614:3;12607:37;12532:118;;:::o;12656:157::-;12761:45;12781:24;12799:5;12781:24;:::i;:::-;12761:45;:::i;:::-;12756:3;12749:58;12656:157;;:::o;12819:109::-;12900:21;12915:5;12900:21;:::i;:::-;12895:3;12888:34;12819:109;;:::o;12934:118::-;13021:24;13039:5;13021:24;:::i;:::-;13016:3;13009:37;12934:118;;:::o;13058:360::-;13144:3;13172:38;13204:5;13172:38;:::i;:::-;13226:70;13289:6;13284:3;13226:70;:::i;:::-;13219:77;;13305:52;13350:6;13345:3;13338:4;13331:5;13327:16;13305:52;:::i;:::-;13382:29;13404:6;13382:29;:::i;:::-;13377:3;13373:39;13366:46;;13148:270;13058:360;;;;:::o;13424:364::-;13512:3;13540:39;13573:5;13540:39;:::i;:::-;13595:71;13659:6;13654:3;13595:71;:::i;:::-;13588:78;;13675:52;13720:6;13715:3;13708:4;13701:5;13697:16;13675:52;:::i;:::-;13752:29;13774:6;13752:29;:::i;:::-;13747:3;13743:39;13736:46;;13516:272;13424:364;;;;:::o;13794:377::-;13900:3;13928:39;13961:5;13928:39;:::i;:::-;13983:89;14065:6;14060:3;13983:89;:::i;:::-;13976:96;;14081:52;14126:6;14121:3;14114:4;14107:5;14103:16;14081:52;:::i;:::-;14158:6;14153:3;14149:16;14142:23;;13904:267;13794:377;;;;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:::-;14691:3;14712:67;14776:2;14771:3;14712:67;:::i;:::-;14705:74;;14788:93;14877:3;14788:93;:::i;:::-;14906:2;14901:3;14897:12;14890:19;;14549:366;;;:::o;14921:::-;15063:3;15084:67;15148:2;15143:3;15084:67;:::i;:::-;15077:74;;15160:93;15249:3;15160:93;:::i;:::-;15278:2;15273:3;15269:12;15262:19;;14921:366;;;:::o;15293:::-;15435:3;15456:67;15520:2;15515:3;15456:67;:::i;:::-;15449:74;;15532:93;15621:3;15532:93;:::i;:::-;15650:2;15645:3;15641:12;15634:19;;15293:366;;;:::o;15665:::-;15807:3;15828:67;15892:2;15887:3;15828:67;:::i;:::-;15821:74;;15904:93;15993:3;15904:93;:::i;:::-;16022:2;16017:3;16013:12;16006:19;;15665:366;;;:::o;16037:400::-;16197:3;16218:84;16300:1;16295:3;16218:84;:::i;:::-;16211:91;;16311:93;16400:3;16311:93;:::i;:::-;16429:1;16424:3;16420:11;16413:18;;16037:400;;;:::o;16443:366::-;16585:3;16606:67;16670:2;16665:3;16606:67;:::i;:::-;16599:74;;16682:93;16771:3;16682:93;:::i;:::-;16800:2;16795:3;16791:12;16784:19;;16443:366;;;:::o;16815:::-;16957:3;16978:67;17042:2;17037:3;16978:67;:::i;:::-;16971:74;;17054:93;17143:3;17054:93;:::i;:::-;17172:2;17167:3;17163:12;17156:19;;16815:366;;;:::o;17187:::-;17329:3;17350:67;17414:2;17409:3;17350:67;:::i;:::-;17343:74;;17426:93;17515:3;17426:93;:::i;:::-;17544:2;17539:3;17535:12;17528:19;;17187:366;;;:::o;17559:398::-;17718:3;17739:83;17820:1;17815:3;17739:83;:::i;:::-;17732:90;;17831:93;17920:3;17831:93;:::i;:::-;17949:1;17944:3;17940:11;17933:18;;17559:398;;;:::o;17963:366::-;18105:3;18126:67;18190:2;18185:3;18126:67;:::i;:::-;18119:74;;18202:93;18291:3;18202:93;:::i;:::-;18320:2;18315:3;18311:12;18304:19;;17963:366;;;:::o;18335:::-;18477:3;18498:67;18562:2;18557:3;18498:67;:::i;:::-;18491:74;;18574:93;18663:3;18574:93;:::i;:::-;18692:2;18687:3;18683:12;18676:19;;18335:366;;;:::o;18707:::-;18849:3;18870:67;18934:2;18929:3;18870:67;:::i;:::-;18863:74;;18946:93;19035:3;18946:93;:::i;:::-;19064:2;19059:3;19055:12;19048:19;;18707:366;;;:::o;19079:::-;19221:3;19242:67;19306:2;19301:3;19242:67;:::i;:::-;19235:74;;19318:93;19407:3;19318:93;:::i;:::-;19436:2;19431:3;19427:12;19420:19;;19079:366;;;:::o;19451:118::-;19538:24;19556:5;19538:24;:::i;:::-;19533:3;19526:37;19451:118;;:::o;19575:115::-;19660:23;19677:5;19660:23;:::i;:::-;19655:3;19648:36;19575:115;;:::o;19696:256::-;19808:3;19823:75;19894:3;19885:6;19823:75;:::i;:::-;19923:2;19918:3;19914:12;19907:19;;19943:3;19936:10;;19696:256;;;;:::o;19958:701::-;20239:3;20261:95;20352:3;20343:6;20261:95;:::i;:::-;20254:102;;20373:95;20464:3;20455:6;20373:95;:::i;:::-;20366:102;;20485:148;20629:3;20485:148;:::i;:::-;20478:155;;20650:3;20643:10;;19958:701;;;;;:::o;20665:379::-;20849:3;20871:147;21014:3;20871:147;:::i;:::-;20864:154;;21035:3;21028:10;;20665:379;;;:::o;21050:222::-;21143:4;21181:2;21170:9;21166:18;21158:26;;21194:71;21262:1;21251:9;21247:17;21238:6;21194:71;:::i;:::-;21050:222;;;;:::o;21278:640::-;21473:4;21511:3;21500:9;21496:19;21488:27;;21525:71;21593:1;21582:9;21578:17;21569:6;21525:71;:::i;:::-;21606:72;21674:2;21663:9;21659:18;21650:6;21606:72;:::i;:::-;21688;21756:2;21745:9;21741:18;21732:6;21688:72;:::i;:::-;21807:9;21801:4;21797:20;21792:2;21781:9;21777:18;21770:48;21835:76;21906:4;21897:6;21835:76;:::i;:::-;21827:84;;21278:640;;;;;;;:::o;21924:332::-;22045:4;22083:2;22072:9;22068:18;22060:26;;22096:71;22164:1;22153:9;22149:17;22140:6;22096:71;:::i;:::-;22177:72;22245:2;22234:9;22230:18;22221:6;22177:72;:::i;:::-;21924:332;;;;;:::o;22262:210::-;22349:4;22387:2;22376:9;22372:18;22364:26;;22400:65;22462:1;22451:9;22447:17;22438:6;22400:65;:::i;:::-;22262:210;;;;:::o;22478:222::-;22571:4;22609:2;22598:9;22594:18;22586:26;;22622:71;22690:1;22679:9;22675:17;22666:6;22622:71;:::i;:::-;22478:222;;;;:::o;22706:313::-;22819:4;22857:2;22846:9;22842:18;22834:26;;22906:9;22900:4;22896:20;22892:1;22881:9;22877:17;22870:47;22934:78;23007:4;22998:6;22934:78;:::i;:::-;22926:86;;22706:313;;;;:::o;23025:419::-;23191:4;23229:2;23218:9;23214:18;23206:26;;23278:9;23272:4;23268:20;23264:1;23253:9;23249:17;23242:47;23306:131;23432:4;23306:131;:::i;:::-;23298:139;;23025:419;;;:::o;23450:::-;23616:4;23654:2;23643:9;23639:18;23631:26;;23703:9;23697:4;23693:20;23689:1;23678:9;23674:17;23667:47;23731:131;23857:4;23731:131;:::i;:::-;23723:139;;23450:419;;;:::o;23875:::-;24041:4;24079:2;24068:9;24064:18;24056:26;;24128:9;24122:4;24118:20;24114:1;24103:9;24099:17;24092:47;24156:131;24282:4;24156:131;:::i;:::-;24148:139;;23875:419;;;:::o;24300:::-;24466:4;24504:2;24493:9;24489:18;24481:26;;24553:9;24547:4;24543:20;24539:1;24528:9;24524:17;24517:47;24581:131;24707:4;24581:131;:::i;:::-;24573:139;;24300:419;;;:::o;24725:::-;24891:4;24929:2;24918:9;24914:18;24906:26;;24978:9;24972:4;24968:20;24964:1;24953:9;24949:17;24942:47;25006:131;25132:4;25006:131;:::i;:::-;24998:139;;24725:419;;;:::o;25150:::-;25316:4;25354:2;25343:9;25339:18;25331:26;;25403:9;25397:4;25393:20;25389:1;25378:9;25374:17;25367:47;25431:131;25557:4;25431:131;:::i;:::-;25423:139;;25150:419;;;:::o;25575:::-;25741:4;25779:2;25768:9;25764:18;25756:26;;25828:9;25822:4;25818:20;25814:1;25803:9;25799:17;25792:47;25856:131;25982:4;25856:131;:::i;:::-;25848:139;;25575:419;;;:::o;26000:::-;26166:4;26204:2;26193:9;26189:18;26181:26;;26253:9;26247:4;26243:20;26239:1;26228:9;26224:17;26217:47;26281:131;26407:4;26281:131;:::i;:::-;26273:139;;26000:419;;;:::o;26425:::-;26591:4;26629:2;26618:9;26614:18;26606:26;;26678:9;26672:4;26668:20;26664:1;26653:9;26649:17;26642:47;26706:131;26832:4;26706:131;:::i;:::-;26698:139;;26425:419;;;:::o;26850:::-;27016:4;27054:2;27043:9;27039:18;27031:26;;27103:9;27097:4;27093:20;27089:1;27078:9;27074:17;27067:47;27131:131;27257:4;27131:131;:::i;:::-;27123:139;;26850:419;;;:::o;27275:::-;27441:4;27479:2;27468:9;27464:18;27456:26;;27528:9;27522:4;27518:20;27514:1;27503:9;27499:17;27492:47;27556:131;27682:4;27556:131;:::i;:::-;27548:139;;27275:419;;;:::o;27700:::-;27866:4;27904:2;27893:9;27889:18;27881:26;;27953:9;27947:4;27943:20;27939:1;27928:9;27924:17;27917:47;27981:131;28107:4;27981:131;:::i;:::-;27973:139;;27700:419;;;:::o;28125:222::-;28218:4;28256:2;28245:9;28241:18;28233:26;;28269:71;28337:1;28326:9;28322:17;28313:6;28269:71;:::i;:::-;28125:222;;;;:::o;28353:218::-;28444:4;28482:2;28471:9;28467:18;28459:26;;28495:69;28561:1;28550:9;28546:17;28537:6;28495:69;:::i;:::-;28353:218;;;;:::o;28577:129::-;28611:6;28638:20;;:::i;:::-;28628:30;;28667:33;28695:4;28687:6;28667:33;:::i;:::-;28577:129;;;:::o;28712:75::-;28745:6;28778:2;28772:9;28762:19;;28712:75;:::o;28793:311::-;28870:4;28960:18;28952:6;28949:30;28946:56;;;28982:18;;:::i;:::-;28946:56;29032:4;29024:6;29020:17;29012:25;;29092:4;29086;29082:15;29074:23;;28793:311;;;:::o;29110:307::-;29171:4;29261:18;29253:6;29250:30;29247:56;;;29283:18;;:::i;:::-;29247:56;29321:29;29343:6;29321:29;:::i;:::-;29313:37;;29405:4;29399;29395:15;29387:23;;29110:307;;;:::o;29423:308::-;29485:4;29575:18;29567:6;29564:30;29561:56;;;29597:18;;:::i;:::-;29561:56;29635:29;29657:6;29635:29;:::i;:::-;29627:37;;29719:4;29713;29709:15;29701:23;;29423:308;;;:::o;29737:98::-;29788:6;29822:5;29816:12;29806:22;;29737:98;;;:::o;29841:99::-;29893:6;29927:5;29921:12;29911:22;;29841:99;;;:::o;29946:168::-;30029:11;30063:6;30058:3;30051:19;30103:4;30098:3;30094:14;30079:29;;29946:168;;;;:::o;30120:147::-;30221:11;30258:3;30243:18;;30120:147;;;;:::o;30273:169::-;30357:11;30391:6;30386:3;30379:19;30431:4;30426:3;30422:14;30407:29;;30273:169;;;;:::o;30448:148::-;30550:11;30587:3;30572:18;;30448:148;;;;:::o;30602:305::-;30642:3;30661:20;30679:1;30661:20;:::i;:::-;30656:25;;30695:20;30713:1;30695:20;:::i;:::-;30690:25;;30849:1;30781:66;30777:74;30774:1;30771:81;30768:107;;;30855:18;;:::i;:::-;30768:107;30899:1;30896;30892:9;30885:16;;30602:305;;;;:::o;30913:185::-;30953:1;30970:20;30988:1;30970:20;:::i;:::-;30965:25;;31004:20;31022:1;31004:20;:::i;:::-;30999:25;;31043:1;31033:35;;31048:18;;:::i;:::-;31033:35;31090:1;31087;31083:9;31078:14;;30913:185;;;;:::o;31104:348::-;31144:7;31167:20;31185:1;31167:20;:::i;:::-;31162:25;;31201:20;31219:1;31201:20;:::i;:::-;31196:25;;31389:1;31321:66;31317:74;31314:1;31311:81;31306:1;31299:9;31292:17;31288:105;31285:131;;;31396:18;;:::i;:::-;31285:131;31444:1;31441;31437:9;31426:20;;31104:348;;;;:::o;31458:191::-;31498:4;31518:20;31536:1;31518:20;:::i;:::-;31513:25;;31552:20;31570:1;31552:20;:::i;:::-;31547:25;;31591:1;31588;31585:8;31582:34;;;31596:18;;:::i;:::-;31582:34;31641:1;31638;31634:9;31626:17;;31458:191;;;;:::o;31655:96::-;31692:7;31721:24;31739:5;31721:24;:::i;:::-;31710:35;;31655:96;;;:::o;31757:90::-;31791:7;31834:5;31827:13;31820:21;31809:32;;31757:90;;;:::o;31853:77::-;31890:7;31919:5;31908:16;;31853:77;;;:::o;31936:149::-;31972:7;32012:66;32005:5;32001:78;31990:89;;31936:149;;;:::o;32091:126::-;32128:7;32168:42;32161:5;32157:54;32146:65;;32091:126;;;:::o;32223:77::-;32260:7;32289:5;32278:16;;32223:77;;;:::o;32306:109::-;32342:7;32382:26;32375:5;32371:38;32360:49;;32306:109;;;:::o;32421:154::-;32505:6;32500:3;32495;32482:30;32567:1;32558:6;32553:3;32549:16;32542:27;32421:154;;;:::o;32581:307::-;32649:1;32659:113;32673:6;32670:1;32667:13;32659:113;;;32758:1;32753:3;32749:11;32743:18;32739:1;32734:3;32730:11;32723:39;32695:2;32692:1;32688:10;32683:15;;32659:113;;;32790:6;32787:1;32784:13;32781:101;;;32870:1;32861:6;32856:3;32852:16;32845:27;32781:101;32630:258;32581:307;;;:::o;32894:320::-;32938:6;32975:1;32969:4;32965:12;32955:22;;33022:1;33016:4;33012:12;33043:18;33033:81;;33099:4;33091:6;33087:17;33077:27;;33033:81;33161:2;33153:6;33150:14;33130:18;33127:38;33124:84;;;33180:18;;:::i;:::-;33124:84;32945:269;32894:320;;;:::o;33220:281::-;33303:27;33325:4;33303:27;:::i;:::-;33295:6;33291:40;33433:6;33421:10;33418:22;33397:18;33385:10;33382:34;33379:62;33376:88;;;33444:18;;:::i;:::-;33376:88;33484:10;33480:2;33473:22;33263:238;33220:281;;:::o;33507:233::-;33546:3;33569:24;33587:5;33569:24;:::i;:::-;33560:33;;33615:66;33608:5;33605:77;33602:103;;;33685:18;;:::i;:::-;33602:103;33732:1;33725:5;33721:13;33714:20;;33507:233;;;:::o;33746:100::-;33785:7;33814:26;33834:5;33814:26;:::i;:::-;33803:37;;33746:100;;;:::o;33852:94::-;33891:7;33920:20;33934:5;33920:20;:::i;:::-;33909:31;;33852:94;;;:::o;33952:176::-;33984:1;34001:20;34019:1;34001:20;:::i;:::-;33996:25;;34035:20;34053:1;34035:20;:::i;:::-;34030:25;;34074:1;34064:35;;34079:18;;:::i;:::-;34064:35;34120:1;34117;34113:9;34108:14;;33952:176;;;;:::o;34134:180::-;34182:77;34179:1;34172:88;34279:4;34276:1;34269:15;34303:4;34300:1;34293:15;34320:180;34368:77;34365:1;34358:88;34465:4;34462:1;34455:15;34489:4;34486:1;34479:15;34506:180;34554:77;34551:1;34544:88;34651:4;34648:1;34641:15;34675:4;34672:1;34665:15;34692:180;34740:77;34737:1;34730:88;34837:4;34834:1;34827:15;34861:4;34858:1;34851:15;34878:180;34926:77;34923:1;34916:88;35023:4;35020:1;35013:15;35047:4;35044:1;35037:15;35064:117;35173:1;35170;35163:12;35187:117;35296:1;35293;35286:12;35310:117;35419:1;35416;35409:12;35433:117;35542:1;35539;35532:12;35556:117;35665:1;35662;35655:12;35679:117;35788:1;35785;35778:12;35802:102;35843:6;35894:2;35890:7;35885:2;35878:5;35874:14;35870:28;35860:38;;35802:102;;;:::o;35910:94::-;35943:8;35991:5;35987:2;35983:14;35962:35;;35910:94;;;:::o;36010:225::-;36150:34;36146:1;36138:6;36134:14;36127:58;36219:8;36214:2;36206:6;36202:15;36195:33;36010:225;:::o;36241:172::-;36381:24;36377:1;36369:6;36365:14;36358:48;36241:172;:::o;36419:169::-;36559:21;36555:1;36547:6;36543:14;36536:45;36419:169;:::o;36594:177::-;36734:29;36730:1;36722:6;36718:14;36711:53;36594:177;:::o;36777:165::-;36917:17;36913:1;36905:6;36901:14;36894:41;36777:165;:::o;36948:155::-;37088:7;37084:1;37076:6;37072:14;37065:31;36948:155;:::o;37109:182::-;37249:34;37245:1;37237:6;37233:14;37226:58;37109:182;:::o;37297:173::-;37437:25;37433:1;37425:6;37421:14;37414:49;37297:173;:::o;37476:234::-;37616:34;37612:1;37604:6;37600:14;37593:58;37685:17;37680:2;37672:6;37668:15;37661:42;37476:234;:::o;37716:114::-;;:::o;37836:229::-;37976:34;37972:1;37964:6;37960:14;37953:58;38045:12;38040:2;38032:6;38028:15;38021:37;37836:229;:::o;38071:176::-;38211:28;38207:1;38199:6;38195:14;38188:52;38071:176;:::o;38253:181::-;38393:33;38389:1;38381:6;38377:14;38370:57;38253:181;:::o;38440:175::-;38580:27;38576:1;38568:6;38564:14;38557:51;38440:175;:::o;38621:122::-;38694:24;38712:5;38694:24;:::i;:::-;38687:5;38684:35;38674:63;;38733:1;38730;38723:12;38674:63;38621:122;:::o;38749:116::-;38819:21;38834:5;38819:21;:::i;:::-;38812:5;38809:32;38799:60;;38855:1;38852;38845:12;38799:60;38749:116;:::o;38871:122::-;38944:24;38962:5;38944:24;:::i;:::-;38937:5;38934:35;38924:63;;38983:1;38980;38973:12;38924:63;38871:122;:::o;38999:120::-;39071:23;39088:5;39071:23;:::i;:::-;39064:5;39061:34;39051:62;;39109:1;39106;39099:12;39051:62;38999:120;:::o;39125:122::-;39198:24;39216:5;39198:24;:::i;:::-;39191:5;39188:35;39178:63;;39237:1;39234;39227:12;39178:63;39125:122;:::o;39253:120::-;39325:23;39342:5;39325:23;:::i;:::-;39318:5;39315:34;39305:62;;39363:1;39360;39353:12;39305:62;39253:120;:::o

Swarm Source

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