ETH Price: $3,691.21 (+1.50%)
 

Overview

Max Total Supply

197 Witch

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
holddus.eth
Balance
1 Witch
0xf010da4ba7126a89cba34b2ae326d972c17777c0
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:
Witchards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

//1b0014041a0a15

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/witch.sol




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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/witch.sol




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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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


// ERC721A Contracts v3.3.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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



pragma solidity ^0.8.0;




contract Witchards is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string private baseURI;

    uint256 public price = 0.0098 ether;

    uint256 public maxPerWallet = 5;

    uint256 public maxFreePerWallet = 1;

    uint256 public totalFree = 1111;

    uint256 public maxSupply = 5555;

    uint256 public freeMinted = 0;

    address private founderWallet=0x0f6345b7bF423D7412AF5e8d2F7fab8B1873ffC3;
    address private wallet2=0x0C0Bab30cc39A0935ee258B220b775068c116F65; //Dev Wallet
    address private wallet3=0xDab7A33b45B90bB0030B2E37D2DE7130a931080A; // CM Wallets
    address private wallet4=0x34598784Ed520c3499499119393d388dc16c9C58;
    

    bool public mintEnabled = true;

    bytes32 whitelistRoot;

    string public hiddenURI="ipfs://bafybeia4pwgjfyy2x7a26sx2fwuwnpxs276cvfwlpry7xqsgrsvhtlgkmi/hidden.json";

    bool public revealed = false;

    
    mapping(address => bool ) private _mintedFree;

    constructor() ERC721A("Witchards", "Witch") {
        
     
    }


 modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

function whitelistMint(bytes32[] calldata _merkleProof,uint256 count) external payable callerIsUser nonReentrant {

        bool isFreeLeft = !(_mintedFree[msg.sender]) && (freeMinted < totalFree ) ;
        bool isEqual=count==maxFreePerWallet;

        uint256 cost = price;
       

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        
        if(  isFreeLeft  && isEqual){
            cost=0;
        }


        if( isFreeLeft && !isEqual ){
        require(msg.value >= (count-maxFreePerWallet) * cost, "Please send the exact amount.");
        }
        else{
         require(msg.value >= count * cost, "Please send the exact amount.");

        }
        require(MerkleProof.verify(_merkleProof, whitelistRoot, leaf),"Incorrect Whitelist Proof");
        require(totalSupply() + count <= maxSupply , "No more");
        require(count>0,"Please enter a number");
        require(mintEnabled, "Minting is not live yet");
        require(_numberMinted(msg.sender)+count <= maxPerWallet , "Can not mint more than 5");
       

       _mintedFree[msg.sender]=true;

        if(isFreeLeft){
            freeMinted++;
        }

        _safeMint(msg.sender, count);
    }


    function publicMint(uint256 count) external payable  callerIsUser nonReentrant {
        

        require(msg.value >= count * price, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply , "No more NFT left");
        require(_numberMinted(msg.sender)+count <= maxPerWallet , "Can not mint more than 5");
        require(count>0,"Please enter a number");
        require(mintEnabled, "Minting is not live yet");
        

      

        _safeMint(msg.sender, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function _isMintedFree(address minter) external view  returns (bool) {
        return _mintedFree[minter];
    }

    function _mintedAmount(address minter) external view  returns (uint256) {
        return _numberMinted(minter);
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
     if (revealed == false) {
      return hiddenURI;
    }

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

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

    function setPreSaleRoot(bytes32 _presaleRoot)
        external
        onlyOwner
    {  
        whitelistRoot = _presaleRoot;
        
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setMaxPerWallet(uint256 amount) external onlyOwner {
        maxPerWallet = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

   function setMaxSupply(uint256 _newSupply) external onlyOwner {
        maxSupply = _newSupply;
    }

    function flipSale(bool status) external onlyOwner {
        mintEnabled = status;
    }
    
    function reveal() external onlyOwner {
    revealed = !revealed;
   
  }

 function batchmint(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

    function withdraw() external onlyOwner {
            uint256 balance = address(this).balance;
            uint256 balance2 = balance* 575 / 1000;
            uint256 balance3 = balance* 15 / 100;
            uint256 balance4 = balance* 125 / 1000;

            payable(founderWallet).transfer(balance2);
            payable(wallet2).transfer(balance4);
            payable(wallet4).transfer(balance3);
            payable(wallet3).transfer(balance3);
           
        }

    function emergencyWithdraw() external onlyOwner { // Withdraws the funds to founder wallet
        uint256 balance = address(this).balance;
        
        
        payable(founderWallet).transfer(balance);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":"minter","type":"address"}],"name":"_isMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"batchmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMinted","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":"hiddenURI","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleRoot","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526622d10c4ecc8000600b556005600c556001600d55610457600e556115b3600f556000601055730f6345b7bf423d7412af5e8d2f7fab8b1873ffc3601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730c0bab30cc39a0935ee258b220b775068c116f65601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dab7a33b45b90bb0030b2e37d2de7130a931080a601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507334598784ed520c3499499119393d388dc16c9c58601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016014806101000a81548160ff0219169083151502179055506040518060800160405280604e815260200162004a66604e913960169080519060200190620001c9929190620003aa565b506000601760006101000a81548160ff021916908315150217905550348015620001f257600080fd5b506040518060400160405280600981526020017f57697463686172647300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5769746368000000000000000000000000000000000000000000000000000000815250816002908051906020019062000277929190620003aa565b50806003908051906020019062000290929190620003aa565b50620002a1620002d760201b60201c565b6000819055505050620002c9620002bd620002dc60201b60201c565b620002e460201b60201c565b6001600981905550620004bf565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b8906200045a565b90600052602060002090601f016020900481019282620003dc576000855562000428565b82601f10620003f757805160ff191683800117855562000428565b8280016001018555821562000428579182015b82811115620004275782518255916020019190600101906200040a565b5b5090506200043791906200043b565b5090565b5b80821115620004565760008160009055506001016200043c565b5090565b600060028204905060018216806200047357607f821691505b602082108114156200048a576200048962000490565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61459780620004cf6000396000f3fe6080604052600436106102465760003560e01c80637bcf36ae11610139578063b88d4fde116100b6578063db2e21bc1161007a578063db2e21bc14610828578063e268e4d31461083f578063e985e9c514610868578063ed64892b146108a5578063f2fde38b146108e2578063fe042d491461090b57610246565b8063b88d4fde14610741578063c87b56dd1461076a578063d10a1a2b146107a7578063d1239730146107d2578063d5abeb01146107fd57610246565b806395d89b41116100fd57806395d89b4114610680578063a035b1fe146106ab578063a22cb465146106d6578063a475b5dd146106ff578063a70273571461071657610246565b80637bcf36ae146105af5780638cc54e7f146105d85780638da5cb5b1461060357806391b7f5ed1461062e57806392910eec1461065757610246565b8063333e44e6116101c757806355f804b31161018b57806355f804b3146104cc5780636352211e146104f55780636f8b44b01461053257806370a082311461055b578063715018a61461059857610246565b8063333e44e61461040b5780633ccfd60b1461043657806342842e0e1461044d578063453c23101461047657806351830227146104a157610246565b806323b872dd1161020e57806323b872dd146103445780632810570f1461036d5780632904e6d9146103aa5780632db11544146103c65780633031e7c7146103e257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136a7565b610934565b60405161027f9190613b5c565b60405180910390f35b34801561029457600080fd5b5061029d6109c6565b6040516102aa9190613b77565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061374a565b610a58565b6040516102e79190613af5565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906135ad565b610ad4565b005b34801561032557600080fd5b5061032e610c7b565b60405161033b9190613d59565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613497565b610c92565b005b34801561037957600080fd5b50610394600480360381019061038f919061342a565b610ca2565b6040516103a19190613b5c565b60405180910390f35b6103c460048036038101906103bf91906135ed565b610cf8565b005b6103e060048036038101906103db919061374a565b611181565b005b3480156103ee57600080fd5b506104096004803603810190610404919061364d565b6113e1565b005b34801561041757600080fd5b50610420611479565b60405161042d9190613d59565b60405180910390f35b34801561044257600080fd5b5061044b61147f565b005b34801561045957600080fd5b50610474600480360381019061046f9190613497565b611704565b005b34801561048257600080fd5b5061048b611724565b6040516104989190613d59565b60405180910390f35b3480156104ad57600080fd5b506104b661172a565b6040516104c39190613b5c565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613701565b61173d565b005b34801561050157600080fd5b5061051c6004803603810190610517919061374a565b6117d3565b6040516105299190613af5565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061374a565b6117e5565b005b34801561056757600080fd5b50610582600480360381019061057d919061342a565b61186b565b60405161058f9190613d59565b60405180910390f35b3480156105a457600080fd5b506105ad611924565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613777565b6119ac565b005b3480156105e457600080fd5b506105ed611ad6565b6040516105fa9190613b77565b60405180910390f35b34801561060f57600080fd5b50610618611b64565b6040516106259190613af5565b60405180910390f35b34801561063a57600080fd5b506106556004803603810190610650919061374a565b611b8e565b005b34801561066357600080fd5b5061067e6004803603810190610679919061374a565b611c14565b005b34801561068c57600080fd5b50610695611c9a565b6040516106a29190613b77565b60405180910390f35b3480156106b757600080fd5b506106c0611d2c565b6040516106cd9190613d59565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061356d565b611d32565b005b34801561070b57600080fd5b50610714611eaa565b005b34801561072257600080fd5b5061072b611f52565b6040516107389190613d59565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906134ea565b611f58565b005b34801561077657600080fd5b50610791600480360381019061078c919061374a565b611fcb565b60405161079e9190613b77565b60405180910390f35b3480156107b357600080fd5b506107bc612121565b6040516107c99190613d59565b60405180910390f35b3480156107de57600080fd5b506107e7612127565b6040516107f49190613b5c565b60405180910390f35b34801561080957600080fd5b50610812612138565b60405161081f9190613d59565b60405180910390f35b34801561083457600080fd5b5061083d61213e565b005b34801561084b57600080fd5b506108666004803603810190610861919061374a565b61222b565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613457565b6122b1565b60405161089c9190613b5c565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c7919061342a565b612345565b6040516108d99190613d59565b60405180910390f35b3480156108ee57600080fd5b506109096004803603810190610904919061342a565b612357565b005b34801561091757600080fd5b50610932600480360381019061092d919061367a565b61244f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d590614013565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190614013565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a63826124d5565b610a99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adf82612534565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b66612602565b73ffffffffffffffffffffffffffffffffffffffff1614610bc957610b9281610b8d612602565b6122b1565b610bc8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c8561260a565b6001546000540303905090565b610c9d83838361260f565b505050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613c79565b60405180910390fd5b60026009541415610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613cf9565b60405180910390fd5b60026009819055506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e135750600e54601054105b90506000600d54831490506000600b549050600033604051602001610e389190613aab565b604051602081830303815290604052805190602001209050838015610e5a5750825b15610e6457600091505b838015610e6f575082155b15610ed45781600d5486610e839190613f1f565b610e8d9190613ec5565b341015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613cd9565b60405180910390fd5b610f23565b8185610ee09190613ec5565b341015610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613cd9565b60405180910390fd5b5b610f71878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601554836129b9565b610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613d19565b60405180910390fd5b600f5485610fbc610c7b565b610fc69190613e3e565b1115611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613bd9565b60405180910390fd5b6000851161104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190613c39565b60405180910390fd5b60148054906101000a900460ff16611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613bb9565b60405180910390fd5b600c54856110a4336129d0565b6110ae9190613e3e565b11156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613c19565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508315611166576010600081548092919061116090614076565b91905055505b6111703386612a27565b505050506001600981905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613c79565b60405180910390fd5b60026009541415611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613cf9565b60405180910390fd5b6002600981905550600b548161124b9190613ec5565b34101561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613cd9565b60405180910390fd5b600f5481611299610c7b565b6112a39190613e3e565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613c59565b60405180910390fd5b600c54816112f1336129d0565b6112fb9190613e3e565b111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613c19565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613c39565b60405180910390fd5b60148054906101000a900460ff166113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390613bb9565b60405180910390fd5b6113d63382612a27565b600160098190555050565b6113e9612a45565b73ffffffffffffffffffffffffffffffffffffffff16611407611b64565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cb9565b60405180910390fd5b806014806101000a81548160ff02191690831515021790555050565b600e5481565b611487612a45565b73ffffffffffffffffffffffffffffffffffffffff166114a5611b64565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613cb9565b60405180910390fd5b600047905060006103e861023f836115139190613ec5565b61151d9190613e94565b905060006064600f846115309190613ec5565b61153a9190613e94565b905060006103e8607d8561154e9190613ec5565b6115589190613e94565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115c2573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561162b573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611694573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156116fd573d6000803e3d6000fd5b5050505050565b61171f83838360405180602001604052806000815250611f58565b505050565b600c5481565b601760009054906101000a900460ff1681565b611745612a45565b73ffffffffffffffffffffffffffffffffffffffff16611763611b64565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613cb9565b60405180910390fd5b80600a90805190602001906117cf9291906131d3565b5050565b60006117de82612534565b9050919050565b6117ed612a45565b73ffffffffffffffffffffffffffffffffffffffff1661180b611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613cb9565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61192c612a45565b73ffffffffffffffffffffffffffffffffffffffff1661194a611b64565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613cb9565b60405180910390fd5b6119aa6000612a4d565b565b6119b4612a45565b73ffffffffffffffffffffffffffffffffffffffff166119d2611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613cb9565b60405180910390fd5b60008211611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613d39565b60405180910390fd5b6000611a75610c7b565b9050600f548382611a869190613e3e565b1115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613c99565b60405180910390fd5b611ad18284612a27565b505050565b60168054611ae390614013565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90614013565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b96612a45565b73ffffffffffffffffffffffffffffffffffffffff16611bb4611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190613cb9565b60405180910390fd5b80600b8190555050565b611c1c612a45565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613cb9565b60405180910390fd5b80600e8190555050565b606060038054611ca990614013565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd590614013565b8015611d225780601f10611cf757610100808354040283529160200191611d22565b820191906000526020600020905b815481529060010190602001808311611d0557829003601f168201915b5050505050905090565b600b5481565b611d3a612602565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dac612602565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e59612602565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9e9190613b5c565b60405180910390a35050565b611eb2612a45565b73ffffffffffffffffffffffffffffffffffffffff16611ed0611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90613cb9565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b600d5481565b611f6384848461260f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc557611f8e84848484612b13565b611fc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611fd6826124d5565b612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613b99565b60405180910390fd5b60001515601760009054906101000a900460ff16151514156120c3576016805461203e90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461206a90614013565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b5050505050905061211c565b60006120cd612c73565b905060008151116120ed5760405180602001604052806000815250612118565b806120f784612d05565b604051602001612108929190613ac6565b6040516020818303038152906040525b9150505b919050565b60105481565b60148054906101000a900460ff1681565b600f5481565b612146612a45565b73ffffffffffffffffffffffffffffffffffffffff16612164611b64565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613cb9565b60405180910390fd5b6000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612227573d6000803e3d6000fd5b5050565b612233612a45565b73ffffffffffffffffffffffffffffffffffffffff16612251611b64565b73ffffffffffffffffffffffffffffffffffffffff16146122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613cb9565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612350826129d0565b9050919050565b61235f612a45565b73ffffffffffffffffffffffffffffffffffffffff1661237d611b64565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613cb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90613bf9565b60405180910390fd5b61244c81612a4d565b50565b612457612a45565b73ffffffffffffffffffffffffffffffffffffffff16612475611b64565b73ffffffffffffffffffffffffffffffffffffffff16146124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c290613cb9565b60405180910390fd5b8060158190555050565b6000816124e061260a565b111580156124ef575060005482105b801561252d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061254361260a565b116125cb576000548110156125ca5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156125c8575b60008114156125be576004600083600190039350838152602001908152602001600020549050612593565b80925050506125fd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061261a82612534565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612681576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126a2612602565b73ffffffffffffffffffffffffffffffffffffffff1614806126d157506126d0856126cb612602565b6122b1565b5b8061271657506126df612602565b73ffffffffffffffffffffffffffffffffffffffff166126fe84610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061274f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c38585856001612e66565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128c086612e6c565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561294a576000600184019050600060046000838152602001908152602001600020541415612948576000548114612947578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b28585856001612e76565b5050505050565b6000826129c68584612e7c565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612a41828260405180602001604052806000815250612ed2565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b39612602565b8786866040518563ffffffff1660e01b8152600401612b5b9493929190613b10565b602060405180830381600087803b158015612b7557600080fd5b505af1925050508015612ba657506040513d601f19601f82011682018060405250810190612ba391906136d4565b60015b612c20573d8060008114612bd6576040519150601f19603f3d011682016040523d82523d6000602084013e612bdb565b606091505b50600081511415612c18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c8290614013565b80601f0160208091040260200160405190810160405280929190818152602001828054612cae90614013565b8015612cfb5780601f10612cd057610100808354040283529160200191612cfb565b820191906000526020600020905b815481529060010190602001808311612cde57829003601f168201915b5050505050905090565b60606000821415612d4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e61565b600082905060005b60008214612d7f578080612d6890614076565b915050600a82612d789190613e94565b9150612d55565b60008167ffffffffffffffff811115612d9b57612d9a6141d0565b5b6040519080825280601f01601f191660200182016040528015612dcd5781602001600182028036833780820191505090505b5090505b60008514612e5a57600182612de69190613f1f565b9150600a85612df591906140e3565b6030612e019190613e3e565b60f81b818381518110612e1757612e166141a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e539190613e94565b9450612dd1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60008082905060005b8451811015612ec757612eb282868381518110612ea557612ea46141a1565b5b6020026020010151613187565b91508080612ebf90614076565b915050612e85565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612f7a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f876000858386612e66565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612fec600185146131b2565b901b60a042901b612ffc86612e6c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613100575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b06000878480600101955087612b13565b6130e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130415782600054146130fb57600080fd5b61316b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613101575b8160008190555050506131816000858386612e76565b50505050565b600081831061319f5761319a82846131bc565b6131aa565b6131a983836131bc565b5b905092915050565b6000819050919050565b600082600052816020526040600020905092915050565b8280546131df90614013565b90600052602060002090601f0160209004810192826132015760008555613248565b82601f1061321a57805160ff1916838001178555613248565b82800160010185558215613248579182015b8281111561324757825182559160200191906001019061322c565b5b5090506132559190613259565b5090565b5b8082111561327257600081600090555060010161325a565b5090565b600061328961328484613d99565b613d74565b9050828152602081018484840111156132a5576132a461420e565b5b6132b0848285613fd1565b509392505050565b60006132cb6132c684613dca565b613d74565b9050828152602081018484840111156132e7576132e661420e565b5b6132f2848285613fd1565b509392505050565b600081359050613309816144ee565b92915050565b60008083601f84011261332557613324614204565b5b8235905067ffffffffffffffff811115613342576133416141ff565b5b60208301915083602082028301111561335e5761335d614209565b5b9250929050565b60008135905061337481614505565b92915050565b6000813590506133898161451c565b92915050565b60008135905061339e81614533565b92915050565b6000815190506133b381614533565b92915050565b600082601f8301126133ce576133cd614204565b5b81356133de848260208601613276565b91505092915050565b600082601f8301126133fc576133fb614204565b5b813561340c8482602086016132b8565b91505092915050565b6000813590506134248161454a565b92915050565b6000602082840312156134405761343f614218565b5b600061344e848285016132fa565b91505092915050565b6000806040838503121561346e5761346d614218565b5b600061347c858286016132fa565b925050602061348d858286016132fa565b9150509250929050565b6000806000606084860312156134b0576134af614218565b5b60006134be868287016132fa565b93505060206134cf868287016132fa565b92505060406134e086828701613415565b9150509250925092565b6000806000806080858703121561350457613503614218565b5b6000613512878288016132fa565b9450506020613523878288016132fa565b935050604061353487828801613415565b925050606085013567ffffffffffffffff81111561355557613554614213565b5b613561878288016133b9565b91505092959194509250565b6000806040838503121561358457613583614218565b5b6000613592858286016132fa565b92505060206135a385828601613365565b9150509250929050565b600080604083850312156135c4576135c3614218565b5b60006135d2858286016132fa565b92505060206135e385828601613415565b9150509250929050565b60008060006040848603121561360657613605614218565b5b600084013567ffffffffffffffff81111561362457613623614213565b5b6136308682870161330f565b9350935050602061364386828701613415565b9150509250925092565b60006020828403121561366357613662614218565b5b600061367184828501613365565b91505092915050565b6000602082840312156136905761368f614218565b5b600061369e8482850161337a565b91505092915050565b6000602082840312156136bd576136bc614218565b5b60006136cb8482850161338f565b91505092915050565b6000602082840312156136ea576136e9614218565b5b60006136f8848285016133a4565b91505092915050565b60006020828403121561371757613716614218565b5b600082013567ffffffffffffffff81111561373557613734614213565b5b613741848285016133e7565b91505092915050565b6000602082840312156137605761375f614218565b5b600061376e84828501613415565b91505092915050565b6000806040838503121561378e5761378d614218565b5b600061379c85828601613415565b92505060206137ad858286016132fa565b9150509250929050565b6137c081613f53565b82525050565b6137d76137d282613f53565b6140bf565b82525050565b6137e681613f65565b82525050565b60006137f782613dfb565b6138018185613e11565b9350613811818560208601613fe0565b61381a8161421d565b840191505092915050565b600061383082613e06565b61383a8185613e22565b935061384a818560208601613fe0565b6138538161421d565b840191505092915050565b600061386982613e06565b6138738185613e33565b9350613883818560208601613fe0565b80840191505092915050565b600061389c603083613e22565b91506138a78261423b565b604082019050919050565b60006138bf601783613e22565b91506138ca8261428a565b602082019050919050565b60006138e2600783613e22565b91506138ed826142b3565b602082019050919050565b6000613905602683613e22565b9150613910826142dc565b604082019050919050565b6000613928601883613e22565b91506139338261432b565b602082019050919050565b600061394b601583613e22565b915061395682614354565b602082019050919050565b600061396e601083613e22565b91506139798261437d565b602082019050919050565b6000613991601e83613e22565b915061399c826143a6565b602082019050919050565b60006139b4601683613e22565b91506139bf826143cf565b602082019050919050565b60006139d7600583613e33565b91506139e2826143f8565b600582019050919050565b60006139fa602083613e22565b9150613a0582614421565b602082019050919050565b6000613a1d601d83613e22565b9150613a288261444a565b602082019050919050565b6000613a40601f83613e22565b9150613a4b82614473565b602082019050919050565b6000613a63601983613e22565b9150613a6e8261449c565b602082019050919050565b6000613a86601b83613e22565b9150613a91826144c5565b602082019050919050565b613aa581613fc7565b82525050565b6000613ab782846137c6565b60148201915081905092915050565b6000613ad2828561385e565b9150613ade828461385e565b9150613ae9826139ca565b91508190509392505050565b6000602082019050613b0a60008301846137b7565b92915050565b6000608082019050613b2560008301876137b7565b613b3260208301866137b7565b613b3f6040830185613a9c565b8181036060830152613b5181846137ec565b905095945050505050565b6000602082019050613b7160008301846137dd565b92915050565b60006020820190508181036000830152613b918184613825565b905092915050565b60006020820190508181036000830152613bb28161388f565b9050919050565b60006020820190508181036000830152613bd2816138b2565b9050919050565b60006020820190508181036000830152613bf2816138d5565b9050919050565b60006020820190508181036000830152613c12816138f8565b9050919050565b60006020820190508181036000830152613c328161391b565b9050919050565b60006020820190508181036000830152613c528161393e565b9050919050565b60006020820190508181036000830152613c7281613961565b9050919050565b60006020820190508181036000830152613c9281613984565b9050919050565b60006020820190508181036000830152613cb2816139a7565b9050919050565b60006020820190508181036000830152613cd2816139ed565b9050919050565b60006020820190508181036000830152613cf281613a10565b9050919050565b60006020820190508181036000830152613d1281613a33565b9050919050565b60006020820190508181036000830152613d3281613a56565b9050919050565b60006020820190508181036000830152613d5281613a79565b9050919050565b6000602082019050613d6e6000830184613a9c565b92915050565b6000613d7e613d8f565b9050613d8a8282614045565b919050565b6000604051905090565b600067ffffffffffffffff821115613db457613db36141d0565b5b613dbd8261421d565b9050602081019050919050565b600067ffffffffffffffff821115613de557613de46141d0565b5b613dee8261421d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4982613fc7565b9150613e5483613fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8957613e88614114565b5b828201905092915050565b6000613e9f82613fc7565b9150613eaa83613fc7565b925082613eba57613eb9614143565b5b828204905092915050565b6000613ed082613fc7565b9150613edb83613fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1457613f13614114565b5b828202905092915050565b6000613f2a82613fc7565b9150613f3583613fc7565b925082821015613f4857613f47614114565b5b828203905092915050565b6000613f5e82613fa7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffe578082015181840152602081019050613fe3565b8381111561400d576000848401525b50505050565b6000600282049050600182168061402b57607f821691505b6020821081141561403f5761403e614172565b5b50919050565b61404e8261421d565b810181811067ffffffffffffffff8211171561406d5761406c6141d0565b5b80604052505050565b600061408182613fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b4576140b3614114565b5b600182019050919050565b60006140ca826140d1565b9050919050565b60006140dc8261422e565b9050919050565b60006140ee82613fc7565b91506140f983613fc7565b92508261410957614108614143565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e20350000000000000000600082015250565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b7f4e6f206d6f7265204e4654206c65667400000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6144f781613f53565b811461450257600080fd5b50565b61450e81613f65565b811461451957600080fd5b50565b61452581613f71565b811461453057600080fd5b50565b61453c81613f7b565b811461454757600080fd5b50565b61455381613fc7565b811461455e57600080fd5b5056fea264697066735822122088408ec2220e6aa523dc0634c90fa1793d4ea8cefd425c3d67f1b6a5731871ad64736f6c63430008070033697066733a2f2f6261667962656961347077676a667979327837613236737832667775776e707873323736637666776c707279377871736772737668746c676b6d692f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637bcf36ae11610139578063b88d4fde116100b6578063db2e21bc1161007a578063db2e21bc14610828578063e268e4d31461083f578063e985e9c514610868578063ed64892b146108a5578063f2fde38b146108e2578063fe042d491461090b57610246565b8063b88d4fde14610741578063c87b56dd1461076a578063d10a1a2b146107a7578063d1239730146107d2578063d5abeb01146107fd57610246565b806395d89b41116100fd57806395d89b4114610680578063a035b1fe146106ab578063a22cb465146106d6578063a475b5dd146106ff578063a70273571461071657610246565b80637bcf36ae146105af5780638cc54e7f146105d85780638da5cb5b1461060357806391b7f5ed1461062e57806392910eec1461065757610246565b8063333e44e6116101c757806355f804b31161018b57806355f804b3146104cc5780636352211e146104f55780636f8b44b01461053257806370a082311461055b578063715018a61461059857610246565b8063333e44e61461040b5780633ccfd60b1461043657806342842e0e1461044d578063453c23101461047657806351830227146104a157610246565b806323b872dd1161020e57806323b872dd146103445780632810570f1461036d5780632904e6d9146103aa5780632db11544146103c65780633031e7c7146103e257610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906136a7565b610934565b60405161027f9190613b5c565b60405180910390f35b34801561029457600080fd5b5061029d6109c6565b6040516102aa9190613b77565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061374a565b610a58565b6040516102e79190613af5565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906135ad565b610ad4565b005b34801561032557600080fd5b5061032e610c7b565b60405161033b9190613d59565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613497565b610c92565b005b34801561037957600080fd5b50610394600480360381019061038f919061342a565b610ca2565b6040516103a19190613b5c565b60405180910390f35b6103c460048036038101906103bf91906135ed565b610cf8565b005b6103e060048036038101906103db919061374a565b611181565b005b3480156103ee57600080fd5b506104096004803603810190610404919061364d565b6113e1565b005b34801561041757600080fd5b50610420611479565b60405161042d9190613d59565b60405180910390f35b34801561044257600080fd5b5061044b61147f565b005b34801561045957600080fd5b50610474600480360381019061046f9190613497565b611704565b005b34801561048257600080fd5b5061048b611724565b6040516104989190613d59565b60405180910390f35b3480156104ad57600080fd5b506104b661172a565b6040516104c39190613b5c565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613701565b61173d565b005b34801561050157600080fd5b5061051c6004803603810190610517919061374a565b6117d3565b6040516105299190613af5565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061374a565b6117e5565b005b34801561056757600080fd5b50610582600480360381019061057d919061342a565b61186b565b60405161058f9190613d59565b60405180910390f35b3480156105a457600080fd5b506105ad611924565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190613777565b6119ac565b005b3480156105e457600080fd5b506105ed611ad6565b6040516105fa9190613b77565b60405180910390f35b34801561060f57600080fd5b50610618611b64565b6040516106259190613af5565b60405180910390f35b34801561063a57600080fd5b506106556004803603810190610650919061374a565b611b8e565b005b34801561066357600080fd5b5061067e6004803603810190610679919061374a565b611c14565b005b34801561068c57600080fd5b50610695611c9a565b6040516106a29190613b77565b60405180910390f35b3480156106b757600080fd5b506106c0611d2c565b6040516106cd9190613d59565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061356d565b611d32565b005b34801561070b57600080fd5b50610714611eaa565b005b34801561072257600080fd5b5061072b611f52565b6040516107389190613d59565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906134ea565b611f58565b005b34801561077657600080fd5b50610791600480360381019061078c919061374a565b611fcb565b60405161079e9190613b77565b60405180910390f35b3480156107b357600080fd5b506107bc612121565b6040516107c99190613d59565b60405180910390f35b3480156107de57600080fd5b506107e7612127565b6040516107f49190613b5c565b60405180910390f35b34801561080957600080fd5b50610812612138565b60405161081f9190613d59565b60405180910390f35b34801561083457600080fd5b5061083d61213e565b005b34801561084b57600080fd5b506108666004803603810190610861919061374a565b61222b565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613457565b6122b1565b60405161089c9190613b5c565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c7919061342a565b612345565b6040516108d99190613d59565b60405180910390f35b3480156108ee57600080fd5b506109096004803603810190610904919061342a565b612357565b005b34801561091757600080fd5b50610932600480360381019061092d919061367a565b61244f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d590614013565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190614013565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b6000610a63826124d5565b610a99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adf82612534565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b47576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b66612602565b73ffffffffffffffffffffffffffffffffffffffff1614610bc957610b9281610b8d612602565b6122b1565b610bc8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c8561260a565b6001546000540303905090565b610c9d83838361260f565b505050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613c79565b60405180910390fd5b60026009541415610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613cf9565b60405180910390fd5b60026009819055506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e135750600e54601054105b90506000600d54831490506000600b549050600033604051602001610e389190613aab565b604051602081830303815290604052805190602001209050838015610e5a5750825b15610e6457600091505b838015610e6f575082155b15610ed45781600d5486610e839190613f1f565b610e8d9190613ec5565b341015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613cd9565b60405180910390fd5b610f23565b8185610ee09190613ec5565b341015610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613cd9565b60405180910390fd5b5b610f71878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601554836129b9565b610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790613d19565b60405180910390fd5b600f5485610fbc610c7b565b610fc69190613e3e565b1115611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613bd9565b60405180910390fd5b6000851161104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190613c39565b60405180910390fd5b60148054906101000a900460ff16611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90613bb9565b60405180910390fd5b600c54856110a4336129d0565b6110ae9190613e3e565b11156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613c19565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508315611166576010600081548092919061116090614076565b91905055505b6111703386612a27565b505050506001600981905550505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613c79565b60405180910390fd5b60026009541415611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613cf9565b60405180910390fd5b6002600981905550600b548161124b9190613ec5565b34101561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613cd9565b60405180910390fd5b600f5481611299610c7b565b6112a39190613e3e565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613c59565b60405180910390fd5b600c54816112f1336129d0565b6112fb9190613e3e565b111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613c19565b60405180910390fd5b6000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613c39565b60405180910390fd5b60148054906101000a900460ff166113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390613bb9565b60405180910390fd5b6113d63382612a27565b600160098190555050565b6113e9612a45565b73ffffffffffffffffffffffffffffffffffffffff16611407611b64565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cb9565b60405180910390fd5b806014806101000a81548160ff02191690831515021790555050565b600e5481565b611487612a45565b73ffffffffffffffffffffffffffffffffffffffff166114a5611b64565b73ffffffffffffffffffffffffffffffffffffffff16146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613cb9565b60405180910390fd5b600047905060006103e861023f836115139190613ec5565b61151d9190613e94565b905060006064600f846115309190613ec5565b61153a9190613e94565b905060006103e8607d8561154e9190613ec5565b6115589190613e94565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115c2573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561162b573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611694573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156116fd573d6000803e3d6000fd5b5050505050565b61171f83838360405180602001604052806000815250611f58565b505050565b600c5481565b601760009054906101000a900460ff1681565b611745612a45565b73ffffffffffffffffffffffffffffffffffffffff16611763611b64565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613cb9565b60405180910390fd5b80600a90805190602001906117cf9291906131d3565b5050565b60006117de82612534565b9050919050565b6117ed612a45565b73ffffffffffffffffffffffffffffffffffffffff1661180b611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613cb9565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61192c612a45565b73ffffffffffffffffffffffffffffffffffffffff1661194a611b64565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613cb9565b60405180910390fd5b6119aa6000612a4d565b565b6119b4612a45565b73ffffffffffffffffffffffffffffffffffffffff166119d2611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613cb9565b60405180910390fd5b60008211611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613d39565b60405180910390fd5b6000611a75610c7b565b9050600f548382611a869190613e3e565b1115611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613c99565b60405180910390fd5b611ad18284612a27565b505050565b60168054611ae390614013565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90614013565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b96612a45565b73ffffffffffffffffffffffffffffffffffffffff16611bb4611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190613cb9565b60405180910390fd5b80600b8190555050565b611c1c612a45565b73ffffffffffffffffffffffffffffffffffffffff16611c3a611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613cb9565b60405180910390fd5b80600e8190555050565b606060038054611ca990614013565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd590614013565b8015611d225780601f10611cf757610100808354040283529160200191611d22565b820191906000526020600020905b815481529060010190602001808311611d0557829003601f168201915b5050505050905090565b600b5481565b611d3a612602565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dac612602565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e59612602565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e9e9190613b5c565b60405180910390a35050565b611eb2612a45565b73ffffffffffffffffffffffffffffffffffffffff16611ed0611b64565b73ffffffffffffffffffffffffffffffffffffffff1614611f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1d90613cb9565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b600d5481565b611f6384848461260f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc557611f8e84848484612b13565b611fc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611fd6826124d5565b612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613b99565b60405180910390fd5b60001515601760009054906101000a900460ff16151514156120c3576016805461203e90614013565b80601f016020809104026020016040519081016040528092919081815260200182805461206a90614013565b80156120b75780601f1061208c576101008083540402835291602001916120b7565b820191906000526020600020905b81548152906001019060200180831161209a57829003601f168201915b5050505050905061211c565b60006120cd612c73565b905060008151116120ed5760405180602001604052806000815250612118565b806120f784612d05565b604051602001612108929190613ac6565b6040516020818303038152906040525b9150505b919050565b60105481565b60148054906101000a900460ff1681565b600f5481565b612146612a45565b73ffffffffffffffffffffffffffffffffffffffff16612164611b64565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613cb9565b60405180910390fd5b6000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612227573d6000803e3d6000fd5b5050565b612233612a45565b73ffffffffffffffffffffffffffffffffffffffff16612251611b64565b73ffffffffffffffffffffffffffffffffffffffff16146122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e90613cb9565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612350826129d0565b9050919050565b61235f612a45565b73ffffffffffffffffffffffffffffffffffffffff1661237d611b64565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613cb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90613bf9565b60405180910390fd5b61244c81612a4d565b50565b612457612a45565b73ffffffffffffffffffffffffffffffffffffffff16612475611b64565b73ffffffffffffffffffffffffffffffffffffffff16146124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c290613cb9565b60405180910390fd5b8060158190555050565b6000816124e061260a565b111580156124ef575060005482105b801561252d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061254361260a565b116125cb576000548110156125ca5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156125c8575b60008114156125be576004600083600190039350838152602001908152602001600020549050612593565b80925050506125fd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061261a82612534565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612681576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126a2612602565b73ffffffffffffffffffffffffffffffffffffffff1614806126d157506126d0856126cb612602565b6122b1565b5b8061271657506126df612602565b73ffffffffffffffffffffffffffffffffffffffff166126fe84610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061274f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127b6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c38585856001612e66565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128c086612e6c565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561294a576000600184019050600060046000838152602001908152602001600020541415612948576000548114612947578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b28585856001612e76565b5050505050565b6000826129c68584612e7c565b1490509392505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612a41828260405180602001604052806000815250612ed2565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b39612602565b8786866040518563ffffffff1660e01b8152600401612b5b9493929190613b10565b602060405180830381600087803b158015612b7557600080fd5b505af1925050508015612ba657506040513d601f19601f82011682018060405250810190612ba391906136d4565b60015b612c20573d8060008114612bd6576040519150601f19603f3d011682016040523d82523d6000602084013e612bdb565b606091505b50600081511415612c18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c8290614013565b80601f0160208091040260200160405190810160405280929190818152602001828054612cae90614013565b8015612cfb5780601f10612cd057610100808354040283529160200191612cfb565b820191906000526020600020905b815481529060010190602001808311612cde57829003601f168201915b5050505050905090565b60606000821415612d4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e61565b600082905060005b60008214612d7f578080612d6890614076565b915050600a82612d789190613e94565b9150612d55565b60008167ffffffffffffffff811115612d9b57612d9a6141d0565b5b6040519080825280601f01601f191660200182016040528015612dcd5781602001600182028036833780820191505090505b5090505b60008514612e5a57600182612de69190613f1f565b9150600a85612df591906140e3565b6030612e019190613e3e565b60f81b818381518110612e1757612e166141a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e539190613e94565b9450612dd1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60008082905060005b8451811015612ec757612eb282868381518110612ea557612ea46141a1565b5b6020026020010151613187565b91508080612ebf90614076565b915050612e85565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f3f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612f7a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f876000858386612e66565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612fec600185146131b2565b901b60a042901b612ffc86612e6c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613100575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b06000878480600101955087612b13565b6130e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130415782600054146130fb57600080fd5b61316b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613101575b8160008190555050506131816000858386612e76565b50505050565b600081831061319f5761319a82846131bc565b6131aa565b6131a983836131bc565b5b905092915050565b6000819050919050565b600082600052816020526040600020905092915050565b8280546131df90614013565b90600052602060002090601f0160209004810192826132015760008555613248565b82601f1061321a57805160ff1916838001178555613248565b82800160010185558215613248579182015b8281111561324757825182559160200191906001019061322c565b5b5090506132559190613259565b5090565b5b8082111561327257600081600090555060010161325a565b5090565b600061328961328484613d99565b613d74565b9050828152602081018484840111156132a5576132a461420e565b5b6132b0848285613fd1565b509392505050565b60006132cb6132c684613dca565b613d74565b9050828152602081018484840111156132e7576132e661420e565b5b6132f2848285613fd1565b509392505050565b600081359050613309816144ee565b92915050565b60008083601f84011261332557613324614204565b5b8235905067ffffffffffffffff811115613342576133416141ff565b5b60208301915083602082028301111561335e5761335d614209565b5b9250929050565b60008135905061337481614505565b92915050565b6000813590506133898161451c565b92915050565b60008135905061339e81614533565b92915050565b6000815190506133b381614533565b92915050565b600082601f8301126133ce576133cd614204565b5b81356133de848260208601613276565b91505092915050565b600082601f8301126133fc576133fb614204565b5b813561340c8482602086016132b8565b91505092915050565b6000813590506134248161454a565b92915050565b6000602082840312156134405761343f614218565b5b600061344e848285016132fa565b91505092915050565b6000806040838503121561346e5761346d614218565b5b600061347c858286016132fa565b925050602061348d858286016132fa565b9150509250929050565b6000806000606084860312156134b0576134af614218565b5b60006134be868287016132fa565b93505060206134cf868287016132fa565b92505060406134e086828701613415565b9150509250925092565b6000806000806080858703121561350457613503614218565b5b6000613512878288016132fa565b9450506020613523878288016132fa565b935050604061353487828801613415565b925050606085013567ffffffffffffffff81111561355557613554614213565b5b613561878288016133b9565b91505092959194509250565b6000806040838503121561358457613583614218565b5b6000613592858286016132fa565b92505060206135a385828601613365565b9150509250929050565b600080604083850312156135c4576135c3614218565b5b60006135d2858286016132fa565b92505060206135e385828601613415565b9150509250929050565b60008060006040848603121561360657613605614218565b5b600084013567ffffffffffffffff81111561362457613623614213565b5b6136308682870161330f565b9350935050602061364386828701613415565b9150509250925092565b60006020828403121561366357613662614218565b5b600061367184828501613365565b91505092915050565b6000602082840312156136905761368f614218565b5b600061369e8482850161337a565b91505092915050565b6000602082840312156136bd576136bc614218565b5b60006136cb8482850161338f565b91505092915050565b6000602082840312156136ea576136e9614218565b5b60006136f8848285016133a4565b91505092915050565b60006020828403121561371757613716614218565b5b600082013567ffffffffffffffff81111561373557613734614213565b5b613741848285016133e7565b91505092915050565b6000602082840312156137605761375f614218565b5b600061376e84828501613415565b91505092915050565b6000806040838503121561378e5761378d614218565b5b600061379c85828601613415565b92505060206137ad858286016132fa565b9150509250929050565b6137c081613f53565b82525050565b6137d76137d282613f53565b6140bf565b82525050565b6137e681613f65565b82525050565b60006137f782613dfb565b6138018185613e11565b9350613811818560208601613fe0565b61381a8161421d565b840191505092915050565b600061383082613e06565b61383a8185613e22565b935061384a818560208601613fe0565b6138538161421d565b840191505092915050565b600061386982613e06565b6138738185613e33565b9350613883818560208601613fe0565b80840191505092915050565b600061389c603083613e22565b91506138a78261423b565b604082019050919050565b60006138bf601783613e22565b91506138ca8261428a565b602082019050919050565b60006138e2600783613e22565b91506138ed826142b3565b602082019050919050565b6000613905602683613e22565b9150613910826142dc565b604082019050919050565b6000613928601883613e22565b91506139338261432b565b602082019050919050565b600061394b601583613e22565b915061395682614354565b602082019050919050565b600061396e601083613e22565b91506139798261437d565b602082019050919050565b6000613991601e83613e22565b915061399c826143a6565b602082019050919050565b60006139b4601683613e22565b91506139bf826143cf565b602082019050919050565b60006139d7600583613e33565b91506139e2826143f8565b600582019050919050565b60006139fa602083613e22565b9150613a0582614421565b602082019050919050565b6000613a1d601d83613e22565b9150613a288261444a565b602082019050919050565b6000613a40601f83613e22565b9150613a4b82614473565b602082019050919050565b6000613a63601983613e22565b9150613a6e8261449c565b602082019050919050565b6000613a86601b83613e22565b9150613a91826144c5565b602082019050919050565b613aa581613fc7565b82525050565b6000613ab782846137c6565b60148201915081905092915050565b6000613ad2828561385e565b9150613ade828461385e565b9150613ae9826139ca565b91508190509392505050565b6000602082019050613b0a60008301846137b7565b92915050565b6000608082019050613b2560008301876137b7565b613b3260208301866137b7565b613b3f6040830185613a9c565b8181036060830152613b5181846137ec565b905095945050505050565b6000602082019050613b7160008301846137dd565b92915050565b60006020820190508181036000830152613b918184613825565b905092915050565b60006020820190508181036000830152613bb28161388f565b9050919050565b60006020820190508181036000830152613bd2816138b2565b9050919050565b60006020820190508181036000830152613bf2816138d5565b9050919050565b60006020820190508181036000830152613c12816138f8565b9050919050565b60006020820190508181036000830152613c328161391b565b9050919050565b60006020820190508181036000830152613c528161393e565b9050919050565b60006020820190508181036000830152613c7281613961565b9050919050565b60006020820190508181036000830152613c9281613984565b9050919050565b60006020820190508181036000830152613cb2816139a7565b9050919050565b60006020820190508181036000830152613cd2816139ed565b9050919050565b60006020820190508181036000830152613cf281613a10565b9050919050565b60006020820190508181036000830152613d1281613a33565b9050919050565b60006020820190508181036000830152613d3281613a56565b9050919050565b60006020820190508181036000830152613d5281613a79565b9050919050565b6000602082019050613d6e6000830184613a9c565b92915050565b6000613d7e613d8f565b9050613d8a8282614045565b919050565b6000604051905090565b600067ffffffffffffffff821115613db457613db36141d0565b5b613dbd8261421d565b9050602081019050919050565b600067ffffffffffffffff821115613de557613de46141d0565b5b613dee8261421d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4982613fc7565b9150613e5483613fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8957613e88614114565b5b828201905092915050565b6000613e9f82613fc7565b9150613eaa83613fc7565b925082613eba57613eb9614143565b5b828204905092915050565b6000613ed082613fc7565b9150613edb83613fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1457613f13614114565b5b828202905092915050565b6000613f2a82613fc7565b9150613f3583613fc7565b925082821015613f4857613f47614114565b5b828203905092915050565b6000613f5e82613fa7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ffe578082015181840152602081019050613fe3565b8381111561400d576000848401525b50505050565b6000600282049050600182168061402b57607f821691505b6020821081141561403f5761403e614172565b5b50919050565b61404e8261421d565b810181811067ffffffffffffffff8211171561406d5761406c6141d0565b5b80604052505050565b600061408182613fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b4576140b3614114565b5b600182019050919050565b60006140ca826140d1565b9050919050565b60006140dc8261422e565b9050919050565b60006140ee82613fc7565b91506140f983613fc7565b92508261410957614108614143565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e20350000000000000000600082015250565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b7f4e6f206d6f7265204e4654206c65667400000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6144f781613f53565b811461450257600080fd5b50565b61450e81613f65565b811461451957600080fd5b50565b61452581613f71565b811461453057600080fd5b50565b61453c81613f7b565b811461454757600080fd5b50565b61455381613fc7565b811461455e57600080fd5b5056fea264697066735822122088408ec2220e6aa523dc0634c90fa1793d4ea8cefd425c3d67f1b6a5731871ad64736f6c63430008070033

Deployed Bytecode Sourcemap

88087:5692:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24630:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29643:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31711:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31171:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23684:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32597:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91155:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89274:1230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90514:519;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92564:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88343:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93063:483;;;;;;;;;;;;;:::i;:::-;;32838:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88259:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88976:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91893:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29432:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92454:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25309:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55159:103;;;;;;;;;;;;;:::i;:::-;;92745:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88863:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54508:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92355:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92144:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29812:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88215:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31987:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92665:75;;;;;;;;;;;;;:::i;:::-;;88299:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33094:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91404:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88423:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88794:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88383:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93554:218;;;;;;;;;;;;;:::i;:::-;;92247:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32366:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91277:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55417:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91989:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24630:615;24715:4;25030:10;25015:25;;:11;:25;;;;:102;;;;25107:10;25092:25;;:11;:25;;;;25015:102;:179;;;;25184:10;25169:25;;:11;:25;;;;25015:179;24995:199;;24630:615;;;:::o;29643:100::-;29697:13;29730:5;29723:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29643:100;:::o;31711:204::-;31779:7;31804:16;31812:7;31804;:16::i;:::-;31799:64;;31829:34;;;;;;;;;;;;;;31799:64;31883:15;:24;31899:7;31883:24;;;;;;;;;;;;;;;;;;;;;31876:31;;31711:204;;;:::o;31171:474::-;31244:13;31276:27;31295:7;31276:18;:27::i;:::-;31244:61;;31326:5;31320:11;;:2;:11;;;31316:48;;;31340:24;;;;;;;;;;;;;;31316:48;31404:5;31381:28;;:19;:17;:19::i;:::-;:28;;;31377:175;;31429:44;31446:5;31453:19;:17;:19::i;:::-;31429:16;:44::i;:::-;31424:128;;31501:35;;;;;;;;;;;;;;31424:128;31377:175;31591:2;31564:15;:24;31580:7;31564:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31629:7;31625:2;31609:28;;31618:5;31609:28;;;;;;;;;;;;31233:412;31171:474;;:::o;23684:315::-;23737:7;23965:15;:13;:15::i;:::-;23950:12;;23934:13;;:28;:46;23927:53;;23684:315;:::o;32597:170::-;32731:28;32741:4;32747:2;32751:7;32731:9;:28::i;:::-;32597:170;;;:::o;91155:114::-;91218:4;91242:11;:19;91254:6;91242:19;;;;;;;;;;;;;;;;;;;;;;;;;91235:26;;91155:114;;;:::o;89274:1230::-;89205:10;89192:23;;:9;:23;;;89184:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:1:::1;2467:7;;:19;;2459:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:1;2600:7;:18;;;;89400:15:::2;89420:11;:23;89432:10;89420:23;;;;;;;;;;;;;;;;;;;;;;;;;89418:26;:55;;;;;89462:9;;89449:10;;:22;89418:55;89400:73;;89485:12;89505:16;;89498:5;:23;89485:36;;89534:12;89549:5;;89534:20;;89576:12;89618:10;89601:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;89591:39;;;;;;89576:54;;89656:10;:22;;;;;89671:7;89656:22;89651:61;;;89699:1;89694:6;;89651:61;89730:10;:22;;;;;89745:7;89744:8;89730:22;89726:244;;;89813:4;89793:16;;89787:5;:22;;;;:::i;:::-;89786:31;;;;:::i;:::-;89773:9;:44;;89765:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;89726:244;;;89918:4;89910:5;:12;;;;:::i;:::-;89897:9;:25;;89889:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;89726:244;89988:53;90007:12;;89988:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90021:13;;90036:4;89988:18;:53::i;:::-;89980:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;90114:9;;90105:5;90089:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;90081:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;90161:1;90155:5;:7;90147:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;90206:11;::::0;::::2;;;;;;;;90198:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;90299:12;;90290:5;90264:25;90278:10;90264:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;90256:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;90386:4;90362:11;:23;90374:10;90362:23;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;90406:10;90403:53;;;90432:10;;:12;;;;;;;;;:::i;:::-;;;;;;90403:53;90468:28;90478:10;90490:5;90468:9;:28::i;:::-;89387:1117;;;;1825:1:::1;2779:7;:22;;;;89274:1230:::0;;;:::o;90514:519::-;89205:10;89192:23;;:9;:23;;;89184:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:1:::1;2467:7;;:19;;2459:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1869:1;2600:7;:18;;;;90645:5:::2;;90637;:13;;;;:::i;:::-;90624:9;:26;;90616:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;90728:9;;90719:5;90703:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;90695:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;90813:12;;90804:5;90778:25;90792:10;90778:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;90770:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;90880:1;90874:5;:7;90866:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;90925:11;::::0;::::2;;;;;;;;90917:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;90997:28;91007:10;91019:5;90997:9;:28::i;:::-;1825:1:::1;2779:7;:22;;;;90514:519:::0;:::o;92564:89::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92639:6:::1;92625:11;::::0;:20:::1;;;;;;;;;;;;;;;;;;92564:89:::0;:::o;88343:31::-;;;;:::o;93063:483::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93117:15:::1;93135:21;93117:39;;93171:16;93205:4;93199:3;93190:7;:12;;;;:::i;:::-;:19;;;;:::i;:::-;93171:38;;93224:16;93257:3;93252:2;93243:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;93224:36;;93275:16;93309:4;93303:3;93294:7;:12;;;;:::i;:::-;:19;;;;:::i;:::-;93275:38;;93338:13;;;;;;;;;;;93330:31;;:41;93362:8;93330:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;93394:7;;;;;;;;;;;93386:25;;:35;93412:8;93386:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;93444:7;;;;;;;;;;;93436:25;;:35;93462:8;93436:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;93494:7;;;;;;;;;;;93486:25;;:35;93512:8;93486:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;93102:444;;;;93063:483::o:0;32838:185::-;32976:39;32993:4;32999:2;33003:7;32976:39;;;;;;;;;;;;:16;:39::i;:::-;32838:185;;;:::o;88259:31::-;;;;:::o;88976:28::-;;;;;;;;;;;;;:::o;91893:88::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;91970:3:::1;91960:7;:13;;;;;;;;;;;;:::i;:::-;;91893:88:::0;:::o;29432:144::-;29496:7;29539:27;29558:7;29539:18;:27::i;:::-;29516:52;;29432:144;;;:::o;92454:102::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92538:10:::1;92526:9;:22;;;;92454:102:::0;:::o;25309:224::-;25373:7;25414:1;25397:19;;:5;:19;;;25393:60;;;25425:28;;;;;;;;;;;;;;25393:60;20648:13;25471:18;:25;25490:5;25471:25;;;;;;;;;;;;;;;;:54;25464:61;;25309:224;;;:::o;55159:103::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55224:30:::1;55251:1;55224:18;:30::i;:::-;55159:103::o:0;92745:310::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92852:1:::1;92838:11;:15;92830:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;92892:14;92909:13;:11;:13::i;:::-;92892:30;;92961:9;;92946:11;92937:6;:20;;;;:::i;:::-;:33;;92929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93008:35;93018:11;93031;93008:9;:35::i;:::-;92823:232;92745:310:::0;;:::o;88863:104::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54508:87::-;54554:7;54581:6;;;;;;;;;;;54574:13;;54508:87;:::o;92355:92::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92430:9:::1;92422:5;:17;;;;92355:92:::0;:::o;92144:95::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92225:6:::1;92213:9;:18;;;;92144:95:::0;:::o;29812:104::-;29868:13;29901:7;29894:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29812:104;:::o;88215:35::-;;;;:::o;31987:308::-;32098:19;:17;:19::i;:::-;32086:31;;:8;:31;;;32082:61;;;32126:17;;;;;;;;;;;;;;32082:61;32208:8;32156:18;:39;32175:19;:17;:19::i;:::-;32156:39;;;;;;;;;;;;;;;:49;32196:8;32156:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32268:8;32232:55;;32247:19;:17;:19::i;:::-;32232:55;;;32278:8;32232:55;;;;;;:::i;:::-;;;;;;;;31987:308;;:::o;92665:75::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92721:8:::1;;;;;;;;;;;92720:9;92709:8;;:20;;;;;;;;;;;;;;;;;;92665:75::o:0;88299:35::-;;;;:::o;33094:396::-;33261:28;33271:4;33277:2;33281:7;33261:9;:28::i;:::-;33322:1;33304:2;:14;;;:19;33300:183;;33343:56;33374:4;33380:2;33384:7;33393:5;33343:30;:56::i;:::-;33338:145;;33427:40;;;;;;;;;;;;;;33338:145;33300:183;33094:396;;;;:::o;91404:481::-;91502:13;91543:16;91551:7;91543;:16::i;:::-;91527:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;91649:5;91637:17;;:8;;;;;;;;;;;:17;;;91633:56;;;91672:9;91665:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91633:56;91697:28;91728:10;:8;:10::i;:::-;91697:41;;91783:1;91758:14;91752:28;:32;:127;;;;;;;;;;;;;;;;;91820:14;91836:18;:7;:16;:18::i;:::-;91803:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91752:127;91745:134;;;91404:481;;;;:::o;88423:29::-;;;;:::o;88794:30::-;;;;;;;;;;;;:::o;88383:31::-;;;;:::o;93554:218::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93654:15:::1;93672:21;93654:39;;93732:13;;;;;;;;;;;93724:31;;:40;93756:7;93724:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;93602:170;93554:218::o:0;92247:100::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92333:6:::1;92318:12;:21;;;;92247:100:::0;:::o;32366:164::-;32463:4;32487:18;:25;32506:5;32487:25;;;;;;;;;;;;;;;:35;32513:8;32487:35;;;;;;;;;;;;;;;;;;;;;;;;;32480:42;;32366:164;;;;:::o;91277:119::-;91340:7;91367:21;91381:6;91367:13;:21::i;:::-;91360:28;;91277:119;;;:::o;55417:201::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:1:::1;55506:22;;:8;:22;;;;55498:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55582:28;55601:8;55582:18;:28::i;:::-;55417:201:::0;:::o;91989:147::-;54739:12;:10;:12::i;:::-;54728:23;;:7;:5;:7::i;:::-;:23;;;54720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92106:12:::1;92090:13;:28;;;;91989:147:::0;:::o;33745:273::-;33802:4;33858:7;33839:15;:13;:15::i;:::-;:26;;:66;;;;;33892:13;;33882:7;:23;33839:66;:152;;;;;33990:1;21418:8;33943:17;:26;33961:7;33943:26;;;;;;;;;;;;:43;:48;33839:152;33819:172;;33745:273;;;:::o;26947:1129::-;27014:7;27034:12;27049:7;27034:22;;27117:4;27098:15;:13;:15::i;:::-;:23;27094:915;;27151:13;;27144:4;:20;27140:869;;;27189:14;27206:17;:23;27224:4;27206:23;;;;;;;;;;;;27189:40;;27322:1;21418:8;27295:6;:23;:28;27291:699;;;27814:113;27831:1;27821:6;:11;27814:113;;;27874:17;:25;27892:6;;;;;;;27874:25;;;;;;;;;;;;27865:34;;27814:113;;;27960:6;27953:13;;;;;;27291:699;27166:843;27140:869;27094:915;28037:31;;;;;;;;;;;;;;26947:1129;;;;:::o;47735:105::-;47795:7;47822:10;47815:17;;47735:105;:::o;23207:92::-;23263:7;23207:92;:::o;38992:2515::-;39107:27;39137;39156:7;39137:18;:27::i;:::-;39107:57;;39222:4;39181:45;;39197:19;39181:45;;;39177:86;;39235:28;;;;;;;;;;;;;;39177:86;39276:22;39325:4;39302:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;39346:43;39363:4;39369:19;:17;:19::i;:::-;39346:16;:43::i;:::-;39302:87;:147;;;;39430:19;:17;:19::i;:::-;39406:43;;:20;39418:7;39406:11;:20::i;:::-;:43;;;39302:147;39276:174;;39468:17;39463:66;;39494:35;;;;;;;;;;;;;;39463:66;39558:1;39544:16;;:2;:16;;;39540:52;;;39569:23;;;;;;;;;;;;;;39540:52;39605:43;39627:4;39633:2;39637:7;39646:1;39605:21;:43::i;:::-;39721:15;:24;39737:7;39721:24;;;;;;;;;;;;39714:31;;;;;;;;;;;40113:18;:24;40132:4;40113:24;;;;;;;;;;;;;;;;40111:26;;;;;;;;;;;;40182:18;:22;40201:2;40182:22;;;;;;;;;;;;;;;;40180:24;;;;;;;;;;;21700:8;21302:3;40563:15;:41;;40521:21;40539:2;40521:17;:21::i;:::-;:84;:128;40475:17;:26;40493:7;40475:26;;;;;;;;;;;:174;;;;40819:1;21700:8;40769:19;:46;:51;40765:626;;;40841:19;40873:1;40863:7;:11;40841:33;;41030:1;40996:17;:30;41014:11;40996:30;;;;;;;;;;;;:35;40992:384;;;41134:13;;41119:11;:28;41115:242;;41314:19;41281:17;:30;41299:11;41281:30;;;;;;;;;;;:52;;;;41115:242;40992:384;40822:569;40765:626;41438:7;41434:2;41419:27;;41428:4;41419:27;;;;;;;;;;;;41457:42;41478:4;41484:2;41488:7;41497:1;41457:20;:42::i;:::-;39096:2411;;38992:2515;;;:::o;4073:190::-;4198:4;4251;4222:25;4235:5;4242:4;4222:12;:25::i;:::-;:33;4215:40;;4073:190;;;;;:::o;25615:176::-;25676:7;20648:13;20785:2;25704:18;:25;25723:5;25704:25;;;;;;;;;;;;;;;;:49;;25703:80;25696:87;;25615:176;;;:::o;34102:104::-;34171:27;34181:2;34185:8;34171:27;;;;;;;;;;;;:9;:27::i;:::-;34102:104;;:::o;53179:98::-;53232:7;53259:10;53252:17;;53179:98;:::o;55778:191::-;55852:16;55871:6;;;;;;;;;;;55852:25;;55897:8;55888:6;;:17;;;;;;;;;;;;;;;;;;55952:8;55921:40;;55942:8;55921:40;;;;;;;;;;;;55841:128;55778:191;:::o;45204:716::-;45367:4;45413:2;45388:45;;;45434:19;:17;:19::i;:::-;45455:4;45461:7;45470:5;45388:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45688:1;45671:6;:13;:18;45667:235;;;45717:40;;;;;;;;;;;;;;45667:235;45860:6;45854:13;45845:6;45841:2;45837:15;45830:38;45384:529;45557:54;;;45547:64;;;:6;:64;;;;45540:71;;;45204:716;;;;;;:::o;91041:108::-;91101:13;91134:7;91127:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91041:108;:::o;50380:723::-;50436:13;50666:1;50657:5;:10;50653:53;;;50684:10;;;;;;;;;;;;;;;;;;;;;50653:53;50716:12;50731:5;50716:20;;50747:14;50772:78;50787:1;50779:4;:9;50772:78;;50805:8;;;;;:::i;:::-;;;;50836:2;50828:10;;;;;:::i;:::-;;;50772:78;;;50860:19;50892:6;50882:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50860:39;;50910:154;50926:1;50917:5;:10;50910:154;;50954:1;50944:11;;;;;:::i;:::-;;;51021:2;51013:5;:10;;;;:::i;:::-;51000:2;:24;;;;:::i;:::-;50987:39;;50970:6;50977;50970:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;51050:2;51041:11;;;;;:::i;:::-;;;50910:154;;;51088:6;51074:21;;;;;50380:723;;;;:::o;46568:159::-;;;;;:::o;30732:148::-;30796:14;30857:5;30847:15;;30732:148;;;:::o;47386:158::-;;;;;:::o;4940:296::-;5023:7;5043:20;5066:4;5043:27;;5086:9;5081:118;5105:5;:12;5101:1;:16;5081:118;;;5154:33;5164:12;5178:5;5184:1;5178:8;;;;;;;;:::i;:::-;;;;;;;;5154:9;:33::i;:::-;5139:48;;5119:3;;;;;:::i;:::-;;;;5081:118;;;;5216:12;5209:19;;;4940:296;;;;:::o;34579:2236::-;34702:20;34725:13;;34702:36;;34767:1;34753:16;;:2;:16;;;34749:48;;;34778:19;;;;;;;;;;;;;;34749:48;34824:1;34812:8;:13;34808:44;;;34834:18;;;;;;;;;;;;;;34808:44;34865:61;34895:1;34899:2;34903:12;34917:8;34865:21;:61::i;:::-;35469:1;20785:2;35440:1;:25;;35439:31;35427:8;:44;35401:18;:22;35420:2;35401:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;21565:3;35870:29;35897:1;35885:8;:13;35870:14;:29::i;:::-;:56;;21302:3;35807:15;:41;;35765:21;35783:2;35765:17;:21::i;:::-;:84;:162;35714:17;:31;35732:12;35714:31;;;;;;;;;;;:213;;;;35944:20;35967:12;35944:35;;35994:11;36023:8;36008:12;:23;35994:37;;36070:1;36052:2;:14;;;:19;36048:635;;36092:313;36148:12;36144:2;36123:38;;36140:1;36123:38;;;;;;;;;;;;36189:69;36228:1;36232:2;36236:14;;;;;;36252:5;36189:30;:69::i;:::-;36184:174;;36294:40;;;;;;;;;;;;;;36184:174;36400:3;36385:12;:18;36092:313;;36486:12;36469:13;;:29;36465:43;;36500:8;;;36465:43;36048:635;;;36549:119;36605:14;;;;;;36601:2;36580:40;;36597:1;36580:40;;;;;;;;;;;;36663:3;36648:12;:18;36549:119;;36048:635;36713:12;36697:13;:28;;;;35178:1559;;36747:60;36776:1;36780:2;36784:12;36798:8;36747:20;:60::i;:::-;34691:2124;34579:2236;;;:::o;11147:149::-;11210:7;11241:1;11237;:5;:51;;11268:20;11283:1;11286;11268:14;:20::i;:::-;11237:51;;;11245:20;11260:1;11263;11245:14;:20::i;:::-;11237:51;11230:58;;11147:149;;;;:::o;30967:142::-;31025:14;31086:5;31076:15;;30967:142;;;:::o;11304:268::-;11372:13;11479:1;11473:4;11466:15;11508:1;11502:4;11495:15;11549:4;11543;11533:21;11524:30;;11304:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:329::-;7454:6;7503:2;7491:9;7482:7;7478:23;7474:32;7471:119;;;7509:79;;:::i;:::-;7471:119;7629:1;7654:53;7699:7;7690:6;7679:9;7675:22;7654:53;:::i;:::-;7644:63;;7600:117;7395:329;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:474::-;9336:6;9344;9393:2;9381:9;9372:7;9368:23;9364:32;9361:119;;;9399:79;;:::i;:::-;9361:119;9519:1;9544:53;9589:7;9580:6;9569:9;9565:22;9544:53;:::i;:::-;9534:63;;9490:117;9646:2;9672:53;9717:7;9708:6;9697:9;9693:22;9672:53;:::i;:::-;9662:63;;9617:118;9268:474;;;;;:::o;9748:118::-;9835:24;9853:5;9835:24;:::i;:::-;9830:3;9823:37;9748:118;;:::o;9872:157::-;9977:45;9997:24;10015:5;9997:24;:::i;:::-;9977:45;:::i;:::-;9972:3;9965:58;9872:157;;:::o;10035:109::-;10116:21;10131:5;10116:21;:::i;:::-;10111:3;10104:34;10035:109;;:::o;10150:360::-;10236:3;10264:38;10296:5;10264:38;:::i;:::-;10318:70;10381:6;10376:3;10318:70;:::i;:::-;10311:77;;10397:52;10442:6;10437:3;10430:4;10423:5;10419:16;10397:52;:::i;:::-;10474:29;10496:6;10474:29;:::i;:::-;10469:3;10465:39;10458:46;;10240:270;10150:360;;;;:::o;10516:364::-;10604:3;10632:39;10665:5;10632:39;:::i;:::-;10687:71;10751:6;10746:3;10687:71;:::i;:::-;10680:78;;10767:52;10812:6;10807:3;10800:4;10793:5;10789:16;10767:52;:::i;:::-;10844:29;10866:6;10844:29;:::i;:::-;10839:3;10835:39;10828:46;;10608:272;10516:364;;;;:::o;10886:377::-;10992:3;11020:39;11053:5;11020:39;:::i;:::-;11075:89;11157:6;11152:3;11075:89;:::i;:::-;11068:96;;11173:52;11218:6;11213:3;11206:4;11199:5;11195:16;11173:52;:::i;:::-;11250:6;11245:3;11241:16;11234:23;;10996:267;10886:377;;;;:::o;11269:366::-;11411:3;11432:67;11496:2;11491:3;11432:67;:::i;:::-;11425:74;;11508:93;11597:3;11508:93;:::i;:::-;11626:2;11621:3;11617:12;11610:19;;11269:366;;;:::o;11641:::-;11783:3;11804:67;11868:2;11863:3;11804:67;:::i;:::-;11797:74;;11880:93;11969:3;11880:93;:::i;:::-;11998:2;11993:3;11989:12;11982:19;;11641:366;;;:::o;12013:365::-;12155:3;12176:66;12240:1;12235:3;12176:66;:::i;:::-;12169:73;;12251:93;12340:3;12251:93;:::i;:::-;12369:2;12364:3;12360:12;12353:19;;12013:365;;;:::o;12384:366::-;12526:3;12547:67;12611:2;12606:3;12547:67;:::i;:::-;12540:74;;12623:93;12712:3;12623:93;:::i;:::-;12741:2;12736:3;12732:12;12725:19;;12384:366;;;:::o;12756:::-;12898:3;12919:67;12983:2;12978:3;12919:67;:::i;:::-;12912:74;;12995:93;13084:3;12995:93;:::i;:::-;13113:2;13108:3;13104:12;13097:19;;12756:366;;;:::o;13128:::-;13270:3;13291:67;13355:2;13350:3;13291:67;:::i;:::-;13284:74;;13367:93;13456:3;13367:93;:::i;:::-;13485:2;13480:3;13476:12;13469:19;;13128:366;;;:::o;13500:::-;13642:3;13663:67;13727:2;13722:3;13663:67;:::i;:::-;13656:74;;13739:93;13828:3;13739:93;:::i;:::-;13857:2;13852:3;13848:12;13841:19;;13500:366;;;:::o;13872:::-;14014:3;14035:67;14099:2;14094:3;14035:67;:::i;:::-;14028:74;;14111:93;14200:3;14111:93;:::i;:::-;14229:2;14224:3;14220:12;14213:19;;13872:366;;;:::o;14244:::-;14386:3;14407:67;14471:2;14466:3;14407:67;:::i;:::-;14400:74;;14483:93;14572:3;14483:93;:::i;:::-;14601:2;14596:3;14592:12;14585:19;;14244:366;;;:::o;14616:400::-;14776:3;14797:84;14879:1;14874:3;14797:84;:::i;:::-;14790:91;;14890:93;14979:3;14890:93;:::i;:::-;15008:1;15003:3;14999:11;14992:18;;14616:400;;;:::o;15022:366::-;15164:3;15185:67;15249:2;15244:3;15185:67;:::i;:::-;15178:74;;15261:93;15350:3;15261:93;:::i;:::-;15379:2;15374:3;15370:12;15363:19;;15022:366;;;:::o;15394:::-;15536:3;15557:67;15621:2;15616:3;15557:67;:::i;:::-;15550:74;;15633:93;15722:3;15633:93;:::i;:::-;15751:2;15746:3;15742:12;15735:19;;15394:366;;;:::o;15766:::-;15908:3;15929:67;15993:2;15988:3;15929:67;:::i;:::-;15922:74;;16005:93;16094:3;16005:93;:::i;:::-;16123:2;16118:3;16114:12;16107:19;;15766:366;;;:::o;16138:::-;16280:3;16301:67;16365:2;16360:3;16301:67;:::i;:::-;16294:74;;16377:93;16466:3;16377:93;:::i;:::-;16495:2;16490:3;16486:12;16479:19;;16138:366;;;:::o;16510:::-;16652:3;16673:67;16737:2;16732:3;16673:67;:::i;:::-;16666:74;;16749:93;16838:3;16749:93;:::i;:::-;16867:2;16862:3;16858:12;16851:19;;16510:366;;;:::o;16882:118::-;16969:24;16987:5;16969:24;:::i;:::-;16964:3;16957:37;16882:118;;:::o;17006:256::-;17118:3;17133:75;17204:3;17195:6;17133:75;:::i;:::-;17233:2;17228:3;17224:12;17217:19;;17253:3;17246:10;;17006:256;;;;:::o;17268:701::-;17549:3;17571:95;17662:3;17653:6;17571:95;:::i;:::-;17564:102;;17683:95;17774:3;17765:6;17683:95;:::i;:::-;17676:102;;17795:148;17939:3;17795:148;:::i;:::-;17788:155;;17960:3;17953:10;;17268:701;;;;;:::o;17975:222::-;18068:4;18106:2;18095:9;18091:18;18083:26;;18119:71;18187:1;18176:9;18172:17;18163:6;18119:71;:::i;:::-;17975:222;;;;:::o;18203:640::-;18398:4;18436:3;18425:9;18421:19;18413:27;;18450:71;18518:1;18507:9;18503:17;18494:6;18450:71;:::i;:::-;18531:72;18599:2;18588:9;18584:18;18575:6;18531:72;:::i;:::-;18613;18681:2;18670:9;18666:18;18657:6;18613:72;:::i;:::-;18732:9;18726:4;18722:20;18717:2;18706:9;18702:18;18695:48;18760:76;18831:4;18822:6;18760:76;:::i;:::-;18752:84;;18203:640;;;;;;;:::o;18849:210::-;18936:4;18974:2;18963:9;18959:18;18951:26;;18987:65;19049:1;19038:9;19034:17;19025:6;18987:65;:::i;:::-;18849:210;;;;:::o;19065:313::-;19178:4;19216:2;19205:9;19201:18;19193:26;;19265:9;19259:4;19255:20;19251:1;19240:9;19236:17;19229:47;19293:78;19366:4;19357:6;19293:78;:::i;:::-;19285:86;;19065:313;;;;:::o;19384:419::-;19550:4;19588:2;19577:9;19573:18;19565:26;;19637:9;19631:4;19627:20;19623:1;19612:9;19608:17;19601:47;19665:131;19791:4;19665:131;:::i;:::-;19657:139;;19384:419;;;:::o;19809:::-;19975:4;20013:2;20002:9;19998:18;19990:26;;20062:9;20056:4;20052:20;20048:1;20037:9;20033:17;20026:47;20090:131;20216:4;20090:131;:::i;:::-;20082:139;;19809:419;;;:::o;20234:::-;20400:4;20438:2;20427:9;20423:18;20415:26;;20487:9;20481:4;20477:20;20473:1;20462:9;20458:17;20451:47;20515:131;20641:4;20515:131;:::i;:::-;20507:139;;20234:419;;;:::o;20659:::-;20825:4;20863:2;20852:9;20848:18;20840:26;;20912:9;20906:4;20902:20;20898:1;20887:9;20883:17;20876:47;20940:131;21066:4;20940:131;:::i;:::-;20932:139;;20659:419;;;:::o;21084:::-;21250:4;21288:2;21277:9;21273:18;21265:26;;21337:9;21331:4;21327:20;21323:1;21312:9;21308:17;21301:47;21365:131;21491:4;21365:131;:::i;:::-;21357:139;;21084:419;;;:::o;21509:::-;21675:4;21713:2;21702:9;21698:18;21690:26;;21762:9;21756:4;21752:20;21748:1;21737:9;21733:17;21726:47;21790:131;21916:4;21790:131;:::i;:::-;21782:139;;21509:419;;;:::o;21934:::-;22100:4;22138:2;22127:9;22123:18;22115:26;;22187:9;22181:4;22177:20;22173:1;22162:9;22158:17;22151:47;22215:131;22341:4;22215:131;:::i;:::-;22207:139;;21934:419;;;:::o;22359:::-;22525:4;22563:2;22552:9;22548:18;22540:26;;22612:9;22606:4;22602:20;22598:1;22587:9;22583:17;22576:47;22640:131;22766:4;22640:131;:::i;:::-;22632:139;;22359:419;;;:::o;22784:::-;22950:4;22988:2;22977:9;22973:18;22965:26;;23037:9;23031:4;23027:20;23023:1;23012:9;23008:17;23001:47;23065:131;23191:4;23065:131;:::i;:::-;23057:139;;22784:419;;;:::o;23209:::-;23375:4;23413:2;23402:9;23398:18;23390:26;;23462:9;23456:4;23452:20;23448:1;23437:9;23433:17;23426:47;23490:131;23616:4;23490:131;:::i;:::-;23482:139;;23209:419;;;:::o;23634:::-;23800:4;23838:2;23827:9;23823:18;23815:26;;23887:9;23881:4;23877:20;23873:1;23862:9;23858:17;23851:47;23915:131;24041:4;23915:131;:::i;:::-;23907:139;;23634:419;;;:::o;24059:::-;24225:4;24263:2;24252:9;24248:18;24240:26;;24312:9;24306:4;24302:20;24298:1;24287:9;24283:17;24276:47;24340:131;24466:4;24340:131;:::i;:::-;24332:139;;24059:419;;;:::o;24484:::-;24650:4;24688:2;24677:9;24673:18;24665:26;;24737:9;24731:4;24727:20;24723:1;24712:9;24708:17;24701:47;24765:131;24891:4;24765:131;:::i;:::-;24757:139;;24484:419;;;:::o;24909:::-;25075:4;25113:2;25102:9;25098:18;25090:26;;25162:9;25156:4;25152:20;25148:1;25137:9;25133:17;25126:47;25190:131;25316:4;25190:131;:::i;:::-;25182:139;;24909:419;;;:::o;25334:222::-;25427:4;25465:2;25454:9;25450:18;25442:26;;25478:71;25546:1;25535:9;25531:17;25522:6;25478:71;:::i;:::-;25334:222;;;;:::o;25562:129::-;25596:6;25623:20;;:::i;:::-;25613:30;;25652:33;25680:4;25672:6;25652:33;:::i;:::-;25562:129;;;:::o;25697:75::-;25730:6;25763:2;25757:9;25747:19;;25697:75;:::o;25778:307::-;25839:4;25929:18;25921:6;25918:30;25915:56;;;25951:18;;:::i;:::-;25915:56;25989:29;26011:6;25989:29;:::i;:::-;25981:37;;26073:4;26067;26063:15;26055:23;;25778:307;;;:::o;26091:308::-;26153:4;26243:18;26235:6;26232:30;26229:56;;;26265:18;;:::i;:::-;26229:56;26303:29;26325:6;26303:29;:::i;:::-;26295:37;;26387:4;26381;26377:15;26369:23;;26091:308;;;:::o;26405:98::-;26456:6;26490:5;26484:12;26474:22;;26405:98;;;:::o;26509:99::-;26561:6;26595:5;26589:12;26579:22;;26509:99;;;:::o;26614:168::-;26697:11;26731:6;26726:3;26719:19;26771:4;26766:3;26762:14;26747:29;;26614:168;;;;:::o;26788:169::-;26872:11;26906:6;26901:3;26894:19;26946:4;26941:3;26937:14;26922:29;;26788:169;;;;:::o;26963:148::-;27065:11;27102:3;27087:18;;26963:148;;;;:::o;27117:305::-;27157:3;27176:20;27194:1;27176:20;:::i;:::-;27171:25;;27210:20;27228:1;27210:20;:::i;:::-;27205:25;;27364:1;27296:66;27292:74;27289:1;27286:81;27283:107;;;27370:18;;:::i;:::-;27283:107;27414:1;27411;27407:9;27400:16;;27117:305;;;;:::o;27428:185::-;27468:1;27485:20;27503:1;27485:20;:::i;:::-;27480:25;;27519:20;27537:1;27519:20;:::i;:::-;27514:25;;27558:1;27548:35;;27563:18;;:::i;:::-;27548:35;27605:1;27602;27598:9;27593:14;;27428:185;;;;:::o;27619:348::-;27659:7;27682:20;27700:1;27682:20;:::i;:::-;27677:25;;27716:20;27734:1;27716:20;:::i;:::-;27711:25;;27904:1;27836:66;27832:74;27829:1;27826:81;27821:1;27814:9;27807:17;27803:105;27800:131;;;27911:18;;:::i;:::-;27800:131;27959:1;27956;27952:9;27941:20;;27619:348;;;;:::o;27973:191::-;28013:4;28033:20;28051:1;28033:20;:::i;:::-;28028:25;;28067:20;28085:1;28067:20;:::i;:::-;28062:25;;28106:1;28103;28100:8;28097:34;;;28111:18;;:::i;:::-;28097:34;28156:1;28153;28149:9;28141:17;;27973:191;;;;:::o;28170:96::-;28207:7;28236:24;28254:5;28236:24;:::i;:::-;28225:35;;28170:96;;;:::o;28272:90::-;28306:7;28349:5;28342:13;28335:21;28324:32;;28272:90;;;:::o;28368:77::-;28405:7;28434:5;28423:16;;28368:77;;;:::o;28451:149::-;28487:7;28527:66;28520:5;28516:78;28505:89;;28451:149;;;:::o;28606:126::-;28643:7;28683:42;28676:5;28672:54;28661:65;;28606:126;;;:::o;28738:77::-;28775:7;28804:5;28793:16;;28738:77;;;:::o;28821:154::-;28905:6;28900:3;28895;28882:30;28967:1;28958:6;28953:3;28949:16;28942:27;28821:154;;;:::o;28981:307::-;29049:1;29059:113;29073:6;29070:1;29067:13;29059:113;;;29158:1;29153:3;29149:11;29143:18;29139:1;29134:3;29130:11;29123:39;29095:2;29092:1;29088:10;29083:15;;29059:113;;;29190:6;29187:1;29184:13;29181:101;;;29270:1;29261:6;29256:3;29252:16;29245:27;29181:101;29030:258;28981:307;;;:::o;29294:320::-;29338:6;29375:1;29369:4;29365:12;29355:22;;29422:1;29416:4;29412:12;29443:18;29433:81;;29499:4;29491:6;29487:17;29477:27;;29433:81;29561:2;29553:6;29550:14;29530:18;29527:38;29524:84;;;29580:18;;:::i;:::-;29524:84;29345:269;29294:320;;;:::o;29620:281::-;29703:27;29725:4;29703:27;:::i;:::-;29695:6;29691:40;29833:6;29821:10;29818:22;29797:18;29785:10;29782:34;29779:62;29776:88;;;29844:18;;:::i;:::-;29776:88;29884:10;29880:2;29873:22;29663:238;29620:281;;:::o;29907:233::-;29946:3;29969:24;29987:5;29969:24;:::i;:::-;29960:33;;30015:66;30008:5;30005:77;30002:103;;;30085:18;;:::i;:::-;30002:103;30132:1;30125:5;30121:13;30114:20;;29907:233;;;:::o;30146:100::-;30185:7;30214:26;30234:5;30214:26;:::i;:::-;30203:37;;30146:100;;;:::o;30252:94::-;30291:7;30320:20;30334:5;30320:20;:::i;:::-;30309:31;;30252:94;;;:::o;30352:176::-;30384:1;30401:20;30419:1;30401:20;:::i;:::-;30396:25;;30435:20;30453:1;30435:20;:::i;:::-;30430:25;;30474:1;30464:35;;30479:18;;:::i;:::-;30464:35;30520:1;30517;30513:9;30508:14;;30352:176;;;;:::o;30534:180::-;30582:77;30579:1;30572:88;30679:4;30676:1;30669:15;30703:4;30700:1;30693:15;30720:180;30768:77;30765:1;30758:88;30865:4;30862:1;30855:15;30889:4;30886:1;30879:15;30906:180;30954:77;30951:1;30944:88;31051:4;31048:1;31041:15;31075:4;31072:1;31065:15;31092:180;31140:77;31137:1;31130:88;31237:4;31234:1;31227:15;31261:4;31258:1;31251:15;31278:180;31326:77;31323:1;31316:88;31423:4;31420:1;31413:15;31447:4;31444:1;31437:15;31464:117;31573:1;31570;31563:12;31587:117;31696:1;31693;31686:12;31710:117;31819:1;31816;31809:12;31833:117;31942:1;31939;31932:12;31956:117;32065:1;32062;32055:12;32079:117;32188:1;32185;32178:12;32202:102;32243:6;32294:2;32290:7;32285:2;32278:5;32274:14;32270:28;32260:38;;32202:102;;;:::o;32310:94::-;32343:8;32391:5;32387:2;32383:14;32362:35;;32310:94;;;:::o;32410:235::-;32550:34;32546:1;32538:6;32534:14;32527:58;32619:18;32614:2;32606:6;32602:15;32595:43;32410:235;:::o;32651:173::-;32791:25;32787:1;32779:6;32775:14;32768:49;32651:173;:::o;32830:157::-;32970:9;32966:1;32958:6;32954:14;32947:33;32830:157;:::o;32993:225::-;33133:34;33129:1;33121:6;33117:14;33110:58;33202:8;33197:2;33189:6;33185:15;33178:33;32993:225;:::o;33224:174::-;33364:26;33360:1;33352:6;33348:14;33341:50;33224:174;:::o;33404:171::-;33544:23;33540:1;33532:6;33528:14;33521:47;33404:171;:::o;33581:166::-;33721:18;33717:1;33709:6;33705:14;33698:42;33581:166;:::o;33753:180::-;33893:32;33889:1;33881:6;33877:14;33870:56;33753:180;:::o;33939:172::-;34079:24;34075:1;34067:6;34063:14;34056:48;33939:172;:::o;34117:155::-;34257:7;34253:1;34245:6;34241:14;34234:31;34117:155;:::o;34278:182::-;34418:34;34414:1;34406:6;34402:14;34395:58;34278:182;:::o;34466:179::-;34606:31;34602:1;34594:6;34590:14;34583:55;34466:179;:::o;34651:181::-;34791:33;34787:1;34779:6;34775:14;34768:57;34651:181;:::o;34838:175::-;34978:27;34974:1;34966:6;34962:14;34955:51;34838:175;:::o;35019:177::-;35159:29;35155:1;35147:6;35143:14;35136:53;35019:177;:::o;35202:122::-;35275:24;35293:5;35275:24;:::i;:::-;35268:5;35265:35;35255:63;;35314:1;35311;35304:12;35255:63;35202:122;:::o;35330:116::-;35400:21;35415:5;35400:21;:::i;:::-;35393:5;35390:32;35380:60;;35436:1;35433;35426:12;35380:60;35330:116;:::o;35452:122::-;35525:24;35543:5;35525:24;:::i;:::-;35518:5;35515:35;35505:63;;35564:1;35561;35554:12;35505:63;35452:122;:::o;35580:120::-;35652:23;35669:5;35652:23;:::i;:::-;35645:5;35642:34;35632:62;;35690:1;35687;35680:12;35632:62;35580:120;:::o;35706:122::-;35779:24;35797:5;35779:24;:::i;:::-;35772:5;35769:35;35759:63;;35818:1;35815;35808:12;35759:63;35706:122;:::o

Swarm Source

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