ETH Price: $3,381.04 (-0.78%)
Gas: 4 Gwei

Token

Supreme Dogs X (SDX)
 

Overview

Max Total Supply

524 SDX

Holders

99

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 SDX
0xbf11349b63c396fc77f525ebb3c06d6a01deed84
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:
SupremeDogsX

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-28
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/SDX.sol


pragma solidity 0.8.17;






contract SupremeDogsX is ERC721AQueryable, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "https://www.supremebonesx.io/sdx/nft/json/";
  string public uriSuffix = ".json";
  string public _contractURI = "";
  string public hiddenMetadataUri;

  uint256 public maxSupply = 2500;
  uint256 public maxMintAmountPerTx = 2500;
  uint256 public walletLimit = 2500;

  bool public paused = true;
  bool public revealed = false;

  uint256 public whitelistPhase = 0;

  uint256 public whitelistCost = 25000000000000000;
  uint256 public publicCost = 35000000000000000;

  uint256 public baseRefReward = 35000000000000000;

  mapping (address => uint256) public alreadyMinted;
  mapping (address => uint256) public refMints;
  mapping (address => uint256) public claimedRefMints;

// MERKEL TREE STUFF
  bytes32 public merkleRoot = 0x59f37e56fcc6db04ef14c37393808782f92269ddf3a082629bbe02c2eeba7172;

  bytes32 public refMerkleRoot = 0x59f37e56fcc6db04ef14c37393808782f92269ddf3a082629bbe02c2eeba7172;
  
  constructor() ERC721A("Supreme Dogs X", "SDX") {
    _startTokenId();
    setHiddenMetadataUri("https://www.supremebonesx.com/sdx/hiddenMeta.json");
    setContractURI("https://www.supremebonesx.com/sdx/sdxContract.json");
  }

  function _startTokenId()
        internal
        pure
        override
        returns(uint256)
    {
        return 1;
    }

  modifier mintCompliance (uint256 _mintAmount) 
  {
    require(!paused, "Minting is PAUSED!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(msg.sender == tx.origin, "No Bots!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(alreadyMinted[msg.sender] + _mintAmount <= walletLimit, "Max Mints Per Wallet Reached!");
    _;
  }

  function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner
  {
    merkleRoot = newMerkleRoot;
  }

  function setRefMerkleRoot(bytes32 newRefMerkleRoot) external onlyOwner
  {
      refMerkleRoot = newRefMerkleRoot;
  }

  function setWalletLimit(uint256 _walletLimit) external onlyOwner
  {
      walletLimit = _walletLimit;
  }

  function setWhitelistMintCost(uint256 _mintCost) external onlyOwner
  {
      whitelistCost = _mintCost;
  }

  function setPublicMintCost(uint256 _mintCost) external onlyOwner
  {
      publicCost = _mintCost;
  }

  function setBaseRefReward(uint256 _baseRefReward) external onlyOwner
  {
    baseRefReward = _baseRefReward;
  }

  function getAlreadyMinted(address a) public view returns (uint256)
  {
    return alreadyMinted[a];
  }

  function getWhitelistState() public view returns (uint256)
  {
    return whitelistPhase;
  }

  function getPausedState() public view returns (bool)
  {
    return paused;
  }

  function getTotalSupply() public view returns (uint256)
  {
    return totalSupply();
  }

  function getTotalRefMints(address addy) public view returns (uint256)
  {
      return refMints[addy];
  }

  function getClaimedRefMints(address addy) public view returns (uint256)
  {
      return claimedRefMints[addy];
  }

  function whitelistMint(bytes32[] calldata _merkleProof, uint256 _mintAmount, address refCode) external mintCompliance(_mintAmount) payable
  {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not on the Whitelist");
    require(msg.value >= _mintAmount * whitelistCost, "Insufficient funds!");

    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);

    if (msg.sender != refCode)
    {
      refMints[refCode] += _mintAmount;
    }
  }

  function publicMint(uint256 _mintAmount, address refCode) external mintCompliance(_mintAmount) payable
  {
    require(msg.value >= _mintAmount * publicCost, "Insufficient funds!");

    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);

    if (msg.sender != refCode)
    {
      refMints[refCode] += _mintAmount;
    }
    
  }

  function publicMintNoRef(uint256 _mintAmount) external mintCompliance(_mintAmount) payable
  {
    require(msg.value >= _mintAmount * publicCost, "Insufficient funds!");

    alreadyMinted[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function claimRefRewards(bytes32[] calldata _refMerkleProof) public
  {
      bytes32 refLeaf = keccak256(abi.encodePacked(msg.sender));
      uint256 rewPerMint;

      if (MerkleProof.verify(_refMerkleProof, refMerkleRoot, refLeaf))
      {
        rewPerMint = baseRefReward/100*5;
      }
      else
      {
        rewPerMint = baseRefReward/100*3;
      }

      uint256 rewardingMints = refMints[msg.sender] - claimedRefMints[msg.sender];
      uint256 reward = rewardingMints * rewPerMint;
      claimedRefMints[msg.sender] = refMints[msg.sender];
      payable(msg.sender).transfer(reward);
  }

  function claimRefRewardsPublic() public
  {
      uint256 rewPerMint;
      rewPerMint = baseRefReward/100*3;

      uint256 rewardingMints = refMints[msg.sender] - claimedRefMints[msg.sender];
      uint256 reward = rewardingMints * rewPerMint;
      claimedRefMints[msg.sender] = refMints[msg.sender];
      payable(msg.sender).transfer(reward);
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public payable onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function mintForAddressMultiple(address[] calldata addresses, uint256[] calldata amount) public onlyOwner
  {
    for (uint256 i; i < addresses.length; i++)
    {
      require(totalSupply() + amount[i] <= maxSupply, "Max supply exceeded!");
      _safeMint(addresses[i], amount[i]);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override (ERC721A, IERC721A)
    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, _toString(_tokenId), uriSuffix))
        : "";
  }

  function contractURI() 
  public 
  view 
  returns (string memory) 
  {
        return bytes(_contractURI).length > 0
          ? string(abi.encodePacked(_contractURI))
          : "";
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setContractURI(string memory newContractURI) public onlyOwner {
    _contractURI = newContractURI;
  }

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

  function setWhitelistPhase(uint256 _state) public onlyOwner {
    whitelistPhase = _state;
  }

  function withdraw(uint256 amount) public onlyOwner 
  {
    payable(msg.sender).transfer(amount);
  }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseRefReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_refMerkleProof","type":"bytes32[]"}],"name":"claimRefRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRefRewardsPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedRefMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"getClaimedRefMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPausedState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"getTotalRefMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"mintForAddressMultiple","outputs":[],"stateMutability":"nonpayable","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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"refCode","type":"address"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMintNoRef","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"refMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"refMints","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":[{"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":"uint256","name":"_baseRefReward","type":"uint256"}],"name":"setBaseRefReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintCost","type":"uint256"}],"name":"setPublicMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRefMerkleRoot","type":"bytes32"}],"name":"setRefMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintCost","type":"uint256"}],"name":"setWhitelistMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setWhitelistPhase","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"refCode","type":"address"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280602a815260200162006300602a9139600a90816200002e9190620006ea565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620006ea565b5060405180602001604052806000815250600c9081620000969190620006ea565b506109c4600e556109c4600f556109c46010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555060006012556658d15e17628000601355667c585087238000601455667c5850872380006015557f59f37e56fcc6db04ef14c37393808782f92269ddf3a082629bbe02c2eeba717260001b6019557f59f37e56fcc6db04ef14c37393808782f92269ddf3a082629bbe02c2eeba717260001b601a553480156200016057600080fd5b506040518060400160405280600e81526020017f53757072656d6520446f677320580000000000000000000000000000000000008152506040518060400160405280600381526020017f53445800000000000000000000000000000000000000000000000000000000008152508160029081620001de9190620006ea565b508060039081620001f09190620006ea565b50620002016200029460201b60201c565b6000819055505050620002296200021d6200029d60201b60201c565b620002a560201b60201c565b620002396200029460201b60201c565b50620002646040518060600160405280603181526020016200632a603191396200036b60201b60201c565b6200028e6040518060600160405280603281526020016200635b603291396200039060201b60201c565b62000854565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200037b620003b560201b60201c565b80600d90816200038c9190620006ea565b5050565b620003a0620003b560201b60201c565b80600c9081620003b19190620006ea565b5050565b620003c56200029d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003eb6200044660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043b9062000832565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f257607f821691505b602082108103620005085762000507620004aa565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000533565b6200057e868362000533565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005cb620005c5620005bf8462000596565b620005a0565b62000596565b9050919050565b6000819050919050565b620005e783620005aa565b620005ff620005f682620005d2565b84845462000540565b825550505050565b600090565b6200061662000607565b62000623818484620005dc565b505050565b5b818110156200064b576200063f6000826200060c565b60018101905062000629565b5050565b601f8211156200069a5762000664816200050e565b6200066f8462000523565b810160208510156200067f578190505b620006976200068e8562000523565b83018262000628565b50505b505050565b600082821c905092915050565b6000620006bf600019846008026200069f565b1980831691505092915050565b6000620006da8383620006ac565b9150826002028217905092915050565b620006f58262000470565b67ffffffffffffffff8111156200071157620007106200047b565b5b6200071d8254620004d9565b6200072a8282856200064f565b600060209050601f8311600181146200076257600084156200074d578287015190505b620007598582620006cc565b865550620007c9565b601f19841662000772866200050e565b60005b828110156200079c5784890151825560018201915060208501945060208101905062000775565b86831015620007bc5784890151620007b8601f891682620006ac565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200081a602083620007d1565b91506200082782620007e2565b602082019050919050565b600060208201905081810360008301526200084d816200080b565b9050919050565b615a9c80620008646000396000f3fe6080604052600436106104055760003560e01c8063815d544c11610213578063b88d4fde11610123578063de6c6d36116100ab578063e985e9c51161007a578063e985e9c514610f84578063efbd73f414610fc1578063f1d5f51714610fdd578063f2fde38b14611006578063f698b47d1461102f57610405565b8063de6c6d3614610edc578063e0a8085314610f05578063e7b99ec714610f2e578063e8a3d48514610f5957610405565b8063c302ad46116100f2578063c302ad4614610dcf578063c4e41b2214610e0c578063c71fbb7114610e37578063c87b56dd14610e74578063d5abeb0114610eb157610405565b8063b88d4fde14610d27578063bd488f1114610d50578063c0e7274014610d67578063c23dc68f14610d9257610405565b806394354fd0116101a65780639dddc292116101755780639dddc29214610c56578063a22cb46514610c81578063a45ba8e714610caa578063ac1079a514610cd5578063b071401b14610cfe57610405565b806394354fd014610b8657806395d89b4114610bb1578063988d461514610bdc57806399a2557a14610c1957610405565b80638693da20116101e25780638693da2014610ade578063877850ef14610b095780638da5cb5b14610b32578063938e3d7b14610b5d57610405565b8063815d544c14610a4357806383aa5e6b14610a6e5780638462151c14610a8a578063853828b614610ac757610405565b806342842e0e1161031957806362b99ad4116102a1578063715018a611610270578063715018a6146109885780637cb647591461099f5780637cd6a9a9146109c85780637ec4a659146109f157806380eae57814610a1a57610405565b806362b99ad4146108b85780636352211e146108e35780636e9bfdd61461092057806370a082311461094b57610405565b80635503a0e8116102e85780635503a0e8146107de578063558bafd9146108095780635bbb2177146108255780635c975abb146108625780635d2065c31461088d57610405565b806342842e0e14610724578063438b63001461074d5780634fdd43cb1461078a57806351830227146107b357610405565b806318160ddd1161039c57806323b872dd1161036b57806323b872dd146106605780632e1a7d4d146106895780632eb4a7ab146106b25780633c8463a1146106dd57806341a38e7f1461070857610405565b806318160ddd146105a45780631c0de051146105cf5780631c2be6ce146105fa5780631ea249411461062357610405565b80630a398b88116103d85780630a398b88146104d85780630ea3a4591461051557806316ba10e01461055257806316c38b3c1461057b57610405565b806301ffc9a71461040a57806306fdde0314610447578063081812fc14610472578063095ea7b3146104af575b600080fd5b34801561041657600080fd5b50610431600480360381019061042c91906141cc565b611058565b60405161043e9190614214565b60405180910390f35b34801561045357600080fd5b5061045c6110ea565b60405161046991906142bf565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190614317565b61117c565b6040516104a69190614385565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906143cc565b6111fb565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061440c565b61133f565b60405161050c9190614448565b60405180910390f35b34801561052157600080fd5b5061053c6004803603810190610537919061440c565b611357565b6040516105499190614448565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190614598565b61136f565b005b34801561058757600080fd5b506105a2600480360381019061059d919061460d565b61138a565b005b3480156105b057600080fd5b506105b96113af565b6040516105c69190614448565b60405180910390f35b3480156105db57600080fd5b506105e46113c6565b6040516105f19190614214565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190614317565b6113dd565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061440c565b6113ef565b6040516106579190614448565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061463a565b611438565b005b34801561069557600080fd5b506106b060048036038101906106ab9190614317565b61175a565b005b3480156106be57600080fd5b506106c76117ac565b6040516106d491906146a6565b60405180910390f35b3480156106e957600080fd5b506106f26117b2565b6040516106ff9190614448565b60405180910390f35b610722600480360381019061071d91906146c1565b6117b8565b005b34801561073057600080fd5b5061074b6004803603810190610746919061463a565b611aed565b005b34801561075957600080fd5b50610774600480360381019061076f919061440c565b611b0d565b60405161078191906147bf565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190614598565b611c17565b005b3480156107bf57600080fd5b506107c8611c32565b6040516107d59190614214565b60405180910390f35b3480156107ea57600080fd5b506107f3611c45565b60405161080091906142bf565b60405180910390f35b610823600480360381019061081e9190614317565b611cd3565b005b34801561083157600080fd5b5061084c60048036038101906108479190614841565b611f7d565b60405161085991906149f1565b60405180910390f35b34801561086e57600080fd5b50610877612040565b6040516108849190614214565b60405180910390f35b34801561089957600080fd5b506108a2612053565b6040516108af9190614448565b60405180910390f35b3480156108c457600080fd5b506108cd612059565b6040516108da91906142bf565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190614317565b6120e7565b6040516109179190614385565b60405180910390f35b34801561092c57600080fd5b506109356120f9565b60405161094291906146a6565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d919061440c565b6120ff565b60405161097f9190614448565b60405180910390f35b34801561099457600080fd5b5061099d6121b7565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190614a3f565b6121cb565b005b3480156109d457600080fd5b506109ef60048036038101906109ea9190614317565b6121dd565b005b3480156109fd57600080fd5b50610a186004803603810190610a139190614598565b6121ef565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190614317565b61220a565b005b348015610a4f57600080fd5b50610a5861221c565b604051610a659190614448565b60405180910390f35b610a886004803603810190610a839190614ac2565b612222565b005b348015610a9657600080fd5b50610ab16004803603810190610aac919061440c565b612612565b604051610abe91906147bf565b60405180910390f35b348015610ad357600080fd5b50610adc612755565b005b348015610aea57600080fd5b50610af36127dd565b604051610b009190614448565b60405180910390f35b348015610b1557600080fd5b50610b306004803603810190610b2b9190614317565b6127e3565b005b348015610b3e57600080fd5b50610b476127f5565b604051610b549190614385565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190614598565b61281f565b005b348015610b9257600080fd5b50610b9b61283a565b604051610ba89190614448565b60405180910390f35b348015610bbd57600080fd5b50610bc6612840565b604051610bd391906142bf565b60405180910390f35b348015610be857600080fd5b50610c036004803603810190610bfe919061440c565b6128d2565b604051610c109190614448565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b9190614b36565b6128ea565b604051610c4d91906147bf565b60405180910390f35b348015610c6257600080fd5b50610c6b612af6565b604051610c789190614448565b60405180910390f35b348015610c8d57600080fd5b50610ca86004803603810190610ca39190614b89565b612b00565b005b348015610cb657600080fd5b50610cbf612c77565b604051610ccc91906142bf565b60405180910390f35b348015610ce157600080fd5b50610cfc6004803603810190610cf79190614bc9565b612d05565b005b348015610d0a57600080fd5b50610d256004803603810190610d209190614317565b612f35565b005b348015610d3357600080fd5b50610d4e6004803603810190610d499190614cb7565b612f47565b005b348015610d5c57600080fd5b50610d65612fba565b005b348015610d7357600080fd5b50610d7c613146565b604051610d8991906142bf565b60405180910390f35b348015610d9e57600080fd5b50610db96004803603810190610db49190614317565b6131d4565b604051610dc69190614d8f565b60405180910390f35b348015610ddb57600080fd5b50610df66004803603810190610df1919061440c565b61323e565b604051610e039190614448565b60405180910390f35b348015610e1857600080fd5b50610e21613287565b604051610e2e9190614448565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e59919061440c565b613296565b604051610e6b9190614448565b60405180910390f35b348015610e8057600080fd5b50610e9b6004803603810190610e969190614317565b6132df565b604051610ea891906142bf565b60405180910390f35b348015610ebd57600080fd5b50610ec6613437565b604051610ed39190614448565b60405180910390f35b348015610ee857600080fd5b50610f036004803603810190610efe9190614e00565b61343d565b005b348015610f1157600080fd5b50610f2c6004803603810190610f27919061460d565b613527565b005b348015610f3a57600080fd5b50610f4361354c565b604051610f509190614448565b60405180910390f35b348015610f6557600080fd5b50610f6e613552565b604051610f7b91906142bf565b60405180910390f35b348015610f9057600080fd5b50610fab6004803603810190610fa69190614e81565b6135a6565b604051610fb89190614214565b60405180910390f35b610fdb6004803603810190610fd691906146c1565b61363a565b005b348015610fe957600080fd5b506110046004803603810190610fff9190614317565b6136a7565b005b34801561101257600080fd5b5061102d6004803603810190611028919061440c565b6136b9565b005b34801561103b57600080fd5b5061105660048036038101906110519190614a3f565b61373c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546110f990614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461112590614ef0565b80156111725780601f1061114757610100808354040283529160200191611172565b820191906000526020600020905b81548152906001019060200180831161115557829003601f168201915b5050505050905090565b60006111878261374e565b6111bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611206826120e7565b90508073ffffffffffffffffffffffffffffffffffffffff166112276137ad565b73ffffffffffffffffffffffffffffffffffffffff161461128a576112538161124e6137ad565b6135a6565b611289576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60166020528060005260406000206000915090505481565b60176020528060005260406000206000915090505481565b6113776137b5565b80600b908161138691906150cd565b5050565b6113926137b5565b80601160006101000a81548160ff02191690831515021790555050565b60006113b9613833565b6001546000540303905090565b6000601160009054906101000a900460ff16905090565b6113e56137b5565b8060158190555050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114438261383c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114aa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114b684613908565b915091506114cc81876114c76137ad565b61392f565b611518576114e1866114dc6137ad565b6135a6565b611517576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361157e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158b8686866001613973565b801561159657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061166485611640888887613979565b7c0200000000000000000000000000000000000000000000000000000000176139a1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116ea57600060018501905060006004600083815260200190815260200160002054036116e85760005481146116e7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461175286868660016139cc565b505050505050565b6117626137b5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117a8573d6000803e3d6000fd5b5050565b60195481565b60105481565b81601160009054906101000a900460ff1615611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906151eb565b60405180910390fd5b60008111801561181b5750600f548111155b61185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906152c3565b60405180910390fd5b600e54816118d46113af565b6118de9190615312565b111561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461196d9190615312565b11156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906153fe565b60405180910390fd5b601454836119bc919061541e565b3410156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906154ac565b60405180910390fd5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4d9190615312565b92505081905550611a5e33846139d2565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ae85782601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae09190615312565b925050819055505b505050565b611b0883838360405180602001604052806000815250612f47565b505050565b60606000611b1a836120ff565b905060008167ffffffffffffffff811115611b3857611b3761446d565b5b604051908082528060200260200182016040528015611b665781602001602082028036833780820191505090505b50905060006001905060005b8381108015611b835750600e548211155b15611c0b576000611b93836120e7565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bf75782848381518110611bdc57611bdb6154cc565b5b6020026020010181815250508180611bf3906154fb565b9250505b8280611c02906154fb565b93505050611b72565b82945050505050919050565b611c1f6137b5565b80600d9081611c2e91906150cd565b5050565b601160019054906101000a900460ff1681565b600b8054611c5290614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7e90614ef0565b8015611ccb5780601f10611ca057610100808354040283529160200191611ccb565b820191906000526020600020905b815481529060010190602001808311611cae57829003601f168201915b505050505081565b80601160009054906101000a900460ff1615611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906151eb565b60405180910390fd5b600081118015611d365750600f548111155b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda906152c3565b60405180910390fd5b600e5481611def6113af565b611df99190615312565b1115611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e889190615312565b1115611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec0906153fe565b60405180910390fd5b60145482611ed7919061541e565b341015611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906154ac565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190615312565b92505081905550611f7933836139d2565b5050565b6060600083839050905060008167ffffffffffffffff811115611fa357611fa261446d565b5b604051908082528060200260200182016040528015611fdc57816020015b611fc9614111565b815260200190600190039081611fc15790505b50905060005b8281146120345761200b868683818110611fff57611ffe6154cc565b5b905060200201356131d4565b82828151811061201e5761201d6154cc565b5b6020026020010181905250806001019050611fe2565b50809250505092915050565b601160009054906101000a900460ff1681565b60155481565b600a805461206690614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461209290614ef0565b80156120df5780601f106120b4576101008083540402835291602001916120df565b820191906000526020600020905b8154815290600101906020018083116120c257829003601f168201915b505050505081565b60006120f28261383c565b9050919050565b601a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612166576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6121bf6137b5565b6121c960006139f0565b565b6121d36137b5565b8060198190555050565b6121e56137b5565b8060138190555050565b6121f76137b5565b80600a908161220691906150cd565b5050565b6122126137b5565b8060148190555050565b60125481565b81601160009054906101000a900460ff1615612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a906151eb565b60405180910390fd5b6000811180156122855750600f548111155b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612329906152c3565b60405180910390fd5b600e548161233e6113af565b6123489190615312565b1115612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123d79190615312565b1115612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906153fe565b60405180910390fd5b60003360405160200161242b919061558b565b604051602081830303815290604052805190602001209050612491868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060195483613ab6565b6124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906155f2565b60405180910390fd5b601354846124de919061541e565b341015612520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612517906154ac565b60405180910390fd5b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256f9190615312565b9250508190555061258033856139d2565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461260a5783601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126029190615312565b925050819055505b505050505050565b60606000806000612622856120ff565b905060008167ffffffffffffffff8111156126405761263f61446d565b5b60405190808252806020026020018201604052801561266e5781602001602082028036833780820191505090505b509050612679614111565b6000612683613833565b90505b8386146127475761269681613acd565b9150816040015161273c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126e157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361273b578083878060010198508151811061272e5761272d6154cc565b5b6020026020010181815250505b5b806001019050612686565b508195505050505050919050565b61275d6137b5565b60006127676127f5565b73ffffffffffffffffffffffffffffffffffffffff164760405161278a90615643565b60006040518083038185875af1925050503d80600081146127c7576040519150601f19603f3d011682016040523d82523d6000602084013e6127cc565b606091505b50509050806127da57600080fd5b50565b60145481565b6127eb6137b5565b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6128276137b5565b80600c908161283691906150cd565b5050565b600f5481565b60606003805461284f90614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461287b90614ef0565b80156128c85780601f1061289d576101008083540402835291602001916128c8565b820191906000526020600020905b8154815290600101906020018083116128ab57829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b6060818310612925576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612930613af8565b905061293a613833565b85101561294c57612949613833565b94505b80841115612958578093505b6000612963876120ff565b905084861015612986576000868603905081811015612980578091505b5061298b565b600090505b60008167ffffffffffffffff8111156129a7576129a661446d565b5b6040519080825280602002602001820160405280156129d55781602001602082028036833780820191505090505b509050600082036129ec5780945050505050612aef565b60006129f7886131d4565b905060008160400151612a0c57816000015190505b60008990505b888114158015612a225750848714155b15612ae157612a3081613acd565b92508260400151612ad657600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614612a7b57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ad55780848880600101995081518110612ac857612ac76154cc565b5b6020026020010181815250505b5b806001019050612a12565b508583528296505050505050505b9392505050565b6000601254905090565b612b086137ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b6c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612b796137ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c266137ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6b9190614214565b60405180910390a35050565b600d8054612c8490614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb090614ef0565b8015612cfd5780601f10612cd257610100808354040283529160200191612cfd565b820191906000526020600020905b815481529060010190602001808311612ce057829003601f168201915b505050505081565b600033604051602001612d18919061558b565b6040516020818303038152906040528051906020012090506000612d80848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5484613ab6565b15612da75760056064601554612d969190615687565b612da0919061541e565b9050612dc5565b60036064601554612db89190615687565b612dc2919061541e565b90505b6000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5191906156b8565b905060008282612e61919061541e565b9050601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612f2c573d6000803e3d6000fd5b50505050505050565b612f3d6137b5565b80600f8190555050565b612f52848484611438565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612fb457612f7d84848484613b01565b612fb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060036064601554612fcd9190615687565b612fd7919061541e565b90506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306591906156b8565b905060008282613075919061541e565b9050601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613140573d6000803e3d6000fd5b50505050565b600c805461315390614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461317f90614ef0565b80156131cc5780601f106131a1576101008083540402835291602001916131cc565b820191906000526020600020905b8154815290600101906020018083116131af57829003601f168201915b505050505081565b6131dc614111565b6131e4614111565b6131ec613833565b83108061320057506131fc613af8565b8310155b1561320e5780915050613239565b61321783613acd565b905080604001511561322c5780915050613239565b61323583613c51565b9150505b919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006132916113af565b905090565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606132ea8261374e565b613329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133209061575e565b60405180910390fd5b60001515601160019054906101000a900460ff161515036133d657600d805461335190614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461337d90614ef0565b80156133ca5780601f1061339f576101008083540402835291602001916133ca565b820191906000526020600020905b8154815290600101906020018083116133ad57829003601f168201915b50505050509050613432565b60006133e0613c71565b90506000815111613400576040518060200160405280600081525061342e565b8061340a84613d03565b600b60405160200161341e9392919061583d565b6040516020818303038152906040525b9150505b919050565b600e5481565b6134456137b5565b60005b8484905081101561352057600e54838383818110613469576134686154cc565b5b905060200201356134786113af565b6134829190615312565b11156134c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ba90615392565b60405180910390fd5b61350d8585838181106134d9576134d86154cc565b5b90506020020160208101906134ee919061440c565b848484818110613501576135006154cc565b5b905060200201356139d2565b8080613518906154fb565b915050613448565b5050505050565b61352f6137b5565b80601160016101000a81548160ff02191690831515021790555050565b60135481565b60606000600c805461356390614ef0565b90501161357f57604051806020016040528060008152506135a1565b600c604051602001613591919061586e565b6040516020818303038152906040525b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6136426137b5565b600e548261364e6113af565b6136589190615312565b1115613699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369090615392565b60405180910390fd5b6136a381836139d2565b5050565b6136af6137b5565b8060108190555050565b6136c16137b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613727906158f7565b60405180910390fd5b613739816139f0565b50565b6137446137b5565b80601a8190555050565b600081613759613833565b11158015613768575060005482105b80156137a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6137bd613d4a565b73ffffffffffffffffffffffffffffffffffffffff166137db6127f5565b73ffffffffffffffffffffffffffffffffffffffff1614613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890615963565b60405180910390fd5b565b60006001905090565b6000808290508061384b613833565b116138d1576000548110156138d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036138ce575b600081036138c457600460008360019003935083815260200190815260200160002054905061389a565b8092505050613903565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613990868684613d52565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6139ec828260405180602001604052806000815250613d5b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082613ac38584613df8565b1490509392505050565b613ad5614111565b613af16004600084815260200190815260200160002054613e4e565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b276137ad565b8786866040518563ffffffff1660e01b8152600401613b4994939291906159d8565b6020604051808303816000875af1925050508015613b8557506040513d601f19601f82011682018060405250810190613b829190615a39565b60015b613bfe573d8060008114613bb5576040519150601f19603f3d011682016040523d82523d6000602084013e613bba565b606091505b506000815103613bf6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b613c59614111565b613c6a613c658361383c565b613e4e565b9050919050565b6060600a8054613c8090614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054613cac90614ef0565b8015613cf95780601f10613cce57610100808354040283529160200191613cf9565b820191906000526020600020905b815481529060010190602001808311613cdc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115613d3657600183039250600a81066030018353600a8104905080613d14575b508181036020830392508083525050919050565b600033905090565b60009392505050565b613d658383613f04565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613df357600080549050600083820390505b613da56000868380600101945086613b01565b613ddb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613d92578160005414613df057600080fd5b50505b505050565b60008082905060005b8451811015613e4357613e2e82868381518110613e2157613e206154cc565b5b60200260200101516140bf565b91508080613e3b906154fb565b915050613e01565b508091505092915050565b613e56614111565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008203613f44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f516000848385613973565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613fc883613fb96000866000613979565b613fc2856140ea565b176139a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461406957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061402e565b50600082036140a4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506140ba60008483856139cc565b505050565b60008183106140d7576140d282846140fa565b6140e2565b6140e183836140fa565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141a981614174565b81146141b457600080fd5b50565b6000813590506141c6816141a0565b92915050565b6000602082840312156141e2576141e161416a565b5b60006141f0848285016141b7565b91505092915050565b60008115159050919050565b61420e816141f9565b82525050565b60006020820190506142296000830184614205565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561426957808201518184015260208101905061424e565b60008484015250505050565b6000601f19601f8301169050919050565b60006142918261422f565b61429b818561423a565b93506142ab81856020860161424b565b6142b481614275565b840191505092915050565b600060208201905081810360008301526142d98184614286565b905092915050565b6000819050919050565b6142f4816142e1565b81146142ff57600080fd5b50565b600081359050614311816142eb565b92915050565b60006020828403121561432d5761432c61416a565b5b600061433b84828501614302565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061436f82614344565b9050919050565b61437f81614364565b82525050565b600060208201905061439a6000830184614376565b92915050565b6143a981614364565b81146143b457600080fd5b50565b6000813590506143c6816143a0565b92915050565b600080604083850312156143e3576143e261416a565b5b60006143f1858286016143b7565b925050602061440285828601614302565b9150509250929050565b6000602082840312156144225761442161416a565b5b6000614430848285016143b7565b91505092915050565b614442816142e1565b82525050565b600060208201905061445d6000830184614439565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144a582614275565b810181811067ffffffffffffffff821117156144c4576144c361446d565b5b80604052505050565b60006144d7614160565b90506144e3828261449c565b919050565b600067ffffffffffffffff8211156145035761450261446d565b5b61450c82614275565b9050602081019050919050565b82818337600083830152505050565b600061453b614536846144e8565b6144cd565b90508281526020810184848401111561455757614556614468565b5b614562848285614519565b509392505050565b600082601f83011261457f5761457e614463565b5b813561458f848260208601614528565b91505092915050565b6000602082840312156145ae576145ad61416a565b5b600082013567ffffffffffffffff8111156145cc576145cb61416f565b5b6145d88482850161456a565b91505092915050565b6145ea816141f9565b81146145f557600080fd5b50565b600081359050614607816145e1565b92915050565b6000602082840312156146235761462261416a565b5b6000614631848285016145f8565b91505092915050565b6000806000606084860312156146535761465261416a565b5b6000614661868287016143b7565b9350506020614672868287016143b7565b925050604061468386828701614302565b9150509250925092565b6000819050919050565b6146a08161468d565b82525050565b60006020820190506146bb6000830184614697565b92915050565b600080604083850312156146d8576146d761416a565b5b60006146e685828601614302565b92505060206146f7858286016143b7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614736816142e1565b82525050565b6000614748838361472d565b60208301905092915050565b6000602082019050919050565b600061476c82614701565b614776818561470c565b93506147818361471d565b8060005b838110156147b2578151614799888261473c565b97506147a483614754565b925050600181019050614785565b5085935050505092915050565b600060208201905081810360008301526147d98184614761565b905092915050565b600080fd5b600080fd5b60008083601f84011261480157614800614463565b5b8235905067ffffffffffffffff81111561481e5761481d6147e1565b5b60208301915083602082028301111561483a576148396147e6565b5b9250929050565b600080602083850312156148585761485761416a565b5b600083013567ffffffffffffffff8111156148765761487561416f565b5b614882858286016147eb565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6148c381614364565b82525050565b600067ffffffffffffffff82169050919050565b6148e6816148c9565b82525050565b6148f5816141f9565b82525050565b600062ffffff82169050919050565b614913816148fb565b82525050565b60808201600082015161492f60008501826148ba565b50602082015161494260208501826148dd565b50604082015161495560408501826148ec565b506060820151614968606085018261490a565b50505050565b600061497a8383614919565b60808301905092915050565b6000602082019050919050565b600061499e8261488e565b6149a88185614899565b93506149b3836148aa565b8060005b838110156149e45781516149cb888261496e565b97506149d683614986565b9250506001810190506149b7565b5085935050505092915050565b60006020820190508181036000830152614a0b8184614993565b905092915050565b614a1c8161468d565b8114614a2757600080fd5b50565b600081359050614a3981614a13565b92915050565b600060208284031215614a5557614a5461416a565b5b6000614a6384828501614a2a565b91505092915050565b60008083601f840112614a8257614a81614463565b5b8235905067ffffffffffffffff811115614a9f57614a9e6147e1565b5b602083019150836020820283011115614abb57614aba6147e6565b5b9250929050565b60008060008060608587031215614adc57614adb61416a565b5b600085013567ffffffffffffffff811115614afa57614af961416f565b5b614b0687828801614a6c565b94509450506020614b1987828801614302565b9250506040614b2a878288016143b7565b91505092959194509250565b600080600060608486031215614b4f57614b4e61416a565b5b6000614b5d868287016143b7565b9350506020614b6e86828701614302565b9250506040614b7f86828701614302565b9150509250925092565b60008060408385031215614ba057614b9f61416a565b5b6000614bae858286016143b7565b9250506020614bbf858286016145f8565b9150509250929050565b60008060208385031215614be057614bdf61416a565b5b600083013567ffffffffffffffff811115614bfe57614bfd61416f565b5b614c0a85828601614a6c565b92509250509250929050565b600067ffffffffffffffff821115614c3157614c3061446d565b5b614c3a82614275565b9050602081019050919050565b6000614c5a614c5584614c16565b6144cd565b905082815260208101848484011115614c7657614c75614468565b5b614c81848285614519565b509392505050565b600082601f830112614c9e57614c9d614463565b5b8135614cae848260208601614c47565b91505092915050565b60008060008060808587031215614cd157614cd061416a565b5b6000614cdf878288016143b7565b9450506020614cf0878288016143b7565b9350506040614d0187828801614302565b925050606085013567ffffffffffffffff811115614d2257614d2161416f565b5b614d2e87828801614c89565b91505092959194509250565b608082016000820151614d5060008501826148ba565b506020820151614d6360208501826148dd565b506040820151614d7660408501826148ec565b506060820151614d89606085018261490a565b50505050565b6000608082019050614da46000830184614d3a565b92915050565b60008083601f840112614dc057614dbf614463565b5b8235905067ffffffffffffffff811115614ddd57614ddc6147e1565b5b602083019150836020820283011115614df957614df86147e6565b5b9250929050565b60008060008060408587031215614e1a57614e1961416a565b5b600085013567ffffffffffffffff811115614e3857614e3761416f565b5b614e4487828801614daa565b9450945050602085013567ffffffffffffffff811115614e6757614e6661416f565b5b614e73878288016147eb565b925092505092959194509250565b60008060408385031215614e9857614e9761416a565b5b6000614ea6858286016143b7565b9250506020614eb7858286016143b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614f0857607f821691505b602082108103614f1b57614f1a614ec1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614f46565b614f8d8683614f46565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614fca614fc5614fc0846142e1565b614fa5565b6142e1565b9050919050565b6000819050919050565b614fe483614faf565b614ff8614ff082614fd1565b848454614f53565b825550505050565b600090565b61500d615000565b615018818484614fdb565b505050565b5b8181101561503c57615031600082615005565b60018101905061501e565b5050565b601f8211156150815761505281614f21565b61505b84614f36565b8101602085101561506a578190505b61507e61507685614f36565b83018261501d565b50505b505050565b600082821c905092915050565b60006150a460001984600802615086565b1980831691505092915050565b60006150bd8383615093565b9150826002028217905092915050565b6150d68261422f565b67ffffffffffffffff8111156150ef576150ee61446d565b5b6150f98254614ef0565b615104828285615040565b600060209050601f8311600181146151375760008415615125578287015190505b61512f85826150b1565b865550615197565b601f19841661514586614f21565b60005b8281101561516d57848901518255600182019150602085019450602081019050615148565b8683101561518a5784890151615186601f891682615093565b8355505b6001600288020188555050505b505050505050565b7f4d696e74696e6720697320504155534544210000000000000000000000000000600082015250565b60006151d560128361423a565b91506151e08261519f565b602082019050919050565b60006020820190508181036000830152615204816151c8565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061524160148361423a565b915061524c8261520b565b602082019050919050565b6000602082019050818103600083015261527081615234565b9050919050565b7f4e6f20426f747321000000000000000000000000000000000000000000000000600082015250565b60006152ad60088361423a565b91506152b882615277565b602082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061531d826142e1565b9150615328836142e1565b92508282019050808211156153405761533f6152e3565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061537c60148361423a565b915061538782615346565b602082019050919050565b600060208201905081810360008301526153ab8161536f565b9050919050565b7f4d6178204d696e7473205065722057616c6c6574205265616368656421000000600082015250565b60006153e8601d8361423a565b91506153f3826153b2565b602082019050919050565b60006020820190508181036000830152615417816153db565b9050919050565b6000615429826142e1565b9150615434836142e1565b9250828202615442816142e1565b91508282048414831517615459576154586152e3565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061549660138361423a565b91506154a182615460565b602082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615506826142e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615538576155376152e3565b5b600182019050919050565b60008160601b9050919050565b600061555b82615543565b9050919050565b600061556d82615550565b9050919050565b61558561558082614364565b615562565b82525050565b60006155978284615574565b60148201915081905092915050565b7f4e6f74206f6e207468652057686974656c697374000000000000000000000000600082015250565b60006155dc60148361423a565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b600081905092915050565b50565b600061562d600083615612565b91506156388261561d565b600082019050919050565b600061564e82615620565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615692826142e1565b915061569d836142e1565b9250826156ad576156ac615658565b5b828204905092915050565b60006156c3826142e1565b91506156ce836142e1565b92508282039050818111156156e6576156e56152e3565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615748602f8361423a565b9150615753826156ec565b604082019050919050565b600060208201905081810360008301526157778161573b565b9050919050565b600081905092915050565b60006157948261422f565b61579e818561577e565b93506157ae81856020860161424b565b80840191505092915050565b600081546157c781614ef0565b6157d1818661577e565b945060018216600081146157ec576001811461580157615834565b60ff1983168652811515820286019350615834565b61580a85614f21565b60005b8381101561582c5781548189015260018201915060208101905061580d565b838801955050505b50505092915050565b60006158498286615789565b91506158558285615789565b915061586182846157ba565b9150819050949350505050565b600061587a82846157ba565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006158e160268361423a565b91506158ec82615885565b604082019050919050565b60006020820190508181036000830152615910816158d4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061594d60208361423a565b915061595882615917565b602082019050919050565b6000602082019050818103600083015261597c81615940565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006159aa82615983565b6159b4818561598e565b93506159c481856020860161424b565b6159cd81614275565b840191505092915050565b60006080820190506159ed6000830187614376565b6159fa6020830186614376565b615a076040830185614439565b8181036060830152615a19818461599f565b905095945050505050565b600081519050615a33816141a0565b92915050565b600060208284031215615a4f57615a4e61416a565b5b6000615a5d84828501615a24565b9150509291505056fea2646970667358221220de5001cd64be6acc6c8e552d14324de179580d6d5b53cfb9dc291eacd1b41ccd64736f6c6343000811003368747470733a2f2f7777772e73757072656d65626f6e6573782e696f2f7364782f6e66742f6a736f6e2f68747470733a2f2f7777772e73757072656d65626f6e6573782e636f6d2f7364782f68696464656e4d6574612e6a736f6e68747470733a2f2f7777772e73757072656d65626f6e6573782e636f6d2f7364782f736478436f6e74726163742e6a736f6e

Deployed Bytecode

0x6080604052600436106104055760003560e01c8063815d544c11610213578063b88d4fde11610123578063de6c6d36116100ab578063e985e9c51161007a578063e985e9c514610f84578063efbd73f414610fc1578063f1d5f51714610fdd578063f2fde38b14611006578063f698b47d1461102f57610405565b8063de6c6d3614610edc578063e0a8085314610f05578063e7b99ec714610f2e578063e8a3d48514610f5957610405565b8063c302ad46116100f2578063c302ad4614610dcf578063c4e41b2214610e0c578063c71fbb7114610e37578063c87b56dd14610e74578063d5abeb0114610eb157610405565b8063b88d4fde14610d27578063bd488f1114610d50578063c0e7274014610d67578063c23dc68f14610d9257610405565b806394354fd0116101a65780639dddc292116101755780639dddc29214610c56578063a22cb46514610c81578063a45ba8e714610caa578063ac1079a514610cd5578063b071401b14610cfe57610405565b806394354fd014610b8657806395d89b4114610bb1578063988d461514610bdc57806399a2557a14610c1957610405565b80638693da20116101e25780638693da2014610ade578063877850ef14610b095780638da5cb5b14610b32578063938e3d7b14610b5d57610405565b8063815d544c14610a4357806383aa5e6b14610a6e5780638462151c14610a8a578063853828b614610ac757610405565b806342842e0e1161031957806362b99ad4116102a1578063715018a611610270578063715018a6146109885780637cb647591461099f5780637cd6a9a9146109c85780637ec4a659146109f157806380eae57814610a1a57610405565b806362b99ad4146108b85780636352211e146108e35780636e9bfdd61461092057806370a082311461094b57610405565b80635503a0e8116102e85780635503a0e8146107de578063558bafd9146108095780635bbb2177146108255780635c975abb146108625780635d2065c31461088d57610405565b806342842e0e14610724578063438b63001461074d5780634fdd43cb1461078a57806351830227146107b357610405565b806318160ddd1161039c57806323b872dd1161036b57806323b872dd146106605780632e1a7d4d146106895780632eb4a7ab146106b25780633c8463a1146106dd57806341a38e7f1461070857610405565b806318160ddd146105a45780631c0de051146105cf5780631c2be6ce146105fa5780631ea249411461062357610405565b80630a398b88116103d85780630a398b88146104d85780630ea3a4591461051557806316ba10e01461055257806316c38b3c1461057b57610405565b806301ffc9a71461040a57806306fdde0314610447578063081812fc14610472578063095ea7b3146104af575b600080fd5b34801561041657600080fd5b50610431600480360381019061042c91906141cc565b611058565b60405161043e9190614214565b60405180910390f35b34801561045357600080fd5b5061045c6110ea565b60405161046991906142bf565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190614317565b61117c565b6040516104a69190614385565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d191906143cc565b6111fb565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061440c565b61133f565b60405161050c9190614448565b60405180910390f35b34801561052157600080fd5b5061053c6004803603810190610537919061440c565b611357565b6040516105499190614448565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190614598565b61136f565b005b34801561058757600080fd5b506105a2600480360381019061059d919061460d565b61138a565b005b3480156105b057600080fd5b506105b96113af565b6040516105c69190614448565b60405180910390f35b3480156105db57600080fd5b506105e46113c6565b6040516105f19190614214565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190614317565b6113dd565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061440c565b6113ef565b6040516106579190614448565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061463a565b611438565b005b34801561069557600080fd5b506106b060048036038101906106ab9190614317565b61175a565b005b3480156106be57600080fd5b506106c76117ac565b6040516106d491906146a6565b60405180910390f35b3480156106e957600080fd5b506106f26117b2565b6040516106ff9190614448565b60405180910390f35b610722600480360381019061071d91906146c1565b6117b8565b005b34801561073057600080fd5b5061074b6004803603810190610746919061463a565b611aed565b005b34801561075957600080fd5b50610774600480360381019061076f919061440c565b611b0d565b60405161078191906147bf565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190614598565b611c17565b005b3480156107bf57600080fd5b506107c8611c32565b6040516107d59190614214565b60405180910390f35b3480156107ea57600080fd5b506107f3611c45565b60405161080091906142bf565b60405180910390f35b610823600480360381019061081e9190614317565b611cd3565b005b34801561083157600080fd5b5061084c60048036038101906108479190614841565b611f7d565b60405161085991906149f1565b60405180910390f35b34801561086e57600080fd5b50610877612040565b6040516108849190614214565b60405180910390f35b34801561089957600080fd5b506108a2612053565b6040516108af9190614448565b60405180910390f35b3480156108c457600080fd5b506108cd612059565b6040516108da91906142bf565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190614317565b6120e7565b6040516109179190614385565b60405180910390f35b34801561092c57600080fd5b506109356120f9565b60405161094291906146a6565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d919061440c565b6120ff565b60405161097f9190614448565b60405180910390f35b34801561099457600080fd5b5061099d6121b7565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190614a3f565b6121cb565b005b3480156109d457600080fd5b506109ef60048036038101906109ea9190614317565b6121dd565b005b3480156109fd57600080fd5b50610a186004803603810190610a139190614598565b6121ef565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190614317565b61220a565b005b348015610a4f57600080fd5b50610a5861221c565b604051610a659190614448565b60405180910390f35b610a886004803603810190610a839190614ac2565b612222565b005b348015610a9657600080fd5b50610ab16004803603810190610aac919061440c565b612612565b604051610abe91906147bf565b60405180910390f35b348015610ad357600080fd5b50610adc612755565b005b348015610aea57600080fd5b50610af36127dd565b604051610b009190614448565b60405180910390f35b348015610b1557600080fd5b50610b306004803603810190610b2b9190614317565b6127e3565b005b348015610b3e57600080fd5b50610b476127f5565b604051610b549190614385565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190614598565b61281f565b005b348015610b9257600080fd5b50610b9b61283a565b604051610ba89190614448565b60405180910390f35b348015610bbd57600080fd5b50610bc6612840565b604051610bd391906142bf565b60405180910390f35b348015610be857600080fd5b50610c036004803603810190610bfe919061440c565b6128d2565b604051610c109190614448565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b9190614b36565b6128ea565b604051610c4d91906147bf565b60405180910390f35b348015610c6257600080fd5b50610c6b612af6565b604051610c789190614448565b60405180910390f35b348015610c8d57600080fd5b50610ca86004803603810190610ca39190614b89565b612b00565b005b348015610cb657600080fd5b50610cbf612c77565b604051610ccc91906142bf565b60405180910390f35b348015610ce157600080fd5b50610cfc6004803603810190610cf79190614bc9565b612d05565b005b348015610d0a57600080fd5b50610d256004803603810190610d209190614317565b612f35565b005b348015610d3357600080fd5b50610d4e6004803603810190610d499190614cb7565b612f47565b005b348015610d5c57600080fd5b50610d65612fba565b005b348015610d7357600080fd5b50610d7c613146565b604051610d8991906142bf565b60405180910390f35b348015610d9e57600080fd5b50610db96004803603810190610db49190614317565b6131d4565b604051610dc69190614d8f565b60405180910390f35b348015610ddb57600080fd5b50610df66004803603810190610df1919061440c565b61323e565b604051610e039190614448565b60405180910390f35b348015610e1857600080fd5b50610e21613287565b604051610e2e9190614448565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e59919061440c565b613296565b604051610e6b9190614448565b60405180910390f35b348015610e8057600080fd5b50610e9b6004803603810190610e969190614317565b6132df565b604051610ea891906142bf565b60405180910390f35b348015610ebd57600080fd5b50610ec6613437565b604051610ed39190614448565b60405180910390f35b348015610ee857600080fd5b50610f036004803603810190610efe9190614e00565b61343d565b005b348015610f1157600080fd5b50610f2c6004803603810190610f27919061460d565b613527565b005b348015610f3a57600080fd5b50610f4361354c565b604051610f509190614448565b60405180910390f35b348015610f6557600080fd5b50610f6e613552565b604051610f7b91906142bf565b60405180910390f35b348015610f9057600080fd5b50610fab6004803603810190610fa69190614e81565b6135a6565b604051610fb89190614214565b60405180910390f35b610fdb6004803603810190610fd691906146c1565b61363a565b005b348015610fe957600080fd5b506110046004803603810190610fff9190614317565b6136a7565b005b34801561101257600080fd5b5061102d6004803603810190611028919061440c565b6136b9565b005b34801561103b57600080fd5b5061105660048036038101906110519190614a3f565b61373c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110b357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110e35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546110f990614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461112590614ef0565b80156111725780601f1061114757610100808354040283529160200191611172565b820191906000526020600020905b81548152906001019060200180831161115557829003601f168201915b5050505050905090565b60006111878261374e565b6111bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611206826120e7565b90508073ffffffffffffffffffffffffffffffffffffffff166112276137ad565b73ffffffffffffffffffffffffffffffffffffffff161461128a576112538161124e6137ad565b6135a6565b611289576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60166020528060005260406000206000915090505481565b60176020528060005260406000206000915090505481565b6113776137b5565b80600b908161138691906150cd565b5050565b6113926137b5565b80601160006101000a81548160ff02191690831515021790555050565b60006113b9613833565b6001546000540303905090565b6000601160009054906101000a900460ff16905090565b6113e56137b5565b8060158190555050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114438261383c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114aa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114b684613908565b915091506114cc81876114c76137ad565b61392f565b611518576114e1866114dc6137ad565b6135a6565b611517576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361157e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158b8686866001613973565b801561159657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061166485611640888887613979565b7c0200000000000000000000000000000000000000000000000000000000176139a1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116ea57600060018501905060006004600083815260200190815260200160002054036116e85760005481146116e7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461175286868660016139cc565b505050505050565b6117626137b5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117a8573d6000803e3d6000fd5b5050565b60195481565b60105481565b81601160009054906101000a900460ff1615611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906151eb565b60405180910390fd5b60008111801561181b5750600f548111155b61185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906152c3565b60405180910390fd5b600e54816118d46113af565b6118de9190615312565b111561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461196d9190615312565b11156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a5906153fe565b60405180910390fd5b601454836119bc919061541e565b3410156119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906154ac565b60405180910390fd5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4d9190615312565b92505081905550611a5e33846139d2565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ae85782601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae09190615312565b925050819055505b505050565b611b0883838360405180602001604052806000815250612f47565b505050565b60606000611b1a836120ff565b905060008167ffffffffffffffff811115611b3857611b3761446d565b5b604051908082528060200260200182016040528015611b665781602001602082028036833780820191505090505b50905060006001905060005b8381108015611b835750600e548211155b15611c0b576000611b93836120e7565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bf75782848381518110611bdc57611bdb6154cc565b5b6020026020010181815250508180611bf3906154fb565b9250505b8280611c02906154fb565b93505050611b72565b82945050505050919050565b611c1f6137b5565b80600d9081611c2e91906150cd565b5050565b601160019054906101000a900460ff1681565b600b8054611c5290614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7e90614ef0565b8015611ccb5780601f10611ca057610100808354040283529160200191611ccb565b820191906000526020600020905b815481529060010190602001808311611cae57829003601f168201915b505050505081565b80601160009054906101000a900460ff1615611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b906151eb565b60405180910390fd5b600081118015611d365750600f548111155b611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda906152c3565b60405180910390fd5b600e5481611def6113af565b611df99190615312565b1115611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e889190615312565b1115611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec0906153fe565b60405180910390fd5b60145482611ed7919061541e565b341015611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906154ac565b60405180910390fd5b81601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190615312565b92505081905550611f7933836139d2565b5050565b6060600083839050905060008167ffffffffffffffff811115611fa357611fa261446d565b5b604051908082528060200260200182016040528015611fdc57816020015b611fc9614111565b815260200190600190039081611fc15790505b50905060005b8281146120345761200b868683818110611fff57611ffe6154cc565b5b905060200201356131d4565b82828151811061201e5761201d6154cc565b5b6020026020010181905250806001019050611fe2565b50809250505092915050565b601160009054906101000a900460ff1681565b60155481565b600a805461206690614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461209290614ef0565b80156120df5780601f106120b4576101008083540402835291602001916120df565b820191906000526020600020905b8154815290600101906020018083116120c257829003601f168201915b505050505081565b60006120f28261383c565b9050919050565b601a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612166576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6121bf6137b5565b6121c960006139f0565b565b6121d36137b5565b8060198190555050565b6121e56137b5565b8060138190555050565b6121f76137b5565b80600a908161220691906150cd565b5050565b6122126137b5565b8060148190555050565b60125481565b81601160009054906101000a900460ff1615612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a906151eb565b60405180910390fd5b6000811180156122855750600f548111155b6122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90615257565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612329906152c3565b60405180910390fd5b600e548161233e6113af565b6123489190615312565b1115612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090615392565b60405180910390fd5b60105481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123d79190615312565b1115612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906153fe565b60405180910390fd5b60003360405160200161242b919061558b565b604051602081830303815290604052805190602001209050612491868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060195483613ab6565b6124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906155f2565b60405180910390fd5b601354846124de919061541e565b341015612520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612517906154ac565b60405180910390fd5b83601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256f9190615312565b9250508190555061258033856139d2565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461260a5783601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126029190615312565b925050819055505b505050505050565b60606000806000612622856120ff565b905060008167ffffffffffffffff8111156126405761263f61446d565b5b60405190808252806020026020018201604052801561266e5781602001602082028036833780820191505090505b509050612679614111565b6000612683613833565b90505b8386146127475761269681613acd565b9150816040015161273c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126e157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361273b578083878060010198508151811061272e5761272d6154cc565b5b6020026020010181815250505b5b806001019050612686565b508195505050505050919050565b61275d6137b5565b60006127676127f5565b73ffffffffffffffffffffffffffffffffffffffff164760405161278a90615643565b60006040518083038185875af1925050503d80600081146127c7576040519150601f19603f3d011682016040523d82523d6000602084013e6127cc565b606091505b50509050806127da57600080fd5b50565b60145481565b6127eb6137b5565b8060128190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6128276137b5565b80600c908161283691906150cd565b5050565b600f5481565b60606003805461284f90614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461287b90614ef0565b80156128c85780601f1061289d576101008083540402835291602001916128c8565b820191906000526020600020905b8154815290600101906020018083116128ab57829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b6060818310612925576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612930613af8565b905061293a613833565b85101561294c57612949613833565b94505b80841115612958578093505b6000612963876120ff565b905084861015612986576000868603905081811015612980578091505b5061298b565b600090505b60008167ffffffffffffffff8111156129a7576129a661446d565b5b6040519080825280602002602001820160405280156129d55781602001602082028036833780820191505090505b509050600082036129ec5780945050505050612aef565b60006129f7886131d4565b905060008160400151612a0c57816000015190505b60008990505b888114158015612a225750848714155b15612ae157612a3081613acd565b92508260400151612ad657600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614612a7b57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ad55780848880600101995081518110612ac857612ac76154cc565b5b6020026020010181815250505b5b806001019050612a12565b508583528296505050505050505b9392505050565b6000601254905090565b612b086137ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b6c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612b796137ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c266137ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c6b9190614214565b60405180910390a35050565b600d8054612c8490614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb090614ef0565b8015612cfd5780601f10612cd257610100808354040283529160200191612cfd565b820191906000526020600020905b815481529060010190602001808311612ce057829003601f168201915b505050505081565b600033604051602001612d18919061558b565b6040516020818303038152906040528051906020012090506000612d80848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601a5484613ab6565b15612da75760056064601554612d969190615687565b612da0919061541e565b9050612dc5565b60036064601554612db89190615687565b612dc2919061541e565b90505b6000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e5191906156b8565b905060008282612e61919061541e565b9050601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612f2c573d6000803e3d6000fd5b50505050505050565b612f3d6137b5565b80600f8190555050565b612f52848484611438565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612fb457612f7d84848484613b01565b612fb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060036064601554612fcd9190615687565b612fd7919061541e565b90506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461306591906156b8565b905060008282613075919061541e565b9050601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613140573d6000803e3d6000fd5b50505050565b600c805461315390614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461317f90614ef0565b80156131cc5780601f106131a1576101008083540402835291602001916131cc565b820191906000526020600020905b8154815290600101906020018083116131af57829003601f168201915b505050505081565b6131dc614111565b6131e4614111565b6131ec613833565b83108061320057506131fc613af8565b8310155b1561320e5780915050613239565b61321783613acd565b905080604001511561322c5780915050613239565b61323583613c51565b9150505b919050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006132916113af565b905090565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606132ea8261374e565b613329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133209061575e565b60405180910390fd5b60001515601160019054906101000a900460ff161515036133d657600d805461335190614ef0565b80601f016020809104026020016040519081016040528092919081815260200182805461337d90614ef0565b80156133ca5780601f1061339f576101008083540402835291602001916133ca565b820191906000526020600020905b8154815290600101906020018083116133ad57829003601f168201915b50505050509050613432565b60006133e0613c71565b90506000815111613400576040518060200160405280600081525061342e565b8061340a84613d03565b600b60405160200161341e9392919061583d565b6040516020818303038152906040525b9150505b919050565b600e5481565b6134456137b5565b60005b8484905081101561352057600e54838383818110613469576134686154cc565b5b905060200201356134786113af565b6134829190615312565b11156134c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ba90615392565b60405180910390fd5b61350d8585838181106134d9576134d86154cc565b5b90506020020160208101906134ee919061440c565b848484818110613501576135006154cc565b5b905060200201356139d2565b8080613518906154fb565b915050613448565b5050505050565b61352f6137b5565b80601160016101000a81548160ff02191690831515021790555050565b60135481565b60606000600c805461356390614ef0565b90501161357f57604051806020016040528060008152506135a1565b600c604051602001613591919061586e565b6040516020818303038152906040525b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6136426137b5565b600e548261364e6113af565b6136589190615312565b1115613699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369090615392565b60405180910390fd5b6136a381836139d2565b5050565b6136af6137b5565b8060108190555050565b6136c16137b5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613727906158f7565b60405180910390fd5b613739816139f0565b50565b6137446137b5565b80601a8190555050565b600081613759613833565b11158015613768575060005482105b80156137a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6137bd613d4a565b73ffffffffffffffffffffffffffffffffffffffff166137db6127f5565b73ffffffffffffffffffffffffffffffffffffffff1614613831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161382890615963565b60405180910390fd5b565b60006001905090565b6000808290508061384b613833565b116138d1576000548110156138d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036138ce575b600081036138c457600460008360019003935083815260200190815260200160002054905061389a565b8092505050613903565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613990868684613d52565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6139ec828260405180602001604052806000815250613d5b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082613ac38584613df8565b1490509392505050565b613ad5614111565b613af16004600084815260200190815260200160002054613e4e565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b276137ad565b8786866040518563ffffffff1660e01b8152600401613b4994939291906159d8565b6020604051808303816000875af1925050508015613b8557506040513d601f19601f82011682018060405250810190613b829190615a39565b60015b613bfe573d8060008114613bb5576040519150601f19603f3d011682016040523d82523d6000602084013e613bba565b606091505b506000815103613bf6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b613c59614111565b613c6a613c658361383c565b613e4e565b9050919050565b6060600a8054613c8090614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054613cac90614ef0565b8015613cf95780601f10613cce57610100808354040283529160200191613cf9565b820191906000526020600020905b815481529060010190602001808311613cdc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115613d3657600183039250600a81066030018353600a8104905080613d14575b508181036020830392508083525050919050565b600033905090565b60009392505050565b613d658383613f04565b60008373ffffffffffffffffffffffffffffffffffffffff163b14613df357600080549050600083820390505b613da56000868380600101945086613b01565b613ddb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110613d92578160005414613df057600080fd5b50505b505050565b60008082905060005b8451811015613e4357613e2e82868381518110613e2157613e206154cc565b5b60200260200101516140bf565b91508080613e3b906154fb565b915050613e01565b508091505092915050565b613e56614111565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008203613f44576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613f516000848385613973565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613fc883613fb96000866000613979565b613fc2856140ea565b176139a1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461406957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061402e565b50600082036140a4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506140ba60008483856139cc565b505050565b60008183106140d7576140d282846140fa565b6140e2565b6140e183836140fa565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141a981614174565b81146141b457600080fd5b50565b6000813590506141c6816141a0565b92915050565b6000602082840312156141e2576141e161416a565b5b60006141f0848285016141b7565b91505092915050565b60008115159050919050565b61420e816141f9565b82525050565b60006020820190506142296000830184614205565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561426957808201518184015260208101905061424e565b60008484015250505050565b6000601f19601f8301169050919050565b60006142918261422f565b61429b818561423a565b93506142ab81856020860161424b565b6142b481614275565b840191505092915050565b600060208201905081810360008301526142d98184614286565b905092915050565b6000819050919050565b6142f4816142e1565b81146142ff57600080fd5b50565b600081359050614311816142eb565b92915050565b60006020828403121561432d5761432c61416a565b5b600061433b84828501614302565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061436f82614344565b9050919050565b61437f81614364565b82525050565b600060208201905061439a6000830184614376565b92915050565b6143a981614364565b81146143b457600080fd5b50565b6000813590506143c6816143a0565b92915050565b600080604083850312156143e3576143e261416a565b5b60006143f1858286016143b7565b925050602061440285828601614302565b9150509250929050565b6000602082840312156144225761442161416a565b5b6000614430848285016143b7565b91505092915050565b614442816142e1565b82525050565b600060208201905061445d6000830184614439565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144a582614275565b810181811067ffffffffffffffff821117156144c4576144c361446d565b5b80604052505050565b60006144d7614160565b90506144e3828261449c565b919050565b600067ffffffffffffffff8211156145035761450261446d565b5b61450c82614275565b9050602081019050919050565b82818337600083830152505050565b600061453b614536846144e8565b6144cd565b90508281526020810184848401111561455757614556614468565b5b614562848285614519565b509392505050565b600082601f83011261457f5761457e614463565b5b813561458f848260208601614528565b91505092915050565b6000602082840312156145ae576145ad61416a565b5b600082013567ffffffffffffffff8111156145cc576145cb61416f565b5b6145d88482850161456a565b91505092915050565b6145ea816141f9565b81146145f557600080fd5b50565b600081359050614607816145e1565b92915050565b6000602082840312156146235761462261416a565b5b6000614631848285016145f8565b91505092915050565b6000806000606084860312156146535761465261416a565b5b6000614661868287016143b7565b9350506020614672868287016143b7565b925050604061468386828701614302565b9150509250925092565b6000819050919050565b6146a08161468d565b82525050565b60006020820190506146bb6000830184614697565b92915050565b600080604083850312156146d8576146d761416a565b5b60006146e685828601614302565b92505060206146f7858286016143b7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614736816142e1565b82525050565b6000614748838361472d565b60208301905092915050565b6000602082019050919050565b600061476c82614701565b614776818561470c565b93506147818361471d565b8060005b838110156147b2578151614799888261473c565b97506147a483614754565b925050600181019050614785565b5085935050505092915050565b600060208201905081810360008301526147d98184614761565b905092915050565b600080fd5b600080fd5b60008083601f84011261480157614800614463565b5b8235905067ffffffffffffffff81111561481e5761481d6147e1565b5b60208301915083602082028301111561483a576148396147e6565b5b9250929050565b600080602083850312156148585761485761416a565b5b600083013567ffffffffffffffff8111156148765761487561416f565b5b614882858286016147eb565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6148c381614364565b82525050565b600067ffffffffffffffff82169050919050565b6148e6816148c9565b82525050565b6148f5816141f9565b82525050565b600062ffffff82169050919050565b614913816148fb565b82525050565b60808201600082015161492f60008501826148ba565b50602082015161494260208501826148dd565b50604082015161495560408501826148ec565b506060820151614968606085018261490a565b50505050565b600061497a8383614919565b60808301905092915050565b6000602082019050919050565b600061499e8261488e565b6149a88185614899565b93506149b3836148aa565b8060005b838110156149e45781516149cb888261496e565b97506149d683614986565b9250506001810190506149b7565b5085935050505092915050565b60006020820190508181036000830152614a0b8184614993565b905092915050565b614a1c8161468d565b8114614a2757600080fd5b50565b600081359050614a3981614a13565b92915050565b600060208284031215614a5557614a5461416a565b5b6000614a6384828501614a2a565b91505092915050565b60008083601f840112614a8257614a81614463565b5b8235905067ffffffffffffffff811115614a9f57614a9e6147e1565b5b602083019150836020820283011115614abb57614aba6147e6565b5b9250929050565b60008060008060608587031215614adc57614adb61416a565b5b600085013567ffffffffffffffff811115614afa57614af961416f565b5b614b0687828801614a6c565b94509450506020614b1987828801614302565b9250506040614b2a878288016143b7565b91505092959194509250565b600080600060608486031215614b4f57614b4e61416a565b5b6000614b5d868287016143b7565b9350506020614b6e86828701614302565b9250506040614b7f86828701614302565b9150509250925092565b60008060408385031215614ba057614b9f61416a565b5b6000614bae858286016143b7565b9250506020614bbf858286016145f8565b9150509250929050565b60008060208385031215614be057614bdf61416a565b5b600083013567ffffffffffffffff811115614bfe57614bfd61416f565b5b614c0a85828601614a6c565b92509250509250929050565b600067ffffffffffffffff821115614c3157614c3061446d565b5b614c3a82614275565b9050602081019050919050565b6000614c5a614c5584614c16565b6144cd565b905082815260208101848484011115614c7657614c75614468565b5b614c81848285614519565b509392505050565b600082601f830112614c9e57614c9d614463565b5b8135614cae848260208601614c47565b91505092915050565b60008060008060808587031215614cd157614cd061416a565b5b6000614cdf878288016143b7565b9450506020614cf0878288016143b7565b9350506040614d0187828801614302565b925050606085013567ffffffffffffffff811115614d2257614d2161416f565b5b614d2e87828801614c89565b91505092959194509250565b608082016000820151614d5060008501826148ba565b506020820151614d6360208501826148dd565b506040820151614d7660408501826148ec565b506060820151614d89606085018261490a565b50505050565b6000608082019050614da46000830184614d3a565b92915050565b60008083601f840112614dc057614dbf614463565b5b8235905067ffffffffffffffff811115614ddd57614ddc6147e1565b5b602083019150836020820283011115614df957614df86147e6565b5b9250929050565b60008060008060408587031215614e1a57614e1961416a565b5b600085013567ffffffffffffffff811115614e3857614e3761416f565b5b614e4487828801614daa565b9450945050602085013567ffffffffffffffff811115614e6757614e6661416f565b5b614e73878288016147eb565b925092505092959194509250565b60008060408385031215614e9857614e9761416a565b5b6000614ea6858286016143b7565b9250506020614eb7858286016143b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614f0857607f821691505b602082108103614f1b57614f1a614ec1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614f46565b614f8d8683614f46565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614fca614fc5614fc0846142e1565b614fa5565b6142e1565b9050919050565b6000819050919050565b614fe483614faf565b614ff8614ff082614fd1565b848454614f53565b825550505050565b600090565b61500d615000565b615018818484614fdb565b505050565b5b8181101561503c57615031600082615005565b60018101905061501e565b5050565b601f8211156150815761505281614f21565b61505b84614f36565b8101602085101561506a578190505b61507e61507685614f36565b83018261501d565b50505b505050565b600082821c905092915050565b60006150a460001984600802615086565b1980831691505092915050565b60006150bd8383615093565b9150826002028217905092915050565b6150d68261422f565b67ffffffffffffffff8111156150ef576150ee61446d565b5b6150f98254614ef0565b615104828285615040565b600060209050601f8311600181146151375760008415615125578287015190505b61512f85826150b1565b865550615197565b601f19841661514586614f21565b60005b8281101561516d57848901518255600182019150602085019450602081019050615148565b8683101561518a5784890151615186601f891682615093565b8355505b6001600288020188555050505b505050505050565b7f4d696e74696e6720697320504155534544210000000000000000000000000000600082015250565b60006151d560128361423a565b91506151e08261519f565b602082019050919050565b60006020820190508181036000830152615204816151c8565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061524160148361423a565b915061524c8261520b565b602082019050919050565b6000602082019050818103600083015261527081615234565b9050919050565b7f4e6f20426f747321000000000000000000000000000000000000000000000000600082015250565b60006152ad60088361423a565b91506152b882615277565b602082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061531d826142e1565b9150615328836142e1565b92508282019050808211156153405761533f6152e3565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061537c60148361423a565b915061538782615346565b602082019050919050565b600060208201905081810360008301526153ab8161536f565b9050919050565b7f4d6178204d696e7473205065722057616c6c6574205265616368656421000000600082015250565b60006153e8601d8361423a565b91506153f3826153b2565b602082019050919050565b60006020820190508181036000830152615417816153db565b9050919050565b6000615429826142e1565b9150615434836142e1565b9250828202615442816142e1565b91508282048414831517615459576154586152e3565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061549660138361423a565b91506154a182615460565b602082019050919050565b600060208201905081810360008301526154c581615489565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615506826142e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615538576155376152e3565b5b600182019050919050565b60008160601b9050919050565b600061555b82615543565b9050919050565b600061556d82615550565b9050919050565b61558561558082614364565b615562565b82525050565b60006155978284615574565b60148201915081905092915050565b7f4e6f74206f6e207468652057686974656c697374000000000000000000000000600082015250565b60006155dc60148361423a565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b600081905092915050565b50565b600061562d600083615612565b91506156388261561d565b600082019050919050565b600061564e82615620565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615692826142e1565b915061569d836142e1565b9250826156ad576156ac615658565b5b828204905092915050565b60006156c3826142e1565b91506156ce836142e1565b92508282039050818111156156e6576156e56152e3565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615748602f8361423a565b9150615753826156ec565b604082019050919050565b600060208201905081810360008301526157778161573b565b9050919050565b600081905092915050565b60006157948261422f565b61579e818561577e565b93506157ae81856020860161424b565b80840191505092915050565b600081546157c781614ef0565b6157d1818661577e565b945060018216600081146157ec576001811461580157615834565b60ff1983168652811515820286019350615834565b61580a85614f21565b60005b8381101561582c5781548189015260018201915060208101905061580d565b838801955050505b50505092915050565b60006158498286615789565b91506158558285615789565b915061586182846157ba565b9150819050949350505050565b600061587a82846157ba565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006158e160268361423a565b91506158ec82615885565b604082019050919050565b60006020820190508181036000830152615910816158d4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061594d60208361423a565b915061595882615917565b602082019050919050565b6000602082019050818103600083015261597c81615940565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006159aa82615983565b6159b4818561598e565b93506159c481856020860161424b565b6159cd81614275565b840191505092915050565b60006080820190506159ed6000830187614376565b6159fa6020830186614376565b615a076040830185614439565b8181036060830152615a19818461599f565b905095945050505050565b600081519050615a33816141a0565b92915050565b600060208284031215615a4f57615a4e61416a565b5b6000615a5d84828501615a24565b9150509291505056fea2646970667358221220de5001cd64be6acc6c8e552d14324de179580d6d5b53cfb9dc291eacd1b41ccd64736f6c63430008110033

Deployed Bytecode Sourcemap

77196:8630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35681:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43066:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42507:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77935:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77989:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85051:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85276:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32334:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80059:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79724:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80245:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46773:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85461:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78118:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77630:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81049:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49686:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83220:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84807:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77700:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77437:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81428:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72344:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77670:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77880:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77362:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37976:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78219:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33518:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;79141:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79496:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84945:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79613:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77735:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80484:559;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76220:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85571:140;;;;;;;;;;;;;:::i;:::-;;77828:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85359:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85157:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77585:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78038:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73260:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79957:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43624:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77511:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81700:621;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84671:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50469:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82327:360;;;;;;;;;;;;;:::i;:::-;;77475:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71757:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80360:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80147:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79845:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83861:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77549:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82914:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84584:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77775:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84381:197;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44089:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82693:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79381:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79254:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35681:639;35766:4;36105:10;36090:25;;:11;:25;;;;:102;;;;36182:10;36167:25;;:11;:25;;;;36090:102;:179;;;;36259:10;36244:25;;:11;:25;;;;36090:179;36070:199;;35681:639;;;:::o;36583:100::-;36637:13;36670:5;36663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36583:100;:::o;43066:218::-;43142:7;43167:16;43175:7;43167;:16::i;:::-;43162:64;;43192:34;;;;;;;;;;;;;;43162:64;43246:15;:24;43262:7;43246:24;;;;;;;;;;;:30;;;;;;;;;;;;43239:37;;43066:218;;;:::o;42507:400::-;42588:13;42604:16;42612:7;42604;:16::i;:::-;42588:32;;42660:5;42637:28;;:19;:17;:19::i;:::-;:28;;;42633:175;;42685:44;42702:5;42709:19;:17;:19::i;:::-;42685:16;:44::i;:::-;42680:128;;42757:35;;;;;;;;;;;;;;42680:128;42633:175;42853:2;42820:15;:24;42836:7;42820:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42891:7;42887:2;42871:28;;42880:5;42871:28;;;;;;;;;;;;42577:330;42507:400;;:::o;77935:49::-;;;;;;;;;;;;;;;;;:::o;77989:44::-;;;;;;;;;;;;;;;;;:::o;85051:100::-;2014:13;:11;:13::i;:::-;85135:10:::1;85123:9;:22;;;;;;:::i;:::-;;85051:100:::0;:::o;85276:77::-;2014:13;:11;:13::i;:::-;85341:6:::1;85332;;:15;;;;;;;;;;;;;;;;;;85276:77:::0;:::o;32334:323::-;32395:7;32623:15;:13;:15::i;:::-;32608:12;;32592:13;;:28;:46;32585:53;;32334:323;:::o;80059:82::-;80106:4;80129:6;;;;;;;;;;;80122:13;;80059:82;:::o;79724:115::-;2014:13;:11;:13::i;:::-;79819:14:::1;79803:13;:30;;;;79724:115:::0;:::o;80245:109::-;80306:7;80334:8;:14;80343:4;80334:14;;;;;;;;;;;;;;;;80327:21;;80245:109;;;:::o;46773:2817::-;46907:27;46937;46956:7;46937:18;:27::i;:::-;46907:57;;47022:4;46981:45;;46997:19;46981:45;;;46977:86;;47035:28;;;;;;;;;;;;;;46977:86;47077:27;47106:23;47133:35;47160:7;47133:26;:35::i;:::-;47076:92;;;;47268:68;47293:15;47310:4;47316:19;:17;:19::i;:::-;47268:24;:68::i;:::-;47263:180;;47356:43;47373:4;47379:19;:17;:19::i;:::-;47356:16;:43::i;:::-;47351:92;;47408:35;;;;;;;;;;;;;;47351:92;47263:180;47474:1;47460:16;;:2;:16;;;47456:52;;47485:23;;;;;;;;;;;;;;47456:52;47521:43;47543:4;47549:2;47553:7;47562:1;47521:21;:43::i;:::-;47657:15;47654:160;;;47797:1;47776:19;47769:30;47654:160;48194:18;:24;48213:4;48194:24;;;;;;;;;;;;;;;;48192:26;;;;;;;;;;;;48263:18;:22;48282:2;48263:22;;;;;;;;;;;;;;;;48261:24;;;;;;;;;;;48585:146;48622:2;48671:45;48686:4;48692:2;48696:19;48671:14;:45::i;:::-;28733:8;48643:73;48585:18;:146::i;:::-;48556:17;:26;48574:7;48556:26;;;;;;;;;;;:175;;;;48902:1;28733:8;48851:19;:47;:52;48847:627;;48924:19;48956:1;48946:7;:11;48924:33;;49113:1;49079:17;:30;49097:11;49079:30;;;;;;;;;;;;:35;49075:384;;49217:13;;49202:11;:28;49198:242;;49397:19;49364:17;:30;49382:11;49364:30;;;;;;;;;;;:52;;;;49198:242;49075:384;48905:569;48847:627;49521:7;49517:2;49502:27;;49511:4;49502:27;;;;;;;;;;;;49540:42;49561:4;49567:2;49571:7;49580:1;49540:20;:42::i;:::-;46896:2694;;;46773:2817;;;:::o;85461:104::-;2014:13;:11;:13::i;:::-;85531:10:::1;85523:28;;:36;85552:6;85523:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;85461:104:::0;:::o;78118:94::-;;;;:::o;77630:33::-;;;;:::o;81049:373::-;81131:11;78766:6;;;;;;;;;;;78765:7;78757:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;78824:1;78810:11;:15;:52;;;;;78844:18;;78829:11;:33;;78810:52;78802:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78916:9;78902:23;;:10;:23;;;78894:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78984:9;;78969:11;78953:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;79076:11;;79061;79033:13;:25;79047:10;79033:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:54;;79025:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;81197:10:::1;;81183:11;:24;;;;:::i;:::-;81170:9;:37;;81162:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;81269:11;81240:13;:25;81254:10;81240:25;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;81287:34;81297:10;81309:11;81287:9;:34::i;:::-;81348:7;81334:21;;:10;:21;;;81330:81;;81392:11;81371:8;:17;81380:7;81371:17;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;81330:81;81049:373:::0;;;:::o;49686:185::-;49824:39;49841:4;49847:2;49851:7;49824:39;;;;;;;;;;;;:16;:39::i;:::-;49686:185;;;:::o;83220:635::-;83295:16;83323:23;83349:17;83359:6;83349:9;:17::i;:::-;83323:43;;83373:30;83420:15;83406:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83373:63;;83443:22;83468:1;83443:26;;83476:23;83512:309;83537:15;83519;:33;:64;;;;;83574:9;;83556:14;:27;;83519:64;83512:309;;;83594:25;83622:23;83630:14;83622:7;:23::i;:::-;83594:51;;83681:6;83660:27;;:17;:27;;;83656:131;;83733:14;83700:13;83714:15;83700:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;83760:17;;;;;:::i;:::-;;;;83656:131;83797:16;;;;;:::i;:::-;;;;83585:236;83512:309;;;83836:13;83829:20;;;;;;83220:635;;;:::o;84807:132::-;2014:13;:11;:13::i;:::-;84915:18:::1;84895:17;:38;;;;;;:::i;:::-;;84807:132:::0;:::o;77700:28::-;;;;;;;;;;;;;:::o;77437:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81428:266::-;81498:11;78766:6;;;;;;;;;;;78765:7;78757:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;78824:1;78810:11;:15;:52;;;;;78844:18;;78829:11;:33;;78810:52;78802:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78916:9;78902:23;;:10;:23;;;78894:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78984:9;;78969:11;78953:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;79076:11;;79061;79033:13;:25;79047:10;79033:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:54;;79025:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;81564:10:::1;;81550:11;:24;;;;:::i;:::-;81537:9;:37;;81529:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;81636:11;81607:13;:25;81621:10;81607:25;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;81654:34;81664:10;81676:11;81654:9;:34::i;:::-;81428:266:::0;;:::o;72344:528::-;72488:23;72554:22;72579:8;;:15;;72554:40;;72609:34;72667:14;72646:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;72609:73;;72702:9;72697:125;72718:14;72713:1;:19;72697:125;;72774:32;72794:8;;72803:1;72794:11;;;;;;;:::i;:::-;;;;;;;;72774:19;:32::i;:::-;72758:10;72769:1;72758:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;72734:3;;;;;72697:125;;;;72843:10;72836:17;;;;72344:528;;;;:::o;77670:25::-;;;;;;;;;;;;;:::o;77880:48::-;;;;:::o;77362:70::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37976:152::-;38048:7;38091:27;38110:7;38091:18;:27::i;:::-;38068:52;;37976:152;;;:::o;78219:97::-;;;;:::o;33518:233::-;33590:7;33631:1;33614:19;;:5;:19;;;33610:60;;33642:28;;;;;;;;;;;;;;33610:60;27677:13;33688:18;:25;33707:5;33688:25;;;;;;;;;;;;;;;;:55;33681:62;;33518:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;79141:107::-;2014:13;:11;:13::i;:::-;79229::::1;79216:10;:26;;;;79141:107:::0;:::o;79496:111::-;2014:13;:11;:13::i;:::-;79592:9:::1;79576:13;:25;;;;79496:111:::0;:::o;84945:100::-;2014:13;:11;:13::i;:::-;85029:10:::1;85017:9;:22;;;;;;:::i;:::-;;84945:100:::0;:::o;79613:105::-;2014:13;:11;:13::i;:::-;79703:9:::1;79690:10;:22;;;;79613:105:::0;:::o;77735:33::-;;;;:::o;80484:559::-;80602:11;78766:6;;;;;;;;;;;78765:7;78757:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;78824:1;78810:11;:15;:52;;;;;78844:18;;78829:11;:33;;78810:52;78802:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78916:9;78902:23;;:10;:23;;;78894:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78984:9;;78969:11;78953:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;78945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;79076:11;;79061;79033:13;:25;79047:10;79033:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:54;;79025:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;80633:12:::1;80675:10;80658:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;80648:39;;;;;;80633:54;;80704:50;80723:12;;80704:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80737:10;;80749:4;80704:18;:50::i;:::-;80696:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;80821:13;;80807:11;:27;;;;:::i;:::-;80794:9;:40;;80786:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;80896:11;80867:13;:25;80881:10;80867:25;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;80914:34;80924:10;80936:11;80914:9;:34::i;:::-;80975:7;80961:21;;:10;:21;;;80957:81;;81019:11;80998:8;:17;81007:7;80998:17;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;80957:81;80626:417;80484:559:::0;;;;;:::o;76220:900::-;76298:16;76352:19;76386:25;76426:22;76451:16;76461:5;76451:9;:16::i;:::-;76426:41;;76482:25;76524:14;76510:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76482:57;;76554:31;;:::i;:::-;76605:9;76617:15;:13;:15::i;:::-;76605:27;;76600:472;76649:14;76634:11;:29;76600:472;;76701:15;76714:1;76701:12;:15::i;:::-;76689:27;;76739:9;:16;;;76780:8;76735:73;76856:1;76830:28;;:9;:14;;;:28;;;76826:111;;76903:9;:14;;;76883:34;;76826:111;76980:5;76959:26;;:17;:26;;;76955:102;;77036:1;77010:8;77019:13;;;;;;77010:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;76955:102;76600:472;76665:3;;;;;76600:472;;;;77093:8;77086:15;;;;;;;76220:900;;;:::o;85571:140::-;2014:13;:11;:13::i;:::-;85619:7:::1;85640;:5;:7::i;:::-;85632:21;;85661;85632:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85618:69;;;85702:2;85694:11;;;::::0;::::1;;85611:100;85571:140::o:0;77828:45::-;;;;:::o;85359:96::-;2014:13;:11;:13::i;:::-;85443:6:::1;85426:14;:23;;;;85359:96:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;85157:113::-;2014:13;:11;:13::i;:::-;85250:14:::1;85235:12;:29;;;;;;:::i;:::-;;85157:113:::0;:::o;77585:40::-;;;;:::o;36759:104::-;36815:13;36848:7;36841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36759:104;:::o;78038:51::-;;;;;;;;;;;;;;;;;:::o;73260:2513::-;73403:16;73470:4;73461:5;:13;73457:45;;73483:19;;;;;;;;;;;;;;73457:45;73517:19;73551:17;73571:14;:12;:14::i;:::-;73551:34;;73671:15;:13;:15::i;:::-;73663:5;:23;73659:87;;;73715:15;:13;:15::i;:::-;73707:23;;73659:87;73822:9;73815:4;:16;73811:73;;;73859:9;73852:16;;73811:73;73898:25;73926:16;73936:5;73926:9;:16::i;:::-;73898:44;;74120:4;74112:5;:12;74108:278;;;74145:19;74174:5;74167:4;:12;74145:34;;74216:17;74202:11;:31;74198:111;;;74278:11;74258:31;;74198:111;74126:198;74108:278;;;74369:1;74349:21;;74108:278;74400:25;74442:17;74428:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74400:60;;74500:1;74479:17;:22;74475:78;;74529:8;74522:15;;;;;;;;74475:78;74697:31;74731:26;74751:5;74731:19;:26::i;:::-;74697:60;;74772:25;75017:9;:16;;;75012:92;;75074:9;:14;;;75054:34;;75012:92;75123:9;75135:5;75123:17;;75118:478;75147:4;75142:1;:9;;:45;;;;;75170:17;75155:11;:32;;75142:45;75118:478;;;75225:15;75238:1;75225:12;:15::i;:::-;75213:27;;75263:9;:16;;;75304:8;75259:73;75380:1;75354:28;;:9;:14;;;:28;;;75350:111;;75427:9;:14;;;75407:34;;75350:111;75504:5;75483:26;;:17;:26;;;75479:102;;75560:1;75534:8;75543:13;;;;;;75534:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;75479:102;75118:478;75189:3;;;;;75118:478;;;;75698:11;75688:8;75681:29;75746:8;75739:15;;;;;;;;73260:2513;;;;;;:::o;79957:96::-;80007:7;80033:14;;80026:21;;79957:96;:::o;43624:308::-;43735:19;:17;:19::i;:::-;43723:31;;:8;:31;;;43719:61;;43763:17;;;;;;;;;;;;;;43719:61;43845:8;43793:18;:39;43812:19;:17;:19::i;:::-;43793:39;;;;;;;;;;;;;;;:49;43833:8;43793:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;43905:8;43869:55;;43884:19;:17;:19::i;:::-;43869:55;;;43915:8;43869:55;;;;;;:::i;:::-;;;;;;;;43624:308;;:::o;77511:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81700:621::-;81780:15;81825:10;81808:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;81798:39;;;;;;81780:57;;81846:18;81879:59;81898:15;;81879:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81915:13;;81930:7;81879:18;:59::i;:::-;81875:198;;;81989:1;81985:3;81971:13;;:17;;;;:::i;:::-;:19;;;;:::i;:::-;81958:32;;81875:198;;;82062:1;82058:3;82044:13;;:17;;;;:::i;:::-;:19;;;;:::i;:::-;82031:32;;81875:198;82083:22;82131:15;:27;82147:10;82131:27;;;;;;;;;;;;;;;;82108:8;:20;82117:10;82108:20;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;82083:75;;82167:14;82201:10;82184:14;:27;;;;:::i;:::-;82167:44;;82250:8;:20;82259:10;82250:20;;;;;;;;;;;;;;;;82220:15;:27;82236:10;82220:27;;;;;;;;;;;;;;;:50;;;;82287:10;82279:28;;:36;82308:6;82279:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81771:550;;;;81700:621;;:::o;84671:130::-;2014:13;:11;:13::i;:::-;84776:19:::1;84755:18;:40;;;;84671:130:::0;:::o;50469:399::-;50636:31;50649:4;50655:2;50659:7;50636:12;:31::i;:::-;50700:1;50682:2;:14;;;:19;50678:183;;50721:56;50752:4;50758:2;50762:7;50771:5;50721:30;:56::i;:::-;50716:145;;50805:40;;;;;;;;;;;;;;50716:145;50678:183;50469:399;;;;:::o;82327:360::-;82379:18;82437:1;82433:3;82419:13;;:17;;;;:::i;:::-;:19;;;;:::i;:::-;82406:32;;82449:22;82497:15;:27;82513:10;82497:27;;;;;;;;;;;;;;;;82474:8;:20;82483:10;82474:20;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;82449:75;;82533:14;82567:10;82550:14;:27;;;;:::i;:::-;82533:44;;82616:8;:20;82625:10;82616:20;;;;;;;;;;;;;;;;82586:15;:27;82602:10;82586:27;;;;;;;;;;;;;;;:50;;;;82653:10;82645:28;;:36;82674:6;82645:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82370:317;;;82327:360::o;77475:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71757:428::-;71841:21;;:::i;:::-;71875:31;;:::i;:::-;71931:15;:13;:15::i;:::-;71921:7;:25;:54;;;;71961:14;:12;:14::i;:::-;71950:7;:25;;71921:54;71917:103;;;71999:9;71992:16;;;;;71917:103;72042:21;72055:7;72042:12;:21::i;:::-;72030:33;;72078:9;:16;;;72074:65;;;72118:9;72111:16;;;;;72074:65;72156:21;72169:7;72156:12;:21::i;:::-;72149:28;;;71757:428;;;;:::o;80360:118::-;80423:7;80451:15;:21;80467:4;80451:21;;;;;;;;;;;;;;;;80444:28;;80360:118;;;:::o;80147:92::-;80194:7;80220:13;:11;:13::i;:::-;80213:20;;80147:92;:::o;79845:106::-;79903:7;79929:13;:16;79943:1;79929:16;;;;;;;;;;;;;;;;79922:23;;79845:106;;;:::o;83861:514::-;83980:13;84021:17;84029:8;84021:7;:17::i;:::-;84005:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;84128:5;84116:17;;:8;;;;;;;;;;;:17;;;84112:64;;84151:17;84144:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84112:64;84184:28;84215:10;:8;:10::i;:::-;84184:41;;84270:1;84245:14;84239:28;:32;:130;;;;;;;;;;;;;;;;;84307:14;84323:19;84333:8;84323:9;:19::i;:::-;84344:9;84290:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84239:130;84232:137;;;83861:514;;;;:::o;77549:31::-;;;;:::o;82914:300::-;2014:13;:11;:13::i;:::-;83035:9:::1;83030:179;83050:9;;:16;;83046:1;:20;83030:179;;;83124:9;;83111:6;;83118:1;83111:9;;;;;;;:::i;:::-;;;;;;;;83095:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;83087:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;83167:34;83177:9;;83187:1;83177:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;83191:6;;83198:1;83191:9;;;;;;;:::i;:::-;;;;;;;;83167;:34::i;:::-;83068:3;;;;;:::i;:::-;;;;83030:179;;;;82914:300:::0;;;;:::o;84584:81::-;2014:13;:11;:13::i;:::-;84653:6:::1;84642:8;;:17;;;;;;;;;;;;;;;;;;84584:81:::0;:::o;77775:48::-;;;;:::o;84381:197::-;84437:13;84503:1;84480:12;84474:26;;;;;:::i;:::-;;;:30;:98;;;;;;;;;;;;;;;;;84542:12;84525:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;84474:98;84467:105;;84381:197;:::o;44089:164::-;44186:4;44210:18;:25;44229:5;44210:25;;;;;;;;;;;;;;;:35;44236:8;44210:35;;;;;;;;;;;;;;;;;;;;;;;;;44203:42;;44089:164;;;;:::o;82693:215::-;2014:13;:11;:13::i;:::-;82828:9:::1;;82813:11;82797:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;82789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;82869:33;82879:9;82890:11;82869:9;:33::i;:::-;82693:215:::0;;:::o;79381:109::-;2014:13;:11;:13::i;:::-;79472:12:::1;79458:11;:26;;;;79381:109:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;79254:121::-;2014:13;:11;:13::i;:::-;79353:16:::1;79337:13;:32;;;;79254:121:::0;:::o;44511:282::-;44576:4;44632:7;44613:15;:13;:15::i;:::-;:26;;:66;;;;;44666:13;;44656:7;:23;44613:66;:153;;;;;44765:1;28453:8;44717:17;:26;44735:7;44717:26;;;;;;;;;;;;:44;:49;44613:153;44593:173;;44511:282;;;:::o;66277:105::-;66337:7;66364:10;66357:17;;66277:105;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;78561:133::-;78653:7;78685:1;78678:8;;78561:133;:::o;39131:1275::-;39198:7;39218:12;39233:7;39218:22;;39301:4;39282:15;:13;:15::i;:::-;:23;39278:1061;;39335:13;;39328:4;:20;39324:1015;;;39373:14;39390:17;:23;39408:4;39390:23;;;;;;;;;;;;39373:40;;39507:1;28453:8;39479:6;:24;:29;39475:845;;40144:113;40161:1;40151:6;:11;40144:113;;40204:17;:25;40222:6;;;;;;;40204:25;;;;;;;;;;;;40195:34;;40144:113;;;40290:6;40283:13;;;;;;39475:845;39350:989;39324:1015;39278:1061;40367:31;;;;;;;;;;;;;;39131:1275;;;;:::o;45674:479::-;45776:27;45805:23;45846:38;45887:15;:24;45903:7;45887:24;;;;;;;;;;;45846:65;;46058:18;46035:41;;46115:19;46109:26;46090:45;;46020:126;45674:479;;;:::o;44902:659::-;45051:11;45216:16;45209:5;45205:28;45196:37;;45376:16;45365:9;45361:32;45348:45;;45526:15;45515:9;45512:30;45504:5;45493:9;45490:20;45487:56;45477:66;;44902:659;;;;;:::o;51530:159::-;;;;;:::o;65586:311::-;65721:7;65741:16;28857:3;65767:19;:41;;65741:68;;28857:3;65835:31;65846:4;65852:2;65856:9;65835:10;:31::i;:::-;65827:40;;:62;;65820:69;;;65586:311;;;;;:::o;40954:450::-;41034:14;41202:16;41195:5;41191:28;41182:37;;41379:5;41365:11;41340:23;41336:41;41333:52;41326:5;41323:63;41313:73;;40954:450;;;;:::o;52354:158::-;;;;;:::o;60109:112::-;60186:27;60196:2;60200:8;60186:27;;;;;;;;;;;;:9;:27::i;:::-;60109:112;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;6330:190::-;6455:4;6508;6479:25;6492:5;6499:4;6479:12;:25::i;:::-;:33;6472:40;;6330:190;;;;;:::o;38579:161::-;38647:21;;:::i;:::-;38688:44;38707:17;:24;38725:5;38707:24;;;;;;;;;;;;38688:18;:44::i;:::-;38681:51;;38579:161;;;:::o;32021:103::-;32076:7;32103:13;;32096:20;;32021:103;:::o;52952:716::-;53115:4;53161:2;53136:45;;;53182:19;:17;:19::i;:::-;53203:4;53209:7;53218:5;53136:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53132:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53436:1;53419:6;:13;:18;53415:235;;53465:40;;;;;;;;;;;;;;53415:235;53608:6;53602:13;53593:6;53589:2;53585:15;53578:38;53132:529;53305:54;;;53295:64;;;:6;:64;;;;53288:71;;;52952:716;;;;;;:::o;38317:166::-;38387:21;;:::i;:::-;38428:47;38447:27;38466:7;38447:18;:27::i;:::-;38428:18;:47::i;:::-;38421:54;;38317:166;;;:::o;85717:104::-;85777:13;85806:9;85799:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85717:104;:::o;66484:1581::-;66549:17;66974:4;66967;66961:11;66957:22;66950:29;;67066:3;67060:4;67053:17;67172:3;67411:5;67393:428;67419:1;67393:428;;;67459:1;67454:3;67450:11;67443:18;;67630:2;67624:4;67620:13;67616:2;67612:22;67607:3;67599:36;67724:2;67718:4;67714:13;67706:21;;67791:4;67393:428;67781:25;67393:428;67397:21;67860:3;67855;67851:13;67975:4;67970:3;67966:14;67959:21;;68040:6;68035:3;68028:19;66588:1470;;66484:1581;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;65287:147::-;65424:6;65287:147;;;;;:::o;59336:689::-;59467:19;59473:2;59477:8;59467:5;:19::i;:::-;59546:1;59528:2;:14;;;:19;59524:483;;59568:11;59582:13;;59568:27;;59614:13;59636:8;59630:3;:14;59614:30;;59663:233;59694:62;59733:1;59737:2;59741:7;;;;;;59750:5;59694:30;:62::i;:::-;59689:167;;59792:40;;;;;;;;;;;;;;59689:167;59891:3;59883:5;:11;59663:233;;59978:3;59961:13;;:20;59957:34;;59983:8;;;59957:34;59549:458;;59524:483;59336:689;;;:::o;7197:296::-;7280:7;7300:20;7323:4;7300:27;;7343:9;7338:118;7362:5;:12;7358:1;:16;7338:118;;;7411:33;7421:12;7435:5;7441:1;7435:8;;;;;;;;:::i;:::-;;;;;;;;7411:9;:33::i;:::-;7396:48;;7376:3;;;;;:::i;:::-;;;;7338:118;;;;7473:12;7466:19;;;7197:296;;;;:::o;40505:366::-;40571:31;;:::i;:::-;40648:6;40615:9;:14;;:41;;;;;;;;;;;28336:3;40701:6;:33;;40667:9;:24;;:68;;;;;;;;;;;40793:1;28453:8;40765:6;:24;:29;;40746:9;:16;;:48;;;;;;;;;;;28857:3;40834:6;:28;;40805:9;:19;;:58;;;;;;;;;;;40505:366;;;:::o;54130:2454::-;54203:20;54226:13;;54203:36;;54266:1;54254:8;:13;54250:44;;54276:18;;;;;;;;;;;;;;54250:44;54307:61;54337:1;54341:2;54345:12;54359:8;54307:21;:61::i;:::-;54851:1;27815:2;54821:1;:26;;54820:32;54808:8;:45;54782:18;:22;54801:2;54782:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55130:139;55167:2;55221:33;55244:1;55248:2;55252:1;55221:14;:33::i;:::-;55188:30;55209:8;55188:20;:30::i;:::-;:66;55130:18;:139::i;:::-;55096:17;:31;55114:12;55096:31;;;;;;;;;;;:173;;;;55286:16;55317:11;55346:8;55331:12;:23;55317:37;;55601:16;55597:2;55593:25;55581:37;;55973:12;55933:8;55892:1;55830:25;55771:1;55710;55683:335;56098:1;56084:12;56080:20;56038:346;56139:3;56130:7;56127:16;56038:346;;56357:7;56347:8;56344:1;56317:25;56314:1;56311;56306:59;56192:1;56183:7;56179:15;56168:26;;56038:346;;;56042:77;56429:1;56417:8;:13;56413:45;;56439:19;;;;;;;;;;;;;;56413:45;56491:3;56475:13;:19;;;;54556:1950;;56516:60;56545:1;56549:2;56553:12;56567:8;56516:20;:60::i;:::-;54192:2392;54130:2454;;:::o;14237:149::-;14300:7;14331:1;14327;:5;:51;;14358:20;14373:1;14376;14358:14;:20::i;:::-;14327:51;;;14335:20;14350:1;14353;14335:14;:20::i;:::-;14327:51;14320:58;;14237:149;;;;:::o;41506:324::-;41576:14;41809:1;41799:8;41796:15;41770:24;41766:46;41756:56;;41506:324;;;:::o;14394:268::-;14462:13;14569:1;14563:4;14556:15;14598:1;14592:4;14585:15;14639:4;14633;14623:21;14614:30;;14394:268;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:117::-;5686:1;5683;5676:12;5700:117;5809:1;5806;5799:12;5823:180;5871:77;5868:1;5861:88;5968:4;5965:1;5958:15;5992:4;5989:1;5982:15;6009:281;6092:27;6114:4;6092:27;:::i;:::-;6084:6;6080:40;6222:6;6210:10;6207:22;6186:18;6174:10;6171:34;6168:62;6165:88;;;6233:18;;:::i;:::-;6165:88;6273:10;6269:2;6262:22;6052:238;6009:281;;:::o;6296:129::-;6330:6;6357:20;;:::i;:::-;6347:30;;6386:33;6414:4;6406:6;6386:33;:::i;:::-;6296:129;;;:::o;6431:308::-;6493:4;6583:18;6575:6;6572:30;6569:56;;;6605:18;;:::i;:::-;6569:56;6643:29;6665:6;6643:29;:::i;:::-;6635:37;;6727:4;6721;6717:15;6709:23;;6431:308;;;:::o;6745:146::-;6842:6;6837:3;6832;6819:30;6883:1;6874:6;6869:3;6865:16;6858:27;6745:146;;;:::o;6897:425::-;6975:5;7000:66;7016:49;7058:6;7016:49;:::i;:::-;7000:66;:::i;:::-;6991:75;;7089:6;7082:5;7075:21;7127:4;7120:5;7116:16;7165:3;7156:6;7151:3;7147:16;7144:25;7141:112;;;7172:79;;:::i;:::-;7141:112;7262:54;7309:6;7304:3;7299;7262:54;:::i;:::-;6981:341;6897:425;;;;;:::o;7342:340::-;7398:5;7447:3;7440:4;7432:6;7428:17;7424:27;7414:122;;7455:79;;:::i;:::-;7414:122;7572:6;7559:20;7597:79;7672:3;7664:6;7657:4;7649:6;7645:17;7597:79;:::i;:::-;7588:88;;7404:278;7342:340;;;;:::o;7688:509::-;7757:6;7806:2;7794:9;7785:7;7781:23;7777:32;7774:119;;;7812:79;;:::i;:::-;7774:119;7960:1;7949:9;7945:17;7932:31;7990:18;7982:6;7979:30;7976:117;;;8012:79;;:::i;:::-;7976:117;8117:63;8172:7;8163:6;8152:9;8148:22;8117:63;:::i;:::-;8107:73;;7903:287;7688:509;;;;:::o;8203:116::-;8273:21;8288:5;8273:21;:::i;:::-;8266:5;8263:32;8253:60;;8309:1;8306;8299:12;8253:60;8203:116;:::o;8325:133::-;8368:5;8406:6;8393:20;8384:29;;8422:30;8446:5;8422:30;:::i;:::-;8325:133;;;;:::o;8464:323::-;8520:6;8569:2;8557:9;8548:7;8544:23;8540:32;8537:119;;;8575:79;;:::i;:::-;8537:119;8695:1;8720:50;8762:7;8753:6;8742:9;8738:22;8720:50;:::i;:::-;8710:60;;8666:114;8464:323;;;;:::o;8793:619::-;8870:6;8878;8886;8935:2;8923:9;8914:7;8910:23;8906:32;8903:119;;;8941:79;;:::i;:::-;8903:119;9061:1;9086:53;9131:7;9122:6;9111:9;9107:22;9086:53;:::i;:::-;9076:63;;9032:117;9188:2;9214:53;9259:7;9250:6;9239:9;9235:22;9214:53;:::i;:::-;9204:63;;9159:118;9316:2;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9287:118;8793:619;;;;;:::o;9418:77::-;9455:7;9484:5;9473:16;;9418:77;;;:::o;9501:118::-;9588:24;9606:5;9588:24;:::i;:::-;9583:3;9576:37;9501:118;;:::o;9625:222::-;9718:4;9756:2;9745:9;9741:18;9733:26;;9769:71;9837:1;9826:9;9822:17;9813:6;9769:71;:::i;:::-;9625:222;;;;:::o;9853:474::-;9921:6;9929;9978:2;9966:9;9957:7;9953:23;9949:32;9946:119;;;9984:79;;:::i;:::-;9946:119;10104:1;10129:53;10174:7;10165:6;10154:9;10150:22;10129:53;:::i;:::-;10119:63;;10075:117;10231:2;10257:53;10302:7;10293:6;10282:9;10278:22;10257:53;:::i;:::-;10247:63;;10202:118;9853:474;;;;;:::o;10333:114::-;10400:6;10434:5;10428:12;10418:22;;10333:114;;;:::o;10453:184::-;10552:11;10586:6;10581:3;10574:19;10626:4;10621:3;10617:14;10602:29;;10453:184;;;;:::o;10643:132::-;10710:4;10733:3;10725:11;;10763:4;10758:3;10754:14;10746:22;;10643:132;;;:::o;10781:108::-;10858:24;10876:5;10858:24;:::i;:::-;10853:3;10846:37;10781:108;;:::o;10895:179::-;10964:10;10985:46;11027:3;11019:6;10985:46;:::i;:::-;11063:4;11058:3;11054:14;11040:28;;10895:179;;;;:::o;11080:113::-;11150:4;11182;11177:3;11173:14;11165:22;;11080:113;;;:::o;11229:732::-;11348:3;11377:54;11425:5;11377:54;:::i;:::-;11447:86;11526:6;11521:3;11447:86;:::i;:::-;11440:93;;11557:56;11607:5;11557:56;:::i;:::-;11636:7;11667:1;11652:284;11677:6;11674:1;11671:13;11652:284;;;11753:6;11747:13;11780:63;11839:3;11824:13;11780:63;:::i;:::-;11773:70;;11866:60;11919:6;11866:60;:::i;:::-;11856:70;;11712:224;11699:1;11696;11692:9;11687:14;;11652:284;;;11656:14;11952:3;11945:10;;11353:608;;;11229:732;;;;:::o;11967:373::-;12110:4;12148:2;12137:9;12133:18;12125:26;;12197:9;12191:4;12187:20;12183:1;12172:9;12168:17;12161:47;12225:108;12328:4;12319:6;12225:108;:::i;:::-;12217:116;;11967:373;;;;:::o;12346:117::-;12455:1;12452;12445:12;12469:117;12578:1;12575;12568:12;12609:568;12682:8;12692:6;12742:3;12735:4;12727:6;12723:17;12719:27;12709:122;;12750:79;;:::i;:::-;12709:122;12863:6;12850:20;12840:30;;12893:18;12885:6;12882:30;12879:117;;;12915:79;;:::i;:::-;12879:117;13029:4;13021:6;13017:17;13005:29;;13083:3;13075:4;13067:6;13063:17;13053:8;13049:32;13046:41;13043:128;;;13090:79;;:::i;:::-;13043:128;12609:568;;;;;:::o;13183:559::-;13269:6;13277;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13480:1;13469:9;13465:17;13452:31;13510:18;13502:6;13499:30;13496:117;;;13532:79;;:::i;:::-;13496:117;13645:80;13717:7;13708:6;13697:9;13693:22;13645:80;:::i;:::-;13627:98;;;;13423:312;13183:559;;;;;:::o;13748:145::-;13846:6;13880:5;13874:12;13864:22;;13748:145;;;:::o;13899:215::-;14029:11;14063:6;14058:3;14051:19;14103:4;14098:3;14094:14;14079:29;;13899:215;;;;:::o;14120:163::-;14218:4;14241:3;14233:11;;14271:4;14266:3;14262:14;14254:22;;14120:163;;;:::o;14289:108::-;14366:24;14384:5;14366:24;:::i;:::-;14361:3;14354:37;14289:108;;:::o;14403:101::-;14439:7;14479:18;14472:5;14468:30;14457:41;;14403:101;;;:::o;14510:105::-;14585:23;14602:5;14585:23;:::i;:::-;14580:3;14573:36;14510:105;;:::o;14621:99::-;14692:21;14707:5;14692:21;:::i;:::-;14687:3;14680:34;14621:99;;:::o;14726:91::-;14762:7;14802:8;14795:5;14791:20;14780:31;;14726:91;;;:::o;14823:105::-;14898:23;14915:5;14898:23;:::i;:::-;14893:3;14886:36;14823:105;;:::o;15006:864::-;15155:4;15150:3;15146:14;15242:4;15235:5;15231:16;15225:23;15261:63;15318:4;15313:3;15309:14;15295:12;15261:63;:::i;:::-;15170:164;15426:4;15419:5;15415:16;15409:23;15445:61;15500:4;15495:3;15491:14;15477:12;15445:61;:::i;:::-;15344:172;15600:4;15593:5;15589:16;15583:23;15619:57;15670:4;15665:3;15661:14;15647:12;15619:57;:::i;:::-;15526:160;15773:4;15766:5;15762:16;15756:23;15792:61;15847:4;15842:3;15838:14;15824:12;15792:61;:::i;:::-;15696:167;15124:746;15006:864;;:::o;15876:303::-;16007:10;16028:108;16132:3;16124:6;16028:108;:::i;:::-;16168:4;16163:3;16159:14;16145:28;;15876:303;;;;:::o;16185:144::-;16286:4;16318;16313:3;16309:14;16301:22;;16185:144;;;:::o;16411:980::-;16592:3;16621:85;16700:5;16621:85;:::i;:::-;16722:117;16832:6;16827:3;16722:117;:::i;:::-;16715:124;;16863:87;16944:5;16863:87;:::i;:::-;16973:7;17004:1;16989:377;17014:6;17011:1;17008:13;16989:377;;;17090:6;17084:13;17117:125;17238:3;17223:13;17117:125;:::i;:::-;17110:132;;17265:91;17349:6;17265:91;:::i;:::-;17255:101;;17049:317;17036:1;17033;17029:9;17024:14;;16989:377;;;16993:14;17382:3;17375:10;;16597:794;;;16411:980;;;;:::o;17397:497::-;17602:4;17640:2;17629:9;17625:18;17617:26;;17689:9;17683:4;17679:20;17675:1;17664:9;17660:17;17653:47;17717:170;17882:4;17873:6;17717:170;:::i;:::-;17709:178;;17397:497;;;;:::o;17900:122::-;17973:24;17991:5;17973:24;:::i;:::-;17966:5;17963:35;17953:63;;18012:1;18009;18002:12;17953:63;17900:122;:::o;18028:139::-;18074:5;18112:6;18099:20;18090:29;;18128:33;18155:5;18128:33;:::i;:::-;18028:139;;;;:::o;18173:329::-;18232:6;18281:2;18269:9;18260:7;18256:23;18252:32;18249:119;;;18287:79;;:::i;:::-;18249:119;18407:1;18432:53;18477:7;18468:6;18457:9;18453:22;18432:53;:::i;:::-;18422:63;;18378:117;18173:329;;;;:::o;18525:568::-;18598:8;18608:6;18658:3;18651:4;18643:6;18639:17;18635:27;18625:122;;18666:79;;:::i;:::-;18625:122;18779:6;18766:20;18756:30;;18809:18;18801:6;18798:30;18795:117;;;18831:79;;:::i;:::-;18795:117;18945:4;18937:6;18933:17;18921:29;;18999:3;18991:4;18983:6;18979:17;18969:8;18965:32;18962:41;18959:128;;;19006:79;;:::i;:::-;18959:128;18525:568;;;;;:::o;19099:849::-;19203:6;19211;19219;19227;19276:2;19264:9;19255:7;19251:23;19247:32;19244:119;;;19282:79;;:::i;:::-;19244:119;19430:1;19419:9;19415:17;19402:31;19460:18;19452:6;19449:30;19446:117;;;19482:79;;:::i;:::-;19446:117;19595:80;19667:7;19658:6;19647:9;19643:22;19595:80;:::i;:::-;19577:98;;;;19373:312;19724:2;19750:53;19795:7;19786:6;19775:9;19771:22;19750:53;:::i;:::-;19740:63;;19695:118;19852:2;19878:53;19923:7;19914:6;19903:9;19899:22;19878:53;:::i;:::-;19868:63;;19823:118;19099:849;;;;;;;:::o;19954:619::-;20031:6;20039;20047;20096:2;20084:9;20075:7;20071:23;20067:32;20064:119;;;20102:79;;:::i;:::-;20064:119;20222:1;20247:53;20292:7;20283:6;20272:9;20268:22;20247:53;:::i;:::-;20237:63;;20193:117;20349:2;20375:53;20420:7;20411:6;20400:9;20396:22;20375:53;:::i;:::-;20365:63;;20320:118;20477:2;20503:53;20548:7;20539:6;20528:9;20524:22;20503:53;:::i;:::-;20493:63;;20448:118;19954:619;;;;;:::o;20579:468::-;20644:6;20652;20701:2;20689:9;20680:7;20676:23;20672:32;20669:119;;;20707:79;;:::i;:::-;20669:119;20827:1;20852:53;20897:7;20888:6;20877:9;20873:22;20852:53;:::i;:::-;20842:63;;20798:117;20954:2;20980:50;21022:7;21013:6;21002:9;20998:22;20980:50;:::i;:::-;20970:60;;20925:115;20579:468;;;;;:::o;21053:559::-;21139:6;21147;21196:2;21184:9;21175:7;21171:23;21167:32;21164:119;;;21202:79;;:::i;:::-;21164:119;21350:1;21339:9;21335:17;21322:31;21380:18;21372:6;21369:30;21366:117;;;21402:79;;:::i;:::-;21366:117;21515:80;21587:7;21578:6;21567:9;21563:22;21515:80;:::i;:::-;21497:98;;;;21293:312;21053:559;;;;;:::o;21618:307::-;21679:4;21769:18;21761:6;21758:30;21755:56;;;21791:18;;:::i;:::-;21755:56;21829:29;21851:6;21829:29;:::i;:::-;21821:37;;21913:4;21907;21903:15;21895:23;;21618:307;;;:::o;21931:423::-;22008:5;22033:65;22049:48;22090:6;22049:48;:::i;:::-;22033:65;:::i;:::-;22024:74;;22121:6;22114:5;22107:21;22159:4;22152:5;22148:16;22197:3;22188:6;22183:3;22179:16;22176:25;22173:112;;;22204:79;;:::i;:::-;22173:112;22294:54;22341:6;22336:3;22331;22294:54;:::i;:::-;22014:340;21931:423;;;;;:::o;22373:338::-;22428:5;22477:3;22470:4;22462:6;22458:17;22454:27;22444:122;;22485:79;;:::i;:::-;22444:122;22602:6;22589:20;22627:78;22701:3;22693:6;22686:4;22678:6;22674:17;22627:78;:::i;:::-;22618:87;;22434:277;22373:338;;;;:::o;22717:943::-;22812:6;22820;22828;22836;22885:3;22873:9;22864:7;22860:23;22856:33;22853:120;;;22892:79;;:::i;:::-;22853:120;23012:1;23037:53;23082:7;23073:6;23062:9;23058:22;23037:53;:::i;:::-;23027:63;;22983:117;23139:2;23165:53;23210:7;23201:6;23190:9;23186:22;23165:53;:::i;:::-;23155:63;;23110:118;23267:2;23293:53;23338:7;23329:6;23318:9;23314:22;23293:53;:::i;:::-;23283:63;;23238:118;23423:2;23412:9;23408:18;23395:32;23454:18;23446:6;23443:30;23440:117;;;23476:79;;:::i;:::-;23440:117;23581:62;23635:7;23626:6;23615:9;23611:22;23581:62;:::i;:::-;23571:72;;23366:287;22717:943;;;;;;;:::o;23738:874::-;23897:4;23892:3;23888:14;23984:4;23977:5;23973:16;23967:23;24003:63;24060:4;24055:3;24051:14;24037:12;24003:63;:::i;:::-;23912:164;24168:4;24161:5;24157:16;24151:23;24187:61;24242:4;24237:3;24233:14;24219:12;24187:61;:::i;:::-;24086:172;24342:4;24335:5;24331:16;24325:23;24361:57;24412:4;24407:3;24403:14;24389:12;24361:57;:::i;:::-;24268:160;24515:4;24508:5;24504:16;24498:23;24534:61;24589:4;24584:3;24580:14;24566:12;24534:61;:::i;:::-;24438:167;23866:746;23738:874;;:::o;24618:347::-;24773:4;24811:3;24800:9;24796:19;24788:27;;24825:133;24955:1;24944:9;24940:17;24931:6;24825:133;:::i;:::-;24618:347;;;;:::o;24988:568::-;25061:8;25071:6;25121:3;25114:4;25106:6;25102:17;25098:27;25088:122;;25129:79;;:::i;:::-;25088:122;25242:6;25229:20;25219:30;;25272:18;25264:6;25261:30;25258:117;;;25294:79;;:::i;:::-;25258:117;25408:4;25400:6;25396:17;25384:29;;25462:3;25454:4;25446:6;25442:17;25432:8;25428:32;25425:41;25422:128;;;25469:79;;:::i;:::-;25422:128;24988:568;;;;;:::o;25562:934::-;25684:6;25692;25700;25708;25757:2;25745:9;25736:7;25732:23;25728:32;25725:119;;;25763:79;;:::i;:::-;25725:119;25911:1;25900:9;25896:17;25883:31;25941:18;25933:6;25930:30;25927:117;;;25963:79;;:::i;:::-;25927:117;26076:80;26148:7;26139:6;26128:9;26124:22;26076:80;:::i;:::-;26058:98;;;;25854:312;26233:2;26222:9;26218:18;26205:32;26264:18;26256:6;26253:30;26250:117;;;26286:79;;:::i;:::-;26250:117;26399:80;26471:7;26462:6;26451:9;26447:22;26399:80;:::i;:::-;26381:98;;;;26176:313;25562:934;;;;;;;:::o;26502:474::-;26570:6;26578;26627:2;26615:9;26606:7;26602:23;26598:32;26595:119;;;26633:79;;:::i;:::-;26595:119;26753:1;26778:53;26823:7;26814:6;26803:9;26799:22;26778:53;:::i;:::-;26768:63;;26724:117;26880:2;26906:53;26951:7;26942:6;26931:9;26927:22;26906:53;:::i;:::-;26896:63;;26851:118;26502:474;;;;;:::o;26982:180::-;27030:77;27027:1;27020:88;27127:4;27124:1;27117:15;27151:4;27148:1;27141:15;27168:320;27212:6;27249:1;27243:4;27239:12;27229:22;;27296:1;27290:4;27286:12;27317:18;27307:81;;27373:4;27365:6;27361:17;27351:27;;27307:81;27435:2;27427:6;27424:14;27404:18;27401:38;27398:84;;27454:18;;:::i;:::-;27398:84;27219:269;27168:320;;;:::o;27494:141::-;27543:4;27566:3;27558:11;;27589:3;27586:1;27579:14;27623:4;27620:1;27610:18;27602:26;;27494:141;;;:::o;27641:93::-;27678:6;27725:2;27720;27713:5;27709:14;27705:23;27695:33;;27641:93;;;:::o;27740:107::-;27784:8;27834:5;27828:4;27824:16;27803:37;;27740:107;;;;:::o;27853:393::-;27922:6;27972:1;27960:10;27956:18;27995:97;28025:66;28014:9;27995:97;:::i;:::-;28113:39;28143:8;28132:9;28113:39;:::i;:::-;28101:51;;28185:4;28181:9;28174:5;28170:21;28161:30;;28234:4;28224:8;28220:19;28213:5;28210:30;28200:40;;27929:317;;27853:393;;;;;:::o;28252:60::-;28280:3;28301:5;28294:12;;28252:60;;;:::o;28318:142::-;28368:9;28401:53;28419:34;28428:24;28446:5;28428:24;:::i;:::-;28419:34;:::i;:::-;28401:53;:::i;:::-;28388:66;;28318:142;;;:::o;28466:75::-;28509:3;28530:5;28523:12;;28466:75;;;:::o;28547:269::-;28657:39;28688:7;28657:39;:::i;:::-;28718:91;28767:41;28791:16;28767:41;:::i;:::-;28759:6;28752:4;28746:11;28718:91;:::i;:::-;28712:4;28705:105;28623:193;28547:269;;;:::o;28822:73::-;28867:3;28822:73;:::o;28901:189::-;28978:32;;:::i;:::-;29019:65;29077:6;29069;29063:4;29019:65;:::i;:::-;28954:136;28901:189;;:::o;29096:186::-;29156:120;29173:3;29166:5;29163:14;29156:120;;;29227:39;29264:1;29257:5;29227:39;:::i;:::-;29200:1;29193:5;29189:13;29180:22;;29156:120;;;29096:186;;:::o;29288:543::-;29389:2;29384:3;29381:11;29378:446;;;29423:38;29455:5;29423:38;:::i;:::-;29507:29;29525:10;29507:29;:::i;:::-;29497:8;29493:44;29690:2;29678:10;29675:18;29672:49;;;29711:8;29696:23;;29672:49;29734:80;29790:22;29808:3;29790:22;:::i;:::-;29780:8;29776:37;29763:11;29734:80;:::i;:::-;29393:431;;29378:446;29288:543;;;:::o;29837:117::-;29891:8;29941:5;29935:4;29931:16;29910:37;;29837:117;;;;:::o;29960:169::-;30004:6;30037:51;30085:1;30081:6;30073:5;30070:1;30066:13;30037:51;:::i;:::-;30033:56;30118:4;30112;30108:15;30098:25;;30011:118;29960:169;;;;:::o;30134:295::-;30210:4;30356:29;30381:3;30375:4;30356:29;:::i;:::-;30348:37;;30418:3;30415:1;30411:11;30405:4;30402:21;30394:29;;30134:295;;;;:::o;30434:1395::-;30551:37;30584:3;30551:37;:::i;:::-;30653:18;30645:6;30642:30;30639:56;;;30675:18;;:::i;:::-;30639:56;30719:38;30751:4;30745:11;30719:38;:::i;:::-;30804:67;30864:6;30856;30850:4;30804:67;:::i;:::-;30898:1;30922:4;30909:17;;30954:2;30946:6;30943:14;30971:1;30966:618;;;;31628:1;31645:6;31642:77;;;31694:9;31689:3;31685:19;31679:26;31670:35;;31642:77;31745:67;31805:6;31798:5;31745:67;:::i;:::-;31739:4;31732:81;31601:222;30936:887;;30966:618;31018:4;31014:9;31006:6;31002:22;31052:37;31084:4;31052:37;:::i;:::-;31111:1;31125:208;31139:7;31136:1;31133:14;31125:208;;;31218:9;31213:3;31209:19;31203:26;31195:6;31188:42;31269:1;31261:6;31257:14;31247:24;;31316:2;31305:9;31301:18;31288:31;;31162:4;31159:1;31155:12;31150:17;;31125:208;;;31361:6;31352:7;31349:19;31346:179;;;31419:9;31414:3;31410:19;31404:26;31462:48;31504:4;31496:6;31492:17;31481:9;31462:48;:::i;:::-;31454:6;31447:64;31369:156;31346:179;31571:1;31567;31559:6;31555:14;31551:22;31545:4;31538:36;30973:611;;;30936:887;;30526:1303;;;30434:1395;;:::o;31835:168::-;31975:20;31971:1;31963:6;31959:14;31952:44;31835:168;:::o;32009:366::-;32151:3;32172:67;32236:2;32231:3;32172:67;:::i;:::-;32165:74;;32248:93;32337:3;32248:93;:::i;:::-;32366:2;32361:3;32357:12;32350:19;;32009:366;;;:::o;32381:419::-;32547:4;32585:2;32574:9;32570:18;32562:26;;32634:9;32628:4;32624:20;32620:1;32609:9;32605:17;32598:47;32662:131;32788:4;32662:131;:::i;:::-;32654:139;;32381:419;;;:::o;32806:170::-;32946:22;32942:1;32934:6;32930:14;32923:46;32806:170;:::o;32982:366::-;33124:3;33145:67;33209:2;33204:3;33145:67;:::i;:::-;33138:74;;33221:93;33310:3;33221:93;:::i;:::-;33339:2;33334:3;33330:12;33323:19;;32982:366;;;:::o;33354:419::-;33520:4;33558:2;33547:9;33543:18;33535:26;;33607:9;33601:4;33597:20;33593:1;33582:9;33578:17;33571:47;33635:131;33761:4;33635:131;:::i;:::-;33627:139;;33354:419;;;:::o;33779:158::-;33919:10;33915:1;33907:6;33903:14;33896:34;33779:158;:::o;33943:365::-;34085:3;34106:66;34170:1;34165:3;34106:66;:::i;:::-;34099:73;;34181:93;34270:3;34181:93;:::i;:::-;34299:2;34294:3;34290:12;34283:19;;33943:365;;;:::o;34314:419::-;34480:4;34518:2;34507:9;34503:18;34495:26;;34567:9;34561:4;34557:20;34553:1;34542:9;34538:17;34531:47;34595:131;34721:4;34595:131;:::i;:::-;34587:139;;34314:419;;;:::o;34739:180::-;34787:77;34784:1;34777:88;34884:4;34881:1;34874:15;34908:4;34905:1;34898:15;34925:191;34965:3;34984:20;35002:1;34984:20;:::i;:::-;34979:25;;35018:20;35036:1;35018:20;:::i;:::-;35013:25;;35061:1;35058;35054:9;35047:16;;35082:3;35079:1;35076:10;35073:36;;;35089:18;;:::i;:::-;35073:36;34925:191;;;;:::o;35122:170::-;35262:22;35258:1;35250:6;35246:14;35239:46;35122:170;:::o;35298:366::-;35440:3;35461:67;35525:2;35520:3;35461:67;:::i;:::-;35454:74;;35537:93;35626:3;35537:93;:::i;:::-;35655:2;35650:3;35646:12;35639:19;;35298:366;;;:::o;35670:419::-;35836:4;35874:2;35863:9;35859:18;35851:26;;35923:9;35917:4;35913:20;35909:1;35898:9;35894:17;35887:47;35951:131;36077:4;35951:131;:::i;:::-;35943:139;;35670:419;;;:::o;36095:179::-;36235:31;36231:1;36223:6;36219:14;36212:55;36095:179;:::o;36280:366::-;36422:3;36443:67;36507:2;36502:3;36443:67;:::i;:::-;36436:74;;36519:93;36608:3;36519:93;:::i;:::-;36637:2;36632:3;36628:12;36621:19;;36280:366;;;:::o;36652:419::-;36818:4;36856:2;36845:9;36841:18;36833:26;;36905:9;36899:4;36895:20;36891:1;36880:9;36876:17;36869:47;36933:131;37059:4;36933:131;:::i;:::-;36925:139;;36652:419;;;:::o;37077:410::-;37117:7;37140:20;37158:1;37140:20;:::i;:::-;37135:25;;37174:20;37192:1;37174:20;:::i;:::-;37169:25;;37229:1;37226;37222:9;37251:30;37269:11;37251:30;:::i;:::-;37240:41;;37430:1;37421:7;37417:15;37414:1;37411:22;37391:1;37384:9;37364:83;37341:139;;37460:18;;:::i;:::-;37341:139;37125:362;37077:410;;;;:::o;37493:169::-;37633:21;37629:1;37621:6;37617:14;37610:45;37493:169;:::o;37668:366::-;37810:3;37831:67;37895:2;37890:3;37831:67;:::i;:::-;37824:74;;37907:93;37996:3;37907:93;:::i;:::-;38025:2;38020:3;38016:12;38009:19;;37668:366;;;:::o;38040:419::-;38206:4;38244:2;38233:9;38229:18;38221:26;;38293:9;38287:4;38283:20;38279:1;38268:9;38264:17;38257:47;38321:131;38447:4;38321:131;:::i;:::-;38313:139;;38040:419;;;:::o;38465:180::-;38513:77;38510:1;38503:88;38610:4;38607:1;38600:15;38634:4;38631:1;38624:15;38651:233;38690:3;38713:24;38731:5;38713:24;:::i;:::-;38704:33;;38759:66;38752:5;38749:77;38746:103;;38829:18;;:::i;:::-;38746:103;38876:1;38869:5;38865:13;38858:20;;38651:233;;;:::o;38890:94::-;38923:8;38971:5;38967:2;38963:14;38942:35;;38890:94;;;:::o;38990:::-;39029:7;39058:20;39072:5;39058:20;:::i;:::-;39047:31;;38990:94;;;:::o;39090:100::-;39129:7;39158:26;39178:5;39158:26;:::i;:::-;39147:37;;39090:100;;;:::o;39196:157::-;39301:45;39321:24;39339:5;39321:24;:::i;:::-;39301:45;:::i;:::-;39296:3;39289:58;39196:157;;:::o;39359:256::-;39471:3;39486:75;39557:3;39548:6;39486:75;:::i;:::-;39586:2;39581:3;39577:12;39570:19;;39606:3;39599:10;;39359:256;;;;:::o;39621:170::-;39761:22;39757:1;39749:6;39745:14;39738:46;39621:170;:::o;39797:366::-;39939:3;39960:67;40024:2;40019:3;39960:67;:::i;:::-;39953:74;;40036:93;40125:3;40036:93;:::i;:::-;40154:2;40149:3;40145:12;40138:19;;39797:366;;;:::o;40169:419::-;40335:4;40373:2;40362:9;40358:18;40350:26;;40422:9;40416:4;40412:20;40408:1;40397:9;40393:17;40386:47;40450:131;40576:4;40450:131;:::i;:::-;40442:139;;40169:419;;;:::o;40594:147::-;40695:11;40732:3;40717:18;;40594:147;;;;:::o;40747:114::-;;:::o;40867:398::-;41026:3;41047:83;41128:1;41123:3;41047:83;:::i;:::-;41040:90;;41139:93;41228:3;41139:93;:::i;:::-;41257:1;41252:3;41248:11;41241:18;;40867:398;;;:::o;41271:379::-;41455:3;41477:147;41620:3;41477:147;:::i;:::-;41470:154;;41641:3;41634:10;;41271:379;;;:::o;41656:180::-;41704:77;41701:1;41694:88;41801:4;41798:1;41791:15;41825:4;41822:1;41815:15;41842:185;41882:1;41899:20;41917:1;41899:20;:::i;:::-;41894:25;;41933:20;41951:1;41933:20;:::i;:::-;41928:25;;41972:1;41962:35;;41977:18;;:::i;:::-;41962:35;42019:1;42016;42012:9;42007:14;;41842:185;;;;:::o;42033:194::-;42073:4;42093:20;42111:1;42093:20;:::i;:::-;42088:25;;42127:20;42145:1;42127:20;:::i;:::-;42122:25;;42171:1;42168;42164:9;42156:17;;42195:1;42189:4;42186:11;42183:37;;;42200:18;;:::i;:::-;42183:37;42033:194;;;;:::o;42233:234::-;42373:34;42369:1;42361:6;42357:14;42350:58;42442:17;42437:2;42429:6;42425:15;42418:42;42233:234;:::o;42473:366::-;42615:3;42636:67;42700:2;42695:3;42636:67;:::i;:::-;42629:74;;42712:93;42801:3;42712:93;:::i;:::-;42830:2;42825:3;42821:12;42814:19;;42473:366;;;:::o;42845:419::-;43011:4;43049:2;43038:9;43034:18;43026:26;;43098:9;43092:4;43088:20;43084:1;43073:9;43069:17;43062:47;43126:131;43252:4;43126:131;:::i;:::-;43118:139;;42845:419;;;:::o;43270:148::-;43372:11;43409:3;43394:18;;43270:148;;;;:::o;43424:390::-;43530:3;43558:39;43591:5;43558:39;:::i;:::-;43613:89;43695:6;43690:3;43613:89;:::i;:::-;43606:96;;43711:65;43769:6;43764:3;43757:4;43750:5;43746:16;43711:65;:::i;:::-;43801:6;43796:3;43792:16;43785:23;;43534:280;43424:390;;;;:::o;43844:874::-;43947:3;43984:5;43978:12;44013:36;44039:9;44013:36;:::i;:::-;44065:89;44147:6;44142:3;44065:89;:::i;:::-;44058:96;;44185:1;44174:9;44170:17;44201:1;44196:166;;;;44376:1;44371:341;;;;44163:549;;44196:166;44280:4;44276:9;44265;44261:25;44256:3;44249:38;44342:6;44335:14;44328:22;44320:6;44316:35;44311:3;44307:45;44300:52;;44196:166;;44371:341;44438:38;44470:5;44438:38;:::i;:::-;44498:1;44512:154;44526:6;44523:1;44520:13;44512:154;;;44600:7;44594:14;44590:1;44585:3;44581:11;44574:35;44650:1;44641:7;44637:15;44626:26;;44548:4;44545:1;44541:12;44536:17;;44512:154;;;44695:6;44690:3;44686:16;44679:23;;44378:334;;44163:549;;43951:767;;43844:874;;;;:::o;44724:589::-;44949:3;44971:95;45062:3;45053:6;44971:95;:::i;:::-;44964:102;;45083:95;45174:3;45165:6;45083:95;:::i;:::-;45076:102;;45195:92;45283:3;45274:6;45195:92;:::i;:::-;45188:99;;45304:3;45297:10;;44724:589;;;;;;:::o;45319:269::-;45448:3;45470:92;45558:3;45549:6;45470:92;:::i;:::-;45463:99;;45579:3;45572:10;;45319:269;;;;:::o;45594:225::-;45734:34;45730:1;45722:6;45718:14;45711:58;45803:8;45798:2;45790:6;45786:15;45779:33;45594:225;:::o;45825:366::-;45967:3;45988:67;46052:2;46047:3;45988:67;:::i;:::-;45981:74;;46064:93;46153:3;46064:93;:::i;:::-;46182:2;46177:3;46173:12;46166:19;;45825:366;;;:::o;46197:419::-;46363:4;46401:2;46390:9;46386:18;46378:26;;46450:9;46444:4;46440:20;46436:1;46425:9;46421:17;46414:47;46478:131;46604:4;46478:131;:::i;:::-;46470:139;;46197:419;;;:::o;46622:182::-;46762:34;46758:1;46750:6;46746:14;46739:58;46622:182;:::o;46810:366::-;46952:3;46973:67;47037:2;47032:3;46973:67;:::i;:::-;46966:74;;47049:93;47138:3;47049:93;:::i;:::-;47167:2;47162:3;47158:12;47151:19;;46810:366;;;:::o;47182:419::-;47348:4;47386:2;47375:9;47371:18;47363:26;;47435:9;47429:4;47425:20;47421:1;47410:9;47406:17;47399:47;47463:131;47589:4;47463:131;:::i;:::-;47455:139;;47182:419;;;:::o;47607:98::-;47658:6;47692:5;47686:12;47676:22;;47607:98;;;:::o;47711:168::-;47794:11;47828:6;47823:3;47816:19;47868:4;47863:3;47859:14;47844:29;;47711:168;;;;:::o;47885:373::-;47971:3;47999:38;48031:5;47999:38;:::i;:::-;48053:70;48116:6;48111:3;48053:70;:::i;:::-;48046:77;;48132:65;48190:6;48185:3;48178:4;48171:5;48167:16;48132:65;:::i;:::-;48222:29;48244:6;48222:29;:::i;:::-;48217:3;48213:39;48206:46;;47975:283;47885:373;;;;:::o;48264:640::-;48459:4;48497:3;48486:9;48482:19;48474:27;;48511:71;48579:1;48568:9;48564:17;48555:6;48511:71;:::i;:::-;48592:72;48660:2;48649:9;48645:18;48636:6;48592:72;:::i;:::-;48674;48742:2;48731:9;48727:18;48718:6;48674:72;:::i;:::-;48793:9;48787:4;48783:20;48778:2;48767:9;48763:18;48756:48;48821:76;48892:4;48883:6;48821:76;:::i;:::-;48813:84;;48264:640;;;;;;;:::o;48910:141::-;48966:5;48997:6;48991:13;48982:22;;49013:32;49039:5;49013:32;:::i;:::-;48910:141;;;;:::o;49057:349::-;49126:6;49175:2;49163:9;49154:7;49150:23;49146:32;49143:119;;;49181:79;;:::i;:::-;49143:119;49301:1;49326:63;49381:7;49372:6;49361:9;49357:22;49326:63;:::i;:::-;49316:73;;49272:127;49057:349;;;;:::o

Swarm Source

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