ETH Price: $2,666.14 (-1.19%)

Token

Scrooge Duck City (SDC)
 

Overview

Max Total Supply

513 SDC

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SDC
0x32133756a92249751b9f2c9cfbb31495f1220185
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:
ScroogeDuckCity

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    // ==============================
    //        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 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function 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) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
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`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    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 pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @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 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[] memory tokenIds) external view 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 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 pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view 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: test.sol



pragma solidity >=0.8.9 <0.9.0;





contract ScroogeDuckCity is ERC721AQueryable, Ownable {
    using Strings for uint256;

    // Three phased mint process : whitelist claim first, then free mint until a given supply is reached, then paid mint
    bool public whitelistMintEnabled;
    bool public freeMintEnabled;
    bool public mintEnabled;

    // Merkle root for whitelist check
    bytes32 public merkleRoot;

    // Whitelist and free mint wallet claim checks, mint counter per wallet
    mapping(address => bool) public whitelistClaimed;
    mapping(address => bool) public freeMintClaimed;
    mapping(address => uint256) public mintedAmount;

    // Supply and counters for mint phases
    uint256 public whitelistSupply;
    uint256 public whitelistCounter;
    uint256 public freeMintSupply;
    uint256 public freeMintCounter;
    uint256 public mintSupply;
    uint256 public mintCounter;
    uint256 public maxSupply;
    bool public supplyLocked;

    // Cost of the paid mint
    uint256 public cost;

    // URI to use for displaying NFT metadata and image
    string public hiddenMetadataUri;
    string public uriPrefix;
    string public uriSuffix;

    // Determines whether the collection is revealed or not, triggering a different tokenURI() process
    bool public revealed = false;

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol,
        uint256 _whitelistSupply,
        uint256 _freeMintSupply,
        uint256 _mintSupply,
        uint256 _maxSupply,
        uint256 _cost
    ) ERC721A(_tokenName, _tokenSymbol) {
        setSupply(_whitelistSupply, _freeMintSupply, _mintSupply, _maxSupply);
        setCost(_cost);
    }

    function whitelistMint(bytes32[] calldata _merkleProof) public {
        // Verify whitelist requirements
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Address is not on the whitelist!"
        );
        
        require(whitelistMintEnabled, "The whitelist sale is not live!");
        require(
            whitelistCounter + 2 <= whitelistSupply,
            "Whitelist supply exceeded!"
        );
        require(
            totalSupply() + 2 <= maxSupply,
            "Max supply exceeded!"
        );
        require(
            !whitelistClaimed[_msgSender()],
            "Address already claimed whitelist allocation!"
        );

        whitelistClaimed[_msgSender()] = true;
        mintedAmount[_msgSender()] += 2;
        whitelistCounter += 2;
        _safeMint(_msgSender(), 2);
    }

    function freeMint() public {
        // Verify free mint requirements
        require(freeMintEnabled, "The free mint is not live!");
        require(
            freeMintCounter + 1 <= freeMintSupply,
            "Free mint supply exceeded!"
        );
        require(
            totalSupply() + 1 <= maxSupply,
            "Max supply exceeded!"
        );
        require(
            !freeMintClaimed[_msgSender()],
            "Address already claimed a free mint!"
        );

        freeMintClaimed[_msgSender()] = true;
        mintedAmount[_msgSender()] += 1;
        freeMintCounter += 1;
        _safeMint(_msgSender(), 1);
    }

    function mint(uint256 _mintAmount) public payable {
        require(mintEnabled, "The public sale is not live!");

        require(_mintAmount > 0 && _mintAmount <= 5, "Invalid mint amount!");
        require(
            mintCounter + _mintAmount <= mintSupply,
            "Paid mint supply exceeded!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        require(
            mintedAmount[_msgSender()] + _mintAmount <= 10,
            "Request exceeds maximum mint amount allowed per account (10)"
        );
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");

        mintedAmount[_msgSender()] += _mintAmount;
        mintCounter += _mintAmount;
        _safeMint(_msgSender(), _mintAmount);
    }

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

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

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

    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,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

    function setMintState(
        bool _whitelistMintEnabled,
        bool _freeMintEnabled,
        bool _mintEnabled
    ) external onlyOwner {
        whitelistMintEnabled = _whitelistMintEnabled;
        freeMintEnabled = _freeMintEnabled;
        mintEnabled = _mintEnabled;
    }

    function lockSupply() public onlyOwner {
        require(!supplyLocked, "Supply is already locked");
        supplyLocked = true;
    }

    function setSupply(
        uint256 _whitelistSupply,
        uint256 _freeMintSupply,
        uint256 _mintSupply,
        uint256 _maxSupply
    ) public onlyOwner {
        require(!supplyLocked, "Supply is locked");
        whitelistSupply = _whitelistSupply;
        freeMintSupply = _freeMintSupply;
        mintSupply = _mintSupply;
        maxSupply = _maxSupply;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

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

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

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

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

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

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_whitelistSupply","type":"uint256"},{"internalType":"uint256","name":"_freeMintSupply","type":"uint256"},{"internalType":"uint256","name":"_mintSupply","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"}],"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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSupply","outputs":[],"stateMutability":"nonpayable","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"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistMintEnabled","type":"bool"},{"internalType":"bool","name":"_freeMintEnabled","type":"bool"},{"internalType":"bool","name":"_mintEnabled","type":"bool"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistSupply","type":"uint256"},{"internalType":"uint256","name":"_freeMintSupply","type":"uint256"},{"internalType":"uint256","name":"_mintSupply","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","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":[],"name":"supplyLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000601960006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162005d9238038062005d928339818101604052810190620000529190620004eb565b868681600290816200006591906200081d565b5080600390816200007791906200081d565b5062000088620000e260201b60201c565b6000819055505050620000b0620000a4620000eb60201b60201c565b620000f360201b60201c565b620000c485858585620001b960201b60201c565b620000d5816200023e60201b60201c565b50505050505050620009f9565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001c96200025860201b60201c565b601460009054906101000a900460ff16156200021c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002139062000965565b60405180910390fd5b83600d8190555082600f81905550816011819055508060138190555050505050565b6200024e6200025860201b60201c565b8060158190555050565b62000268620000eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028e620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002de90620009d7565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200037c8262000331565b810181811067ffffffffffffffff821117156200039e576200039d62000342565b5b80604052505050565b6000620003b362000313565b9050620003c1828262000371565b919050565b600067ffffffffffffffff821115620003e457620003e362000342565b5b620003ef8262000331565b9050602081019050919050565b60005b838110156200041c578082015181840152602081019050620003ff565b838111156200042c576000848401525b50505050565b6000620004496200044384620003c6565b620003a7565b9050828152602081018484840111156200046857620004676200032c565b5b62000475848285620003fc565b509392505050565b600082601f83011262000495576200049462000327565b5b8151620004a784826020860162000432565b91505092915050565b6000819050919050565b620004c581620004b0565b8114620004d157600080fd5b50565b600081519050620004e581620004ba565b92915050565b600080600080600080600060e0888a0312156200050d576200050c6200031d565b5b600088015167ffffffffffffffff8111156200052e576200052d62000322565b5b6200053c8a828b016200047d565b975050602088015167ffffffffffffffff81111562000560576200055f62000322565b5b6200056e8a828b016200047d565b9650506040620005818a828b01620004d4565b9550506060620005948a828b01620004d4565b9450506080620005a78a828b01620004d4565b93505060a0620005ba8a828b01620004d4565b92505060c0620005cd8a828b01620004d4565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062f57607f821691505b602082108103620006455762000644620005e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000670565b620006bb868362000670565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006fe620006f8620006f284620004b0565b620006d3565b620004b0565b9050919050565b6000819050919050565b6200071a83620006dd565b62000732620007298262000705565b8484546200067d565b825550505050565b600090565b620007496200073a565b620007568184846200070f565b505050565b5b818110156200077e57620007726000826200073f565b6001810190506200075c565b5050565b601f821115620007cd5762000797816200064b565b620007a28462000660565b81016020851015620007b2578190505b620007ca620007c18562000660565b8301826200075b565b50505b505050565b600082821c905092915050565b6000620007f260001984600802620007d2565b1980831691505092915050565b60006200080d8383620007df565b9150826002028217905092915050565b6200082882620005dc565b67ffffffffffffffff81111562000844576200084362000342565b5b62000850825462000616565b6200085d82828562000782565b600060209050601f83116001811462000895576000841562000880578287015190505b6200088c8582620007ff565b865550620008fc565b601f198416620008a5866200064b565b60005b82811015620008cf57848901518255600182019150602085019450602081019050620008a8565b86831015620008ef5784890151620008eb601f891682620007df565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f537570706c79206973206c6f636b656400000000000000000000000000000000600082015250565b60006200094d60108362000904565b91506200095a8262000915565b602082019050919050565b6000602082019050818103600083015262000980816200093e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009bf60208362000904565b9150620009cc8262000987565b602082019050919050565b60006020820190508181036000830152620009f281620009b0565b9050919050565b6153898062000a096000396000f3fe6080604052600436106103505760003560e01c806370a08231116101c6578063b88d4fde116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610c31578063efbd73f414610c6e578063f2fde38b14610c97578063fbbf8cc314610cc057610350565b8063e0a8085314610ba0578063e0ec7c3614610bc9578063e150007e14610c0657610350565b8063d1239730116100d1578063d123973014610ae4578063d39d8d1114610b0f578063d5abeb0114610b38578063db4bec4414610b6357610350565b8063b88d4fde14610a41578063c23dc68f14610a6a578063c87b56dd14610aa757610350565b8063943eb50411610164578063a0712d681161013e578063a0712d68146109a8578063a22cb465146109c4578063a45ba8e7146109ed578063a845c4f314610a1857610350565b8063943eb5041461091557806395d89b411461094057806399a2557a1461096b57610350565b80637ec4a659116101a05780637ec4a6591461086d57806381eaf99b146108965780638462151c146108ad5780638da5cb5b146108ea57610350565b806370a08231146107f0578063715018a61461082d5780637cb647591461084457610350565b8063372f657c116102a05780635503a0e81161023e57806362ad68aa1161021857806362ad68aa1461073257806362b99ad41461075d5780636352211e146107885780636caede3d146107c557610350565b80635503a0e8146106b35780635b70ea9f146106de5780635bbb2177146106f557610350565b806344a0d68a1161027a57806344a0d68a1461060b57806346aa52ce146106345780634fdd43cb1461065f578063518302271461068857610350565b8063372f657c146105a25780633ccfd60b146105cb57806342842e0e146105e257610350565b806316ba10e01161030d57806326f27e6d116102e757806326f27e6d146104f657806329a0af0b146105215780632eb4a7ab1461054c57806333e614131461057757610350565b806316ba10e01461047957806318160ddd146104a257806323b872dd146104cd57610350565b806301ffc9a714610355578063045b7dca1461039257806306fdde03146103bd578063081812fc146103e8578063095ea7b31461042557806313faede61461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906136f8565b610cfd565b6040516103899190613740565b60405180910390f35b34801561039e57600080fd5b506103a7610d8f565b6040516103b49190613774565b60405180910390f35b3480156103c957600080fd5b506103d2610d95565b6040516103df9190613828565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613876565b610e27565b60405161041c91906138e4565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061392b565b610ea3565b005b34801561045a57600080fd5b50610463610fe4565b6040516104709190613774565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613aa0565b610fea565b005b3480156104ae57600080fd5b506104b7611005565b6040516104c49190613774565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613ae9565b61101c565b005b34801561050257600080fd5b5061050b61133e565b6040516105189190613774565b60405180910390f35b34801561052d57600080fd5b50610536611344565b6040516105439190613774565b60405180910390f35b34801561055857600080fd5b5061056161134a565b60405161056e9190613b55565b60405180910390f35b34801561058357600080fd5b5061058c611350565b6040516105999190613774565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613bd0565b611356565b005b3480156105d757600080fd5b506105e0611691565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613ae9565b6116e9565b005b34801561061757600080fd5b50610632600480360381019061062d9190613876565b611709565b005b34801561064057600080fd5b5061064961171b565b6040516106569190613774565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190613aa0565b611721565b005b34801561069457600080fd5b5061069d61173c565b6040516106aa9190613740565b60405180910390f35b3480156106bf57600080fd5b506106c861174f565b6040516106d59190613828565b60405180910390f35b3480156106ea57600080fd5b506106f36117dd565b005b34801561070157600080fd5b5061071c60048036038101906107179190613ce0565b611a56565b6040516107299190613e8c565b60405180910390f35b34801561073e57600080fd5b50610747611b17565b6040516107549190613740565b60405180910390f35b34801561076957600080fd5b50610772611b2a565b60405161077f9190613828565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613876565b611bb8565b6040516107bc91906138e4565b60405180910390f35b3480156107d157600080fd5b506107da611bca565b6040516107e79190613740565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613eae565b611bdd565b6040516108249190613774565b60405180910390f35b34801561083957600080fd5b50610842611c95565b005b34801561085057600080fd5b5061086b60048036038101906108669190613f07565b611ca9565b005b34801561087957600080fd5b50610894600480360381019061088f9190613aa0565b611cbb565b005b3480156108a257600080fd5b506108ab611cd6565b005b3480156108b957600080fd5b506108d460048036038101906108cf9190613eae565b611d4b565b6040516108e19190613ff2565b60405180910390f35b3480156108f657600080fd5b506108ff611e8e565b60405161090c91906138e4565b60405180910390f35b34801561092157600080fd5b5061092a611eb8565b6040516109379190613740565b60405180910390f35b34801561094c57600080fd5b50610955611ecb565b6040516109629190613828565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d9190614014565b611f5d565b60405161099f9190613ff2565b60405180910390f35b6109c260048036038101906109bd9190613876565b612169565b005b3480156109d057600080fd5b506109eb60048036038101906109e69190614093565b612420565b005b3480156109f957600080fd5b50610a02612597565b604051610a0f9190613828565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a91906140d3565b612625565b005b348015610a4d57600080fd5b50610a686004803603810190610a6391906141db565b61269f565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613876565b612712565b604051610a9e91906142b3565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613876565b61277c565b604051610adb9190613828565b60405180910390f35b348015610af057600080fd5b50610af96128d4565b604051610b069190613740565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906142ce565b6128e7565b005b348015610b4457600080fd5b50610b4d612942565b604051610b5a9190613774565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613eae565b612948565b604051610b979190613740565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc29190614321565b612968565b005b348015610bd557600080fd5b50610bf06004803603810190610beb9190613eae565b61298d565b604051610bfd9190613740565b60405180910390f35b348015610c1257600080fd5b50610c1b6129ad565b604051610c289190613774565b60405180910390f35b348015610c3d57600080fd5b50610c586004803603810190610c53919061434e565b6129b3565b604051610c659190613740565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c90919061438e565b612a47565b005b348015610ca357600080fd5b50610cbe6004803603810190610cb99190613eae565b612ab4565b005b348015610ccc57600080fd5b50610ce76004803603810190610ce29190613eae565b612b37565b604051610cf49190613774565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d5857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60115481565b606060028054610da4906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd0906143fd565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b5050505050905090565b6000610e3282612b4f565b610e68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eae82611bb8565b90508073ffffffffffffffffffffffffffffffffffffffff16610ecf612bae565b73ffffffffffffffffffffffffffffffffffffffff1614610f3257610efb81610ef6612bae565b6129b3565b610f31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60155481565b610ff2612bb6565b806018908161100191906145da565b5050565b600061100f612c34565b6001546000540303905090565b600061102782612c3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461108e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109a84612d09565b915091506110b081876110ab612bae565b612d2b565b6110fc576110c5866110c0612bae565b6129b3565b6110fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611162576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116f8686866001612d6f565b801561117a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061124885611224888887612d75565b7c020000000000000000000000000000000000000000000000000000000017612d9d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112ce57600060018501905060006004600083815260200190815260200160002054036112cc5760005481146112cb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113368686866001612dc8565b505050505050565b600e5481565b60105481565b60095481565b600d5481565b6000611360612dce565b60405160200161137091906146f4565b6040516020818303038152906040528051906020012090506113d6838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483612dd6565b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061475b565b60405180910390fd5b600860149054906101000a900460ff16611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906147c7565b60405180910390fd5b600d546002600e546114769190614816565b11156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906148b8565b60405180910390fd5b60135460026114c4611005565b6114ce9190614816565b111561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614924565b60405180910390fd5b600a600061151b612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906149b6565b60405180910390fd5b6001600a60006115b1612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002600c6000611610612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116599190614816565b925050819055506002600e60008282546116739190614816565b9250508190555061168c611685612dce565b6002612ded565b505050565b611699612bb6565b6116a1611e8e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116e6573d6000803e3d6000fd5b50565b6117048383836040518060200160405280600081525061269f565b505050565b611711612bb6565b8060158190555050565b60125481565b611729612bb6565b806016908161173891906145da565b5050565b601960009054906101000a900460ff1681565b6018805461175c906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611788906143fd565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b505050505081565b600860159054906101000a900460ff1661182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614a22565b60405180910390fd5b600f54600160105461183e9190614816565b111561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690614a8e565b60405180910390fd5b601354600161188c611005565b6118969190614816565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614924565b60405180910390fd5b600b60006118e3612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290614b20565b60405180910390fd5b6001600b6000611979612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006119d8612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a219190614816565b92505081905550600160106000828254611a3b9190614816565b92505081905550611a54611a4d612dce565b6001612ded565b565b606060008251905060008167ffffffffffffffff811115611a7a57611a79613975565b5b604051908082528060200260200182016040528015611ab357816020015b611aa061363d565b815260200190600190039081611a985790505b50905060005b828114611b0c57611ae3858281518110611ad657611ad5614b40565b5b6020026020010151612712565b828281518110611af657611af5614b40565b5b6020026020010181905250806001019050611ab9565b508092505050919050565b600860159054906101000a900460ff1681565b60178054611b37906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b63906143fd565b8015611bb05780601f10611b8557610100808354040283529160200191611bb0565b820191906000526020600020905b815481529060010190602001808311611b9357829003601f168201915b505050505081565b6000611bc382612c3d565b9050919050565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c9d612bb6565b611ca76000612e0b565b565b611cb1612bb6565b8060098190555050565b611cc3612bb6565b8060179081611cd291906145da565b5050565b611cde612bb6565b601460009054906101000a900460ff1615611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590614bbb565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60606000806000611d5b85611bdd565b905060008167ffffffffffffffff811115611d7957611d78613975565b5b604051908082528060200260200182016040528015611da75781602001602082028036833780820191505090505b509050611db261363d565b6000611dbc612c34565b90505b838614611e8057611dcf81612ed1565b91508160400151611e7557600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e1a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e745780838780600101985081518110611e6757611e66614b40565b5b6020026020010181815250505b5b806001019050611dbf565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900460ff1681565b606060038054611eda906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f06906143fd565b8015611f535780601f10611f2857610100808354040283529160200191611f53565b820191906000526020600020905b815481529060010190602001808311611f3657829003601f168201915b5050505050905090565b6060818310611f98576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611fa3612efc565b9050611fad612c34565b851015611fbf57611fbc612c34565b94505b80841115611fcb578093505b6000611fd687611bdd565b905084861015611ff9576000868603905081811015611ff3578091505b50611ffe565b600090505b60008167ffffffffffffffff81111561201a57612019613975565b5b6040519080825280602002602001820160405280156120485781602001602082028036833780820191505090505b5090506000820361205f5780945050505050612162565b600061206a88612712565b90506000816040015161207f57816000015190505b60008990505b8881141580156120955750848714155b15612154576120a381612ed1565b9250826040015161214957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146120ee57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612148578084888060010199508151811061213b5761213a614b40565b5b6020026020010181815250505b5b806001019050612085565b508583528296505050505050505b9392505050565b600860169054906101000a900460ff166121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90614c27565b60405180910390fd5b6000811180156121c9575060058111155b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614c93565b60405180910390fd5b601154816012546122199190614816565b111561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614cff565b60405180910390fd5b60135481612266611005565b6122709190614816565b11156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614924565b60405180910390fd5b600a81600c60006122c0612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123059190614816565b1115612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d90614d91565b60405180910390fd5b806015546123549190614db1565b341015612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90614e57565b60405180910390fd5b80600c60006123a3612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ec9190614816565b9250508190555080601260008282546124059190614816565b9250508190555061241d612417612dce565b82612ded565b50565b612428612bae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612499612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612546612bae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258b9190613740565b60405180910390a35050565b601680546125a4906143fd565b80601f01602080910402602001604051908101604052809291908181526020018280546125d0906143fd565b801561261d5780601f106125f25761010080835404028352916020019161261d565b820191906000526020600020905b81548152906001019060200180831161260057829003601f168201915b505050505081565b61262d612bb6565b601460009054906101000a900460ff161561267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490614ec3565b60405180910390fd5b83600d8190555082600f81905550816011819055508060138190555050505050565b6126aa84848461101c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461270c576126d584848484612f05565b61270b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61271a61363d565b61272261363d565b61272a612c34565b83108061273e575061273a612efc565b8310155b1561274c5780915050612777565b61275583612ed1565b905080604001511561276a5780915050612777565b61277383613055565b9150505b919050565b606061278782612b4f565b6127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614f55565b60405180910390fd5b60001515601960009054906101000a900460ff1615150361287357601680546127ee906143fd565b80601f016020809104026020016040519081016040528092919081815260200182805461281a906143fd565b80156128675780601f1061283c57610100808354040283529160200191612867565b820191906000526020600020905b81548152906001019060200180831161284a57829003601f168201915b505050505090506128cf565b600061287d613075565b9050600081511161289d57604051806020016040528060008152506128cb565b806128a784613107565b60186040516020016128bb93929190615034565b6040516020818303038152906040525b9150505b919050565b600860169054906101000a900460ff1681565b6128ef612bb6565b82600860146101000a81548160ff02191690831515021790555081600860156101000a81548160ff02191690831515021790555080600860166101000a81548160ff021916908315150217905550505050565b60135481565b600a6020528060005260406000206000915054906101000a900460ff1681565b612970612bb6565b80601960006101000a81548160ff02191690831515021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a4f612bb6565b60135482612a5b611005565b612a659190614816565b1115612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d90614924565b60405180910390fd5b612ab08183612ded565b5050565b612abc612bb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b22906150d7565b60405180910390fd5b612b3481612e0b565b50565b600c6020528060005260406000206000915090505481565b600081612b5a612c34565b11158015612b69575060005482105b8015612ba7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612bbe612dce565b73ffffffffffffffffffffffffffffffffffffffff16612bdc611e8e565b73ffffffffffffffffffffffffffffffffffffffff1614612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990615143565b60405180910390fd5b565b60006001905090565b60008082905080612c4c612c34565b11612cd257600054811015612cd15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612ccf575b60008103612cc5576004600083600190039350838152602001908152602001600020549050612c9b565b8092505050612d04565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d8c868684613267565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b600082612de38584613270565b1490509392505050565b612e078282604051806020016040528060008152506132c6565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ed961363d565b612ef56004600084815260200190815260200160002054613363565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2b612bae565b8786866040518563ffffffff1660e01b8152600401612f4d94939291906151b8565b6020604051808303816000875af1925050508015612f8957506040513d601f19601f82011682018060405250810190612f869190615219565b60015b613002573d8060008114612fb9576040519150601f19603f3d011682016040523d82523d6000602084013e612fbe565b606091505b506000815103612ffa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61305d61363d565b61306e61306983612c3d565b613363565b9050919050565b606060178054613084906143fd565b80601f01602080910402602001604051908101604052809291908181526020018280546130b0906143fd565b80156130fd5780601f106130d2576101008083540402835291602001916130fd565b820191906000526020600020905b8154815290600101906020018083116130e057829003601f168201915b5050505050905090565b60606000820361314e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613262565b600082905060005b6000821461318057808061316990615246565b915050600a8261317991906152bd565b9150613156565b60008167ffffffffffffffff81111561319c5761319b613975565b5b6040519080825280601f01601f1916602001820160405280156131ce5781602001600182028036833780820191505090505b5090505b6000851461325b576001826131e791906152ee565b9150600a856131f69190615322565b60306132029190614816565b60f81b81838151811061321857613217614b40565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325491906152bd565b94506131d2565b8093505050505b919050565b60009392505050565b60008082905060005b84518110156132bb576132a68286838151811061329957613298614b40565b5b6020026020010151613419565b915080806132b390615246565b915050613279565b508091505092915050565b6132d08383613444565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461335e57600080549050600083820390505b6133106000868380600101945086612f05565b613346576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132fd57816000541461335b57600080fd5b50505b505050565b61336b61363d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106134315761342c8284613616565b61343c565b61343b8383613616565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036134b0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036134ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f76000848385612d6f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061356e8361355f6000866000612d75565b6135688561362d565b17612d9d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613592578060008190555050506136116000848385612dc8565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136d5816136a0565b81146136e057600080fd5b50565b6000813590506136f2816136cc565b92915050565b60006020828403121561370e5761370d613696565b5b600061371c848285016136e3565b91505092915050565b60008115159050919050565b61373a81613725565b82525050565b60006020820190506137556000830184613731565b92915050565b6000819050919050565b61376e8161375b565b82525050565b60006020820190506137896000830184613765565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137c95780820151818401526020810190506137ae565b838111156137d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006137fa8261378f565b613804818561379a565b93506138148185602086016137ab565b61381d816137de565b840191505092915050565b6000602082019050818103600083015261384281846137ef565b905092915050565b6138538161375b565b811461385e57600080fd5b50565b6000813590506138708161384a565b92915050565b60006020828403121561388c5761388b613696565b5b600061389a84828501613861565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138ce826138a3565b9050919050565b6138de816138c3565b82525050565b60006020820190506138f960008301846138d5565b92915050565b613908816138c3565b811461391357600080fd5b50565b600081359050613925816138ff565b92915050565b6000806040838503121561394257613941613696565b5b600061395085828601613916565b925050602061396185828601613861565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ad826137de565b810181811067ffffffffffffffff821117156139cc576139cb613975565b5b80604052505050565b60006139df61368c565b90506139eb82826139a4565b919050565b600067ffffffffffffffff821115613a0b57613a0a613975565b5b613a14826137de565b9050602081019050919050565b82818337600083830152505050565b6000613a43613a3e846139f0565b6139d5565b905082815260208101848484011115613a5f57613a5e613970565b5b613a6a848285613a21565b509392505050565b600082601f830112613a8757613a8661396b565b5b8135613a97848260208601613a30565b91505092915050565b600060208284031215613ab657613ab5613696565b5b600082013567ffffffffffffffff811115613ad457613ad361369b565b5b613ae084828501613a72565b91505092915050565b600080600060608486031215613b0257613b01613696565b5b6000613b1086828701613916565b9350506020613b2186828701613916565b9250506040613b3286828701613861565b9150509250925092565b6000819050919050565b613b4f81613b3c565b82525050565b6000602082019050613b6a6000830184613b46565b92915050565b600080fd5b600080fd5b60008083601f840112613b9057613b8f61396b565b5b8235905067ffffffffffffffff811115613bad57613bac613b70565b5b602083019150836020820283011115613bc957613bc8613b75565b5b9250929050565b60008060208385031215613be757613be6613696565b5b600083013567ffffffffffffffff811115613c0557613c0461369b565b5b613c1185828601613b7a565b92509250509250929050565b600067ffffffffffffffff821115613c3857613c37613975565b5b602082029050602081019050919050565b6000613c5c613c5784613c1d565b6139d5565b90508083825260208201905060208402830185811115613c7f57613c7e613b75565b5b835b81811015613ca85780613c948882613861565b845260208401935050602081019050613c81565b5050509392505050565b600082601f830112613cc757613cc661396b565b5b8135613cd7848260208601613c49565b91505092915050565b600060208284031215613cf657613cf5613696565b5b600082013567ffffffffffffffff811115613d1457613d1361369b565b5b613d2084828501613cb2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5e816138c3565b82525050565b600067ffffffffffffffff82169050919050565b613d8181613d64565b82525050565b613d9081613725565b82525050565b600062ffffff82169050919050565b613dae81613d96565b82525050565b608082016000820151613dca6000850182613d55565b506020820151613ddd6020850182613d78565b506040820151613df06040850182613d87565b506060820151613e036060850182613da5565b50505050565b6000613e158383613db4565b60808301905092915050565b6000602082019050919050565b6000613e3982613d29565b613e438185613d34565b9350613e4e83613d45565b8060005b83811015613e7f578151613e668882613e09565b9750613e7183613e21565b925050600181019050613e52565b5085935050505092915050565b60006020820190508181036000830152613ea68184613e2e565b905092915050565b600060208284031215613ec457613ec3613696565b5b6000613ed284828501613916565b91505092915050565b613ee481613b3c565b8114613eef57600080fd5b50565b600081359050613f0181613edb565b92915050565b600060208284031215613f1d57613f1c613696565b5b6000613f2b84828501613ef2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f698161375b565b82525050565b6000613f7b8383613f60565b60208301905092915050565b6000602082019050919050565b6000613f9f82613f34565b613fa98185613f3f565b9350613fb483613f50565b8060005b83811015613fe5578151613fcc8882613f6f565b9750613fd783613f87565b925050600181019050613fb8565b5085935050505092915050565b6000602082019050818103600083015261400c8184613f94565b905092915050565b60008060006060848603121561402d5761402c613696565b5b600061403b86828701613916565b935050602061404c86828701613861565b925050604061405d86828701613861565b9150509250925092565b61407081613725565b811461407b57600080fd5b50565b60008135905061408d81614067565b92915050565b600080604083850312156140aa576140a9613696565b5b60006140b885828601613916565b92505060206140c98582860161407e565b9150509250929050565b600080600080608085870312156140ed576140ec613696565b5b60006140fb87828801613861565b945050602061410c87828801613861565b935050604061411d87828801613861565b925050606061412e87828801613861565b91505092959194509250565b600067ffffffffffffffff82111561415557614154613975565b5b61415e826137de565b9050602081019050919050565b600061417e6141798461413a565b6139d5565b90508281526020810184848401111561419a57614199613970565b5b6141a5848285613a21565b509392505050565b600082601f8301126141c2576141c161396b565b5b81356141d284826020860161416b565b91505092915050565b600080600080608085870312156141f5576141f4613696565b5b600061420387828801613916565b945050602061421487828801613916565b935050604061422587828801613861565b925050606085013567ffffffffffffffff8111156142465761424561369b565b5b614252878288016141ad565b91505092959194509250565b6080820160008201516142746000850182613d55565b5060208201516142876020850182613d78565b50604082015161429a6040850182613d87565b5060608201516142ad6060850182613da5565b50505050565b60006080820190506142c8600083018461425e565b92915050565b6000806000606084860312156142e7576142e6613696565b5b60006142f58682870161407e565b93505060206143068682870161407e565b92505060406143178682870161407e565b9150509250925092565b60006020828403121561433757614336613696565b5b60006143458482850161407e565b91505092915050565b6000806040838503121561436557614364613696565b5b600061437385828601613916565b925050602061438485828601613916565b9150509250929050565b600080604083850312156143a5576143a4613696565b5b60006143b385828601613861565b92505060206143c485828601613916565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441557607f821691505b602082108103614428576144276143ce565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614453565b61449a8683614453565b95508019841693508086168417925050509392505050565b6000819050919050565b60006144d76144d26144cd8461375b565b6144b2565b61375b565b9050919050565b6000819050919050565b6144f1836144bc565b6145056144fd826144de565b848454614460565b825550505050565b600090565b61451a61450d565b6145258184846144e8565b505050565b5b818110156145495761453e600082614512565b60018101905061452b565b5050565b601f82111561458e5761455f8161442e565b61456884614443565b81016020851015614577578190505b61458b61458385614443565b83018261452a565b50505b505050565b600082821c905092915050565b60006145b160001984600802614593565b1980831691505092915050565b60006145ca83836145a0565b9150826002028217905092915050565b6145e38261378f565b67ffffffffffffffff8111156145fc576145fb613975565b5b61460682546143fd565b61461182828561454d565b600060209050601f8311600181146146445760008415614632578287015190505b61463c85826145be565b8655506146a4565b601f1984166146528661442e565b60005b8281101561467a57848901518255600182019150602085019450602081019050614655565b868310156146975784890151614693601f8916826145a0565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b60006146c4826146ac565b9050919050565b60006146d6826146b9565b9050919050565b6146ee6146e9826138c3565b6146cb565b82525050565b600061470082846146dd565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e207468652077686974656c69737421600082015250565b600061474560208361379a565b91506147508261470f565b602082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f74206c6976652100600082015250565b60006147b1601f8361379a565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148218261375b565b915061482c8361375b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614861576148606147e7565b5b828201905092915050565b7f57686974656c69737420737570706c7920657863656564656421000000000000600082015250565b60006148a2601a8361379a565b91506148ad8261486c565b602082019050919050565b600060208201905081810360008301526148d181614895565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061490e60148361379a565b9150614919826148d8565b602082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f4164647265737320616c726561647920636c61696d65642077686974656c697360008201527f7420616c6c6f636174696f6e2100000000000000000000000000000000000000602082015250565b60006149a0602d8361379a565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f5468652066726565206d696e74206973206e6f74206c69766521000000000000600082015250565b6000614a0c601a8361379a565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b7f46726565206d696e7420737570706c7920657863656564656421000000000000600082015250565b6000614a78601a8361379a565b9150614a8382614a42565b602082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f4164647265737320616c726561647920636c61696d656420612066726565206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b6000614b0a60248361379a565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f537570706c7920697320616c7265616479206c6f636b65640000000000000000600082015250565b6000614ba560188361379a565b9150614bb082614b6f565b602082019050919050565b60006020820190508181036000830152614bd481614b98565b9050919050565b7f546865207075626c69632073616c65206973206e6f74206c6976652100000000600082015250565b6000614c11601c8361379a565b9150614c1c82614bdb565b602082019050919050565b60006020820190508181036000830152614c4081614c04565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614c7d60148361379a565b9150614c8882614c47565b602082019050919050565b60006020820190508181036000830152614cac81614c70565b9050919050565b7f50616964206d696e7420737570706c7920657863656564656421000000000000600082015250565b6000614ce9601a8361379a565b9150614cf482614cb3565b602082019050919050565b60006020820190508181036000830152614d1881614cdc565b9050919050565b7f526571756573742065786365656473206d6178696d756d206d696e7420616d6f60008201527f756e7420616c6c6f77656420706572206163636f756e74202831302900000000602082015250565b6000614d7b603c8361379a565b9150614d8682614d1f565b604082019050919050565b60006020820190508181036000830152614daa81614d6e565b9050919050565b6000614dbc8261375b565b9150614dc78361375b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e0057614dff6147e7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614e4160138361379a565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f537570706c79206973206c6f636b656400000000000000000000000000000000600082015250565b6000614ead60108361379a565b9150614eb882614e77565b602082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f3f602f8361379a565b9150614f4a82614ee3565b604082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b600081905092915050565b6000614f8b8261378f565b614f958185614f75565b9350614fa58185602086016137ab565b80840191505092915050565b60008154614fbe816143fd565b614fc88186614f75565b94506001821660008114614fe35760018114614ff85761502b565b60ff198316865281151582028601935061502b565b6150018561442e565b60005b8381101561502357815481890152600182019150602081019050615004565b838801955050505b50505092915050565b60006150408286614f80565b915061504c8285614f80565b91506150588284614fb1565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150c160268361379a565b91506150cc82615065565b604082019050919050565b600060208201905081810360008301526150f0816150b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512d60208361379a565b9150615138826150f7565b602082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061518a82615163565b615194818561516e565b93506151a48185602086016137ab565b6151ad816137de565b840191505092915050565b60006080820190506151cd60008301876138d5565b6151da60208301866138d5565b6151e76040830185613765565b81810360608301526151f9818461517f565b905095945050505050565b600081519050615213816136cc565b92915050565b60006020828403121561522f5761522e613696565b5b600061523d84828501615204565b91505092915050565b60006152518261375b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615283576152826147e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152c88261375b565b91506152d38361375b565b9250826152e3576152e261528e565b5b828204905092915050565b60006152f98261375b565b91506153048361375b565b925082821015615317576153166147e7565b5b828203905092915050565b600061532d8261375b565b91506153388361375b565b9250826153485761534761528e565b5b82820690509291505056fea264697066735822122025eb67383dd37f11bddfa21c7d40651fb0841a685cf8d3a4006c09aa98d891d464736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000aa200000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000000115363726f6f6765204475636b204369747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035344430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806370a08231116101c6578063b88d4fde116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610c31578063efbd73f414610c6e578063f2fde38b14610c97578063fbbf8cc314610cc057610350565b8063e0a8085314610ba0578063e0ec7c3614610bc9578063e150007e14610c0657610350565b8063d1239730116100d1578063d123973014610ae4578063d39d8d1114610b0f578063d5abeb0114610b38578063db4bec4414610b6357610350565b8063b88d4fde14610a41578063c23dc68f14610a6a578063c87b56dd14610aa757610350565b8063943eb50411610164578063a0712d681161013e578063a0712d68146109a8578063a22cb465146109c4578063a45ba8e7146109ed578063a845c4f314610a1857610350565b8063943eb5041461091557806395d89b411461094057806399a2557a1461096b57610350565b80637ec4a659116101a05780637ec4a6591461086d57806381eaf99b146108965780638462151c146108ad5780638da5cb5b146108ea57610350565b806370a08231146107f0578063715018a61461082d5780637cb647591461084457610350565b8063372f657c116102a05780635503a0e81161023e57806362ad68aa1161021857806362ad68aa1461073257806362b99ad41461075d5780636352211e146107885780636caede3d146107c557610350565b80635503a0e8146106b35780635b70ea9f146106de5780635bbb2177146106f557610350565b806344a0d68a1161027a57806344a0d68a1461060b57806346aa52ce146106345780634fdd43cb1461065f578063518302271461068857610350565b8063372f657c146105a25780633ccfd60b146105cb57806342842e0e146105e257610350565b806316ba10e01161030d57806326f27e6d116102e757806326f27e6d146104f657806329a0af0b146105215780632eb4a7ab1461054c57806333e614131461057757610350565b806316ba10e01461047957806318160ddd146104a257806323b872dd146104cd57610350565b806301ffc9a714610355578063045b7dca1461039257806306fdde03146103bd578063081812fc146103e8578063095ea7b31461042557806313faede61461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906136f8565b610cfd565b6040516103899190613740565b60405180910390f35b34801561039e57600080fd5b506103a7610d8f565b6040516103b49190613774565b60405180910390f35b3480156103c957600080fd5b506103d2610d95565b6040516103df9190613828565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613876565b610e27565b60405161041c91906138e4565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061392b565b610ea3565b005b34801561045a57600080fd5b50610463610fe4565b6040516104709190613774565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613aa0565b610fea565b005b3480156104ae57600080fd5b506104b7611005565b6040516104c49190613774565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613ae9565b61101c565b005b34801561050257600080fd5b5061050b61133e565b6040516105189190613774565b60405180910390f35b34801561052d57600080fd5b50610536611344565b6040516105439190613774565b60405180910390f35b34801561055857600080fd5b5061056161134a565b60405161056e9190613b55565b60405180910390f35b34801561058357600080fd5b5061058c611350565b6040516105999190613774565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613bd0565b611356565b005b3480156105d757600080fd5b506105e0611691565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613ae9565b6116e9565b005b34801561061757600080fd5b50610632600480360381019061062d9190613876565b611709565b005b34801561064057600080fd5b5061064961171b565b6040516106569190613774565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190613aa0565b611721565b005b34801561069457600080fd5b5061069d61173c565b6040516106aa9190613740565b60405180910390f35b3480156106bf57600080fd5b506106c861174f565b6040516106d59190613828565b60405180910390f35b3480156106ea57600080fd5b506106f36117dd565b005b34801561070157600080fd5b5061071c60048036038101906107179190613ce0565b611a56565b6040516107299190613e8c565b60405180910390f35b34801561073e57600080fd5b50610747611b17565b6040516107549190613740565b60405180910390f35b34801561076957600080fd5b50610772611b2a565b60405161077f9190613828565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613876565b611bb8565b6040516107bc91906138e4565b60405180910390f35b3480156107d157600080fd5b506107da611bca565b6040516107e79190613740565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613eae565b611bdd565b6040516108249190613774565b60405180910390f35b34801561083957600080fd5b50610842611c95565b005b34801561085057600080fd5b5061086b60048036038101906108669190613f07565b611ca9565b005b34801561087957600080fd5b50610894600480360381019061088f9190613aa0565b611cbb565b005b3480156108a257600080fd5b506108ab611cd6565b005b3480156108b957600080fd5b506108d460048036038101906108cf9190613eae565b611d4b565b6040516108e19190613ff2565b60405180910390f35b3480156108f657600080fd5b506108ff611e8e565b60405161090c91906138e4565b60405180910390f35b34801561092157600080fd5b5061092a611eb8565b6040516109379190613740565b60405180910390f35b34801561094c57600080fd5b50610955611ecb565b6040516109629190613828565b60405180910390f35b34801561097757600080fd5b50610992600480360381019061098d9190614014565b611f5d565b60405161099f9190613ff2565b60405180910390f35b6109c260048036038101906109bd9190613876565b612169565b005b3480156109d057600080fd5b506109eb60048036038101906109e69190614093565b612420565b005b3480156109f957600080fd5b50610a02612597565b604051610a0f9190613828565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a91906140d3565b612625565b005b348015610a4d57600080fd5b50610a686004803603810190610a6391906141db565b61269f565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613876565b612712565b604051610a9e91906142b3565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613876565b61277c565b604051610adb9190613828565b60405180910390f35b348015610af057600080fd5b50610af96128d4565b604051610b069190613740565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906142ce565b6128e7565b005b348015610b4457600080fd5b50610b4d612942565b604051610b5a9190613774565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b859190613eae565b612948565b604051610b979190613740565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc29190614321565b612968565b005b348015610bd557600080fd5b50610bf06004803603810190610beb9190613eae565b61298d565b604051610bfd9190613740565b60405180910390f35b348015610c1257600080fd5b50610c1b6129ad565b604051610c289190613774565b60405180910390f35b348015610c3d57600080fd5b50610c586004803603810190610c53919061434e565b6129b3565b604051610c659190613740565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c90919061438e565b612a47565b005b348015610ca357600080fd5b50610cbe6004803603810190610cb99190613eae565b612ab4565b005b348015610ccc57600080fd5b50610ce76004803603810190610ce29190613eae565b612b37565b604051610cf49190613774565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d5857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d885750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60115481565b606060028054610da4906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd0906143fd565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b5050505050905090565b6000610e3282612b4f565b610e68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eae82611bb8565b90508073ffffffffffffffffffffffffffffffffffffffff16610ecf612bae565b73ffffffffffffffffffffffffffffffffffffffff1614610f3257610efb81610ef6612bae565b6129b3565b610f31576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60155481565b610ff2612bb6565b806018908161100191906145da565b5050565b600061100f612c34565b6001546000540303905090565b600061102782612c3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461108e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109a84612d09565b915091506110b081876110ab612bae565b612d2b565b6110fc576110c5866110c0612bae565b6129b3565b6110fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611162576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116f8686866001612d6f565b801561117a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061124885611224888887612d75565b7c020000000000000000000000000000000000000000000000000000000017612d9d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112ce57600060018501905060006004600083815260200190815260200160002054036112cc5760005481146112cb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113368686866001612dc8565b505050505050565b600e5481565b60105481565b60095481565b600d5481565b6000611360612dce565b60405160200161137091906146f4565b6040516020818303038152906040528051906020012090506113d6838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483612dd6565b611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c9061475b565b60405180910390fd5b600860149054906101000a900460ff16611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b906147c7565b60405180910390fd5b600d546002600e546114769190614816565b11156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906148b8565b60405180910390fd5b60135460026114c4611005565b6114ce9190614816565b111561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614924565b60405180910390fd5b600a600061151b612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906149b6565b60405180910390fd5b6001600a60006115b1612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002600c6000611610612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116599190614816565b925050819055506002600e60008282546116739190614816565b9250508190555061168c611685612dce565b6002612ded565b505050565b611699612bb6565b6116a1611e8e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116e6573d6000803e3d6000fd5b50565b6117048383836040518060200160405280600081525061269f565b505050565b611711612bb6565b8060158190555050565b60125481565b611729612bb6565b806016908161173891906145da565b5050565b601960009054906101000a900460ff1681565b6018805461175c906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611788906143fd565b80156117d55780601f106117aa576101008083540402835291602001916117d5565b820191906000526020600020905b8154815290600101906020018083116117b857829003601f168201915b505050505081565b600860159054906101000a900460ff1661182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614a22565b60405180910390fd5b600f54600160105461183e9190614816565b111561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690614a8e565b60405180910390fd5b601354600161188c611005565b6118969190614816565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614924565b60405180910390fd5b600b60006118e3612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290614b20565b60405180910390fd5b6001600b6000611979612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006119d8612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a219190614816565b92505081905550600160106000828254611a3b9190614816565b92505081905550611a54611a4d612dce565b6001612ded565b565b606060008251905060008167ffffffffffffffff811115611a7a57611a79613975565b5b604051908082528060200260200182016040528015611ab357816020015b611aa061363d565b815260200190600190039081611a985790505b50905060005b828114611b0c57611ae3858281518110611ad657611ad5614b40565b5b6020026020010151612712565b828281518110611af657611af5614b40565b5b6020026020010181905250806001019050611ab9565b508092505050919050565b600860159054906101000a900460ff1681565b60178054611b37906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b63906143fd565b8015611bb05780601f10611b8557610100808354040283529160200191611bb0565b820191906000526020600020905b815481529060010190602001808311611b9357829003601f168201915b505050505081565b6000611bc382612c3d565b9050919050565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c9d612bb6565b611ca76000612e0b565b565b611cb1612bb6565b8060098190555050565b611cc3612bb6565b8060179081611cd291906145da565b5050565b611cde612bb6565b601460009054906101000a900460ff1615611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590614bbb565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60606000806000611d5b85611bdd565b905060008167ffffffffffffffff811115611d7957611d78613975565b5b604051908082528060200260200182016040528015611da75781602001602082028036833780820191505090505b509050611db261363d565b6000611dbc612c34565b90505b838614611e8057611dcf81612ed1565b91508160400151611e7557600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e1a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e745780838780600101985081518110611e6757611e66614b40565b5b6020026020010181815250505b5b806001019050611dbf565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900460ff1681565b606060038054611eda906143fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f06906143fd565b8015611f535780601f10611f2857610100808354040283529160200191611f53565b820191906000526020600020905b815481529060010190602001808311611f3657829003601f168201915b5050505050905090565b6060818310611f98576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611fa3612efc565b9050611fad612c34565b851015611fbf57611fbc612c34565b94505b80841115611fcb578093505b6000611fd687611bdd565b905084861015611ff9576000868603905081811015611ff3578091505b50611ffe565b600090505b60008167ffffffffffffffff81111561201a57612019613975565b5b6040519080825280602002602001820160405280156120485781602001602082028036833780820191505090505b5090506000820361205f5780945050505050612162565b600061206a88612712565b90506000816040015161207f57816000015190505b60008990505b8881141580156120955750848714155b15612154576120a381612ed1565b9250826040015161214957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146120ee57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612148578084888060010199508151811061213b5761213a614b40565b5b6020026020010181815250505b5b806001019050612085565b508583528296505050505050505b9392505050565b600860169054906101000a900460ff166121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90614c27565b60405180910390fd5b6000811180156121c9575060058111155b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614c93565b60405180910390fd5b601154816012546122199190614816565b111561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614cff565b60405180910390fd5b60135481612266611005565b6122709190614816565b11156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614924565b60405180910390fd5b600a81600c60006122c0612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123059190614816565b1115612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d90614d91565b60405180910390fd5b806015546123549190614db1565b341015612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90614e57565b60405180910390fd5b80600c60006123a3612dce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ec9190614816565b9250508190555080601260008282546124059190614816565b9250508190555061241d612417612dce565b82612ded565b50565b612428612bae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361248c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612499612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612546612bae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161258b9190613740565b60405180910390a35050565b601680546125a4906143fd565b80601f01602080910402602001604051908101604052809291908181526020018280546125d0906143fd565b801561261d5780601f106125f25761010080835404028352916020019161261d565b820191906000526020600020905b81548152906001019060200180831161260057829003601f168201915b505050505081565b61262d612bb6565b601460009054906101000a900460ff161561267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490614ec3565b60405180910390fd5b83600d8190555082600f81905550816011819055508060138190555050505050565b6126aa84848461101c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461270c576126d584848484612f05565b61270b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61271a61363d565b61272261363d565b61272a612c34565b83108061273e575061273a612efc565b8310155b1561274c5780915050612777565b61275583612ed1565b905080604001511561276a5780915050612777565b61277383613055565b9150505b919050565b606061278782612b4f565b6127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90614f55565b60405180910390fd5b60001515601960009054906101000a900460ff1615150361287357601680546127ee906143fd565b80601f016020809104026020016040519081016040528092919081815260200182805461281a906143fd565b80156128675780601f1061283c57610100808354040283529160200191612867565b820191906000526020600020905b81548152906001019060200180831161284a57829003601f168201915b505050505090506128cf565b600061287d613075565b9050600081511161289d57604051806020016040528060008152506128cb565b806128a784613107565b60186040516020016128bb93929190615034565b6040516020818303038152906040525b9150505b919050565b600860169054906101000a900460ff1681565b6128ef612bb6565b82600860146101000a81548160ff02191690831515021790555081600860156101000a81548160ff02191690831515021790555080600860166101000a81548160ff021916908315150217905550505050565b60135481565b600a6020528060005260406000206000915054906101000a900460ff1681565b612970612bb6565b80601960006101000a81548160ff02191690831515021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a4f612bb6565b60135482612a5b611005565b612a659190614816565b1115612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d90614924565b60405180910390fd5b612ab08183612ded565b5050565b612abc612bb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b22906150d7565b60405180910390fd5b612b3481612e0b565b50565b600c6020528060005260406000206000915090505481565b600081612b5a612c34565b11158015612b69575060005482105b8015612ba7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612bbe612dce565b73ffffffffffffffffffffffffffffffffffffffff16612bdc611e8e565b73ffffffffffffffffffffffffffffffffffffffff1614612c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2990615143565b60405180910390fd5b565b60006001905090565b60008082905080612c4c612c34565b11612cd257600054811015612cd15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612ccf575b60008103612cc5576004600083600190039350838152602001908152602001600020549050612c9b565b8092505050612d04565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d8c868684613267565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b600082612de38584613270565b1490509392505050565b612e078282604051806020016040528060008152506132c6565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ed961363d565b612ef56004600084815260200190815260200160002054613363565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2b612bae565b8786866040518563ffffffff1660e01b8152600401612f4d94939291906151b8565b6020604051808303816000875af1925050508015612f8957506040513d601f19601f82011682018060405250810190612f869190615219565b60015b613002573d8060008114612fb9576040519150601f19603f3d011682016040523d82523d6000602084013e612fbe565b606091505b506000815103612ffa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61305d61363d565b61306e61306983612c3d565b613363565b9050919050565b606060178054613084906143fd565b80601f01602080910402602001604051908101604052809291908181526020018280546130b0906143fd565b80156130fd5780601f106130d2576101008083540402835291602001916130fd565b820191906000526020600020905b8154815290600101906020018083116130e057829003601f168201915b5050505050905090565b60606000820361314e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613262565b600082905060005b6000821461318057808061316990615246565b915050600a8261317991906152bd565b9150613156565b60008167ffffffffffffffff81111561319c5761319b613975565b5b6040519080825280601f01601f1916602001820160405280156131ce5781602001600182028036833780820191505090505b5090505b6000851461325b576001826131e791906152ee565b9150600a856131f69190615322565b60306132029190614816565b60f81b81838151811061321857613217614b40565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561325491906152bd565b94506131d2565b8093505050505b919050565b60009392505050565b60008082905060005b84518110156132bb576132a68286838151811061329957613298614b40565b5b6020026020010151613419565b915080806132b390615246565b915050613279565b508091505092915050565b6132d08383613444565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461335e57600080549050600083820390505b6133106000868380600101945086612f05565b613346576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106132fd57816000541461335b57600080fd5b50505b505050565b61336b61363d565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008183106134315761342c8284613616565b61343c565b61343b8383613616565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036134b0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036134ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134f76000848385612d6f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061356e8361355f6000866000612d75565b6135688561362d565b17612d9d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613592578060008190555050506136116000848385612dc8565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136d5816136a0565b81146136e057600080fd5b50565b6000813590506136f2816136cc565b92915050565b60006020828403121561370e5761370d613696565b5b600061371c848285016136e3565b91505092915050565b60008115159050919050565b61373a81613725565b82525050565b60006020820190506137556000830184613731565b92915050565b6000819050919050565b61376e8161375b565b82525050565b60006020820190506137896000830184613765565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137c95780820151818401526020810190506137ae565b838111156137d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006137fa8261378f565b613804818561379a565b93506138148185602086016137ab565b61381d816137de565b840191505092915050565b6000602082019050818103600083015261384281846137ef565b905092915050565b6138538161375b565b811461385e57600080fd5b50565b6000813590506138708161384a565b92915050565b60006020828403121561388c5761388b613696565b5b600061389a84828501613861565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138ce826138a3565b9050919050565b6138de816138c3565b82525050565b60006020820190506138f960008301846138d5565b92915050565b613908816138c3565b811461391357600080fd5b50565b600081359050613925816138ff565b92915050565b6000806040838503121561394257613941613696565b5b600061395085828601613916565b925050602061396185828601613861565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139ad826137de565b810181811067ffffffffffffffff821117156139cc576139cb613975565b5b80604052505050565b60006139df61368c565b90506139eb82826139a4565b919050565b600067ffffffffffffffff821115613a0b57613a0a613975565b5b613a14826137de565b9050602081019050919050565b82818337600083830152505050565b6000613a43613a3e846139f0565b6139d5565b905082815260208101848484011115613a5f57613a5e613970565b5b613a6a848285613a21565b509392505050565b600082601f830112613a8757613a8661396b565b5b8135613a97848260208601613a30565b91505092915050565b600060208284031215613ab657613ab5613696565b5b600082013567ffffffffffffffff811115613ad457613ad361369b565b5b613ae084828501613a72565b91505092915050565b600080600060608486031215613b0257613b01613696565b5b6000613b1086828701613916565b9350506020613b2186828701613916565b9250506040613b3286828701613861565b9150509250925092565b6000819050919050565b613b4f81613b3c565b82525050565b6000602082019050613b6a6000830184613b46565b92915050565b600080fd5b600080fd5b60008083601f840112613b9057613b8f61396b565b5b8235905067ffffffffffffffff811115613bad57613bac613b70565b5b602083019150836020820283011115613bc957613bc8613b75565b5b9250929050565b60008060208385031215613be757613be6613696565b5b600083013567ffffffffffffffff811115613c0557613c0461369b565b5b613c1185828601613b7a565b92509250509250929050565b600067ffffffffffffffff821115613c3857613c37613975565b5b602082029050602081019050919050565b6000613c5c613c5784613c1d565b6139d5565b90508083825260208201905060208402830185811115613c7f57613c7e613b75565b5b835b81811015613ca85780613c948882613861565b845260208401935050602081019050613c81565b5050509392505050565b600082601f830112613cc757613cc661396b565b5b8135613cd7848260208601613c49565b91505092915050565b600060208284031215613cf657613cf5613696565b5b600082013567ffffffffffffffff811115613d1457613d1361369b565b5b613d2084828501613cb2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5e816138c3565b82525050565b600067ffffffffffffffff82169050919050565b613d8181613d64565b82525050565b613d9081613725565b82525050565b600062ffffff82169050919050565b613dae81613d96565b82525050565b608082016000820151613dca6000850182613d55565b506020820151613ddd6020850182613d78565b506040820151613df06040850182613d87565b506060820151613e036060850182613da5565b50505050565b6000613e158383613db4565b60808301905092915050565b6000602082019050919050565b6000613e3982613d29565b613e438185613d34565b9350613e4e83613d45565b8060005b83811015613e7f578151613e668882613e09565b9750613e7183613e21565b925050600181019050613e52565b5085935050505092915050565b60006020820190508181036000830152613ea68184613e2e565b905092915050565b600060208284031215613ec457613ec3613696565b5b6000613ed284828501613916565b91505092915050565b613ee481613b3c565b8114613eef57600080fd5b50565b600081359050613f0181613edb565b92915050565b600060208284031215613f1d57613f1c613696565b5b6000613f2b84828501613ef2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f698161375b565b82525050565b6000613f7b8383613f60565b60208301905092915050565b6000602082019050919050565b6000613f9f82613f34565b613fa98185613f3f565b9350613fb483613f50565b8060005b83811015613fe5578151613fcc8882613f6f565b9750613fd783613f87565b925050600181019050613fb8565b5085935050505092915050565b6000602082019050818103600083015261400c8184613f94565b905092915050565b60008060006060848603121561402d5761402c613696565b5b600061403b86828701613916565b935050602061404c86828701613861565b925050604061405d86828701613861565b9150509250925092565b61407081613725565b811461407b57600080fd5b50565b60008135905061408d81614067565b92915050565b600080604083850312156140aa576140a9613696565b5b60006140b885828601613916565b92505060206140c98582860161407e565b9150509250929050565b600080600080608085870312156140ed576140ec613696565b5b60006140fb87828801613861565b945050602061410c87828801613861565b935050604061411d87828801613861565b925050606061412e87828801613861565b91505092959194509250565b600067ffffffffffffffff82111561415557614154613975565b5b61415e826137de565b9050602081019050919050565b600061417e6141798461413a565b6139d5565b90508281526020810184848401111561419a57614199613970565b5b6141a5848285613a21565b509392505050565b600082601f8301126141c2576141c161396b565b5b81356141d284826020860161416b565b91505092915050565b600080600080608085870312156141f5576141f4613696565b5b600061420387828801613916565b945050602061421487828801613916565b935050604061422587828801613861565b925050606085013567ffffffffffffffff8111156142465761424561369b565b5b614252878288016141ad565b91505092959194509250565b6080820160008201516142746000850182613d55565b5060208201516142876020850182613d78565b50604082015161429a6040850182613d87565b5060608201516142ad6060850182613da5565b50505050565b60006080820190506142c8600083018461425e565b92915050565b6000806000606084860312156142e7576142e6613696565b5b60006142f58682870161407e565b93505060206143068682870161407e565b92505060406143178682870161407e565b9150509250925092565b60006020828403121561433757614336613696565b5b60006143458482850161407e565b91505092915050565b6000806040838503121561436557614364613696565b5b600061437385828601613916565b925050602061438485828601613916565b9150509250929050565b600080604083850312156143a5576143a4613696565b5b60006143b385828601613861565b92505060206143c485828601613916565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061441557607f821691505b602082108103614428576144276143ce565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614453565b61449a8683614453565b95508019841693508086168417925050509392505050565b6000819050919050565b60006144d76144d26144cd8461375b565b6144b2565b61375b565b9050919050565b6000819050919050565b6144f1836144bc565b6145056144fd826144de565b848454614460565b825550505050565b600090565b61451a61450d565b6145258184846144e8565b505050565b5b818110156145495761453e600082614512565b60018101905061452b565b5050565b601f82111561458e5761455f8161442e565b61456884614443565b81016020851015614577578190505b61458b61458385614443565b83018261452a565b50505b505050565b600082821c905092915050565b60006145b160001984600802614593565b1980831691505092915050565b60006145ca83836145a0565b9150826002028217905092915050565b6145e38261378f565b67ffffffffffffffff8111156145fc576145fb613975565b5b61460682546143fd565b61461182828561454d565b600060209050601f8311600181146146445760008415614632578287015190505b61463c85826145be565b8655506146a4565b601f1984166146528661442e565b60005b8281101561467a57848901518255600182019150602085019450602081019050614655565b868310156146975784890151614693601f8916826145a0565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b60006146c4826146ac565b9050919050565b60006146d6826146b9565b9050919050565b6146ee6146e9826138c3565b6146cb565b82525050565b600061470082846146dd565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e207468652077686974656c69737421600082015250565b600061474560208361379a565b91506147508261470f565b602082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f74206c6976652100600082015250565b60006147b1601f8361379a565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148218261375b565b915061482c8361375b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614861576148606147e7565b5b828201905092915050565b7f57686974656c69737420737570706c7920657863656564656421000000000000600082015250565b60006148a2601a8361379a565b91506148ad8261486c565b602082019050919050565b600060208201905081810360008301526148d181614895565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061490e60148361379a565b9150614919826148d8565b602082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f4164647265737320616c726561647920636c61696d65642077686974656c697360008201527f7420616c6c6f636174696f6e2100000000000000000000000000000000000000602082015250565b60006149a0602d8361379a565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f5468652066726565206d696e74206973206e6f74206c69766521000000000000600082015250565b6000614a0c601a8361379a565b9150614a17826149d6565b602082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b7f46726565206d696e7420737570706c7920657863656564656421000000000000600082015250565b6000614a78601a8361379a565b9150614a8382614a42565b602082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f4164647265737320616c726561647920636c61696d656420612066726565206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b6000614b0a60248361379a565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f537570706c7920697320616c7265616479206c6f636b65640000000000000000600082015250565b6000614ba560188361379a565b9150614bb082614b6f565b602082019050919050565b60006020820190508181036000830152614bd481614b98565b9050919050565b7f546865207075626c69632073616c65206973206e6f74206c6976652100000000600082015250565b6000614c11601c8361379a565b9150614c1c82614bdb565b602082019050919050565b60006020820190508181036000830152614c4081614c04565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614c7d60148361379a565b9150614c8882614c47565b602082019050919050565b60006020820190508181036000830152614cac81614c70565b9050919050565b7f50616964206d696e7420737570706c7920657863656564656421000000000000600082015250565b6000614ce9601a8361379a565b9150614cf482614cb3565b602082019050919050565b60006020820190508181036000830152614d1881614cdc565b9050919050565b7f526571756573742065786365656473206d6178696d756d206d696e7420616d6f60008201527f756e7420616c6c6f77656420706572206163636f756e74202831302900000000602082015250565b6000614d7b603c8361379a565b9150614d8682614d1f565b604082019050919050565b60006020820190508181036000830152614daa81614d6e565b9050919050565b6000614dbc8261375b565b9150614dc78361375b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e0057614dff6147e7565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614e4160138361379a565b9150614e4c82614e0b565b602082019050919050565b60006020820190508181036000830152614e7081614e34565b9050919050565b7f537570706c79206973206c6f636b656400000000000000000000000000000000600082015250565b6000614ead60108361379a565b9150614eb882614e77565b602082019050919050565b60006020820190508181036000830152614edc81614ea0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f3f602f8361379a565b9150614f4a82614ee3565b604082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b600081905092915050565b6000614f8b8261378f565b614f958185614f75565b9350614fa58185602086016137ab565b80840191505092915050565b60008154614fbe816143fd565b614fc88186614f75565b94506001821660008114614fe35760018114614ff85761502b565b60ff198316865281151582028601935061502b565b6150018561442e565b60005b8381101561502357815481890152600182019150602081019050615004565b838801955050505b50505092915050565b60006150408286614f80565b915061504c8285614f80565b91506150588284614fb1565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150c160268361379a565b91506150cc82615065565b604082019050919050565b600060208201905081810360008301526150f0816150b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061512d60208361379a565b9150615138826150f7565b602082019050919050565b6000602082019050818103600083015261515c81615120565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061518a82615163565b615194818561516e565b93506151a48185602086016137ab565b6151ad816137de565b840191505092915050565b60006080820190506151cd60008301876138d5565b6151da60208301866138d5565b6151e76040830185613765565b81810360608301526151f9818461517f565b905095945050505050565b600081519050615213816136cc565b92915050565b60006020828403121561522f5761522e613696565b5b600061523d84828501615204565b91505092915050565b60006152518261375b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615283576152826147e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152c88261375b565b91506152d38361375b565b9250826152e3576152e261528e565b5b828204905092915050565b60006152f98261375b565b91506153048361375b565b925082821015615317576153166147e7565b5b828203905092915050565b600061532d8261375b565b91506153388361375b565b9250826153485761534761528e565b5b82820690509291505056fea264697066735822122025eb67383dd37f11bddfa21c7d40651fb0841a685cf8d3a4006c09aa98d891d464736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000aa200000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000000115363726f6f6765204475636b204369747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035344430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Scrooge Duck City
Arg [1] : _tokenSymbol (string): SDC
Arg [2] : _whitelistSupply (uint256): 100
Arg [3] : _freeMintSupply (uint256): 400
Arg [4] : _mintSupply (uint256): 2222
Arg [5] : _maxSupply (uint256): 2722
Arg [6] : _cost (uint256): 15000000000000000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [4] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000aa2
Arg [6] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [8] : 5363726f6f6765204475636b2043697479000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5344430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68412:7086:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29407:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69242:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35054:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37000:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36548:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69401:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75178:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28461:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46265:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69131:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69205:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68774:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69094:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70125:943;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75391:104;;;;;;;;;;;;;:::i;:::-;;37890:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74691:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69274:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74891:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69690:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69554:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71076:663;;;;;;;;;;;;;:::i;:::-;;63633:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68668:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69524:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34843:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68629:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30086:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;74779:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75062:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74149:138;;;;;;;;;;;;;:::i;:::-;;67445:892;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69338:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35223:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64491:2505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71747:828;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37276:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69486:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74295:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38146:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63054:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73097:746;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68702:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73851:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69307:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68885:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75294:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68940:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69169:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37655:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72583:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68994:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29407:615;29492:4;29807:10;29792:25;;:11;:25;;;;:102;;;;29884:10;29869:25;;:11;:25;;;;29792:102;:179;;;;29961:10;29946:25;;:11;:25;;;;29792:179;29772:199;;29407:615;;;:::o;69242:25::-;;;;:::o;35054:100::-;35108:13;35141:5;35134:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35054:100;:::o;37000:204::-;37068:7;37093:16;37101:7;37093;:16::i;:::-;37088:64;;37118:34;;;;;;;;;;;;;;37088:64;37172:15;:24;37188:7;37172:24;;;;;;;;;;;;;;;;;;;;;37165:31;;37000:204;;;:::o;36548:386::-;36621:13;36637:16;36645:7;36637;:16::i;:::-;36621:32;;36693:5;36670:28;;:19;:17;:19::i;:::-;:28;;;36666:175;;36718:44;36735:5;36742:19;:17;:19::i;:::-;36718:16;:44::i;:::-;36713:128;;36790:35;;;;;;;;;;;;;;36713:128;36666:175;36880:2;36853:15;:24;36869:7;36853:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36918:7;36914:2;36898:28;;36907:5;36898:28;;;;;;;;;;;;36610:324;36548:386;;:::o;69401:19::-;;;;:::o;75178:108::-;13236:13;:11;:13::i;:::-;75268:10:::1;75256:9;:22;;;;;;:::i;:::-;;75178:108:::0;:::o;28461:315::-;28514:7;28742:15;:13;:15::i;:::-;28727:12;;28711:13;;:28;:46;28704:53;;28461:315;:::o;46265:2800::-;46399:27;46429;46448:7;46429:18;:27::i;:::-;46399:57;;46514:4;46473:45;;46489:19;46473:45;;;46469:86;;46527:28;;;;;;;;;;;;;;46469:86;46569:27;46598:23;46625:28;46645:7;46625:19;:28::i;:::-;46568:85;;;;46753:62;46772:15;46789:4;46795:19;:17;:19::i;:::-;46753:18;:62::i;:::-;46748:174;;46835:43;46852:4;46858:19;:17;:19::i;:::-;46835:16;:43::i;:::-;46830:92;;46887:35;;;;;;;;;;;;;;46830:92;46748:174;46953:1;46939:16;;:2;:16;;;46935:52;;46964:23;;;;;;;;;;;;;;46935:52;47000:43;47022:4;47028:2;47032:7;47041:1;47000:21;:43::i;:::-;47136:15;47133:160;;;47276:1;47255:19;47248:30;47133:160;47671:18;:24;47690:4;47671:24;;;;;;;;;;;;;;;;47669:26;;;;;;;;;;;;47740:18;:22;47759:2;47740:22;;;;;;;;;;;;;;;;47738:24;;;;;;;;;;;48062:145;48099:2;48147:45;48162:4;48168:2;48172:19;48147:14;:45::i;:::-;25689:8;48120:72;48062:18;:145::i;:::-;48033:17;:26;48051:7;48033:26;;;;;;;;;;;:174;;;;48377:1;25689:8;48327:19;:46;:51;48323:626;;48399:19;48431:1;48421:7;:11;48399:33;;48588:1;48554:17;:30;48572:11;48554:30;;;;;;;;;;;;:35;48550:384;;48692:13;;48677:11;:28;48673:242;;48872:19;48839:17;:30;48857:11;48839:30;;;;;;;;;;;:52;;;;48673:242;48550:384;48380:569;48323:626;48996:7;48992:2;48977:27;;48986:4;48977:27;;;;;;;;;;;;49015:42;49036:4;49042:2;49046:7;49055:1;49015:20;:42::i;:::-;46388:2677;;;46265:2800;;;:::o;69131:31::-;;;;:::o;69205:30::-;;;;:::o;68774:25::-;;;;:::o;69094:30::-;;;;:::o;70125:943::-;70241:12;70283;:10;:12::i;:::-;70266:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;70256:41;;;;;;70241:56;;70330:50;70349:12;;70330:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70363:10;;70375:4;70330:18;:50::i;:::-;70308:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;70469:20;;;;;;;;;;;70461:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70582:15;;70577:1;70558:16;;:20;;;;:::i;:::-;:39;;70536:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;70705:9;;70700:1;70684:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;70662:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;70796:16;:30;70813:12;:10;:12::i;:::-;70796:30;;;;;;;;;;;;;;;;;;;;;;;;;70795:31;70773:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;70945:4;70912:16;:30;70929:12;:10;:12::i;:::-;70912:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;70990:1;70960:12;:26;70973:12;:10;:12::i;:::-;70960:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;71022:1;71002:16;;:21;;;;;;;:::i;:::-;;;;;;;;71034:26;71044:12;:10;:12::i;:::-;71058:1;71034:9;:26::i;:::-;70188:880;70125:943;;:::o;75391:104::-;13236:13;:11;:13::i;:::-;75447:7:::1;:5;:7::i;:::-;75439:25;;:48;75465:21;75439:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;75391:104::o:0;37890:185::-;38028:39;38045:4;38051:2;38055:7;38028:39;;;;;;;;;;;;:16;:39::i;:::-;37890:185;;;:::o;74691:80::-;13236:13;:11;:13::i;:::-;74758:5:::1;74751:4;:12;;;;74691:80:::0;:::o;69274:26::-;;;;:::o;74891:163::-;13236:13;:11;:13::i;:::-;75028:18:::1;75008:17;:38;;;;;;:::i;:::-;;74891:163:::0;:::o;69690:28::-;;;;;;;;;;;;;:::o;69554:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71076:663::-;71164:15;;;;;;;;;;;71156:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;71266:14;;71261:1;71243:15;;:19;;;;:::i;:::-;:37;;71221:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71388:9;;71383:1;71367:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;71345:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;71479:15;:29;71495:12;:10;:12::i;:::-;71479:29;;;;;;;;;;;;;;;;;;;;;;;;;71478:30;71456:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;71617:4;71585:15;:29;71601:12;:10;:12::i;:::-;71585:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;71662:1;71632:12;:26;71645:12;:10;:12::i;:::-;71632:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;71693:1;71674:15;;:20;;;;;;;:::i;:::-;;;;;;;;71705:26;71715:12;:10;:12::i;:::-;71729:1;71705:9;:26::i;:::-;71076:663::o;63633:468::-;63722:23;63783:22;63808:8;:15;63783:40;;63838:34;63896:14;63875:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;63838:73;;63931:9;63926:125;63947:14;63942:1;:19;63926:125;;64003:32;64023:8;64032:1;64023:11;;;;;;;;:::i;:::-;;;;;;;;64003:19;:32::i;:::-;63987:10;63998:1;63987:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;63963:3;;;;;63926:125;;;;64072:10;64065:17;;;;63633:468;;;:::o;68668:27::-;;;;;;;;;;;;;:::o;69524:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34843:144::-;34907:7;34950:27;34969:7;34950:18;:27::i;:::-;34927:52;;34843:144;;;:::o;68629:32::-;;;;;;;;;;;;;:::o;30086:224::-;30150:7;30191:1;30174:19;;:5;:19;;;30170:60;;30202:28;;;;;;;;;;;;;;30170:60;24641:13;30248:18;:25;30267:5;30248:25;;;;;;;;;;;;;;;;:54;30241:61;;30086:224;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;74779:104::-;13236:13;:11;:13::i;:::-;74864:11:::1;74851:10;:24;;;;74779:104:::0;:::o;75062:108::-;13236:13;:11;:13::i;:::-;75152:10:::1;75140:9;:22;;;;;;:::i;:::-;;75062:108:::0;:::o;74149:138::-;13236:13;:11;:13::i;:::-;74208:12:::1;;;;;;;;;;;74207:13;74199:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;74275:4;74260:12;;:19;;;;;;;;;;;;;;;;;;74149:138::o:0;67445:892::-;67515:16;67569:19;67603:25;67643:22;67668:16;67678:5;67668:9;:16::i;:::-;67643:41;;67699:25;67741:14;67727:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67699:57;;67771:31;;:::i;:::-;67822:9;67834:15;:13;:15::i;:::-;67822:27;;67817:472;67866:14;67851:11;:29;67817:472;;67918:15;67931:1;67918:12;:15::i;:::-;67906:27;;67956:9;:16;;;67997:8;67952:73;68073:1;68047:28;;:9;:14;;;:28;;;68043:111;;68120:9;:14;;;68100:34;;68043:111;68197:5;68176:26;;:17;:26;;;68172:102;;68253:1;68227:8;68236:13;;;;;;68227:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;68172:102;67817:472;67882:3;;;;;67817:472;;;;68310:8;68303:15;;;;;;;67445:892;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;69338:24::-;;;;;;;;;;;;;:::o;35223:104::-;35279:13;35312:7;35305:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35223:104;:::o;64491:2505::-;64626:16;64693:4;64684:5;:13;64680:45;;64706:19;;;;;;;;;;;;;;64680:45;64740:19;64774:17;64794:14;:12;:14::i;:::-;64774:34;;64894:15;:13;:15::i;:::-;64886:5;:23;64882:87;;;64938:15;:13;:15::i;:::-;64930:23;;64882:87;65045:9;65038:4;:16;65034:73;;;65082:9;65075:16;;65034:73;65121:25;65149:16;65159:5;65149:9;:16::i;:::-;65121:44;;65343:4;65335:5;:12;65331:278;;;65368:19;65397:5;65390:4;:12;65368:34;;65439:17;65425:11;:31;65421:111;;;65501:11;65481:31;;65421:111;65349:198;65331:278;;;65592:1;65572:21;;65331:278;65623:25;65665:17;65651:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65623:60;;65723:1;65702:17;:22;65698:78;;65752:8;65745:15;;;;;;;;65698:78;65920:31;65954:26;65974:5;65954:19;:26::i;:::-;65920:60;;65995:25;66240:9;:16;;;66235:92;;66297:9;:14;;;66277:34;;66235:92;66346:9;66358:5;66346:17;;66341:478;66370:4;66365:1;:9;;:45;;;;;66393:17;66378:11;:32;;66365:45;66341:478;;;66448:15;66461:1;66448:12;:15::i;:::-;66436:27;;66486:9;:16;;;66527:8;66482:73;66603:1;66577:28;;:9;:14;;;:28;;;66573:111;;66650:9;:14;;;66630:34;;66573:111;66727:5;66706:26;;:17;:26;;;66702:102;;66783:1;66757:8;66766:13;;;;;;66757:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;66702:102;66341:478;66412:3;;;;;66341:478;;;;66921:11;66911:8;66904:29;66969:8;66962:15;;;;;;;;64491:2505;;;;;;:::o;71747:828::-;71816:11;;;;;;;;;;;71808:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;71895:1;71881:11;:15;:35;;;;;71915:1;71900:11;:16;;71881:35;71873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72003:10;;71988:11;71974;;:25;;;;:::i;:::-;:39;;71952:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;72131:9;;72116:11;72100:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;72078:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;72265:2;72250:11;72221:12;:26;72234:12;:10;:12::i;:::-;72221:26;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:46;;72199:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;72394:11;72387:4;;:18;;;;:::i;:::-;72374:9;:31;;72366:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;72472:11;72442:12;:26;72455:12;:10;:12::i;:::-;72442:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;72509:11;72494;;:26;;;;;;;:::i;:::-;;;;;;;;72531:36;72541:12;:10;:12::i;:::-;72555:11;72531:9;:36::i;:::-;71747:828;:::o;37276:308::-;37387:19;:17;:19::i;:::-;37375:31;;:8;:31;;;37371:61;;37415:17;;;;;;;;;;;;;;37371:61;37497:8;37445:18;:39;37464:19;:17;:19::i;:::-;37445:39;;;;;;;;;;;;;;;:49;37485:8;37445:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37557:8;37521:55;;37536:19;:17;:19::i;:::-;37521:55;;;37567:8;37521:55;;;;;;:::i;:::-;;;;;;;;37276:308;;:::o;69486:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74295:388::-;13236:13;:11;:13::i;:::-;74486:12:::1;;;;;;;;;;;74485:13;74477:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;74548:16;74530:15;:34;;;;74592:15;74575:14;:32;;;;74631:11;74618:10;:24;;;;74665:10;74653:9;:22;;;;74295:388:::0;;;;:::o;38146:399::-;38313:31;38326:4;38332:2;38336:7;38313:12;:31::i;:::-;38377:1;38359:2;:14;;;:19;38355:183;;38398:56;38429:4;38435:2;38439:7;38448:5;38398:30;:56::i;:::-;38393:145;;38482:40;;;;;;;;;;;;;;38393:145;38355:183;38146:399;;;;:::o;63054:420::-;63130:21;;:::i;:::-;63164:31;;:::i;:::-;63220:15;:13;:15::i;:::-;63210:7;:25;:54;;;;63250:14;:12;:14::i;:::-;63239:7;:25;;63210:54;63206:103;;;63288:9;63281:16;;;;;63206:103;63331:21;63344:7;63331:12;:21::i;:::-;63319:33;;63367:9;:16;;;63363:65;;;63407:9;63400:16;;;;;63363:65;63445:21;63458:7;63445:12;:21::i;:::-;63438:28;;;63054:420;;;;:::o;73097:746::-;73235:13;73288:17;73296:8;73288:7;:17::i;:::-;73266:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;73409:5;73397:17;;:8;;;;;;;;;;;:17;;;73393:74;;73438:17;73431:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73393:74;73479:28;73510:10;:8;:10::i;:::-;73479:41;;73582:1;73557:14;73551:28;:32;:284;;;;;;;;;;;;;;;;;73675:14;73716:19;:8;:17;:19::i;:::-;73762:9;73632:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73551:284;73531:304;;;73097:746;;;;:::o;68702:23::-;;;;;;;;;;;;;:::o;73851:290::-;13236:13;:11;:13::i;:::-;74030:21:::1;74007:20;;:44;;;;;;;;;;;;;;;;;;74080:16;74062:15;;:34;;;;;;;;;;;;;;;;;;74121:12;74107:11;;:26;;;;;;;;;;;;;;;;;;73851:290:::0;;;:::o;69307:24::-;;;;:::o;68885:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;75294:89::-;13236:13;:11;:13::i;:::-;75369:6:::1;75358:8;;:17;;;;;;;;;;;;;;;;;;75294:89:::0;:::o;68940:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;69169:29::-;;;;:::o;37655:164::-;37752:4;37776:18;:25;37795:5;37776:25;;;;;;;;;;;;;;;:35;37802:8;37776:35;;;;;;;;;;;;;;;;;;;;;;;;;37769:42;;37655:164;;;;:::o;72583:279::-;13236:13;:11;:13::i;:::-;72753:9:::1;;72738:11;72722:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;72700:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;72821:33;72831:9;72842:11;72821:9;:33::i;:::-;72583:279:::0;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;::::0;14337:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;68994:47::-;;;;;;;;;;;;;;;;;:::o;38800:273::-;38857:4;38913:7;38894:15;:13;:15::i;:::-;:26;;:66;;;;;38947:13;;38937:7;:23;38894:66;:152;;;;;39045:1;25411:8;38998:17;:26;39016:7;38998:26;;;;;;;;;;;;:43;:48;38894:152;38874:172;;38800:273;;;:::o;57361:105::-;57421:7;57448:10;57441:17;;57361:105;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;72870:101::-;72935:7;72962:1;72955:8;;72870:101;:::o;31760:1129::-;31827:7;31847:12;31862:7;31847:22;;31930:4;31911:15;:13;:15::i;:::-;:23;31907:915;;31964:13;;31957:4;:20;31953:869;;;32002:14;32019:17;:23;32037:4;32019:23;;;;;;;;;;;;32002:40;;32135:1;25411:8;32108:6;:23;:28;32104:699;;32627:113;32644:1;32634:6;:11;32627:113;;32687:17;:25;32705:6;;;;;;;32687:25;;;;;;;;;;;;32678:34;;32627:113;;;32773:6;32766:13;;;;;;32104:699;31979:843;31953:869;31907:915;32850:31;;;;;;;;;;;;;;31760:1129;;;;:::o;44601:652::-;44696:27;44725:23;44766:53;44822:15;44766:71;;45008:7;45002:4;44995:21;45043:22;45037:4;45030:36;45119:4;45113;45103:21;45080:44;;45215:19;45209:26;45190:45;;44946:300;44601:652;;;:::o;45366:645::-;45508:11;45670:15;45664:4;45660:26;45652:34;;45829:15;45818:9;45814:31;45801:44;;45976:15;45965:9;45962:30;45955:4;45944:9;45941:19;45938:55;45928:65;;45366:645;;;;;:::o;56194:159::-;;;;;:::o;54506:309::-;54641:7;54661:16;25812:3;54687:19;:40;;54661:67;;25812:3;54754:31;54765:4;54771:2;54775:9;54754:10;:31::i;:::-;54746:40;;:61;;54739:68;;;54506:309;;;;;:::o;34334:447::-;34414:14;34582:15;34575:5;34571:27;34562:36;;34756:5;34742:11;34718:22;34714:40;34711:51;34704:5;34701:62;34691:72;;34334:447;;;;:::o;57012:158::-;;;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;3716:190::-;3841:4;3894;3865:25;3878:5;3885:4;3865:12;:25::i;:::-;:33;3858:40;;3716:190;;;;;:::o;39157:104::-;39226:27;39236:2;39240:8;39226:27;;;;;;;;;;;;:9;:27::i;:::-;39157:104;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;33437:153::-;33497:21;;:::i;:::-;33538:44;33557:17;:24;33575:5;33557:24;;;;;;;;;;;;33538:18;:44::i;:::-;33531:51;;33437:153;;;:::o;28156:95::-;28203:7;28230:13;;28223:20;;28156:95;:::o;53016:716::-;53179:4;53225:2;53200:45;;;53246:19;:17;:19::i;:::-;53267:4;53273:7;53282:5;53200:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53196:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53500:1;53483:6;:13;:18;53479:235;;53529:40;;;;;;;;;;;;;;53479:235;53672:6;53666:13;53657:6;53653:2;53649:15;53642:38;53196:529;53369:54;;;53359:64;;;:6;:64;;;;53352:71;;;53016:716;;;;;;:::o;34093:158::-;34155:21;;:::i;:::-;34196:47;34215:27;34234:7;34215:18;:27::i;:::-;34196:18;:47::i;:::-;34189:54;;34093:158;;;:::o;72979:110::-;73039:13;73072:9;73065:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72979:110;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;55391:147::-;55528:6;55391:147;;;;;:::o;4583:296::-;4666:7;4686:20;4709:4;4686:27;;4729:9;4724:118;4748:5;:12;4744:1;:16;4724:118;;;4797:33;4807:12;4821:5;4827:1;4821:8;;;;;;;;:::i;:::-;;;;;;;;4797:9;:33::i;:::-;4782:48;;4762:3;;;;;:::i;:::-;;;;4724:118;;;;4859:12;4852:19;;;4583:296;;;;:::o;39677:681::-;39800:19;39806:2;39810:8;39800:5;:19::i;:::-;39879:1;39861:2;:14;;;:19;39857:483;;39901:11;39915:13;;39901:27;;39947:13;39969:8;39963:3;:14;39947:30;;39996:233;40027:62;40066:1;40070:2;40074:7;;;;;;40083:5;40027:30;:62::i;:::-;40022:167;;40125:40;;;;;;;;;;;;;;40022:167;40224:3;40216:5;:11;39996:233;;40311:3;40294:13;;:20;40290:34;;40316:8;;;40290:34;39882:458;;39857:483;39677:681;;;:::o;32983:363::-;33049:31;;:::i;:::-;33126:6;33093:9;:14;;:41;;;;;;;;;;;25295:3;33179:6;:32;;33145:9;:24;;:67;;;;;;;;;;;33269:1;25411:8;33242:6;:23;:28;;33223:9;:16;;:47;;;;;;;;;;;25812:3;33310:6;:27;;33281:9;:19;;:57;;;;;;;;;;;32983:363;;;:::o;10790:149::-;10853:7;10884:1;10880;:5;:51;;10911:20;10926:1;10929;10911:14;:20::i;:::-;10880:51;;;10888:20;10903:1;10906;10888:14;:20::i;:::-;10880:51;10873:58;;10790:149;;;;:::o;40631:1529::-;40696:20;40719:13;;40696:36;;40761:1;40747:16;;:2;:16;;;40743:48;;40772:19;;;;;;;;;;;;;;40743:48;40818:1;40806:8;:13;40802:44;;40828:18;;;;;;;;;;;;;;40802:44;40859:61;40889:1;40893:2;40897:12;40911:8;40859:21;:61::i;:::-;41402:1;24778:2;41373:1;:25;;41372:31;41360:8;:44;41334:18;:22;41353:2;41334:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41681:139;41718:2;41772:33;41795:1;41799:2;41803:1;41772:14;:33::i;:::-;41739:30;41760:8;41739:20;:30::i;:::-;:66;41681:18;:139::i;:::-;41647:17;:31;41665:12;41647:31;;;;;;;;;;;:173;;;;41837:15;41855:12;41837:30;;41882:11;41911:8;41896:12;:23;41882:37;;41934:101;41986:9;;;;;;41982:2;41961:35;;41978:1;41961:35;;;;;;;;;;;;42030:3;42020:7;:13;41934:101;;42067:3;42051:13;:19;;;;41108:974;;42092:60;42121:1;42125:2;42129:12;42143:8;42092:20;:60::i;:::-;40685:1475;40631:1529;;:::o;10947:268::-;11015:13;11122:1;11116:4;11109:15;11151:1;11145:4;11138:15;11192:4;11186;11176:21;11167:30;;10947:268;;;;:::o;36164:322::-;36234:14;36465:1;36455:8;36452:15;36427:23;36423:45;36413:55;;36164:322;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:77::-;8573:7;8602:5;8591:16;;8536:77;;;:::o;8619:118::-;8706:24;8724:5;8706:24;:::i;:::-;8701:3;8694:37;8619:118;;:::o;8743:222::-;8836:4;8874:2;8863:9;8859:18;8851:26;;8887:71;8955:1;8944:9;8940:17;8931:6;8887:71;:::i;:::-;8743:222;;;;:::o;8971:117::-;9080:1;9077;9070:12;9094:117;9203:1;9200;9193:12;9234:568;9307:8;9317:6;9367:3;9360:4;9352:6;9348:17;9344:27;9334:122;;9375:79;;:::i;:::-;9334:122;9488:6;9475:20;9465:30;;9518:18;9510:6;9507:30;9504:117;;;9540:79;;:::i;:::-;9504:117;9654:4;9646:6;9642:17;9630:29;;9708:3;9700:4;9692:6;9688:17;9678:8;9674:32;9671:41;9668:128;;;9715:79;;:::i;:::-;9668:128;9234:568;;;;;:::o;9808:559::-;9894:6;9902;9951:2;9939:9;9930:7;9926:23;9922:32;9919:119;;;9957:79;;:::i;:::-;9919:119;10105:1;10094:9;10090:17;10077:31;10135:18;10127:6;10124:30;10121:117;;;10157:79;;:::i;:::-;10121:117;10270:80;10342:7;10333:6;10322:9;10318:22;10270:80;:::i;:::-;10252:98;;;;10048:312;9808:559;;;;;:::o;10373:311::-;10450:4;10540:18;10532:6;10529:30;10526:56;;;10562:18;;:::i;:::-;10526:56;10612:4;10604:6;10600:17;10592:25;;10672:4;10666;10662:15;10654:23;;10373:311;;;:::o;10707:710::-;10803:5;10828:81;10844:64;10901:6;10844:64;:::i;:::-;10828:81;:::i;:::-;10819:90;;10929:5;10958:6;10951:5;10944:21;10992:4;10985:5;10981:16;10974:23;;11045:4;11037:6;11033:17;11025:6;11021:30;11074:3;11066:6;11063:15;11060:122;;;11093:79;;:::i;:::-;11060:122;11208:6;11191:220;11225:6;11220:3;11217:15;11191:220;;;11300:3;11329:37;11362:3;11350:10;11329:37;:::i;:::-;11324:3;11317:50;11396:4;11391:3;11387:14;11380:21;;11267:144;11251:4;11246:3;11242:14;11235:21;;11191:220;;;11195:21;10809:608;;10707:710;;;;;:::o;11440:370::-;11511:5;11560:3;11553:4;11545:6;11541:17;11537:27;11527:122;;11568:79;;:::i;:::-;11527:122;11685:6;11672:20;11710:94;11800:3;11792:6;11785:4;11777:6;11773:17;11710:94;:::i;:::-;11701:103;;11517:293;11440:370;;;;:::o;11816:539::-;11900:6;11949:2;11937:9;11928:7;11924:23;11920:32;11917:119;;;11955:79;;:::i;:::-;11917:119;12103:1;12092:9;12088:17;12075:31;12133:18;12125:6;12122:30;12119:117;;;12155:79;;:::i;:::-;12119:117;12260:78;12330:7;12321:6;12310:9;12306:22;12260:78;:::i;:::-;12250:88;;12046:302;11816:539;;;;:::o;12361:145::-;12459:6;12493:5;12487:12;12477:22;;12361:145;;;:::o;12512:215::-;12642:11;12676:6;12671:3;12664:19;12716:4;12711:3;12707:14;12692:29;;12512:215;;;;:::o;12733:163::-;12831:4;12854:3;12846:11;;12884:4;12879:3;12875:14;12867:22;;12733:163;;;:::o;12902:108::-;12979:24;12997:5;12979:24;:::i;:::-;12974:3;12967:37;12902:108;;:::o;13016:101::-;13052:7;13092:18;13085:5;13081:30;13070:41;;13016:101;;;:::o;13123:105::-;13198:23;13215:5;13198:23;:::i;:::-;13193:3;13186:36;13123:105;;:::o;13234:99::-;13305:21;13320:5;13305:21;:::i;:::-;13300:3;13293:34;13234:99;;:::o;13339:91::-;13375:7;13415:8;13408:5;13404:20;13393:31;;13339:91;;;:::o;13436:105::-;13511:23;13528:5;13511:23;:::i;:::-;13506:3;13499:36;13436:105;;:::o;13619:864::-;13768:4;13763:3;13759:14;13855:4;13848:5;13844:16;13838:23;13874:63;13931:4;13926:3;13922:14;13908:12;13874:63;:::i;:::-;13783:164;14039:4;14032:5;14028:16;14022:23;14058:61;14113:4;14108:3;14104:14;14090:12;14058:61;:::i;:::-;13957:172;14213:4;14206:5;14202:16;14196:23;14232:57;14283:4;14278:3;14274:14;14260:12;14232:57;:::i;:::-;14139:160;14386:4;14379:5;14375:16;14369:23;14405:61;14460:4;14455:3;14451:14;14437:12;14405:61;:::i;:::-;14309:167;13737:746;13619:864;;:::o;14489:303::-;14620:10;14641:108;14745:3;14737:6;14641:108;:::i;:::-;14781:4;14776:3;14772:14;14758:28;;14489:303;;;;:::o;14798:144::-;14899:4;14931;14926:3;14922:14;14914:22;;14798:144;;;:::o;15024:980::-;15205:3;15234:85;15313:5;15234:85;:::i;:::-;15335:117;15445:6;15440:3;15335:117;:::i;:::-;15328:124;;15476:87;15557:5;15476:87;:::i;:::-;15586:7;15617:1;15602:377;15627:6;15624:1;15621:13;15602:377;;;15703:6;15697:13;15730:125;15851:3;15836:13;15730:125;:::i;:::-;15723:132;;15878:91;15962:6;15878:91;:::i;:::-;15868:101;;15662:317;15649:1;15646;15642:9;15637:14;;15602:377;;;15606:14;15995:3;15988:10;;15210:794;;;15024:980;;;;:::o;16010:497::-;16215:4;16253:2;16242:9;16238:18;16230:26;;16302:9;16296:4;16292:20;16288:1;16277:9;16273:17;16266:47;16330:170;16495:4;16486:6;16330:170;:::i;:::-;16322:178;;16010:497;;;;:::o;16513:329::-;16572:6;16621:2;16609:9;16600:7;16596:23;16592:32;16589:119;;;16627:79;;:::i;:::-;16589:119;16747:1;16772:53;16817:7;16808:6;16797:9;16793:22;16772:53;:::i;:::-;16762:63;;16718:117;16513:329;;;;:::o;16848:122::-;16921:24;16939:5;16921:24;:::i;:::-;16914:5;16911:35;16901:63;;16960:1;16957;16950:12;16901:63;16848:122;:::o;16976:139::-;17022:5;17060:6;17047:20;17038:29;;17076:33;17103:5;17076:33;:::i;:::-;16976:139;;;;:::o;17121:329::-;17180:6;17229:2;17217:9;17208:7;17204:23;17200:32;17197:119;;;17235:79;;:::i;:::-;17197:119;17355:1;17380:53;17425:7;17416:6;17405:9;17401:22;17380:53;:::i;:::-;17370:63;;17326:117;17121:329;;;;:::o;17456:114::-;17523:6;17557:5;17551:12;17541:22;;17456:114;;;:::o;17576:184::-;17675:11;17709:6;17704:3;17697:19;17749:4;17744:3;17740:14;17725:29;;17576:184;;;;:::o;17766:132::-;17833:4;17856:3;17848:11;;17886:4;17881:3;17877:14;17869:22;;17766:132;;;:::o;17904:108::-;17981:24;17999:5;17981:24;:::i;:::-;17976:3;17969:37;17904:108;;:::o;18018:179::-;18087:10;18108:46;18150:3;18142:6;18108:46;:::i;:::-;18186:4;18181:3;18177:14;18163:28;;18018:179;;;;:::o;18203:113::-;18273:4;18305;18300:3;18296:14;18288:22;;18203:113;;;:::o;18352:732::-;18471:3;18500:54;18548:5;18500:54;:::i;:::-;18570:86;18649:6;18644:3;18570:86;:::i;:::-;18563:93;;18680:56;18730:5;18680:56;:::i;:::-;18759:7;18790:1;18775:284;18800:6;18797:1;18794:13;18775:284;;;18876:6;18870:13;18903:63;18962:3;18947:13;18903:63;:::i;:::-;18896:70;;18989:60;19042:6;18989:60;:::i;:::-;18979:70;;18835:224;18822:1;18819;18815:9;18810:14;;18775:284;;;18779:14;19075:3;19068:10;;18476:608;;;18352:732;;;;:::o;19090:373::-;19233:4;19271:2;19260:9;19256:18;19248:26;;19320:9;19314:4;19310:20;19306:1;19295:9;19291:17;19284:47;19348:108;19451:4;19442:6;19348:108;:::i;:::-;19340:116;;19090:373;;;;:::o;19469:619::-;19546:6;19554;19562;19611:2;19599:9;19590:7;19586:23;19582:32;19579:119;;;19617:79;;:::i;:::-;19579:119;19737:1;19762:53;19807:7;19798:6;19787:9;19783:22;19762:53;:::i;:::-;19752:63;;19708:117;19864:2;19890:53;19935:7;19926:6;19915:9;19911:22;19890:53;:::i;:::-;19880:63;;19835:118;19992:2;20018:53;20063:7;20054:6;20043:9;20039:22;20018:53;:::i;:::-;20008:63;;19963:118;19469:619;;;;;:::o;20094:116::-;20164:21;20179:5;20164:21;:::i;:::-;20157:5;20154:32;20144:60;;20200:1;20197;20190:12;20144:60;20094:116;:::o;20216:133::-;20259:5;20297:6;20284:20;20275:29;;20313:30;20337:5;20313:30;:::i;:::-;20216:133;;;;:::o;20355:468::-;20420:6;20428;20477:2;20465:9;20456:7;20452:23;20448:32;20445:119;;;20483:79;;:::i;:::-;20445:119;20603:1;20628:53;20673:7;20664:6;20653:9;20649:22;20628:53;:::i;:::-;20618:63;;20574:117;20730:2;20756:50;20798:7;20789:6;20778:9;20774:22;20756:50;:::i;:::-;20746:60;;20701:115;20355:468;;;;;:::o;20829:765::-;20915:6;20923;20931;20939;20988:3;20976:9;20967:7;20963:23;20959:33;20956:120;;;20995:79;;:::i;:::-;20956:120;21115:1;21140:53;21185:7;21176:6;21165:9;21161:22;21140:53;:::i;:::-;21130:63;;21086:117;21242:2;21268:53;21313:7;21304:6;21293:9;21289:22;21268:53;:::i;:::-;21258:63;;21213:118;21370:2;21396:53;21441:7;21432:6;21421:9;21417:22;21396:53;:::i;:::-;21386:63;;21341:118;21498:2;21524:53;21569:7;21560:6;21549:9;21545:22;21524:53;:::i;:::-;21514:63;;21469:118;20829:765;;;;;;;:::o;21600:307::-;21661:4;21751:18;21743:6;21740:30;21737:56;;;21773:18;;:::i;:::-;21737:56;21811:29;21833:6;21811:29;:::i;:::-;21803:37;;21895:4;21889;21885:15;21877:23;;21600:307;;;:::o;21913:410::-;21990:5;22015:65;22031:48;22072:6;22031:48;:::i;:::-;22015:65;:::i;:::-;22006:74;;22103:6;22096:5;22089:21;22141:4;22134:5;22130:16;22179:3;22170:6;22165:3;22161:16;22158:25;22155:112;;;22186:79;;:::i;:::-;22155:112;22276:41;22310:6;22305:3;22300;22276:41;:::i;:::-;21996:327;21913:410;;;;;:::o;22342:338::-;22397:5;22446:3;22439:4;22431:6;22427:17;22423:27;22413:122;;22454:79;;:::i;:::-;22413:122;22571:6;22558:20;22596:78;22670:3;22662:6;22655:4;22647:6;22643:17;22596:78;:::i;:::-;22587:87;;22403:277;22342:338;;;;:::o;22686:943::-;22781:6;22789;22797;22805;22854:3;22842:9;22833:7;22829:23;22825:33;22822:120;;;22861:79;;:::i;:::-;22822:120;22981:1;23006:53;23051:7;23042:6;23031:9;23027:22;23006:53;:::i;:::-;22996:63;;22952:117;23108:2;23134:53;23179:7;23170:6;23159:9;23155:22;23134:53;:::i;:::-;23124:63;;23079:118;23236:2;23262:53;23307:7;23298:6;23287:9;23283:22;23262:53;:::i;:::-;23252:63;;23207:118;23392:2;23381:9;23377:18;23364:32;23423:18;23415:6;23412:30;23409:117;;;23445:79;;:::i;:::-;23409:117;23550:62;23604:7;23595:6;23584:9;23580:22;23550:62;:::i;:::-;23540:72;;23335:287;22686:943;;;;;;;:::o;23707:874::-;23866:4;23861:3;23857:14;23953:4;23946:5;23942:16;23936:23;23972:63;24029:4;24024:3;24020:14;24006:12;23972:63;:::i;:::-;23881:164;24137:4;24130:5;24126:16;24120:23;24156:61;24211:4;24206:3;24202:14;24188:12;24156:61;:::i;:::-;24055:172;24311:4;24304:5;24300:16;24294:23;24330:57;24381:4;24376:3;24372:14;24358:12;24330:57;:::i;:::-;24237:160;24484:4;24477:5;24473:16;24467:23;24503:61;24558:4;24553:3;24549:14;24535:12;24503:61;:::i;:::-;24407:167;23835:746;23707:874;;:::o;24587:347::-;24742:4;24780:3;24769:9;24765:19;24757:27;;24794:133;24924:1;24913:9;24909:17;24900:6;24794:133;:::i;:::-;24587:347;;;;:::o;24940:601::-;25008:6;25016;25024;25073:2;25061:9;25052:7;25048:23;25044:32;25041:119;;;25079:79;;:::i;:::-;25041:119;25199:1;25224:50;25266:7;25257:6;25246:9;25242:22;25224:50;:::i;:::-;25214:60;;25170:114;25323:2;25349:50;25391:7;25382:6;25371:9;25367:22;25349:50;:::i;:::-;25339:60;;25294:115;25448:2;25474:50;25516:7;25507:6;25496:9;25492:22;25474:50;:::i;:::-;25464:60;;25419:115;24940:601;;;;;:::o;25547:323::-;25603:6;25652:2;25640:9;25631:7;25627:23;25623:32;25620:119;;;25658:79;;:::i;:::-;25620:119;25778:1;25803:50;25845:7;25836:6;25825:9;25821:22;25803:50;:::i;:::-;25793:60;;25749:114;25547:323;;;;:::o;25876:474::-;25944:6;25952;26001:2;25989:9;25980:7;25976:23;25972:32;25969:119;;;26007:79;;:::i;:::-;25969:119;26127:1;26152:53;26197:7;26188:6;26177:9;26173:22;26152:53;:::i;:::-;26142:63;;26098:117;26254:2;26280:53;26325:7;26316:6;26305:9;26301:22;26280:53;:::i;:::-;26270:63;;26225:118;25876:474;;;;;:::o;26356:::-;26424:6;26432;26481:2;26469:9;26460:7;26456:23;26452:32;26449:119;;;26487:79;;:::i;:::-;26449:119;26607:1;26632:53;26677:7;26668:6;26657:9;26653:22;26632:53;:::i;:::-;26622:63;;26578:117;26734:2;26760:53;26805:7;26796:6;26785:9;26781:22;26760:53;:::i;:::-;26750:63;;26705:118;26356:474;;;;;:::o;26836:180::-;26884:77;26881:1;26874:88;26981:4;26978:1;26971:15;27005:4;27002:1;26995:15;27022:320;27066:6;27103:1;27097:4;27093:12;27083:22;;27150:1;27144:4;27140:12;27171:18;27161:81;;27227:4;27219:6;27215:17;27205:27;;27161:81;27289:2;27281:6;27278:14;27258:18;27255:38;27252:84;;27308:18;;:::i;:::-;27252:84;27073:269;27022:320;;;:::o;27348:141::-;27397:4;27420:3;27412:11;;27443:3;27440:1;27433:14;27477:4;27474:1;27464:18;27456:26;;27348:141;;;:::o;27495:93::-;27532:6;27579:2;27574;27567:5;27563:14;27559:23;27549:33;;27495:93;;;:::o;27594:107::-;27638:8;27688:5;27682:4;27678:16;27657:37;;27594:107;;;;:::o;27707:393::-;27776:6;27826:1;27814:10;27810:18;27849:97;27879:66;27868:9;27849:97;:::i;:::-;27967:39;27997:8;27986:9;27967:39;:::i;:::-;27955:51;;28039:4;28035:9;28028:5;28024:21;28015:30;;28088:4;28078:8;28074:19;28067:5;28064:30;28054:40;;27783:317;;27707:393;;;;;:::o;28106:60::-;28134:3;28155:5;28148:12;;28106:60;;;:::o;28172:142::-;28222:9;28255:53;28273:34;28282:24;28300:5;28282:24;:::i;:::-;28273:34;:::i;:::-;28255:53;:::i;:::-;28242:66;;28172:142;;;:::o;28320:75::-;28363:3;28384:5;28377:12;;28320:75;;;:::o;28401:269::-;28511:39;28542:7;28511:39;:::i;:::-;28572:91;28621:41;28645:16;28621:41;:::i;:::-;28613:6;28606:4;28600:11;28572:91;:::i;:::-;28566:4;28559:105;28477:193;28401:269;;;:::o;28676:73::-;28721:3;28676:73;:::o;28755:189::-;28832:32;;:::i;:::-;28873:65;28931:6;28923;28917:4;28873:65;:::i;:::-;28808:136;28755:189;;:::o;28950:186::-;29010:120;29027:3;29020:5;29017:14;29010:120;;;29081:39;29118:1;29111:5;29081:39;:::i;:::-;29054:1;29047:5;29043:13;29034:22;;29010:120;;;28950:186;;:::o;29142:543::-;29243:2;29238:3;29235:11;29232:446;;;29277:38;29309:5;29277:38;:::i;:::-;29361:29;29379:10;29361:29;:::i;:::-;29351:8;29347:44;29544:2;29532:10;29529:18;29526:49;;;29565:8;29550:23;;29526:49;29588:80;29644:22;29662:3;29644:22;:::i;:::-;29634:8;29630:37;29617:11;29588:80;:::i;:::-;29247:431;;29232:446;29142:543;;;:::o;29691:117::-;29745:8;29795:5;29789:4;29785:16;29764:37;;29691:117;;;;:::o;29814:169::-;29858:6;29891:51;29939:1;29935:6;29927:5;29924:1;29920:13;29891:51;:::i;:::-;29887:56;29972:4;29966;29962:15;29952:25;;29865:118;29814:169;;;;:::o;29988:295::-;30064:4;30210:29;30235:3;30229:4;30210:29;:::i;:::-;30202:37;;30272:3;30269:1;30265:11;30259:4;30256:21;30248:29;;29988:295;;;;:::o;30288:1395::-;30405:37;30438:3;30405:37;:::i;:::-;30507:18;30499:6;30496:30;30493:56;;;30529:18;;:::i;:::-;30493:56;30573:38;30605:4;30599:11;30573:38;:::i;:::-;30658:67;30718:6;30710;30704:4;30658:67;:::i;:::-;30752:1;30776:4;30763:17;;30808:2;30800:6;30797:14;30825:1;30820:618;;;;31482:1;31499:6;31496:77;;;31548:9;31543:3;31539:19;31533:26;31524:35;;31496:77;31599:67;31659:6;31652:5;31599:67;:::i;:::-;31593:4;31586:81;31455:222;30790:887;;30820:618;30872:4;30868:9;30860:6;30856:22;30906:37;30938:4;30906:37;:::i;:::-;30965:1;30979:208;30993:7;30990:1;30987:14;30979:208;;;31072:9;31067:3;31063:19;31057:26;31049:6;31042:42;31123:1;31115:6;31111:14;31101:24;;31170:2;31159:9;31155:18;31142:31;;31016:4;31013:1;31009:12;31004:17;;30979:208;;;31215:6;31206:7;31203:19;31200:179;;;31273:9;31268:3;31264:19;31258:26;31316:48;31358:4;31350:6;31346:17;31335:9;31316:48;:::i;:::-;31308:6;31301:64;31223:156;31200:179;31425:1;31421;31413:6;31409:14;31405:22;31399:4;31392:36;30827:611;;;30790:887;;30380:1303;;;30288:1395;;:::o;31689:94::-;31722:8;31770:5;31766:2;31762:14;31741:35;;31689:94;;;:::o;31789:::-;31828:7;31857:20;31871:5;31857:20;:::i;:::-;31846:31;;31789:94;;;:::o;31889:100::-;31928:7;31957:26;31977:5;31957:26;:::i;:::-;31946:37;;31889:100;;;:::o;31995:157::-;32100:45;32120:24;32138:5;32120:24;:::i;:::-;32100:45;:::i;:::-;32095:3;32088:58;31995:157;;:::o;32158:256::-;32270:3;32285:75;32356:3;32347:6;32285:75;:::i;:::-;32385:2;32380:3;32376:12;32369:19;;32405:3;32398:10;;32158:256;;;;:::o;32420:182::-;32560:34;32556:1;32548:6;32544:14;32537:58;32420:182;:::o;32608:366::-;32750:3;32771:67;32835:2;32830:3;32771:67;:::i;:::-;32764:74;;32847:93;32936:3;32847:93;:::i;:::-;32965:2;32960:3;32956:12;32949:19;;32608:366;;;:::o;32980:419::-;33146:4;33184:2;33173:9;33169:18;33161:26;;33233:9;33227:4;33223:20;33219:1;33208:9;33204:17;33197:47;33261:131;33387:4;33261:131;:::i;:::-;33253:139;;32980:419;;;:::o;33405:181::-;33545:33;33541:1;33533:6;33529:14;33522:57;33405:181;:::o;33592:366::-;33734:3;33755:67;33819:2;33814:3;33755:67;:::i;:::-;33748:74;;33831:93;33920:3;33831:93;:::i;:::-;33949:2;33944:3;33940:12;33933:19;;33592:366;;;:::o;33964:419::-;34130:4;34168:2;34157:9;34153:18;34145:26;;34217:9;34211:4;34207:20;34203:1;34192:9;34188:17;34181:47;34245:131;34371:4;34245:131;:::i;:::-;34237:139;;33964:419;;;:::o;34389:180::-;34437:77;34434:1;34427:88;34534:4;34531:1;34524:15;34558:4;34555:1;34548:15;34575:305;34615:3;34634:20;34652:1;34634:20;:::i;:::-;34629:25;;34668:20;34686:1;34668:20;:::i;:::-;34663:25;;34822:1;34754:66;34750:74;34747:1;34744:81;34741:107;;;34828:18;;:::i;:::-;34741:107;34872:1;34869;34865:9;34858:16;;34575:305;;;;:::o;34886:176::-;35026:28;35022:1;35014:6;35010:14;35003:52;34886:176;:::o;35068:366::-;35210:3;35231:67;35295:2;35290:3;35231:67;:::i;:::-;35224:74;;35307:93;35396:3;35307:93;:::i;:::-;35425:2;35420:3;35416:12;35409:19;;35068:366;;;:::o;35440:419::-;35606:4;35644:2;35633:9;35629:18;35621:26;;35693:9;35687:4;35683:20;35679:1;35668:9;35664:17;35657:47;35721:131;35847:4;35721:131;:::i;:::-;35713:139;;35440:419;;;:::o;35865:170::-;36005:22;36001:1;35993:6;35989:14;35982:46;35865:170;:::o;36041:366::-;36183:3;36204:67;36268:2;36263:3;36204:67;:::i;:::-;36197:74;;36280:93;36369:3;36280:93;:::i;:::-;36398:2;36393:3;36389:12;36382:19;;36041:366;;;:::o;36413:419::-;36579:4;36617:2;36606:9;36602:18;36594:26;;36666:9;36660:4;36656:20;36652:1;36641:9;36637:17;36630:47;36694:131;36820:4;36694:131;:::i;:::-;36686:139;;36413:419;;;:::o;36838:232::-;36978:34;36974:1;36966:6;36962:14;36955:58;37047:15;37042:2;37034:6;37030:15;37023:40;36838:232;:::o;37076:366::-;37218:3;37239:67;37303:2;37298:3;37239:67;:::i;:::-;37232:74;;37315:93;37404:3;37315:93;:::i;:::-;37433:2;37428:3;37424:12;37417:19;;37076:366;;;:::o;37448:419::-;37614:4;37652:2;37641:9;37637:18;37629:26;;37701:9;37695:4;37691:20;37687:1;37676:9;37672:17;37665:47;37729:131;37855:4;37729:131;:::i;:::-;37721:139;;37448:419;;;:::o;37873:176::-;38013:28;38009:1;38001:6;37997:14;37990:52;37873:176;:::o;38055:366::-;38197:3;38218:67;38282:2;38277:3;38218:67;:::i;:::-;38211:74;;38294:93;38383:3;38294:93;:::i;:::-;38412:2;38407:3;38403:12;38396:19;;38055:366;;;:::o;38427:419::-;38593:4;38631:2;38620:9;38616:18;38608:26;;38680:9;38674:4;38670:20;38666:1;38655:9;38651:17;38644:47;38708:131;38834:4;38708:131;:::i;:::-;38700:139;;38427:419;;;:::o;38852:176::-;38992:28;38988:1;38980:6;38976:14;38969:52;38852:176;:::o;39034:366::-;39176:3;39197:67;39261:2;39256:3;39197:67;:::i;:::-;39190:74;;39273:93;39362:3;39273:93;:::i;:::-;39391:2;39386:3;39382:12;39375:19;;39034:366;;;:::o;39406:419::-;39572:4;39610:2;39599:9;39595:18;39587:26;;39659:9;39653:4;39649:20;39645:1;39634:9;39630:17;39623:47;39687:131;39813:4;39687:131;:::i;:::-;39679:139;;39406:419;;;:::o;39831:223::-;39971:34;39967:1;39959:6;39955:14;39948:58;40040:6;40035:2;40027:6;40023:15;40016:31;39831:223;:::o;40060:366::-;40202:3;40223:67;40287:2;40282:3;40223:67;:::i;:::-;40216:74;;40299:93;40388:3;40299:93;:::i;:::-;40417:2;40412:3;40408:12;40401:19;;40060:366;;;:::o;40432:419::-;40598:4;40636:2;40625:9;40621:18;40613:26;;40685:9;40679:4;40675:20;40671:1;40660:9;40656:17;40649:47;40713:131;40839:4;40713:131;:::i;:::-;40705:139;;40432:419;;;:::o;40857:180::-;40905:77;40902:1;40895:88;41002:4;40999:1;40992:15;41026:4;41023:1;41016:15;41043:174;41183:26;41179:1;41171:6;41167:14;41160:50;41043:174;:::o;41223:366::-;41365:3;41386:67;41450:2;41445:3;41386:67;:::i;:::-;41379:74;;41462:93;41551:3;41462:93;:::i;:::-;41580:2;41575:3;41571:12;41564:19;;41223:366;;;:::o;41595:419::-;41761:4;41799:2;41788:9;41784:18;41776:26;;41848:9;41842:4;41838:20;41834:1;41823:9;41819:17;41812:47;41876:131;42002:4;41876:131;:::i;:::-;41868:139;;41595:419;;;:::o;42020:178::-;42160:30;42156:1;42148:6;42144:14;42137:54;42020:178;:::o;42204:366::-;42346:3;42367:67;42431:2;42426:3;42367:67;:::i;:::-;42360:74;;42443:93;42532:3;42443:93;:::i;:::-;42561:2;42556:3;42552:12;42545:19;;42204:366;;;:::o;42576:419::-;42742:4;42780:2;42769:9;42765:18;42757:26;;42829:9;42823:4;42819:20;42815:1;42804:9;42800:17;42793:47;42857:131;42983:4;42857:131;:::i;:::-;42849:139;;42576:419;;;:::o;43001:170::-;43141:22;43137:1;43129:6;43125:14;43118:46;43001:170;:::o;43177:366::-;43319:3;43340:67;43404:2;43399:3;43340:67;:::i;:::-;43333:74;;43416:93;43505:3;43416:93;:::i;:::-;43534:2;43529:3;43525:12;43518:19;;43177:366;;;:::o;43549:419::-;43715:4;43753:2;43742:9;43738:18;43730:26;;43802:9;43796:4;43792:20;43788:1;43777:9;43773:17;43766:47;43830:131;43956:4;43830:131;:::i;:::-;43822:139;;43549:419;;;:::o;43974:176::-;44114:28;44110:1;44102:6;44098:14;44091:52;43974:176;:::o;44156:366::-;44298:3;44319:67;44383:2;44378:3;44319:67;:::i;:::-;44312:74;;44395:93;44484:3;44395:93;:::i;:::-;44513:2;44508:3;44504:12;44497:19;;44156:366;;;:::o;44528:419::-;44694:4;44732:2;44721:9;44717:18;44709:26;;44781:9;44775:4;44771:20;44767:1;44756:9;44752:17;44745:47;44809:131;44935:4;44809:131;:::i;:::-;44801:139;;44528:419;;;:::o;44953:247::-;45093:34;45089:1;45081:6;45077:14;45070:58;45162:30;45157:2;45149:6;45145:15;45138:55;44953:247;:::o;45206:366::-;45348:3;45369:67;45433:2;45428:3;45369:67;:::i;:::-;45362:74;;45445:93;45534:3;45445:93;:::i;:::-;45563:2;45558:3;45554:12;45547:19;;45206:366;;;:::o;45578:419::-;45744:4;45782:2;45771:9;45767:18;45759:26;;45831:9;45825:4;45821:20;45817:1;45806:9;45802:17;45795:47;45859:131;45985:4;45859:131;:::i;:::-;45851:139;;45578:419;;;:::o;46003:348::-;46043:7;46066:20;46084:1;46066:20;:::i;:::-;46061:25;;46100:20;46118:1;46100:20;:::i;:::-;46095:25;;46288:1;46220:66;46216:74;46213:1;46210:81;46205:1;46198:9;46191:17;46187:105;46184:131;;;46295:18;;:::i;:::-;46184:131;46343:1;46340;46336:9;46325:20;;46003:348;;;;:::o;46357:169::-;46497:21;46493:1;46485:6;46481:14;46474:45;46357:169;:::o;46532:366::-;46674:3;46695:67;46759:2;46754:3;46695:67;:::i;:::-;46688:74;;46771:93;46860:3;46771:93;:::i;:::-;46889:2;46884:3;46880:12;46873:19;;46532:366;;;:::o;46904:419::-;47070:4;47108:2;47097:9;47093:18;47085:26;;47157:9;47151:4;47147:20;47143:1;47132:9;47128:17;47121:47;47185:131;47311:4;47185:131;:::i;:::-;47177:139;;46904:419;;;:::o;47329:166::-;47469:18;47465:1;47457:6;47453:14;47446:42;47329:166;:::o;47501:366::-;47643:3;47664:67;47728:2;47723:3;47664:67;:::i;:::-;47657:74;;47740:93;47829:3;47740:93;:::i;:::-;47858:2;47853:3;47849:12;47842:19;;47501:366;;;:::o;47873:419::-;48039:4;48077:2;48066:9;48062:18;48054:26;;48126:9;48120:4;48116:20;48112:1;48101:9;48097:17;48090:47;48154:131;48280:4;48154:131;:::i;:::-;48146:139;;47873:419;;;:::o;48298:234::-;48438:34;48434:1;48426:6;48422:14;48415:58;48507:17;48502:2;48494:6;48490:15;48483:42;48298:234;:::o;48538:366::-;48680:3;48701:67;48765:2;48760:3;48701:67;:::i;:::-;48694:74;;48777:93;48866:3;48777:93;:::i;:::-;48895:2;48890:3;48886:12;48879:19;;48538:366;;;:::o;48910:419::-;49076:4;49114:2;49103:9;49099:18;49091:26;;49163:9;49157:4;49153:20;49149:1;49138:9;49134:17;49127:47;49191:131;49317:4;49191:131;:::i;:::-;49183:139;;48910:419;;;:::o;49335:148::-;49437:11;49474:3;49459:18;;49335:148;;;;:::o;49489:377::-;49595:3;49623:39;49656:5;49623:39;:::i;:::-;49678:89;49760:6;49755:3;49678:89;:::i;:::-;49671:96;;49776:52;49821:6;49816:3;49809:4;49802:5;49798:16;49776:52;:::i;:::-;49853:6;49848:3;49844:16;49837:23;;49599:267;49489:377;;;;:::o;49896:874::-;49999:3;50036:5;50030:12;50065:36;50091:9;50065:36;:::i;:::-;50117:89;50199:6;50194:3;50117:89;:::i;:::-;50110:96;;50237:1;50226:9;50222:17;50253:1;50248:166;;;;50428:1;50423:341;;;;50215:549;;50248:166;50332:4;50328:9;50317;50313:25;50308:3;50301:38;50394:6;50387:14;50380:22;50372:6;50368:35;50363:3;50359:45;50352:52;;50248:166;;50423:341;50490:38;50522:5;50490:38;:::i;:::-;50550:1;50564:154;50578:6;50575:1;50572:13;50564:154;;;50652:7;50646:14;50642:1;50637:3;50633:11;50626:35;50702:1;50693:7;50689:15;50678:26;;50600:4;50597:1;50593:12;50588:17;;50564:154;;;50747:6;50742:3;50738:16;50731:23;;50430:334;;50215:549;;50003:767;;49896:874;;;;:::o;50776:589::-;51001:3;51023:95;51114:3;51105:6;51023:95;:::i;:::-;51016:102;;51135:95;51226:3;51217:6;51135:95;:::i;:::-;51128:102;;51247:92;51335:3;51326:6;51247:92;:::i;:::-;51240:99;;51356:3;51349:10;;50776:589;;;;;;:::o;51371:225::-;51511:34;51507:1;51499:6;51495:14;51488:58;51580:8;51575:2;51567:6;51563:15;51556:33;51371:225;:::o;51602:366::-;51744:3;51765:67;51829:2;51824:3;51765:67;:::i;:::-;51758:74;;51841:93;51930:3;51841:93;:::i;:::-;51959:2;51954:3;51950:12;51943:19;;51602:366;;;:::o;51974:419::-;52140:4;52178:2;52167:9;52163:18;52155:26;;52227:9;52221:4;52217:20;52213:1;52202:9;52198:17;52191:47;52255:131;52381:4;52255:131;:::i;:::-;52247:139;;51974:419;;;:::o;52399:182::-;52539:34;52535:1;52527:6;52523:14;52516:58;52399:182;:::o;52587:366::-;52729:3;52750:67;52814:2;52809:3;52750:67;:::i;:::-;52743:74;;52826:93;52915:3;52826:93;:::i;:::-;52944:2;52939:3;52935:12;52928:19;;52587:366;;;:::o;52959:419::-;53125:4;53163:2;53152:9;53148:18;53140:26;;53212:9;53206:4;53202:20;53198:1;53187:9;53183:17;53176:47;53240:131;53366:4;53240:131;:::i;:::-;53232:139;;52959:419;;;:::o;53384:98::-;53435:6;53469:5;53463:12;53453:22;;53384:98;;;:::o;53488:168::-;53571:11;53605:6;53600:3;53593:19;53645:4;53640:3;53636:14;53621:29;;53488:168;;;;:::o;53662:360::-;53748:3;53776:38;53808:5;53776:38;:::i;:::-;53830:70;53893:6;53888:3;53830:70;:::i;:::-;53823:77;;53909:52;53954:6;53949:3;53942:4;53935:5;53931:16;53909:52;:::i;:::-;53986:29;54008:6;53986:29;:::i;:::-;53981:3;53977:39;53970:46;;53752:270;53662:360;;;;:::o;54028:640::-;54223:4;54261:3;54250:9;54246:19;54238:27;;54275:71;54343:1;54332:9;54328:17;54319:6;54275:71;:::i;:::-;54356:72;54424:2;54413:9;54409:18;54400:6;54356:72;:::i;:::-;54438;54506:2;54495:9;54491:18;54482:6;54438:72;:::i;:::-;54557:9;54551:4;54547:20;54542:2;54531:9;54527:18;54520:48;54585:76;54656:4;54647:6;54585:76;:::i;:::-;54577:84;;54028:640;;;;;;;:::o;54674:141::-;54730:5;54761:6;54755:13;54746:22;;54777:32;54803:5;54777:32;:::i;:::-;54674:141;;;;:::o;54821:349::-;54890:6;54939:2;54927:9;54918:7;54914:23;54910:32;54907:119;;;54945:79;;:::i;:::-;54907:119;55065:1;55090:63;55145:7;55136:6;55125:9;55121:22;55090:63;:::i;:::-;55080:73;;55036:127;54821:349;;;;:::o;55176:233::-;55215:3;55238:24;55256:5;55238:24;:::i;:::-;55229:33;;55284:66;55277:5;55274:77;55271:103;;55354:18;;:::i;:::-;55271:103;55401:1;55394:5;55390:13;55383:20;;55176:233;;;:::o;55415:180::-;55463:77;55460:1;55453:88;55560:4;55557:1;55550:15;55584:4;55581:1;55574:15;55601:185;55641:1;55658:20;55676:1;55658:20;:::i;:::-;55653:25;;55692:20;55710:1;55692:20;:::i;:::-;55687:25;;55731:1;55721:35;;55736:18;;:::i;:::-;55721:35;55778:1;55775;55771:9;55766:14;;55601:185;;;;:::o;55792:191::-;55832:4;55852:20;55870:1;55852:20;:::i;:::-;55847:25;;55886:20;55904:1;55886:20;:::i;:::-;55881:25;;55925:1;55922;55919:8;55916:34;;;55930:18;;:::i;:::-;55916:34;55975:1;55972;55968:9;55960:17;;55792:191;;;;:::o;55989:176::-;56021:1;56038:20;56056:1;56038:20;:::i;:::-;56033:25;;56072:20;56090:1;56072:20;:::i;:::-;56067:25;;56111:1;56101:35;;56116:18;;:::i;:::-;56101:35;56157:1;56154;56150:9;56145:14;;55989:176;;;;:::o

Swarm Source

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