ETH Price: $3,106.15 (+0.26%)
Gas: 3 Gwei

Token

ProjectAtmosSYI (AtmosSYI)
 

Overview

Max Total Supply

4,676 AtmosSYI

Holders

1,013

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bayc7990.eth
Balance
8 AtmosSYI
0x47ff2d819d56381133770c051fffd23ff273966a
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:
SmartContract

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/SmartContract.sol


pragma solidity ^0.8.15;








contract SmartContract is ERC721AQueryable, ERC721ABurnable, ReentrancyGuard, Ownable {

    using StringsUpgradeable for uint256;

    // IPFS Information
    string public baseURI;
    string public baseExtension = ".json";
    string notRevealedUri;

    // Collection and Pricing Information
    uint256 public MAX_SUPPLY = 10000;
    uint256 public MINT_PRICE = 0.03 ether;

    // MINT LIMIT
    uint256 public MAX_MINT_PER_TRANSAC = 69;

    // Mint Logistics
    bool public paused = true;
    bool public revealed = false;
    bool public isPublicMint = false;

    // Claim & Merkle Proof
    bool public claimActive = true;
    bytes32 public merkleRoot;
    mapping(address => uint256) public addressClaimedBalance;

    // Internal
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    // Team addresses
    address t1 = 0x25661f02D686714DC5ba63B7915774654e8E5538;
    address t2 = 0x3C087276127c0BaB17c00aDEdeC1145E34788403;
    address t3 = 0x6231a4342936bBD143Ae01587FbB8cd7eedE63E8;
    address t4 = 0x4104fbE93BCacfc4EF5683CF49ab07e5fE9E78ef; 
    address t5 = 0xE3248FF92B4B071d72Aeb0910Ae8588D68019A3e;
    address t6 = 0x610BE2Ba080A0f69E5787C826B7734274fcdb0f3;
    address t7 = 0xa8D0Dd2070d2874E0B185e2d42c5a6Cfa6971C26;
    address t8 = 0x9F38376129e766ee0A9Ba903f9A8D7425F6b8013;
    address t9 = 0x24d697a82b9ad433296c7B203a31846DAfae5079;
    address t10 = 0xDaCe8A59B8733e932957AC4A3101c80B87414BD0;
    address t11 = 0xeAb0798749b2Cd4B3E188Aa7fE37A410E554689F;

    address tGenesis = 0x8fd50896b8a7aE31B80EC47bc76Cf4bF2caC8FEc;
    address tSYI = 0x185E04b79ebBD224b71F4c09c07fdC8DdB441FF5;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A ("ProjectAtmosSYI", "AtmosSYI") {

        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);

        // Team get spam ===========;
        _safeMint(t1, 20);
        _safeMint(t2, 20);
        _safeMint(t3, 20);
        _safeMint(t4, 20);
        _safeMint(t5, 20);
        _safeMint(t6, 20);
        _safeMint(t7, 20);
        _safeMint(t8, 20);
        _safeMint(t9, 20);
        _safeMint(t10, 20);
        _safeMint(t11, 20);

        // Treasury get spam;
        _safeMint(tGenesis, 500);
        _safeMint(tSYI, 500);

        // Giveaway winners
        _safeMint(0x9CDF195f8B46eCBD64fb53757376382A6531b6cc, 1);
        _safeMint(0xc8bA45b6a65cad4438896c17732D168F9FA5De72, 1);
        _safeMint(0x7e9dC2B0049ff858E4f052a856fAfb0d64175CA3, 1);
        _safeMint(0x1769e601ee4B1Ff83154CFedc245472c0367aCa3, 1);
        _safeMint(0xa1650e384Af56848bC16c805897977539dD34588, 1);
        _safeMint(0x2b3403A9286037518aE698ea472fC641aE330689, 1);
        _safeMint(0x7d6e13E804FFeAF208A39C9507bbba0d37c397D3, 1);
        _safeMint(0x30F457BB9aFB8bEAd5a8fd8Eb29261302D5305a1, 1);
        _safeMint(0x2100D73a21e62631C62599e5C6C0d2AcE577c257, 1);
        _safeMint(0x6522e7e8797412a838F9452c8e3730BE439d4f8D, 1);
        _safeMint(0x39f7CCb1EA6838379c80f60e9a67880e96A0ab22, 1);
        _safeMint(0x37f41ad48b9a573bc7C72A778D4B689a0503e8CE, 1);
        _safeMint(0x2d5f3b8428a29117500E04248A2d8e27CBD1eEEB, 1);
    }

    // Claim Function ====================================================================
    function claim(bytes32[] memory merkleProof, bytes32 leaf, uint256 amount) external payable{

        if (msg.sender != owner()){
            require(!paused, "The contract is paused.");
            require(claimActive, "Claim is not open.");
            require(addressClaimedBalance[msg.sender] == 0, "Account already claimed.");

            // Merkle tree verification
            require(keccak256(abi.encodePacked(msg.sender, amount)) == leaf, "Credential is not clean.");
            require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid Merkle Proof user is not in ATMOS snapshot.");

        }

        // Increment address record
        addressClaimedBalance[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function isClaimQualified(bytes32[] memory merkleProof, bytes32 leaf, uint256 amount, address addr) public view returns (bool){
        if (keccak256(abi.encodePacked(addr, amount)) != leaf){
            return false;
        }
        if (!MerkleProof.verify(merkleProof, merkleRoot, leaf)){
            return false;
        }
        return true;
    }

    function isClaimed(address addr) public view returns(bool){
        if(addressClaimedBalance[addr] == 0){
            return false;
        }
        return true;
    }

    function claimBalance(address addr) public view returns(uint256){
        return addressClaimedBalance[addr];
    }

    
    // Mint Function ====================================================================
    function publicMint (uint256 quantity) external payable{

        require(isPublicMint, "Public mint is not open.");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left.");

        if (msg.sender != owner()){
            require(!paused, "The contract is paused.");
            require(quantity <= MAX_MINT_PER_TRANSAC, "Exceed max mint amount per transaction.");
            require(msg.value >= (MINT_PRICE * quantity), "Insufficient funds sent");
        }

        // Increment address record
        _safeMint(msg.sender, quantity);
    }

    // ==================================================================================
    // Token retrieve
    function tokenURI(uint256 tokenId) override(ERC721A, IERC721A) public view virtual returns(string memory){
        require(_exists(tokenId), "ERC721AMetadata: URI query for nonexistent token");
        if (!revealed){
            return string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension));
        }
        return string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension));
    }

    // Getters and Setters
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    function setPaused(bool _bool) public onlyOwner{
        paused = _bool;
    }
    function setIsPublicMint(bool _bool) public onlyOwner{
        isPublicMint = _bool;
    }
    function setRevealed(bool _bool) public onlyOwner{
        revealed = _bool;
    }
    function setClaimActive(bool _bool) public onlyOwner{
        claimActive = _bool;
    }
    function setMintPrice(uint256 _newMintPrice) public onlyOwner{
        MINT_PRICE = _newMintPrice;
    }
    function setMaxMintPerTransac(uint256 limit) public onlyOwner{
        MAX_MINT_PER_TRANSAC = limit;
    }
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{
        merkleRoot = _merkleRoot;
    }
    function getAddressClaimedBalance(address _userAddr) public view returns (uint256){
        return addressClaimedBalance[_userAddr];
    }

    // Withdraw
    function withdraw() external payable onlyOwner {
        (bool hs, ) = payable(tSYI).call{value: address(this).balance}("");
        if (!hs){
            payable(owner()).transfer(address(this).balance);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TRANSAC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"claimBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddr","type":"address"}],"name":"getAddressClaimedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"isClaimQualified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setIsPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxMintPerTransac","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a919062001479565b50612710600d55666a94d74f430000600e556045600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff0219169083151502179055507325661f02d686714dc5ba63b7915774654e8e5538601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733c087276127c0bab17c00adedec1145e34788403601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736231a4342936bbd143ae01587fbb8cd7eede63e8601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734104fbe93bcacfc4ef5683cf49ab07e5fe9e78ef601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e3248ff92b4b071d72aeb0910ae8588d68019a3e601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073610be2ba080a0f69e5787c826b7734274fcdb0f3601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a8d0dd2070d2874e0b185e2d42c5a6cfa6971c26601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739f38376129e766ee0a9ba903f9a8d7425f6b8013601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507324d697a82b9ad433296c7b203a31846dafae5079601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dace8a59b8733e932957ac4a3101c80b87414bd0601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073eab0798749b2cd4b3e188aa7fe37a410e554689f601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738fd50896b8a7ae31b80ec47bc76cf4bf2cac8fec601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073185e04b79ebbd224b71f4c09c07fdc8ddb441ff5601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200052b57600080fd5b5060405162006bd838038062006bd88339818101604052810190620005519190620016ce565b6040518060400160405280600f81526020017f50726f6a65637441746d6f7353594900000000000000000000000000000000008152506040518060400160405280600881526020017f41746d6f735359490000000000000000000000000000000000000000000000008152508160029081620005ce919062001479565b508060039081620005e0919062001479565b50620005f162000af960201b60201c565b60008190555050506001600881905550620006216200061562000b0260201b60201c565b62000b0a60201b60201c565b620006328262000bd060201b60201c565b620006438162000c7460201b60201c565b62000678601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b620006ad601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b620006e2601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b62000717601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b6200074c601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b62000781601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b620007b6601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b620007eb601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b62000820601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b62000855601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b6200088a601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601462000d1860201b60201c565b620008c0601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f462000d1860201b60201c565b620008f6601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101f462000d1860201b60201c565b6200091d739cdf195f8b46ecbd64fb53757376382a6531b6cc600162000d1860201b60201c565b6200094473c8ba45b6a65cad4438896c17732d168f9fa5de72600162000d1860201b60201c565b6200096b737e9dc2b0049ff858e4f052a856fafb0d64175ca3600162000d1860201b60201c565b62000992731769e601ee4b1ff83154cfedc245472c0367aca3600162000d1860201b60201c565b620009b973a1650e384af56848bc16c805897977539dd34588600162000d1860201b60201c565b620009e0732b3403a9286037518ae698ea472fc641ae330689600162000d1860201b60201c565b62000a07737d6e13e804ffeaf208a39c9507bbba0d37c397d3600162000d1860201b60201c565b62000a2e7330f457bb9afb8bead5a8fd8eb29261302d5305a1600162000d1860201b60201c565b62000a55732100d73a21e62631c62599e5c6c0d2ace577c257600162000d1860201b60201c565b62000a7c736522e7e8797412a838f9452c8e3730be439d4f8d600162000d1860201b60201c565b62000aa37339f7ccb1ea6838379c80f60e9a67880e96a0ab22600162000d1860201b60201c565b62000aca7337f41ad48b9a573bc7c72a778d4b689a0503e8ce600162000d1860201b60201c565b62000af1732d5f3b8428a29117500e04248a2d8e27cbd1eeeb600162000d1860201b60201c565b50506200196c565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000be062000b0260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c0662000d3e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c5690620017b4565b60405180910390fd5b80600a908162000c70919062001479565b5050565b62000c8462000b0260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000caa62000d3e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cfa90620017b4565b60405180910390fd5b80600c908162000d14919062001479565b5050565b62000d3a82826040518060200160405280600081525062000d6860201b60201c565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000d7a838362000e1960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1462000e1457600080549050600083820390505b62000dc360008683806001019450866200101660201b60201c565b62000dfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000da857816000541462000e1157600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e86576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820362000ec1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000ed660008483856200117760201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000f658362000f4760008660006200117d60201b60201c565b62000f5885620011ad60201b60201c565b17620011bd60201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000f8957806000819055505050620010116000848385620011e860201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262001044620011ee60201b60201c565b8786866040518563ffffffff1660e01b815260040162001068949392919062001889565b6020604051808303816000875af1925050508015620010a757506040513d601f19601f82011682018060405250810190620010a491906200193a565b60015b62001124573d8060008114620010da576040519150601f19603f3d011682016040523d82523d6000602084013e620010df565b606091505b5060008151036200111c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200119c868684620011f660201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200128157607f821691505b60208210810362001297576200129662001239565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620012c2565b6200130d8683620012c2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200135a620013546200134e8462001325565b6200132f565b62001325565b9050919050565b6000819050919050565b620013768362001339565b6200138e620013858262001361565b848454620012cf565b825550505050565b600090565b620013a562001396565b620013b28184846200136b565b505050565b5b81811015620013da57620013ce6000826200139b565b600181019050620013b8565b5050565b601f8211156200142957620013f3816200129d565b620013fe84620012b2565b810160208510156200140e578190505b620014266200141d85620012b2565b830182620013b7565b50505b505050565b600082821c905092915050565b60006200144e600019846008026200142e565b1980831691505092915050565b60006200146983836200143b565b9150826002028217905092915050565b6200148482620011ff565b67ffffffffffffffff811115620014a0576200149f6200120a565b5b620014ac825462001268565b620014b9828285620013de565b600060209050601f831160018114620014f15760008415620014dc578287015190505b620014e885826200145b565b86555062001558565b601f19841662001501866200129d565b60005b828110156200152b5784890151825560018201915060208501945060208101905062001504565b868310156200154b578489015162001547601f8916826200143b565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200159a826200157e565b810181811067ffffffffffffffff82111715620015bc57620015bb6200120a565b5b80604052505050565b6000620015d162001560565b9050620015df82826200158f565b919050565b600067ffffffffffffffff8211156200160257620016016200120a565b5b6200160d826200157e565b9050602081019050919050565b60005b838110156200163a5780820151818401526020810190506200161d565b838111156200164a576000848401525b50505050565b6000620016676200166184620015e4565b620015c5565b90508281526020810184848401111562001686576200168562001579565b5b620016938482856200161a565b509392505050565b600082601f830112620016b357620016b262001574565b5b8151620016c584826020860162001650565b91505092915050565b60008060408385031215620016e857620016e76200156a565b5b600083015167ffffffffffffffff8111156200170957620017086200156f565b5b62001717858286016200169b565b925050602083015167ffffffffffffffff8111156200173b576200173a6200156f565b5b62001749858286016200169b565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200179c60208362001753565b9150620017a98262001764565b602082019050919050565b60006020820190508181036000830152620017cf816200178d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200180382620017d6565b9050919050565b6200181581620017f6565b82525050565b620018268162001325565b82525050565b600081519050919050565b600082825260208201905092915050565b600062001855826200182c565b62001861818562001837565b9350620018738185602086016200161a565b6200187e816200157e565b840191505092915050565b6000608082019050620018a060008301876200180a565b620018af60208301866200180a565b620018be60408301856200181b565b8181036060830152620018d2818462001848565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200191481620018dd565b81146200192057600080fd5b50565b600081519050620019348162001909565b92915050565b6000602082840312156200195357620019526200156a565b5b6000620019638482850162001923565b91505092915050565b61525c806200197c6000396000f3fe6080604052600436106102c95760003560e01c806370a0823111610175578063b88d4fde116100dc578063da3b9acb11610095578063e985e9c51161006f578063e985e9c514610b15578063f2c4ce1e14610b52578063f2fde38b14610b7b578063f4a0a52814610ba4576102c9565b8063da3b9acb14610a86578063da3ef23f14610ac3578063e0a8085314610aec576102c9565b8063b88d4fde14610962578063c002d23d1461098b578063c23dc68f146109b6578063c6682862146109f3578063c87b56dd14610a1e578063d4a6a2fd14610a5b576102c9565b80638cc080251161012e5780638cc080251461082c5780638da5cb5b1461086957806395d89b411461089457806399a2557a146108bf578063a22cb465146108fc578063b633e4cd14610925576102c9565b806370a082311461072d578063715018a61461076a57806373417b091461078157806373fb6c3b146107aa5780637cb64759146107c65780638462151c146107ef576102c9565b80633057931f116102345780634b5c52e9116101ed5780635bbb2177116101c75780635bbb21771461065d5780635c975abb1461069a5780636352211e146106c55780636c0360eb14610702576102c9565b80634b5c52e9146105e0578063518302271461060957806355f804b314610634576102c9565b80633057931f146104f157806332cb6b0c1461051c5780633878376c146105475780633ccfd60b1461058457806342842e0e1461058e57806342966c68146105b7576102c9565b8063176f49e411610286578063176f49e4146103f057806318160ddd1461042d578063203c4ed71461045857806323b872dd146104815780632db11544146104aa5780632eb4a7ab146104c6576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc146103365780630921b8d214610373578063095ea7b31461039e57806316c38b3c146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f091906137ee565b610bcd565b6040516103029190613836565b60405180910390f35b34801561031757600080fd5b50610320610c5f565b60405161032d91906138ea565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613942565b610cf1565b60405161036a91906139b0565b60405180910390f35b34801561037f57600080fd5b50610388610d6d565b60405161039591906139da565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613a21565b610d73565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613a8d565b610eb4565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613aba565b610f4d565b60405161042491906139da565b60405180910390f35b34801561043957600080fd5b50610442610f65565b60405161044f91906139da565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613a8d565b610f7c565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613ae7565b611015565b005b6104c460048036038101906104bf9190613942565b611337565b005b3480156104d257600080fd5b506104db61150a565b6040516104e89190613b53565b60405180910390f35b3480156104fd57600080fd5b50610506611510565b6040516105139190613836565b60405180910390f35b34801561052857600080fd5b50610531611523565b60405161053e91906139da565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613aba565b611529565b60405161057b91906139da565b60405180910390f35b61058c611572565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613ae7565b6116d3565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613942565b6116f3565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613942565b611701565b005b34801561061557600080fd5b5061061e611787565b60405161062b9190613836565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613ca3565b61179a565b005b34801561066957600080fd5b50610684600480360381019061067f9190613db4565b611829565b6040516106919190613f60565b60405180910390f35b3480156106a657600080fd5b506106af6118ea565b6040516106bc9190613836565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613942565b6118fd565b6040516106f991906139b0565b60405180910390f35b34801561070e57600080fd5b5061071761190f565b60405161072491906138ea565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613aba565b61199d565b60405161076191906139da565b60405180910390f35b34801561077657600080fd5b5061077f611a55565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613a8d565b611add565b005b6107c460048036038101906107bf9190614071565b611b76565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906140e0565b611ded565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613aba565b611e73565b60405161082391906141cb565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613aba565b611fb6565b6040516108609190613836565b60405180910390f35b34801561087557600080fd5b5061087e612011565b60405161088b91906139b0565b60405180910390f35b3480156108a057600080fd5b506108a961203b565b6040516108b691906138ea565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906141ed565b6120cd565b6040516108f391906141cb565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190614240565b6122d9565b005b34801561093157600080fd5b5061094c60048036038101906109479190613aba565b612450565b60405161095991906139da565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614321565b612499565b005b34801561099757600080fd5b506109a061250c565b6040516109ad91906139da565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613942565b612512565b6040516109ea91906143f9565b60405180910390f35b3480156109ff57600080fd5b50610a0861257c565b604051610a1591906138ea565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613942565b61260a565b604051610a5291906138ea565b60405180910390f35b348015610a6757600080fd5b50610a706126d3565b604051610a7d9190613836565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190614414565b6126e6565b604051610aba9190613836565b60405180910390f35b348015610acf57600080fd5b50610aea6004803603810190610ae59190613ca3565b612747565b005b348015610af857600080fd5b50610b136004803603810190610b0e9190613a8d565b6127d6565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190614497565b61286f565b604051610b499190613836565b60405180910390f35b348015610b5e57600080fd5b50610b796004803603810190610b749190613ca3565b612903565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613aba565b612992565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613942565b612a89565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c6e90614506565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90614506565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b5050505050905090565b6000610cfc82612b0f565b610d32576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b6000610d7e826118fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610d9f612b6e565b73ffffffffffffffffffffffffffffffffffffffff1614610e0257610dcb81610dc6612b6e565b61286f565b610e01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ebc612b76565b73ffffffffffffffffffffffffffffffffffffffff16610eda612011565b73ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614583565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b6000610f6f612b7e565b6001546000540303905090565b610f84612b76565b73ffffffffffffffffffffffffffffffffffffffff16610fa2612011565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90614583565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b600061102082612b87565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611087576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109384612c53565b915091506110a981876110a4612b6e565b612c75565b6110f5576110be866110b9612b6e565b61286f565b6110f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361115b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111688686866001612cb9565b801561117357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112418561121d888887612cbf565b7c020000000000000000000000000000000000000000000000000000000017612ce7565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c757600060018501905060006004600083815260200190815260200160002054036112c55760005481146112c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132f8686866001612d12565b505050505050565b601060029054906101000a900460ff16611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906145ef565b60405180910390fd5b600d5481611392610f65565b61139c919061463e565b11156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d4906146e0565b60405180910390fd5b6113e5612011565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fd57601060009054906101000a900460ff1615611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061474c565b60405180910390fd5b600f548111156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906147de565b60405180910390fd5b80600e546114ba91906147fe565b3410156114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f3906148a4565b60405180910390fd5b5b6115073382612d18565b50565b60115481565b601060029054906101000a900460ff1681565b600d5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61157a612b76565b73ffffffffffffffffffffffffffffffffffffffff16611598612011565b73ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614583565b60405180910390fd5b6000601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611636906148f5565b60006040518083038185875af1925050503d8060008114611673576040519150601f19603f3d011682016040523d82523d6000602084013e611678565b606091505b50509050806116d057611689612011565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116ce573d6000803e3d6000fd5b505b50565b6116ee83838360405180602001604052806000815250612499565b505050565b6116fe816001612d36565b50565b611709612b76565b73ffffffffffffffffffffffffffffffffffffffff16611727612011565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490614583565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b6117a2612b76565b73ffffffffffffffffffffffffffffffffffffffff166117c0612011565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614583565b60405180910390fd5b80600a90816118259190614ab6565b5050565b606060008251905060008167ffffffffffffffff81111561184d5761184c613b78565b5b60405190808252806020026020018201604052801561188657816020015b611873613733565b81526020019060019003908161186b5790505b50905060005b8281146118df576118b68582815181106118a9576118a8614b88565b5b6020026020010151612512565b8282815181106118c9576118c8614b88565b5b602002602001018190525080600101905061188c565b508092505050919050565b601060009054906101000a900460ff1681565b600061190882612b87565b9050919050565b600a805461191c90614506565b80601f016020809104026020016040519081016040528092919081815260200182805461194890614506565b80156119955780601f1061196a57610100808354040283529160200191611995565b820191906000526020600020905b81548152906001019060200180831161197857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a5d612b76565b73ffffffffffffffffffffffffffffffffffffffff16611a7b612011565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614583565b60405180910390fd5b611adb6000612f88565b565b611ae5612b76565b73ffffffffffffffffffffffffffffffffffffffff16611b03612011565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614583565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b7e612011565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8857601060009054906101000a900460ff1615611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf79061474c565b60405180910390fd5b601060039054906101000a900460ff16611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690614c03565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890614c6f565b60405180910390fd5b813382604051602001611ce5929190614cf8565b6040516020818303038152906040528051906020012014611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614d70565b60405180910390fd5b611d48836011548461304e565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614e02565b60405180910390fd5b5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd7919061463e565b92505081905550611de83382612d18565b505050565b611df5612b76565b73ffffffffffffffffffffffffffffffffffffffff16611e13612011565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090614583565b60405180910390fd5b8060118190555050565b60606000806000611e838561199d565b905060008167ffffffffffffffff811115611ea157611ea0613b78565b5b604051908082528060200260200182016040528015611ecf5781602001602082028036833780820191505090505b509050611eda613733565b6000611ee4612b7e565b90505b838614611fa857611ef781613065565b91508160400151611f9d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f4257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f9c5780838780600101985081518110611f8f57611f8e614b88565b5b6020026020010181815250505b5b806001019050611ee7565b508195505050505050919050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403612007576000905061200c565b600190505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461204a90614506565b80601f016020809104026020016040519081016040528092919081815260200182805461207690614506565b80156120c35780601f10612098576101008083540402835291602001916120c3565b820191906000526020600020905b8154815290600101906020018083116120a657829003601f168201915b5050505050905090565b6060818310612108576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612113613090565b905061211d612b7e565b85101561212f5761212c612b7e565b94505b8084111561213b578093505b60006121468761199d565b905084861015612169576000868603905081811015612163578091505b5061216e565b600090505b60008167ffffffffffffffff81111561218a57612189613b78565b5b6040519080825280602002602001820160405280156121b85781602001602082028036833780820191505090505b509050600082036121cf57809450505050506122d2565b60006121da88612512565b9050600081604001516121ef57816000015190505b60008990505b8881141580156122055750848714155b156122c45761221381613065565b925082604001516122b957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461225e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122b857808488806001019950815181106122ab576122aa614b88565b5b6020026020010181815250505b5b8060010190506121f5565b508583528296505050505050505b9392505050565b6122e1612b6e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612345576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612352612b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123ff612b6e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124449190613836565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6124a4848484611015565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612506576124cf84848484613099565b612505576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b61251a613733565b612522613733565b61252a612b7e565b83108061253e575061253a613090565b8310155b1561254c5780915050612577565b61255583613065565b905080604001511561256a5780915050612577565b612573836131e9565b9150505b919050565b600b805461258990614506565b80601f01602080910402602001604051908101604052809291908181526020018280546125b590614506565b80156126025780601f106125d757610100808354040283529160200191612602565b820191906000526020600020905b8154815290600101906020018083116125e557829003601f168201915b505050505081565b606061261582612b0f565b612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614e94565b60405180910390fd5b601060019054906101000a900460ff1661269d57600c61267383613209565b600b60405160200161268793929190614f73565b60405160208183030381529060405290506126ce565b600a6126a883613209565b600b6040516020016126bc93929190614f73565b60405160208183030381529060405290505b919050565b601060039054906101000a900460ff1681565b60008382846040516020016126fc929190614cf8565b6040516020818303038152906040528051906020012014612720576000905061273f565b61272d856011548661304e565b61273a576000905061273f565b600190505b949350505050565b61274f612b76565b73ffffffffffffffffffffffffffffffffffffffff1661276d612011565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614583565b60405180910390fd5b80600b90816127d29190614ab6565b5050565b6127de612b76565b73ffffffffffffffffffffffffffffffffffffffff166127fc612011565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614583565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61290b612b76565b73ffffffffffffffffffffffffffffffffffffffff16612929612011565b73ffffffffffffffffffffffffffffffffffffffff161461297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614583565b60405180910390fd5b80600c908161298e9190614ab6565b5050565b61299a612b76565b73ffffffffffffffffffffffffffffffffffffffff166129b8612011565b73ffffffffffffffffffffffffffffffffffffffff1614612a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0590614583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490615016565b60405180910390fd5b612a8681612f88565b50565b612a91612b76565b73ffffffffffffffffffffffffffffffffffffffff16612aaf612011565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90614583565b60405180910390fd5b80600e8190555050565b600081612b1a612b7e565b11158015612b29575060005482105b8015612b67575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b60008082905080612b96612b7e565b11612c1c57600054811015612c1b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c19575b60008103612c0f576004600083600190039350838152602001908152602001600020549050612be5565b8092505050612c4e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612cd6868684613369565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d32828260405180602001604052806000815250613372565b5050565b6000612d4183612b87565b90506000819050600080612d5486612c53565b915091508415612dbd57612d708184612d6b612b6e565b612c75565b612dbc57612d8583612d80612b6e565b61286f565b612dbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612dcb836000886001612cb9565b8015612dd657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e7e83612e3b85600088612cbf565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612ce7565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603612f045760006001870190506000600460008381526020019081526020016000205403612f02576000548114612f01578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6e836000886001612d12565b600160008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261305b858461340f565b1490509392505050565b61306d613733565b6130896004600084815260200190815260200160002054613484565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130bf612b6e565b8786866040518563ffffffff1660e01b81526004016130e1949392919061508b565b6020604051808303816000875af192505050801561311d57506040513d601f19601f8201168201806040525081019061311a91906150ec565b60015b613196573d806000811461314d576040519150601f19603f3d011682016040523d82523d6000602084013e613152565b606091505b50600081510361318e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6131f1613733565b6132026131fd83612b87565b613484565b9050919050565b606060008203613250576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613364565b600082905060005b6000821461328257808061326b90615119565b915050600a8261327b9190615190565b9150613258565b60008167ffffffffffffffff81111561329e5761329d613b78565b5b6040519080825280601f01601f1916602001820160405280156132d05781602001600182028036833780820191505090505b5090505b6000851461335d576001826132e991906151c1565b9150600a856132f891906151f5565b6030613304919061463e565b60f81b81838151811061331a57613319614b88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133569190615190565b94506132d4565b8093505050505b919050565b60009392505050565b61337c838361353a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461340a57600080549050600083820390505b6133bc6000868380600101945086613099565b6133f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106133a957816000541461340757600080fd5b50505b505050565b60008082905060005b845181101561347957600085828151811061343657613435614b88565b5b6020026020010151905080831161345857613451838261370c565b9250613465565b613462818461370c565b92505b50808061347190615119565b915050613418565b508091505092915050565b61348c613733565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036135e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135ed6000848385612cb9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613664836136556000866000612cbf565b61365e85613723565b17612ce7565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613688578060008190555050506137076000848385612d12565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137cb81613796565b81146137d657600080fd5b50565b6000813590506137e8816137c2565b92915050565b6000602082840312156138045761380361378c565b5b6000613812848285016137d9565b91505092915050565b60008115159050919050565b6138308161381b565b82525050565b600060208201905061384b6000830184613827565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388b578082015181840152602081019050613870565b8381111561389a576000848401525b50505050565b6000601f19601f8301169050919050565b60006138bc82613851565b6138c6818561385c565b93506138d681856020860161386d565b6138df816138a0565b840191505092915050565b6000602082019050818103600083015261390481846138b1565b905092915050565b6000819050919050565b61391f8161390c565b811461392a57600080fd5b50565b60008135905061393c81613916565b92915050565b6000602082840312156139585761395761378c565b5b60006139668482850161392d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061399a8261396f565b9050919050565b6139aa8161398f565b82525050565b60006020820190506139c560008301846139a1565b92915050565b6139d48161390c565b82525050565b60006020820190506139ef60008301846139cb565b92915050565b6139fe8161398f565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b60008060408385031215613a3857613a3761378c565b5b6000613a4685828601613a0c565b9250506020613a578582860161392d565b9150509250929050565b613a6a8161381b565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b600060208284031215613aa357613aa261378c565b5b6000613ab184828501613a78565b91505092915050565b600060208284031215613ad057613acf61378c565b5b6000613ade84828501613a0c565b91505092915050565b600080600060608486031215613b0057613aff61378c565b5b6000613b0e86828701613a0c565b9350506020613b1f86828701613a0c565b9250506040613b308682870161392d565b9150509250925092565b6000819050919050565b613b4d81613b3a565b82525050565b6000602082019050613b686000830184613b44565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb0826138a0565b810181811067ffffffffffffffff82111715613bcf57613bce613b78565b5b80604052505050565b6000613be2613782565b9050613bee8282613ba7565b919050565b600067ffffffffffffffff821115613c0e57613c0d613b78565b5b613c17826138a0565b9050602081019050919050565b82818337600083830152505050565b6000613c46613c4184613bf3565b613bd8565b905082815260208101848484011115613c6257613c61613b73565b5b613c6d848285613c24565b509392505050565b600082601f830112613c8a57613c89613b6e565b5b8135613c9a848260208601613c33565b91505092915050565b600060208284031215613cb957613cb861378c565b5b600082013567ffffffffffffffff811115613cd757613cd6613791565b5b613ce384828501613c75565b91505092915050565b600067ffffffffffffffff821115613d0757613d06613b78565b5b602082029050602081019050919050565b600080fd5b6000613d30613d2b84613cec565b613bd8565b90508083825260208201905060208402830185811115613d5357613d52613d18565b5b835b81811015613d7c5780613d68888261392d565b845260208401935050602081019050613d55565b5050509392505050565b600082601f830112613d9b57613d9a613b6e565b5b8135613dab848260208601613d1d565b91505092915050565b600060208284031215613dca57613dc961378c565b5b600082013567ffffffffffffffff811115613de857613de7613791565b5b613df484828501613d86565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e328161398f565b82525050565b600067ffffffffffffffff82169050919050565b613e5581613e38565b82525050565b613e648161381b565b82525050565b600062ffffff82169050919050565b613e8281613e6a565b82525050565b608082016000820151613e9e6000850182613e29565b506020820151613eb16020850182613e4c565b506040820151613ec46040850182613e5b565b506060820151613ed76060850182613e79565b50505050565b6000613ee98383613e88565b60808301905092915050565b6000602082019050919050565b6000613f0d82613dfd565b613f178185613e08565b9350613f2283613e19565b8060005b83811015613f53578151613f3a8882613edd565b9750613f4583613ef5565b925050600181019050613f26565b5085935050505092915050565b60006020820190508181036000830152613f7a8184613f02565b905092915050565b600067ffffffffffffffff821115613f9d57613f9c613b78565b5b602082029050602081019050919050565b613fb781613b3a565b8114613fc257600080fd5b50565b600081359050613fd481613fae565b92915050565b6000613fed613fe884613f82565b613bd8565b905080838252602082019050602084028301858111156140105761400f613d18565b5b835b8181101561403957806140258882613fc5565b845260208401935050602081019050614012565b5050509392505050565b600082601f83011261405857614057613b6e565b5b8135614068848260208601613fda565b91505092915050565b60008060006060848603121561408a5761408961378c565b5b600084013567ffffffffffffffff8111156140a8576140a7613791565b5b6140b486828701614043565b93505060206140c586828701613fc5565b92505060406140d68682870161392d565b9150509250925092565b6000602082840312156140f6576140f561378c565b5b600061410484828501613fc5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141428161390c565b82525050565b60006141548383614139565b60208301905092915050565b6000602082019050919050565b60006141788261410d565b6141828185614118565b935061418d83614129565b8060005b838110156141be5781516141a58882614148565b97506141b083614160565b925050600181019050614191565b5085935050505092915050565b600060208201905081810360008301526141e5818461416d565b905092915050565b6000806000606084860312156142065761420561378c565b5b600061421486828701613a0c565b93505060206142258682870161392d565b92505060406142368682870161392d565b9150509250925092565b600080604083850312156142575761425661378c565b5b600061426585828601613a0c565b925050602061427685828601613a78565b9150509250929050565b600067ffffffffffffffff82111561429b5761429a613b78565b5b6142a4826138a0565b9050602081019050919050565b60006142c46142bf84614280565b613bd8565b9050828152602081018484840111156142e0576142df613b73565b5b6142eb848285613c24565b509392505050565b600082601f83011261430857614307613b6e565b5b81356143188482602086016142b1565b91505092915050565b6000806000806080858703121561433b5761433a61378c565b5b600061434987828801613a0c565b945050602061435a87828801613a0c565b935050604061436b8782880161392d565b925050606085013567ffffffffffffffff81111561438c5761438b613791565b5b614398878288016142f3565b91505092959194509250565b6080820160008201516143ba6000850182613e29565b5060208201516143cd6020850182613e4c565b5060408201516143e06040850182613e5b565b5060608201516143f36060850182613e79565b50505050565b600060808201905061440e60008301846143a4565b92915050565b6000806000806080858703121561442e5761442d61378c565b5b600085013567ffffffffffffffff81111561444c5761444b613791565b5b61445887828801614043565b945050602061446987828801613fc5565b935050604061447a8782880161392d565b925050606061448b87828801613a0c565b91505092959194509250565b600080604083850312156144ae576144ad61378c565b5b60006144bc85828601613a0c565b92505060206144cd85828601613a0c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451e57607f821691505b602082108103614531576145306144d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061456d60208361385c565b915061457882614537565b602082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f5075626c6963206d696e74206973206e6f74206f70656e2e0000000000000000600082015250565b60006145d960188361385c565b91506145e4826145a3565b602082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146498261390c565b91506146548361390c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146895761468861460f565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b60006146ca60178361385c565b91506146d582614694565b602082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b600061473660178361385c565b915061474182614700565b602082019050919050565b6000602082019050818103600083015261476581614729565b9050919050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b60006147c860278361385c565b91506147d38261476c565b604082019050919050565b600060208201905081810360008301526147f7816147bb565b9050919050565b60006148098261390c565b91506148148361390c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484d5761484c61460f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b600061488e60178361385c565b915061489982614858565b602082019050919050565b600060208201905081810360008301526148bd81614881565b9050919050565b600081905092915050565b50565b60006148df6000836148c4565b91506148ea826148cf565b600082019050919050565b6000614900826148d2565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261496c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261492f565b614976868361492f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006149b36149ae6149a98461390c565b61498e565b61390c565b9050919050565b6000819050919050565b6149cd83614998565b6149e16149d9826149ba565b84845461493c565b825550505050565b600090565b6149f66149e9565b614a018184846149c4565b505050565b5b81811015614a2557614a1a6000826149ee565b600181019050614a07565b5050565b601f821115614a6a57614a3b8161490a565b614a448461491f565b81016020851015614a53578190505b614a67614a5f8561491f565b830182614a06565b50505b505050565b600082821c905092915050565b6000614a8d60001984600802614a6f565b1980831691505092915050565b6000614aa68383614a7c565b9150826002028217905092915050565b614abf82613851565b67ffffffffffffffff811115614ad857614ad7613b78565b5b614ae28254614506565b614aed828285614a29565b600060209050601f831160018114614b205760008415614b0e578287015190505b614b188582614a9a565b865550614b80565b601f198416614b2e8661490a565b60005b82811015614b5657848901518255600182019150602085019450602081019050614b31565b86831015614b735784890151614b6f601f891682614a7c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436c61696d206973206e6f74206f70656e2e0000000000000000000000000000600082015250565b6000614bed60128361385c565b9150614bf882614bb7565b602082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f4163636f756e7420616c726561647920636c61696d65642e0000000000000000600082015250565b6000614c5960188361385c565b9150614c6482614c23565b602082019050919050565b60006020820190508181036000830152614c8881614c4c565b9050919050565b60008160601b9050919050565b6000614ca782614c8f565b9050919050565b6000614cb982614c9c565b9050919050565b614cd1614ccc8261398f565b614cae565b82525050565b6000819050919050565b614cf2614ced8261390c565b614cd7565b82525050565b6000614d048285614cc0565b601482019150614d148284614ce1565b6020820191508190509392505050565b7f43726564656e7469616c206973206e6f7420636c65616e2e0000000000000000600082015250565b6000614d5a60188361385c565b9150614d6582614d24565b602082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b7f496e76616c6964204d65726b6c652050726f6f662075736572206973206e6f7460008201527f20696e2041544d4f5320736e617073686f742e00000000000000000000000000602082015250565b6000614dec60338361385c565b9150614df782614d90565b604082019050919050565b60006020820190508181036000830152614e1b81614ddf565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614e7e60308361385c565b9150614e8982614e22565b604082019050919050565b60006020820190508181036000830152614ead81614e71565b9050919050565b600081905092915050565b60008154614ecc81614506565b614ed68186614eb4565b94506001821660008114614ef15760018114614f0657614f39565b60ff1983168652811515820286019350614f39565b614f0f8561490a565b60005b83811015614f3157815481890152600182019150602081019050614f12565b838801955050505b50505092915050565b6000614f4d82613851565b614f578185614eb4565b9350614f6781856020860161386d565b80840191505092915050565b6000614f7f8286614ebf565b9150614f8b8285614f42565b9150614f978284614ebf565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061500060268361385c565b915061500b82614fa4565b604082019050919050565b6000602082019050818103600083015261502f81614ff3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061505d82615036565b6150678185615041565b935061507781856020860161386d565b615080816138a0565b840191505092915050565b60006080820190506150a060008301876139a1565b6150ad60208301866139a1565b6150ba60408301856139cb565b81810360608301526150cc8184615052565b905095945050505050565b6000815190506150e6816137c2565b92915050565b6000602082840312156151025761510161378c565b5b6000615110848285016150d7565b91505092915050565b60006151248261390c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036151565761515561460f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061519b8261390c565b91506151a68361390c565b9250826151b6576151b5615161565b5b828204905092915050565b60006151cc8261390c565b91506151d78361390c565b9250828210156151ea576151e961460f565b5b828203905092915050565b60006152008261390c565b915061520b8361390c565b92508261521b5761521a615161565b5b82820690509291505056fea26469706673582212203b630ae7e38402ed5d14546c820dec00e436eaf67a28f1738b9b89eac1e96cf364736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000012f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634d5455484346504378684e683432336f336e564c7465654c455458554c55385154335a4d4e6a4b397a78332f00000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c806370a0823111610175578063b88d4fde116100dc578063da3b9acb11610095578063e985e9c51161006f578063e985e9c514610b15578063f2c4ce1e14610b52578063f2fde38b14610b7b578063f4a0a52814610ba4576102c9565b8063da3b9acb14610a86578063da3ef23f14610ac3578063e0a8085314610aec576102c9565b8063b88d4fde14610962578063c002d23d1461098b578063c23dc68f146109b6578063c6682862146109f3578063c87b56dd14610a1e578063d4a6a2fd14610a5b576102c9565b80638cc080251161012e5780638cc080251461082c5780638da5cb5b1461086957806395d89b411461089457806399a2557a146108bf578063a22cb465146108fc578063b633e4cd14610925576102c9565b806370a082311461072d578063715018a61461076a57806373417b091461078157806373fb6c3b146107aa5780637cb64759146107c65780638462151c146107ef576102c9565b80633057931f116102345780634b5c52e9116101ed5780635bbb2177116101c75780635bbb21771461065d5780635c975abb1461069a5780636352211e146106c55780636c0360eb14610702576102c9565b80634b5c52e9146105e0578063518302271461060957806355f804b314610634576102c9565b80633057931f146104f157806332cb6b0c1461051c5780633878376c146105475780633ccfd60b1461058457806342842e0e1461058e57806342966c68146105b7576102c9565b8063176f49e411610286578063176f49e4146103f057806318160ddd1461042d578063203c4ed71461045857806323b872dd146104815780632db11544146104aa5780632eb4a7ab146104c6576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc146103365780630921b8d214610373578063095ea7b31461039e57806316c38b3c146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f091906137ee565b610bcd565b6040516103029190613836565b60405180910390f35b34801561031757600080fd5b50610320610c5f565b60405161032d91906138ea565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613942565b610cf1565b60405161036a91906139b0565b60405180910390f35b34801561037f57600080fd5b50610388610d6d565b60405161039591906139da565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613a21565b610d73565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613a8d565b610eb4565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613aba565b610f4d565b60405161042491906139da565b60405180910390f35b34801561043957600080fd5b50610442610f65565b60405161044f91906139da565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613a8d565b610f7c565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613ae7565b611015565b005b6104c460048036038101906104bf9190613942565b611337565b005b3480156104d257600080fd5b506104db61150a565b6040516104e89190613b53565b60405180910390f35b3480156104fd57600080fd5b50610506611510565b6040516105139190613836565b60405180910390f35b34801561052857600080fd5b50610531611523565b60405161053e91906139da565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613aba565b611529565b60405161057b91906139da565b60405180910390f35b61058c611572565b005b34801561059a57600080fd5b506105b560048036038101906105b09190613ae7565b6116d3565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613942565b6116f3565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613942565b611701565b005b34801561061557600080fd5b5061061e611787565b60405161062b9190613836565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613ca3565b61179a565b005b34801561066957600080fd5b50610684600480360381019061067f9190613db4565b611829565b6040516106919190613f60565b60405180910390f35b3480156106a657600080fd5b506106af6118ea565b6040516106bc9190613836565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613942565b6118fd565b6040516106f991906139b0565b60405180910390f35b34801561070e57600080fd5b5061071761190f565b60405161072491906138ea565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613aba565b61199d565b60405161076191906139da565b60405180910390f35b34801561077657600080fd5b5061077f611a55565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613a8d565b611add565b005b6107c460048036038101906107bf9190614071565b611b76565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906140e0565b611ded565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613aba565b611e73565b60405161082391906141cb565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e9190613aba565b611fb6565b6040516108609190613836565b60405180910390f35b34801561087557600080fd5b5061087e612011565b60405161088b91906139b0565b60405180910390f35b3480156108a057600080fd5b506108a961203b565b6040516108b691906138ea565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e191906141ed565b6120cd565b6040516108f391906141cb565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190614240565b6122d9565b005b34801561093157600080fd5b5061094c60048036038101906109479190613aba565b612450565b60405161095991906139da565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614321565b612499565b005b34801561099757600080fd5b506109a061250c565b6040516109ad91906139da565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613942565b612512565b6040516109ea91906143f9565b60405180910390f35b3480156109ff57600080fd5b50610a0861257c565b604051610a1591906138ea565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190613942565b61260a565b604051610a5291906138ea565b60405180910390f35b348015610a6757600080fd5b50610a706126d3565b604051610a7d9190613836565b60405180910390f35b348015610a9257600080fd5b50610aad6004803603810190610aa89190614414565b6126e6565b604051610aba9190613836565b60405180910390f35b348015610acf57600080fd5b50610aea6004803603810190610ae59190613ca3565b612747565b005b348015610af857600080fd5b50610b136004803603810190610b0e9190613a8d565b6127d6565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190614497565b61286f565b604051610b499190613836565b60405180910390f35b348015610b5e57600080fd5b50610b796004803603810190610b749190613ca3565b612903565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613aba565b612992565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613942565b612a89565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c585750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c6e90614506565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90614506565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b5050505050905090565b6000610cfc82612b0f565b610d32576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b6000610d7e826118fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610d9f612b6e565b73ffffffffffffffffffffffffffffffffffffffff1614610e0257610dcb81610dc6612b6e565b61286f565b610e01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ebc612b76565b73ffffffffffffffffffffffffffffffffffffffff16610eda612011565b73ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614583565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b6000610f6f612b7e565b6001546000540303905090565b610f84612b76565b73ffffffffffffffffffffffffffffffffffffffff16610fa2612011565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90614583565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b600061102082612b87565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611087576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061109384612c53565b915091506110a981876110a4612b6e565b612c75565b6110f5576110be866110b9612b6e565b61286f565b6110f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361115b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111688686866001612cb9565b801561117357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506112418561121d888887612cbf565b7c020000000000000000000000000000000000000000000000000000000017612ce7565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036112c757600060018501905060006004600083815260200190815260200160002054036112c55760005481146112c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461132f8686866001612d12565b505050505050565b601060029054906101000a900460ff16611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d906145ef565b60405180910390fd5b600d5481611392610f65565b61139c919061463e565b11156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d4906146e0565b60405180910390fd5b6113e5612011565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fd57601060009054906101000a900460ff1615611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e9061474c565b60405180910390fd5b600f548111156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906147de565b60405180910390fd5b80600e546114ba91906147fe565b3410156114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f3906148a4565b60405180910390fd5b5b6115073382612d18565b50565b60115481565b601060029054906101000a900460ff1681565b600d5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61157a612b76565b73ffffffffffffffffffffffffffffffffffffffff16611598612011565b73ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590614583565b60405180910390fd5b6000601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611636906148f5565b60006040518083038185875af1925050503d8060008114611673576040519150601f19603f3d011682016040523d82523d6000602084013e611678565b606091505b50509050806116d057611689612011565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116ce573d6000803e3d6000fd5b505b50565b6116ee83838360405180602001604052806000815250612499565b505050565b6116fe816001612d36565b50565b611709612b76565b73ffffffffffffffffffffffffffffffffffffffff16611727612011565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490614583565b60405180910390fd5b80600f8190555050565b601060019054906101000a900460ff1681565b6117a2612b76565b73ffffffffffffffffffffffffffffffffffffffff166117c0612011565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614583565b60405180910390fd5b80600a90816118259190614ab6565b5050565b606060008251905060008167ffffffffffffffff81111561184d5761184c613b78565b5b60405190808252806020026020018201604052801561188657816020015b611873613733565b81526020019060019003908161186b5790505b50905060005b8281146118df576118b68582815181106118a9576118a8614b88565b5b6020026020010151612512565b8282815181106118c9576118c8614b88565b5b602002602001018190525080600101905061188c565b508092505050919050565b601060009054906101000a900460ff1681565b600061190882612b87565b9050919050565b600a805461191c90614506565b80601f016020809104026020016040519081016040528092919081815260200182805461194890614506565b80156119955780601f1061196a57610100808354040283529160200191611995565b820191906000526020600020905b81548152906001019060200180831161197857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a5d612b76565b73ffffffffffffffffffffffffffffffffffffffff16611a7b612011565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614583565b60405180910390fd5b611adb6000612f88565b565b611ae5612b76565b73ffffffffffffffffffffffffffffffffffffffff16611b03612011565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614583565b60405180910390fd5b80601060036101000a81548160ff02191690831515021790555050565b611b7e612011565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8857601060009054906101000a900460ff1615611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf79061474c565b60405180910390fd5b601060039054906101000a900460ff16611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690614c03565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890614c6f565b60405180910390fd5b813382604051602001611ce5929190614cf8565b6040516020818303038152906040528051906020012014611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614d70565b60405180910390fd5b611d48836011548461304e565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614e02565b60405180910390fd5b5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd7919061463e565b92505081905550611de83382612d18565b505050565b611df5612b76565b73ffffffffffffffffffffffffffffffffffffffff16611e13612011565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090614583565b60405180910390fd5b8060118190555050565b60606000806000611e838561199d565b905060008167ffffffffffffffff811115611ea157611ea0613b78565b5b604051908082528060200260200182016040528015611ecf5781602001602082028036833780820191505090505b509050611eda613733565b6000611ee4612b7e565b90505b838614611fa857611ef781613065565b91508160400151611f9d57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f4257816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f9c5780838780600101985081518110611f8f57611f8e614b88565b5b6020026020010181815250505b5b806001019050611ee7565b508195505050505050919050565b600080601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403612007576000905061200c565b600190505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461204a90614506565b80601f016020809104026020016040519081016040528092919081815260200182805461207690614506565b80156120c35780601f10612098576101008083540402835291602001916120c3565b820191906000526020600020905b8154815290600101906020018083116120a657829003601f168201915b5050505050905090565b6060818310612108576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612113613090565b905061211d612b7e565b85101561212f5761212c612b7e565b94505b8084111561213b578093505b60006121468761199d565b905084861015612169576000868603905081811015612163578091505b5061216e565b600090505b60008167ffffffffffffffff81111561218a57612189613b78565b5b6040519080825280602002602001820160405280156121b85781602001602082028036833780820191505090505b509050600082036121cf57809450505050506122d2565b60006121da88612512565b9050600081604001516121ef57816000015190505b60008990505b8881141580156122055750848714155b156122c45761221381613065565b925082604001516122b957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461225e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122b857808488806001019950815181106122ab576122aa614b88565b5b6020026020010181815250505b5b8060010190506121f5565b508583528296505050505050505b9392505050565b6122e1612b6e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612345576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612352612b6e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123ff612b6e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124449190613836565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6124a4848484611015565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612506576124cf84848484613099565b612505576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b61251a613733565b612522613733565b61252a612b7e565b83108061253e575061253a613090565b8310155b1561254c5780915050612577565b61255583613065565b905080604001511561256a5780915050612577565b612573836131e9565b9150505b919050565b600b805461258990614506565b80601f01602080910402602001604051908101604052809291908181526020018280546125b590614506565b80156126025780601f106125d757610100808354040283529160200191612602565b820191906000526020600020905b8154815290600101906020018083116125e557829003601f168201915b505050505081565b606061261582612b0f565b612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614e94565b60405180910390fd5b601060019054906101000a900460ff1661269d57600c61267383613209565b600b60405160200161268793929190614f73565b60405160208183030381529060405290506126ce565b600a6126a883613209565b600b6040516020016126bc93929190614f73565b60405160208183030381529060405290505b919050565b601060039054906101000a900460ff1681565b60008382846040516020016126fc929190614cf8565b6040516020818303038152906040528051906020012014612720576000905061273f565b61272d856011548661304e565b61273a576000905061273f565b600190505b949350505050565b61274f612b76565b73ffffffffffffffffffffffffffffffffffffffff1661276d612011565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614583565b60405180910390fd5b80600b90816127d29190614ab6565b5050565b6127de612b76565b73ffffffffffffffffffffffffffffffffffffffff166127fc612011565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614583565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61290b612b76565b73ffffffffffffffffffffffffffffffffffffffff16612929612011565b73ffffffffffffffffffffffffffffffffffffffff161461297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297690614583565b60405180910390fd5b80600c908161298e9190614ab6565b5050565b61299a612b76565b73ffffffffffffffffffffffffffffffffffffffff166129b8612011565b73ffffffffffffffffffffffffffffffffffffffff1614612a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0590614583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7490615016565b60405180910390fd5b612a8681612f88565b50565b612a91612b76565b73ffffffffffffffffffffffffffffffffffffffff16612aaf612011565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc90614583565b60405180910390fd5b80600e8190555050565b600081612b1a612b7e565b11158015612b29575060005482105b8015612b67575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b60008082905080612b96612b7e565b11612c1c57600054811015612c1b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612c19575b60008103612c0f576004600083600190039350838152602001908152602001600020549050612be5565b8092505050612c4e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612cd6868684613369565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d32828260405180602001604052806000815250613372565b5050565b6000612d4183612b87565b90506000819050600080612d5486612c53565b915091508415612dbd57612d708184612d6b612b6e565b612c75565b612dbc57612d8583612d80612b6e565b61286f565b612dbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612dcb836000886001612cb9565b8015612dd657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e7e83612e3b85600088612cbf565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612ce7565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603612f045760006001870190506000600460008381526020019081526020016000205403612f02576000548114612f01578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6e836000886001612d12565b600160008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261305b858461340f565b1490509392505050565b61306d613733565b6130896004600084815260200190815260200160002054613484565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130bf612b6e565b8786866040518563ffffffff1660e01b81526004016130e1949392919061508b565b6020604051808303816000875af192505050801561311d57506040513d601f19601f8201168201806040525081019061311a91906150ec565b60015b613196573d806000811461314d576040519150601f19603f3d011682016040523d82523d6000602084013e613152565b606091505b50600081510361318e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6131f1613733565b6132026131fd83612b87565b613484565b9050919050565b606060008203613250576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613364565b600082905060005b6000821461328257808061326b90615119565b915050600a8261327b9190615190565b9150613258565b60008167ffffffffffffffff81111561329e5761329d613b78565b5b6040519080825280601f01601f1916602001820160405280156132d05781602001600182028036833780820191505090505b5090505b6000851461335d576001826132e991906151c1565b9150600a856132f891906151f5565b6030613304919061463e565b60f81b81838151811061331a57613319614b88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133569190615190565b94506132d4565b8093505050505b919050565b60009392505050565b61337c838361353a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461340a57600080549050600083820390505b6133bc6000868380600101945086613099565b6133f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106133a957816000541461340757600080fd5b50505b505050565b60008082905060005b845181101561347957600085828151811061343657613435614b88565b5b6020026020010151905080831161345857613451838261370c565b9250613465565b613462818461370c565b92505b50808061347190615119565b915050613418565b508091505092915050565b61348c613733565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135a6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036135e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135ed6000848385612cb9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613664836136556000866000612cbf565b61365e85613723565b17612ce7565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613688578060008190555050506137076000848385612d12565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137cb81613796565b81146137d657600080fd5b50565b6000813590506137e8816137c2565b92915050565b6000602082840312156138045761380361378c565b5b6000613812848285016137d9565b91505092915050565b60008115159050919050565b6138308161381b565b82525050565b600060208201905061384b6000830184613827565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388b578082015181840152602081019050613870565b8381111561389a576000848401525b50505050565b6000601f19601f8301169050919050565b60006138bc82613851565b6138c6818561385c565b93506138d681856020860161386d565b6138df816138a0565b840191505092915050565b6000602082019050818103600083015261390481846138b1565b905092915050565b6000819050919050565b61391f8161390c565b811461392a57600080fd5b50565b60008135905061393c81613916565b92915050565b6000602082840312156139585761395761378c565b5b60006139668482850161392d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061399a8261396f565b9050919050565b6139aa8161398f565b82525050565b60006020820190506139c560008301846139a1565b92915050565b6139d48161390c565b82525050565b60006020820190506139ef60008301846139cb565b92915050565b6139fe8161398f565b8114613a0957600080fd5b50565b600081359050613a1b816139f5565b92915050565b60008060408385031215613a3857613a3761378c565b5b6000613a4685828601613a0c565b9250506020613a578582860161392d565b9150509250929050565b613a6a8161381b565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b600060208284031215613aa357613aa261378c565b5b6000613ab184828501613a78565b91505092915050565b600060208284031215613ad057613acf61378c565b5b6000613ade84828501613a0c565b91505092915050565b600080600060608486031215613b0057613aff61378c565b5b6000613b0e86828701613a0c565b9350506020613b1f86828701613a0c565b9250506040613b308682870161392d565b9150509250925092565b6000819050919050565b613b4d81613b3a565b82525050565b6000602082019050613b686000830184613b44565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bb0826138a0565b810181811067ffffffffffffffff82111715613bcf57613bce613b78565b5b80604052505050565b6000613be2613782565b9050613bee8282613ba7565b919050565b600067ffffffffffffffff821115613c0e57613c0d613b78565b5b613c17826138a0565b9050602081019050919050565b82818337600083830152505050565b6000613c46613c4184613bf3565b613bd8565b905082815260208101848484011115613c6257613c61613b73565b5b613c6d848285613c24565b509392505050565b600082601f830112613c8a57613c89613b6e565b5b8135613c9a848260208601613c33565b91505092915050565b600060208284031215613cb957613cb861378c565b5b600082013567ffffffffffffffff811115613cd757613cd6613791565b5b613ce384828501613c75565b91505092915050565b600067ffffffffffffffff821115613d0757613d06613b78565b5b602082029050602081019050919050565b600080fd5b6000613d30613d2b84613cec565b613bd8565b90508083825260208201905060208402830185811115613d5357613d52613d18565b5b835b81811015613d7c5780613d68888261392d565b845260208401935050602081019050613d55565b5050509392505050565b600082601f830112613d9b57613d9a613b6e565b5b8135613dab848260208601613d1d565b91505092915050565b600060208284031215613dca57613dc961378c565b5b600082013567ffffffffffffffff811115613de857613de7613791565b5b613df484828501613d86565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e328161398f565b82525050565b600067ffffffffffffffff82169050919050565b613e5581613e38565b82525050565b613e648161381b565b82525050565b600062ffffff82169050919050565b613e8281613e6a565b82525050565b608082016000820151613e9e6000850182613e29565b506020820151613eb16020850182613e4c565b506040820151613ec46040850182613e5b565b506060820151613ed76060850182613e79565b50505050565b6000613ee98383613e88565b60808301905092915050565b6000602082019050919050565b6000613f0d82613dfd565b613f178185613e08565b9350613f2283613e19565b8060005b83811015613f53578151613f3a8882613edd565b9750613f4583613ef5565b925050600181019050613f26565b5085935050505092915050565b60006020820190508181036000830152613f7a8184613f02565b905092915050565b600067ffffffffffffffff821115613f9d57613f9c613b78565b5b602082029050602081019050919050565b613fb781613b3a565b8114613fc257600080fd5b50565b600081359050613fd481613fae565b92915050565b6000613fed613fe884613f82565b613bd8565b905080838252602082019050602084028301858111156140105761400f613d18565b5b835b8181101561403957806140258882613fc5565b845260208401935050602081019050614012565b5050509392505050565b600082601f83011261405857614057613b6e565b5b8135614068848260208601613fda565b91505092915050565b60008060006060848603121561408a5761408961378c565b5b600084013567ffffffffffffffff8111156140a8576140a7613791565b5b6140b486828701614043565b93505060206140c586828701613fc5565b92505060406140d68682870161392d565b9150509250925092565b6000602082840312156140f6576140f561378c565b5b600061410484828501613fc5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141428161390c565b82525050565b60006141548383614139565b60208301905092915050565b6000602082019050919050565b60006141788261410d565b6141828185614118565b935061418d83614129565b8060005b838110156141be5781516141a58882614148565b97506141b083614160565b925050600181019050614191565b5085935050505092915050565b600060208201905081810360008301526141e5818461416d565b905092915050565b6000806000606084860312156142065761420561378c565b5b600061421486828701613a0c565b93505060206142258682870161392d565b92505060406142368682870161392d565b9150509250925092565b600080604083850312156142575761425661378c565b5b600061426585828601613a0c565b925050602061427685828601613a78565b9150509250929050565b600067ffffffffffffffff82111561429b5761429a613b78565b5b6142a4826138a0565b9050602081019050919050565b60006142c46142bf84614280565b613bd8565b9050828152602081018484840111156142e0576142df613b73565b5b6142eb848285613c24565b509392505050565b600082601f83011261430857614307613b6e565b5b81356143188482602086016142b1565b91505092915050565b6000806000806080858703121561433b5761433a61378c565b5b600061434987828801613a0c565b945050602061435a87828801613a0c565b935050604061436b8782880161392d565b925050606085013567ffffffffffffffff81111561438c5761438b613791565b5b614398878288016142f3565b91505092959194509250565b6080820160008201516143ba6000850182613e29565b5060208201516143cd6020850182613e4c565b5060408201516143e06040850182613e5b565b5060608201516143f36060850182613e79565b50505050565b600060808201905061440e60008301846143a4565b92915050565b6000806000806080858703121561442e5761442d61378c565b5b600085013567ffffffffffffffff81111561444c5761444b613791565b5b61445887828801614043565b945050602061446987828801613fc5565b935050604061447a8782880161392d565b925050606061448b87828801613a0c565b91505092959194509250565b600080604083850312156144ae576144ad61378c565b5b60006144bc85828601613a0c565b92505060206144cd85828601613a0c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061451e57607f821691505b602082108103614531576145306144d7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061456d60208361385c565b915061457882614537565b602082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f5075626c6963206d696e74206973206e6f74206f70656e2e0000000000000000600082015250565b60006145d960188361385c565b91506145e4826145a3565b602082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146498261390c565b91506146548361390c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146895761468861460f565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b60006146ca60178361385c565b91506146d582614694565b602082019050919050565b600060208201905081810360008301526146f9816146bd565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b600061473660178361385c565b915061474182614700565b602082019050919050565b6000602082019050818103600083015261476581614729565b9050919050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b60006147c860278361385c565b91506147d38261476c565b604082019050919050565b600060208201905081810360008301526147f7816147bb565b9050919050565b60006148098261390c565b91506148148361390c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484d5761484c61460f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b600061488e60178361385c565b915061489982614858565b602082019050919050565b600060208201905081810360008301526148bd81614881565b9050919050565b600081905092915050565b50565b60006148df6000836148c4565b91506148ea826148cf565b600082019050919050565b6000614900826148d2565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261496c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261492f565b614976868361492f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006149b36149ae6149a98461390c565b61498e565b61390c565b9050919050565b6000819050919050565b6149cd83614998565b6149e16149d9826149ba565b84845461493c565b825550505050565b600090565b6149f66149e9565b614a018184846149c4565b505050565b5b81811015614a2557614a1a6000826149ee565b600181019050614a07565b5050565b601f821115614a6a57614a3b8161490a565b614a448461491f565b81016020851015614a53578190505b614a67614a5f8561491f565b830182614a06565b50505b505050565b600082821c905092915050565b6000614a8d60001984600802614a6f565b1980831691505092915050565b6000614aa68383614a7c565b9150826002028217905092915050565b614abf82613851565b67ffffffffffffffff811115614ad857614ad7613b78565b5b614ae28254614506565b614aed828285614a29565b600060209050601f831160018114614b205760008415614b0e578287015190505b614b188582614a9a565b865550614b80565b601f198416614b2e8661490a565b60005b82811015614b5657848901518255600182019150602085019450602081019050614b31565b86831015614b735784890151614b6f601f891682614a7c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436c61696d206973206e6f74206f70656e2e0000000000000000000000000000600082015250565b6000614bed60128361385c565b9150614bf882614bb7565b602082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f4163636f756e7420616c726561647920636c61696d65642e0000000000000000600082015250565b6000614c5960188361385c565b9150614c6482614c23565b602082019050919050565b60006020820190508181036000830152614c8881614c4c565b9050919050565b60008160601b9050919050565b6000614ca782614c8f565b9050919050565b6000614cb982614c9c565b9050919050565b614cd1614ccc8261398f565b614cae565b82525050565b6000819050919050565b614cf2614ced8261390c565b614cd7565b82525050565b6000614d048285614cc0565b601482019150614d148284614ce1565b6020820191508190509392505050565b7f43726564656e7469616c206973206e6f7420636c65616e2e0000000000000000600082015250565b6000614d5a60188361385c565b9150614d6582614d24565b602082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b7f496e76616c6964204d65726b6c652050726f6f662075736572206973206e6f7460008201527f20696e2041544d4f5320736e617073686f742e00000000000000000000000000602082015250565b6000614dec60338361385c565b9150614df782614d90565b604082019050919050565b60006020820190508181036000830152614e1b81614ddf565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614e7e60308361385c565b9150614e8982614e22565b604082019050919050565b60006020820190508181036000830152614ead81614e71565b9050919050565b600081905092915050565b60008154614ecc81614506565b614ed68186614eb4565b94506001821660008114614ef15760018114614f0657614f39565b60ff1983168652811515820286019350614f39565b614f0f8561490a565b60005b83811015614f3157815481890152600182019150602081019050614f12565b838801955050505b50505092915050565b6000614f4d82613851565b614f578185614eb4565b9350614f6781856020860161386d565b80840191505092915050565b6000614f7f8286614ebf565b9150614f8b8285614f42565b9150614f978284614ebf565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061500060268361385c565b915061500b82614fa4565b604082019050919050565b6000602082019050818103600083015261502f81614ff3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061505d82615036565b6150678185615041565b935061507781856020860161386d565b615080816138a0565b840191505092915050565b60006080820190506150a060008301876139a1565b6150ad60208301866139a1565b6150ba60408301856139cb565b81810360608301526150cc8184615052565b905095945050505050565b6000815190506150e6816137c2565b92915050565b6000602082840312156151025761510161378c565b5b6000615110848285016150d7565b91505092915050565b60006151248261390c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036151565761515561460f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061519b8261390c565b91506151a68361390c565b9250826151b6576151b5615161565b5b828204905092915050565b60006151cc8261390c565b91506151d78361390c565b9250828210156151ea576151e961460f565b5b828203905092915050565b60006152008261390c565b915061520b8361390c565b92508261521b5761521a615161565b5b82820690509291505056fea26469706673582212203b630ae7e38402ed5d14546c820dec00e436eaf67a28f1738b9b89eac1e96cf364736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000012f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d634d5455484346504378684e683432336f336e564c7465654c455458554c55385154335a4d4e6a4b397a78332f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): /
Arg [1] : _initNotRevealedUri (string): ipfs://QmcMTUHCFPCxhNh423o3nVLteeLETXULU8QT3ZMNjK9zx3/

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d634d5455484346504378684e683432336f336e564c7465
Arg [6] : 654c455458554c55385154335a4d4e6a4b397a78332f00000000000000000000


Deployed Bytecode Sourcemap

67856:7678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28228:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68272:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35369:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74432:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68550:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27282:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74518:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45086:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72893:585;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68518:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68411:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68166:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75139:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75304:225;;;:::i;:::-;;36711:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58866:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74914:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68376:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74056:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63061:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68344:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33664:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68021:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28907:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12332:103;;;;;;;;;;;;;:::i;:::-;;74706:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71344:767;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75028:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66873:892;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72490:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11681:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34044:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63919:2505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36097:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72671:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36967:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68206:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62482:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68049:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73600:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68481:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72119:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74166:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74616:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36476:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74300:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12590:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74802:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28228:615;28313:4;28628:10;28613:25;;:11;:25;;;;:102;;;;28705:10;28690:25;;:11;:25;;;;28613:102;:179;;;;28782:10;28767:25;;:11;:25;;;;28613:179;28593:199;;28228:615;;;:::o;33875:100::-;33929:13;33962:5;33955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33875:100;:::o;35821:204::-;35889:7;35914:16;35922:7;35914;:16::i;:::-;35909:64;;35939:34;;;;;;;;;;;;;;35909:64;35993:15;:24;36009:7;35993:24;;;;;;;;;;;;;;;;;;;;;35986:31;;35821:204;;;:::o;68272:40::-;;;;:::o;35369:386::-;35442:13;35458:16;35466:7;35458;:16::i;:::-;35442:32;;35514:5;35491:28;;:19;:17;:19::i;:::-;:28;;;35487:175;;35539:44;35556:5;35563:19;:17;:19::i;:::-;35539:16;:44::i;:::-;35534:128;;35611:35;;;;;;;;;;;;;;35534:128;35487:175;35701:2;35674:15;:24;35690:7;35674:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35739:7;35735:2;35719:28;;35728:5;35719:28;;;;;;;;;;;;35431:324;35369:386;;:::o;74432:80::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74499:5:::1;74490:6;;:14;;;;;;;;;;;;;;;;;;74432:80:::0;:::o;68550:56::-;;;;;;;;;;;;;;;;;:::o;27282:315::-;27335:7;27563:15;:13;:15::i;:::-;27548:12;;27532:13;;:28;:46;27525:53;;27282:315;:::o;74518:92::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74597:5:::1;74582:12;;:20;;;;;;;;;;;;;;;;;;74518:92:::0;:::o;45086:2800::-;45220:27;45250;45269:7;45250:18;:27::i;:::-;45220:57;;45335:4;45294:45;;45310:19;45294:45;;;45290:86;;45348:28;;;;;;;;;;;;;;45290:86;45390:27;45419:23;45446:28;45466:7;45446:19;:28::i;:::-;45389:85;;;;45574:62;45593:15;45610:4;45616:19;:17;:19::i;:::-;45574:18;:62::i;:::-;45569:174;;45656:43;45673:4;45679:19;:17;:19::i;:::-;45656:16;:43::i;:::-;45651:92;;45708:35;;;;;;;;;;;;;;45651:92;45569:174;45774:1;45760:16;;:2;:16;;;45756:52;;45785:23;;;;;;;;;;;;;;45756:52;45821:43;45843:4;45849:2;45853:7;45862:1;45821:21;:43::i;:::-;45957:15;45954:160;;;46097:1;46076:19;46069:30;45954:160;46492:18;:24;46511:4;46492:24;;;;;;;;;;;;;;;;46490:26;;;;;;;;;;;;46561:18;:22;46580:2;46561:22;;;;;;;;;;;;;;;;46559:24;;;;;;;;;;;46883:145;46920:2;46968:45;46983:4;46989:2;46993:19;46968:14;:45::i;:::-;24510:8;46941:72;46883:18;:145::i;:::-;46854:17;:26;46872:7;46854:26;;;;;;;;;;;:174;;;;47198:1;24510:8;47148:19;:46;:51;47144:626;;47220:19;47252:1;47242:7;:11;47220:33;;47409:1;47375:17;:30;47393:11;47375:30;;;;;;;;;;;;:35;47371:384;;47513:13;;47498:11;:28;47494:242;;47693:19;47660:17;:30;47678:11;47660:30;;;;;;;;;;;:52;;;;47494:242;47371:384;47201:569;47144:626;47817:7;47813:2;47798:27;;47807:4;47798:27;;;;;;;;;;;;47836:42;47857:4;47863:2;47867:7;47876:1;47836:20;:42::i;:::-;45209:2677;;;45086:2800;;;:::o;72893:585::-;72969:12;;;;;;;;;;;72961:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;73057:10;;73045:8;73029:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;73021:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;73126:7;:5;:7::i;:::-;73112:21;;:10;:21;;;73108:282;;73158:6;;;;;;;;;;;73157:7;73149:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;73227:20;;73215:8;:32;;73207:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;73341:8;73328:10;;:21;;;;:::i;:::-;73314:9;:36;;73306:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;73108:282;73439:31;73449:10;73461:8;73439:9;:31::i;:::-;72893:585;:::o;68518:25::-;;;;:::o;68411:32::-;;;;;;;;;;;;;:::o;68166:33::-;;;;:::o;75139:140::-;75213:7;75239:21;:32;75261:9;75239:32;;;;;;;;;;;;;;;;75232:39;;75139:140;;;:::o;75304:225::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75363:7:::1;75384:4;;;;;;;;;;;75376:18;;75402:21;75376:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75362:66;;;75444:2;75439:83;;75470:7;:5;:7::i;:::-;75462:25;;:48;75488:21;75462:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;75439:83;75351:178;75304:225::o:0;36711:185::-;36849:39;36866:4;36872:2;36876:7;36849:39;;;;;;;;;;;;:16;:39::i;:::-;36711:185;;;:::o;58866:94::-;58932:20;58938:7;58947:4;58932:5;:20::i;:::-;58866:94;:::o;74914:108::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75009:5:::1;74986:20;:28;;;;74914:108:::0;:::o;68376:28::-;;;;;;;;;;;;;:::o;74056:104::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74141:11:::1;74131:7;:21;;;;;;:::i;:::-;;74056:104:::0;:::o;63061:468::-;63150:23;63211:22;63236:8;:15;63211:40;;63266:34;63324:14;63303:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;63266:73;;63359:9;63354:125;63375:14;63370:1;:19;63354:125;;63431:32;63451:8;63460:1;63451:11;;;;;;;;:::i;:::-;;;;;;;;63431:19;:32::i;:::-;63415:10;63426:1;63415:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;63391:3;;;;;63354:125;;;;63500:10;63493:17;;;;63061:468;;;:::o;68344:25::-;;;;;;;;;;;;;:::o;33664:144::-;33728:7;33771:27;33790:7;33771:18;:27::i;:::-;33748:52;;33664:144;;;:::o;68021:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28907:224::-;28971:7;29012:1;28995:19;;:5;:19;;;28991:60;;29023:28;;;;;;;;;;;;;;28991:60;23462:13;29069:18;:25;29088:5;29069:25;;;;;;;;;;;;;;;;:54;29062:61;;28907:224;;;:::o;12332:103::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12397:30:::1;12424:1;12397:18;:30::i;:::-;12332:103::o:0;74706:90::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74783:5:::1;74769:11;;:19;;;;;;;;;;;;;;;;;;74706:90:::0;:::o;71344:767::-;71466:7;:5;:7::i;:::-;71452:21;;:10;:21;;;71448:523;;71498:6;;;;;;;;;;;71497:7;71489:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;71555:11;;;;;;;;;;;71547:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;71649:1;71612:21;:33;71634:10;71612:33;;;;;;;;;;;;;;;;:38;71604:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;71796:4;71772:10;71784:6;71755:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71745:47;;;;;;:55;71737:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;71852:49;71871:11;71884:10;;71896:4;71852:18;:49::i;:::-;71844:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71448:523;72057:6;72020:21;:33;72042:10;72020:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;72074:29;72084:10;72096:6;72074:9;:29::i;:::-;71344:767;;;:::o;75028:105::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75114:11:::1;75101:10;:24;;;;75028:105:::0;:::o;66873:892::-;66943:16;66997:19;67031:25;67071:22;67096:16;67106:5;67096:9;:16::i;:::-;67071:41;;67127:25;67169:14;67155:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67127:57;;67199:31;;:::i;:::-;67250:9;67262:15;:13;:15::i;:::-;67250:27;;67245:472;67294:14;67279:11;:29;67245:472;;67346:15;67359:1;67346:12;:15::i;:::-;67334:27;;67384:9;:16;;;67425:8;67380:73;67501:1;67475:28;;:9;:14;;;:28;;;67471:111;;67548:9;:14;;;67528:34;;67471:111;67625:5;67604:26;;:17;:26;;;67600:102;;67681:1;67655:8;67664:13;;;;;;67655:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;67600:102;67245:472;67310:3;;;;;67245:472;;;;67738:8;67731:15;;;;;;;66873:892;;;:::o;72490:173::-;72543:4;72593:1;72562:21;:27;72584:4;72562:27;;;;;;;;;;;;;;;;:32;72559:75;;72617:5;72610:12;;;;72559:75;72651:4;72644:11;;72490:173;;;;:::o;11681:87::-;11727:7;11754:6;;;;;;;;;;;11747:13;;11681:87;:::o;34044:104::-;34100:13;34133:7;34126:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34044:104;:::o;63919:2505::-;64054:16;64121:4;64112:5;:13;64108:45;;64134:19;;;;;;;;;;;;;;64108:45;64168:19;64202:17;64222:14;:12;:14::i;:::-;64202:34;;64322:15;:13;:15::i;:::-;64314:5;:23;64310:87;;;64366:15;:13;:15::i;:::-;64358:23;;64310:87;64473:9;64466:4;:16;64462:73;;;64510:9;64503:16;;64462:73;64549:25;64577:16;64587:5;64577:9;:16::i;:::-;64549:44;;64771:4;64763:5;:12;64759:278;;;64796:19;64825:5;64818:4;:12;64796:34;;64867:17;64853:11;:31;64849:111;;;64929:11;64909:31;;64849:111;64777:198;64759:278;;;65020:1;65000:21;;64759:278;65051:25;65093:17;65079:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65051:60;;65151:1;65130:17;:22;65126:78;;65180:8;65173:15;;;;;;;;65126:78;65348:31;65382:26;65402:5;65382:19;:26::i;:::-;65348:60;;65423:25;65668:9;:16;;;65663:92;;65725:9;:14;;;65705:34;;65663:92;65774:9;65786:5;65774:17;;65769:478;65798:4;65793:1;:9;;:45;;;;;65821:17;65806:11;:32;;65793:45;65769:478;;;65876:15;65889:1;65876:12;:15::i;:::-;65864:27;;65914:9;:16;;;65955:8;65910:73;66031:1;66005:28;;:9;:14;;;:28;;;66001:111;;66078:9;:14;;;66058:34;;66001:111;66155:5;66134:26;;:17;:26;;;66130:102;;66211:1;66185:8;66194:13;;;;;;66185:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;66130:102;65769:478;65840:3;;;;;65769:478;;;;66349:11;66339:8;66332:29;66397:8;66390:15;;;;;;;;63919:2505;;;;;;:::o;36097:308::-;36208:19;:17;:19::i;:::-;36196:31;;:8;:31;;;36192:61;;36236:17;;;;;;;;;;;;;;36192:61;36318:8;36266:18;:39;36285:19;:17;:19::i;:::-;36266:39;;;;;;;;;;;;;;;:49;36306:8;36266:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36378:8;36342:55;;36357:19;:17;:19::i;:::-;36342:55;;;36388:8;36342:55;;;;;;:::i;:::-;;;;;;;;36097:308;;:::o;72671:117::-;72727:7;72753:21;:27;72775:4;72753:27;;;;;;;;;;;;;;;;72746:34;;72671:117;;;:::o;36967:399::-;37134:31;37147:4;37153:2;37157:7;37134:12;:31::i;:::-;37198:1;37180:2;:14;;;:19;37176:183;;37219:56;37250:4;37256:2;37260:7;37269:5;37219:30;:56::i;:::-;37214:145;;37303:40;;;;;;;;;;;;;;37214:145;37176:183;36967:399;;;;:::o;68206:38::-;;;;:::o;62482:420::-;62558:21;;:::i;:::-;62592:31;;:::i;:::-;62648:15;:13;:15::i;:::-;62638:7;:25;:54;;;;62678:14;:12;:14::i;:::-;62667:7;:25;;62638:54;62634:103;;;62716:9;62709:16;;;;;62634:103;62759:21;62772:7;62759:12;:21::i;:::-;62747:33;;62795:9;:16;;;62791:65;;;62835:9;62828:16;;;;;62791:65;62873:21;62886:7;62873:12;:21::i;:::-;62866:28;;;62482:420;;;;:::o;68049:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73600:420::-;73691:13;73724:16;73732:7;73724;:16::i;:::-;73716:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;73809:8;;;;;;;;;;;73804:123;;73864:14;73880:18;:7;:16;:18::i;:::-;73900:13;73847:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73833:82;;;;73804:123;73968:7;73977:18;:7;:16;:18::i;:::-;73997:13;73951:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73937:75;;73600:420;;;;:::o;68481:30::-;;;;;;;;;;;;;:::o;72119:363::-;72240:4;72305;72287;72293:6;72270:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72260:41;;;;;;:49;72256:93;;72332:5;72325:12;;;;72256:93;72364:49;72383:11;72396:10;;72408:4;72364:18;:49::i;:::-;72359:94;;72436:5;72429:12;;;;72359:94;72470:4;72463:11;;72119:363;;;;;;;:::o;74166:128::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74269:17:::1;74253:13;:33;;;;;;:::i;:::-;;74166:128:::0;:::o;74616:84::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74687:5:::1;74676:8;;:16;;;;;;;;;;;;;;;;;;74616:84:::0;:::o;36476:164::-;36573:4;36597:18;:25;36616:5;36597:25;;;;;;;;;;;;;;;:35;36623:8;36597:35;;;;;;;;;;;;;;;;;;;;;;;;;36590:42;;36476:164;;;;:::o;74300:126::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74403:15:::1;74386:14;:32;;;;;;:::i;:::-;;74300:126:::0;:::o;12590:201::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12699:1:::1;12679:22;;:8;:22;;::::0;12671:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12755:28;12774:8;12755:18;:28::i;:::-;12590:201:::0;:::o;74802:106::-;11912:12;:10;:12::i;:::-;11901:23;;:7;:5;:7::i;:::-;:23;;;11893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74887:13:::1;74874:10;:26;;;;74802:106:::0;:::o;37621:273::-;37678:4;37734:7;37715:15;:13;:15::i;:::-;:26;;:66;;;;;37768:13;;37758:7;:23;37715:66;:152;;;;;37866:1;24232:8;37819:17;:26;37837:7;37819:26;;;;;;;;;;;;:43;:48;37715:152;37695:172;;37621:273;;;:::o;56182:105::-;56242:7;56269:10;56262:17;;56182:105;:::o;10405:98::-;10458:7;10485:10;10478:17;;10405:98;:::o;68738:93::-;68795:7;68822:1;68815:8;;68738:93;:::o;30581:1129::-;30648:7;30668:12;30683:7;30668:22;;30751:4;30732:15;:13;:15::i;:::-;:23;30728:915;;30785:13;;30778:4;:20;30774:869;;;30823:14;30840:17;:23;30858:4;30840:23;;;;;;;;;;;;30823:40;;30956:1;24232:8;30929:6;:23;:28;30925:699;;31448:113;31465:1;31455:6;:11;31448:113;;31508:17;:25;31526:6;;;;;;;31508:25;;;;;;;;;;;;31499:34;;31448:113;;;31594:6;31587:13;;;;;;30925:699;30800:843;30774:869;30728:915;31671:31;;;;;;;;;;;;;;30581:1129;;;;:::o;43422:652::-;43517:27;43546:23;43587:53;43643:15;43587:71;;43829:7;43823:4;43816:21;43864:22;43858:4;43851:36;43940:4;43934;43924:21;43901:44;;44036:19;44030:26;44011:45;;43767:300;43422:652;;;:::o;44187:645::-;44329:11;44491:15;44485:4;44481:26;44473:34;;44650:15;44639:9;44635:31;44622:44;;44797:15;44786:9;44783:30;44776:4;44765:9;44762:19;44759:55;44749:65;;44187:645;;;;;:::o;55015:159::-;;;;;:::o;53327:309::-;53462:7;53482:16;24633:3;53508:19;:40;;53482:67;;24633:3;53575:31;53586:4;53592:2;53596:9;53575:10;:31::i;:::-;53567:40;;:61;;53560:68;;;53327:309;;;;;:::o;33155:447::-;33235:14;33403:15;33396:5;33392:27;33383:36;;33577:5;33563:11;33539:22;33535:40;33532:51;33525:5;33522:62;33512:72;;33155:447;;;;:::o;55833:158::-;;;;;:::o;37978:104::-;38047:27;38057:2;38061:8;38047:27;;;;;;;;;;;;:9;:27::i;:::-;37978:104;;:::o;48282:3063::-;48362:27;48392;48411:7;48392:18;:27::i;:::-;48362:57;;48432:12;48463:19;48432:52;;48498:27;48527:23;48554:28;48574:7;48554:19;:28::i;:::-;48497:85;;;;48599:13;48595:310;;;48720:62;48739:15;48756:4;48762:19;:17;:19::i;:::-;48720:18;:62::i;:::-;48715:178;;48806:43;48823:4;48829:19;:17;:19::i;:::-;48806:16;:43::i;:::-;48801:92;;48858:35;;;;;;;;;;;;;;48801:92;48715:178;48595:310;48917:51;48939:4;48953:1;48957:7;48966:1;48917:21;:51::i;:::-;49061:15;49058:160;;;49201:1;49180:19;49173:30;49058:160;49877:1;23725:3;49848:1;:25;;49847:31;49819:18;:24;49838:4;49819:24;;;;;;;;;;;;;;;;:59;;;;;;;;;;;50145:174;50182:4;50251:53;50266:4;50280:1;50284:19;50251:14;:53::i;:::-;24510:8;24232;50206:41;50205:99;50145:18;:174::i;:::-;50116:17;:26;50134:7;50116:26;;;;;;;;;;;:203;;;;50489:1;24510:8;50439:19;:46;:51;50435:626;;50511:19;50543:1;50533:7;:11;50511:33;;50700:1;50666:17;:30;50684:11;50666:30;;;;;;;;;;;;:35;50662:384;;50804:13;;50789:11;:28;50785:242;;50984:19;50951:17;:30;50969:11;50951:30;;;;;;;;;;;:52;;;;50785:242;50662:384;50492:569;50435:626;51116:7;51112:1;51089:35;;51098:4;51089:35;;;;;;;;;;;;51135:50;51156:4;51170:1;51174:7;51183:1;51135:20;:50::i;:::-;51312:12;;:14;;;;;;;;;;;;;48351:2994;;;;48282:3063;;:::o;12951:191::-;13025:16;13044:6;;;;;;;;;;;13025:25;;13070:8;13061:6;;:17;;;;;;;;;;;;;;;;;;13125:8;13094:40;;13115:8;13094:40;;;;;;;;;;;;13014:128;12951:191;:::o;3344:190::-;3469:4;3522;3493:25;3506:5;3513:4;3493:12;:25::i;:::-;:33;3486:40;;3344:190;;;;;:::o;32258:153::-;32318:21;;:::i;:::-;32359:44;32378:17;:24;32396:5;32378:24;;;;;;;;;;;;32359:18;:44::i;:::-;32352:51;;32258:153;;;:::o;26977:95::-;27024:7;27051:13;;27044:20;;26977:95;:::o;51837:716::-;52000:4;52046:2;52021:45;;;52067:19;:17;:19::i;:::-;52088:4;52094:7;52103:5;52021:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52017:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52321:1;52304:6;:13;:18;52300:235;;52350:40;;;;;;;;;;;;;;52300:235;52493:6;52487:13;52478:6;52474:2;52470:15;52463:38;52017:529;52190:54;;;52180:64;;;:6;:64;;;;52173:71;;;51837:716;;;;;;:::o;32914:158::-;32976:21;;:::i;:::-;33017:47;33036:27;33055:7;33036:18;:27::i;:::-;33017:18;:47::i;:::-;33010:54;;32914:158;;;:::o;7967:723::-;8023:13;8253:1;8244:5;:10;8240:53;;8271:10;;;;;;;;;;;;;;;;;;;;;8240:53;8303:12;8318:5;8303:20;;8334:14;8359:78;8374:1;8366:4;:9;8359:78;;8392:8;;;;;:::i;:::-;;;;8423:2;8415:10;;;;;:::i;:::-;;;8359:78;;;8447:19;8479:6;8469:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8447:39;;8497:154;8513:1;8504:5;:10;8497:154;;8541:1;8531:11;;;;;:::i;:::-;;;8608:2;8600:5;:10;;;;:::i;:::-;8587:2;:24;;;;:::i;:::-;8574:39;;8557:6;8564;8557:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8637:2;8628:11;;;;;:::i;:::-;;;8497:154;;;8675:6;8661:21;;;;;7967:723;;;;:::o;54212:147::-;54349:6;54212:147;;;;;:::o;38498:681::-;38621:19;38627:2;38631:8;38621:5;:19::i;:::-;38700:1;38682:2;:14;;;:19;38678:483;;38722:11;38736:13;;38722:27;;38768:13;38790:8;38784:3;:14;38768:30;;38817:233;38848:62;38887:1;38891:2;38895:7;;;;;;38904:5;38848:30;:62::i;:::-;38843:167;;38946:40;;;;;;;;;;;;;;38843:167;39045:3;39037:5;:11;38817:233;;39132:3;39115:13;;:20;39111:34;;39137:8;;;39111:34;38703:458;;38678:483;38498:681;;;:::o;3895:675::-;3978:7;3998:20;4021:4;3998:27;;4041:9;4036:497;4060:5;:12;4056:1;:16;4036:497;;;4094:20;4117:5;4123:1;4117:8;;;;;;;;:::i;:::-;;;;;;;;4094:31;;4160:12;4144;:28;4140:382;;4287:42;4302:12;4316;4287:14;:42::i;:::-;4272:57;;4140:382;;;4464:42;4479:12;4493;4464:14;:42::i;:::-;4449:57;;4140:382;4079:454;4074:3;;;;;:::i;:::-;;;;4036:497;;;;4550:12;4543:19;;;3895:675;;;;:::o;31804:363::-;31870:31;;:::i;:::-;31947:6;31914:9;:14;;:41;;;;;;;;;;;24116:3;32000:6;:32;;31966:9;:24;;:67;;;;;;;;;;;32090:1;24232:8;32063:6;:23;:28;;32044:9;:16;;:47;;;;;;;;;;;24633:3;32131:6;:27;;32102:9;:19;;:57;;;;;;;;;;;31804:363;;;:::o;39452:1529::-;39517:20;39540:13;;39517:36;;39582:1;39568:16;;:2;:16;;;39564:48;;39593:19;;;;;;;;;;;;;;39564:48;39639:1;39627:8;:13;39623:44;;39649:18;;;;;;;;;;;;;;39623:44;39680:61;39710:1;39714:2;39718:12;39732:8;39680:21;:61::i;:::-;40223:1;23599:2;40194:1;:25;;40193:31;40181:8;:44;40155:18;:22;40174:2;40155:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;40502:139;40539:2;40593:33;40616:1;40620:2;40624:1;40593:14;:33::i;:::-;40560:30;40581:8;40560:20;:30::i;:::-;:66;40502:18;:139::i;:::-;40468:17;:31;40486:12;40468:31;;;;;;;;;;;:173;;;;40658:15;40676:12;40658:30;;40703:11;40732:8;40717:12;:23;40703:37;;40755:101;40807:9;;;;;;40803:2;40782:35;;40799:1;40782:35;;;;;;;;;;;;40851:3;40841:7;:13;40755:101;;40888:3;40872:13;:19;;;;39929:974;;40913:60;40942:1;40946:2;40950:12;40964:8;40913:20;:60::i;:::-;39506:1475;39452:1529;;:::o;4578:224::-;4646:13;4709:1;4703:4;4696:15;4738:1;4732:4;4725:15;4779:4;4773;4763:21;4754:30;;4578:224;;;;:::o;34985:322::-;35055:14;35286:1;35276:8;35273:15;35248:23;35244:45;35234:55;;34985:322;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:77::-;6877:7;6906:5;6895:16;;6840:77;;;:::o;6923:118::-;7010:24;7028:5;7010:24;:::i;:::-;7005:3;6998:37;6923:118;;:::o;7047:222::-;7140:4;7178:2;7167:9;7163:18;7155:26;;7191:71;7259:1;7248:9;7244:17;7235:6;7191:71;:::i;:::-;7047:222;;;;:::o;7275:117::-;7384:1;7381;7374:12;7398:117;7507:1;7504;7497:12;7521:180;7569:77;7566:1;7559:88;7666:4;7663:1;7656:15;7690:4;7687:1;7680:15;7707:281;7790:27;7812:4;7790:27;:::i;:::-;7782:6;7778:40;7920:6;7908:10;7905:22;7884:18;7872:10;7869:34;7866:62;7863:88;;;7931:18;;:::i;:::-;7863:88;7971:10;7967:2;7960:22;7750:238;7707:281;;:::o;7994:129::-;8028:6;8055:20;;:::i;:::-;8045:30;;8084:33;8112:4;8104:6;8084:33;:::i;:::-;7994:129;;;:::o;8129:308::-;8191:4;8281:18;8273:6;8270:30;8267:56;;;8303:18;;:::i;:::-;8267:56;8341:29;8363:6;8341:29;:::i;:::-;8333:37;;8425:4;8419;8415:15;8407:23;;8129:308;;;:::o;8443:154::-;8527:6;8522:3;8517;8504:30;8589:1;8580:6;8575:3;8571:16;8564:27;8443:154;;;:::o;8603:412::-;8681:5;8706:66;8722:49;8764:6;8722:49;:::i;:::-;8706:66;:::i;:::-;8697:75;;8795:6;8788:5;8781:21;8833:4;8826:5;8822:16;8871:3;8862:6;8857:3;8853:16;8850:25;8847:112;;;8878:79;;:::i;:::-;8847:112;8968:41;9002:6;8997:3;8992;8968:41;:::i;:::-;8687:328;8603:412;;;;;:::o;9035:340::-;9091:5;9140:3;9133:4;9125:6;9121:17;9117:27;9107:122;;9148:79;;:::i;:::-;9107:122;9265:6;9252:20;9290:79;9365:3;9357:6;9350:4;9342:6;9338:17;9290:79;:::i;:::-;9281:88;;9097:278;9035:340;;;;:::o;9381:509::-;9450:6;9499:2;9487:9;9478:7;9474:23;9470:32;9467:119;;;9505:79;;:::i;:::-;9467:119;9653:1;9642:9;9638:17;9625:31;9683:18;9675:6;9672:30;9669:117;;;9705:79;;:::i;:::-;9669:117;9810:63;9865:7;9856:6;9845:9;9841:22;9810:63;:::i;:::-;9800:73;;9596:287;9381:509;;;;:::o;9896:311::-;9973:4;10063:18;10055:6;10052:30;10049:56;;;10085:18;;:::i;:::-;10049:56;10135:4;10127:6;10123:17;10115:25;;10195:4;10189;10185:15;10177:23;;9896:311;;;:::o;10213:117::-;10322:1;10319;10312:12;10353:710;10449:5;10474:81;10490:64;10547:6;10490:64;:::i;:::-;10474:81;:::i;:::-;10465:90;;10575:5;10604:6;10597:5;10590:21;10638:4;10631:5;10627:16;10620:23;;10691:4;10683:6;10679:17;10671:6;10667:30;10720:3;10712:6;10709:15;10706:122;;;10739:79;;:::i;:::-;10706:122;10854:6;10837:220;10871:6;10866:3;10863:15;10837:220;;;10946:3;10975:37;11008:3;10996:10;10975:37;:::i;:::-;10970:3;10963:50;11042:4;11037:3;11033:14;11026:21;;10913:144;10897:4;10892:3;10888:14;10881:21;;10837:220;;;10841:21;10455:608;;10353:710;;;;;:::o;11086:370::-;11157:5;11206:3;11199:4;11191:6;11187:17;11183:27;11173:122;;11214:79;;:::i;:::-;11173:122;11331:6;11318:20;11356:94;11446:3;11438:6;11431:4;11423:6;11419:17;11356:94;:::i;:::-;11347:103;;11163:293;11086:370;;;;:::o;11462:539::-;11546:6;11595:2;11583:9;11574:7;11570:23;11566:32;11563:119;;;11601:79;;:::i;:::-;11563:119;11749:1;11738:9;11734:17;11721:31;11779:18;11771:6;11768:30;11765:117;;;11801:79;;:::i;:::-;11765:117;11906:78;11976:7;11967:6;11956:9;11952:22;11906:78;:::i;:::-;11896:88;;11692:302;11462:539;;;;:::o;12007:145::-;12105:6;12139:5;12133:12;12123:22;;12007:145;;;:::o;12158:215::-;12288:11;12322:6;12317:3;12310:19;12362:4;12357:3;12353:14;12338:29;;12158:215;;;;:::o;12379:163::-;12477:4;12500:3;12492:11;;12530:4;12525:3;12521:14;12513:22;;12379:163;;;:::o;12548:108::-;12625:24;12643:5;12625:24;:::i;:::-;12620:3;12613:37;12548:108;;:::o;12662:101::-;12698:7;12738:18;12731:5;12727:30;12716:41;;12662:101;;;:::o;12769:105::-;12844:23;12861:5;12844:23;:::i;:::-;12839:3;12832:36;12769:105;;:::o;12880:99::-;12951:21;12966:5;12951:21;:::i;:::-;12946:3;12939:34;12880:99;;:::o;12985:91::-;13021:7;13061:8;13054:5;13050:20;13039:31;;12985:91;;;:::o;13082:105::-;13157:23;13174:5;13157:23;:::i;:::-;13152:3;13145:36;13082:105;;:::o;13265:864::-;13414:4;13409:3;13405:14;13501:4;13494:5;13490:16;13484:23;13520:63;13577:4;13572:3;13568:14;13554:12;13520:63;:::i;:::-;13429:164;13685:4;13678:5;13674:16;13668:23;13704:61;13759:4;13754:3;13750:14;13736:12;13704:61;:::i;:::-;13603:172;13859:4;13852:5;13848:16;13842:23;13878:57;13929:4;13924:3;13920:14;13906:12;13878:57;:::i;:::-;13785:160;14032:4;14025:5;14021:16;14015:23;14051:61;14106:4;14101:3;14097:14;14083:12;14051:61;:::i;:::-;13955:167;13383:746;13265:864;;:::o;14135:303::-;14266:10;14287:108;14391:3;14383:6;14287:108;:::i;:::-;14427:4;14422:3;14418:14;14404:28;;14135:303;;;;:::o;14444:144::-;14545:4;14577;14572:3;14568:14;14560:22;;14444:144;;;:::o;14670:980::-;14851:3;14880:85;14959:5;14880:85;:::i;:::-;14981:117;15091:6;15086:3;14981:117;:::i;:::-;14974:124;;15122:87;15203:5;15122:87;:::i;:::-;15232:7;15263:1;15248:377;15273:6;15270:1;15267:13;15248:377;;;15349:6;15343:13;15376:125;15497:3;15482:13;15376:125;:::i;:::-;15369:132;;15524:91;15608:6;15524:91;:::i;:::-;15514:101;;15308:317;15295:1;15292;15288:9;15283:14;;15248:377;;;15252:14;15641:3;15634:10;;14856:794;;;14670:980;;;;:::o;15656:497::-;15861:4;15899:2;15888:9;15884:18;15876:26;;15948:9;15942:4;15938:20;15934:1;15923:9;15919:17;15912:47;15976:170;16141:4;16132:6;15976:170;:::i;:::-;15968:178;;15656:497;;;;:::o;16159:311::-;16236:4;16326:18;16318:6;16315:30;16312:56;;;16348:18;;:::i;:::-;16312:56;16398:4;16390:6;16386:17;16378:25;;16458:4;16452;16448:15;16440:23;;16159:311;;;:::o;16476:122::-;16549:24;16567:5;16549:24;:::i;:::-;16542:5;16539:35;16529:63;;16588:1;16585;16578:12;16529:63;16476:122;:::o;16604:139::-;16650:5;16688:6;16675:20;16666:29;;16704:33;16731:5;16704:33;:::i;:::-;16604:139;;;;:::o;16766:710::-;16862:5;16887:81;16903:64;16960:6;16903:64;:::i;:::-;16887:81;:::i;:::-;16878:90;;16988:5;17017:6;17010:5;17003:21;17051:4;17044:5;17040:16;17033:23;;17104:4;17096:6;17092:17;17084:6;17080:30;17133:3;17125:6;17122:15;17119:122;;;17152:79;;:::i;:::-;17119:122;17267:6;17250:220;17284:6;17279:3;17276:15;17250:220;;;17359:3;17388:37;17421:3;17409:10;17388:37;:::i;:::-;17383:3;17376:50;17455:4;17450:3;17446:14;17439:21;;17326:144;17310:4;17305:3;17301:14;17294:21;;17250:220;;;17254:21;16868:608;;16766:710;;;;;:::o;17499:370::-;17570:5;17619:3;17612:4;17604:6;17600:17;17596:27;17586:122;;17627:79;;:::i;:::-;17586:122;17744:6;17731:20;17769:94;17859:3;17851:6;17844:4;17836:6;17832:17;17769:94;:::i;:::-;17760:103;;17576:293;17499:370;;;;:::o;17875:829::-;17977:6;17985;17993;18042:2;18030:9;18021:7;18017:23;18013:32;18010:119;;;18048:79;;:::i;:::-;18010:119;18196:1;18185:9;18181:17;18168:31;18226:18;18218:6;18215:30;18212:117;;;18248:79;;:::i;:::-;18212:117;18353:78;18423:7;18414:6;18403:9;18399:22;18353:78;:::i;:::-;18343:88;;18139:302;18480:2;18506:53;18551:7;18542:6;18531:9;18527:22;18506:53;:::i;:::-;18496:63;;18451:118;18608:2;18634:53;18679:7;18670:6;18659:9;18655:22;18634:53;:::i;:::-;18624:63;;18579:118;17875:829;;;;;:::o;18710:329::-;18769:6;18818:2;18806:9;18797:7;18793:23;18789:32;18786:119;;;18824:79;;:::i;:::-;18786:119;18944:1;18969:53;19014:7;19005:6;18994:9;18990:22;18969:53;:::i;:::-;18959:63;;18915:117;18710:329;;;;:::o;19045:114::-;19112:6;19146:5;19140:12;19130:22;;19045:114;;;:::o;19165:184::-;19264:11;19298:6;19293:3;19286:19;19338:4;19333:3;19329:14;19314:29;;19165:184;;;;:::o;19355:132::-;19422:4;19445:3;19437:11;;19475:4;19470:3;19466:14;19458:22;;19355:132;;;:::o;19493:108::-;19570:24;19588:5;19570:24;:::i;:::-;19565:3;19558:37;19493:108;;:::o;19607:179::-;19676:10;19697:46;19739:3;19731:6;19697:46;:::i;:::-;19775:4;19770:3;19766:14;19752:28;;19607:179;;;;:::o;19792:113::-;19862:4;19894;19889:3;19885:14;19877:22;;19792:113;;;:::o;19941:732::-;20060:3;20089:54;20137:5;20089:54;:::i;:::-;20159:86;20238:6;20233:3;20159:86;:::i;:::-;20152:93;;20269:56;20319:5;20269:56;:::i;:::-;20348:7;20379:1;20364:284;20389:6;20386:1;20383:13;20364:284;;;20465:6;20459:13;20492:63;20551:3;20536:13;20492:63;:::i;:::-;20485:70;;20578:60;20631:6;20578:60;:::i;:::-;20568:70;;20424:224;20411:1;20408;20404:9;20399:14;;20364:284;;;20368:14;20664:3;20657:10;;20065:608;;;19941:732;;;;:::o;20679:373::-;20822:4;20860:2;20849:9;20845:18;20837:26;;20909:9;20903:4;20899:20;20895:1;20884:9;20880:17;20873:47;20937:108;21040:4;21031:6;20937:108;:::i;:::-;20929:116;;20679:373;;;;:::o;21058:619::-;21135:6;21143;21151;21200:2;21188:9;21179:7;21175:23;21171:32;21168:119;;;21206:79;;:::i;:::-;21168:119;21326:1;21351:53;21396:7;21387:6;21376:9;21372:22;21351:53;:::i;:::-;21341:63;;21297:117;21453:2;21479:53;21524:7;21515:6;21504:9;21500:22;21479:53;:::i;:::-;21469:63;;21424:118;21581:2;21607:53;21652:7;21643:6;21632:9;21628:22;21607:53;:::i;:::-;21597:63;;21552:118;21058:619;;;;;:::o;21683:468::-;21748:6;21756;21805:2;21793:9;21784:7;21780:23;21776:32;21773:119;;;21811:79;;:::i;:::-;21773:119;21931:1;21956:53;22001:7;21992:6;21981:9;21977:22;21956:53;:::i;:::-;21946:63;;21902:117;22058:2;22084:50;22126:7;22117:6;22106:9;22102:22;22084:50;:::i;:::-;22074:60;;22029:115;21683:468;;;;;:::o;22157:307::-;22218:4;22308:18;22300:6;22297:30;22294:56;;;22330:18;;:::i;:::-;22294:56;22368:29;22390:6;22368:29;:::i;:::-;22360:37;;22452:4;22446;22442:15;22434:23;;22157:307;;;:::o;22470:410::-;22547:5;22572:65;22588:48;22629:6;22588:48;:::i;:::-;22572:65;:::i;:::-;22563:74;;22660:6;22653:5;22646:21;22698:4;22691:5;22687:16;22736:3;22727:6;22722:3;22718:16;22715:25;22712:112;;;22743:79;;:::i;:::-;22712:112;22833:41;22867:6;22862:3;22857;22833:41;:::i;:::-;22553:327;22470:410;;;;;:::o;22899:338::-;22954:5;23003:3;22996:4;22988:6;22984:17;22980:27;22970:122;;23011:79;;:::i;:::-;22970:122;23128:6;23115:20;23153:78;23227:3;23219:6;23212:4;23204:6;23200:17;23153:78;:::i;:::-;23144:87;;22960:277;22899:338;;;;:::o;23243:943::-;23338:6;23346;23354;23362;23411:3;23399:9;23390:7;23386:23;23382:33;23379:120;;;23418:79;;:::i;:::-;23379:120;23538:1;23563:53;23608:7;23599:6;23588:9;23584:22;23563:53;:::i;:::-;23553:63;;23509:117;23665:2;23691:53;23736:7;23727:6;23716:9;23712:22;23691:53;:::i;:::-;23681:63;;23636:118;23793:2;23819:53;23864:7;23855:6;23844:9;23840:22;23819:53;:::i;:::-;23809:63;;23764:118;23949:2;23938:9;23934:18;23921:32;23980:18;23972:6;23969:30;23966:117;;;24002:79;;:::i;:::-;23966:117;24107:62;24161:7;24152:6;24141:9;24137:22;24107:62;:::i;:::-;24097:72;;23892:287;23243:943;;;;;;;:::o;24264:874::-;24423:4;24418:3;24414:14;24510:4;24503:5;24499:16;24493:23;24529:63;24586:4;24581:3;24577:14;24563:12;24529:63;:::i;:::-;24438:164;24694:4;24687:5;24683:16;24677:23;24713:61;24768:4;24763:3;24759:14;24745:12;24713:61;:::i;:::-;24612:172;24868:4;24861:5;24857:16;24851:23;24887:57;24938:4;24933:3;24929:14;24915:12;24887:57;:::i;:::-;24794:160;25041:4;25034:5;25030:16;25024:23;25060:61;25115:4;25110:3;25106:14;25092:12;25060:61;:::i;:::-;24964:167;24392:746;24264:874;;:::o;25144:347::-;25299:4;25337:3;25326:9;25322:19;25314:27;;25351:133;25481:1;25470:9;25466:17;25457:6;25351:133;:::i;:::-;25144:347;;;;:::o;25497:975::-;25608:6;25616;25624;25632;25681:3;25669:9;25660:7;25656:23;25652:33;25649:120;;;25688:79;;:::i;:::-;25649:120;25836:1;25825:9;25821:17;25808:31;25866:18;25858:6;25855:30;25852:117;;;25888:79;;:::i;:::-;25852:117;25993:78;26063:7;26054:6;26043:9;26039:22;25993:78;:::i;:::-;25983:88;;25779:302;26120:2;26146:53;26191:7;26182:6;26171:9;26167:22;26146:53;:::i;:::-;26136:63;;26091:118;26248:2;26274:53;26319:7;26310:6;26299:9;26295:22;26274:53;:::i;:::-;26264:63;;26219:118;26376:2;26402:53;26447:7;26438:6;26427:9;26423:22;26402:53;:::i;:::-;26392:63;;26347:118;25497:975;;;;;;;:::o;26478:474::-;26546:6;26554;26603:2;26591:9;26582:7;26578:23;26574:32;26571:119;;;26609:79;;:::i;:::-;26571:119;26729:1;26754:53;26799:7;26790:6;26779:9;26775:22;26754:53;:::i;:::-;26744:63;;26700:117;26856:2;26882:53;26927:7;26918:6;26907:9;26903:22;26882:53;:::i;:::-;26872:63;;26827:118;26478:474;;;;;:::o;26958:180::-;27006:77;27003:1;26996:88;27103:4;27100:1;27093:15;27127:4;27124:1;27117:15;27144:320;27188:6;27225:1;27219:4;27215:12;27205:22;;27272:1;27266:4;27262:12;27293:18;27283:81;;27349:4;27341:6;27337:17;27327:27;;27283:81;27411:2;27403:6;27400:14;27380:18;27377:38;27374:84;;27430:18;;:::i;:::-;27374:84;27195:269;27144:320;;;:::o;27470:182::-;27610:34;27606:1;27598:6;27594:14;27587:58;27470:182;:::o;27658:366::-;27800:3;27821:67;27885:2;27880:3;27821:67;:::i;:::-;27814:74;;27897:93;27986:3;27897:93;:::i;:::-;28015:2;28010:3;28006:12;27999:19;;27658:366;;;:::o;28030:419::-;28196:4;28234:2;28223:9;28219:18;28211:26;;28283:9;28277:4;28273:20;28269:1;28258:9;28254:17;28247:47;28311:131;28437:4;28311:131;:::i;:::-;28303:139;;28030:419;;;:::o;28455:174::-;28595:26;28591:1;28583:6;28579:14;28572:50;28455:174;:::o;28635:366::-;28777:3;28798:67;28862:2;28857:3;28798:67;:::i;:::-;28791:74;;28874:93;28963:3;28874:93;:::i;:::-;28992:2;28987:3;28983:12;28976:19;;28635:366;;;:::o;29007:419::-;29173:4;29211:2;29200:9;29196:18;29188:26;;29260:9;29254:4;29250:20;29246:1;29235:9;29231:17;29224:47;29288:131;29414:4;29288:131;:::i;:::-;29280:139;;29007:419;;;:::o;29432:180::-;29480:77;29477:1;29470:88;29577:4;29574:1;29567:15;29601:4;29598:1;29591:15;29618:305;29658:3;29677:20;29695:1;29677:20;:::i;:::-;29672:25;;29711:20;29729:1;29711:20;:::i;:::-;29706:25;;29865:1;29797:66;29793:74;29790:1;29787:81;29784:107;;;29871:18;;:::i;:::-;29784:107;29915:1;29912;29908:9;29901:16;;29618:305;;;;:::o;29929:173::-;30069:25;30065:1;30057:6;30053:14;30046:49;29929:173;:::o;30108:366::-;30250:3;30271:67;30335:2;30330:3;30271:67;:::i;:::-;30264:74;;30347:93;30436:3;30347:93;:::i;:::-;30465:2;30460:3;30456:12;30449:19;;30108:366;;;:::o;30480:419::-;30646:4;30684:2;30673:9;30669:18;30661:26;;30733:9;30727:4;30723:20;30719:1;30708:9;30704:17;30697:47;30761:131;30887:4;30761:131;:::i;:::-;30753:139;;30480:419;;;:::o;30905:173::-;31045:25;31041:1;31033:6;31029:14;31022:49;30905:173;:::o;31084:366::-;31226:3;31247:67;31311:2;31306:3;31247:67;:::i;:::-;31240:74;;31323:93;31412:3;31323:93;:::i;:::-;31441:2;31436:3;31432:12;31425:19;;31084:366;;;:::o;31456:419::-;31622:4;31660:2;31649:9;31645:18;31637:26;;31709:9;31703:4;31699:20;31695:1;31684:9;31680:17;31673:47;31737:131;31863:4;31737:131;:::i;:::-;31729:139;;31456:419;;;:::o;31881:226::-;32021:34;32017:1;32009:6;32005:14;31998:58;32090:9;32085:2;32077:6;32073:15;32066:34;31881:226;:::o;32113:366::-;32255:3;32276:67;32340:2;32335:3;32276:67;:::i;:::-;32269:74;;32352:93;32441:3;32352:93;:::i;:::-;32470:2;32465:3;32461:12;32454:19;;32113:366;;;:::o;32485:419::-;32651:4;32689:2;32678:9;32674:18;32666:26;;32738:9;32732:4;32728:20;32724:1;32713:9;32709:17;32702:47;32766:131;32892:4;32766:131;:::i;:::-;32758:139;;32485:419;;;:::o;32910:348::-;32950:7;32973:20;32991:1;32973:20;:::i;:::-;32968:25;;33007:20;33025:1;33007:20;:::i;:::-;33002:25;;33195:1;33127:66;33123:74;33120:1;33117:81;33112:1;33105:9;33098:17;33094:105;33091:131;;;33202:18;;:::i;:::-;33091:131;33250:1;33247;33243:9;33232:20;;32910:348;;;;:::o;33264:173::-;33404:25;33400:1;33392:6;33388:14;33381:49;33264:173;:::o;33443:366::-;33585:3;33606:67;33670:2;33665:3;33606:67;:::i;:::-;33599:74;;33682:93;33771:3;33682:93;:::i;:::-;33800:2;33795:3;33791:12;33784:19;;33443:366;;;:::o;33815:419::-;33981:4;34019:2;34008:9;34004:18;33996:26;;34068:9;34062:4;34058:20;34054:1;34043:9;34039:17;34032:47;34096:131;34222:4;34096:131;:::i;:::-;34088:139;;33815:419;;;:::o;34240:147::-;34341:11;34378:3;34363:18;;34240:147;;;;:::o;34393:114::-;;:::o;34513:398::-;34672:3;34693:83;34774:1;34769:3;34693:83;:::i;:::-;34686:90;;34785:93;34874:3;34785:93;:::i;:::-;34903:1;34898:3;34894:11;34887:18;;34513:398;;;:::o;34917:379::-;35101:3;35123:147;35266:3;35123:147;:::i;:::-;35116:154;;35287:3;35280:10;;34917:379;;;:::o;35302:141::-;35351:4;35374:3;35366:11;;35397:3;35394:1;35387:14;35431:4;35428:1;35418:18;35410:26;;35302:141;;;:::o;35449:93::-;35486:6;35533:2;35528;35521:5;35517:14;35513:23;35503:33;;35449:93;;;:::o;35548:107::-;35592:8;35642:5;35636:4;35632:16;35611:37;;35548:107;;;;:::o;35661:393::-;35730:6;35780:1;35768:10;35764:18;35803:97;35833:66;35822:9;35803:97;:::i;:::-;35921:39;35951:8;35940:9;35921:39;:::i;:::-;35909:51;;35993:4;35989:9;35982:5;35978:21;35969:30;;36042:4;36032:8;36028:19;36021:5;36018:30;36008:40;;35737:317;;35661:393;;;;;:::o;36060:60::-;36088:3;36109:5;36102:12;;36060:60;;;:::o;36126:142::-;36176:9;36209:53;36227:34;36236:24;36254:5;36236:24;:::i;:::-;36227:34;:::i;:::-;36209:53;:::i;:::-;36196:66;;36126:142;;;:::o;36274:75::-;36317:3;36338:5;36331:12;;36274:75;;;:::o;36355:269::-;36465:39;36496:7;36465:39;:::i;:::-;36526:91;36575:41;36599:16;36575:41;:::i;:::-;36567:6;36560:4;36554:11;36526:91;:::i;:::-;36520:4;36513:105;36431:193;36355:269;;;:::o;36630:73::-;36675:3;36630:73;:::o;36709:189::-;36786:32;;:::i;:::-;36827:65;36885:6;36877;36871:4;36827:65;:::i;:::-;36762:136;36709:189;;:::o;36904:186::-;36964:120;36981:3;36974:5;36971:14;36964:120;;;37035:39;37072:1;37065:5;37035:39;:::i;:::-;37008:1;37001:5;36997:13;36988:22;;36964:120;;;36904:186;;:::o;37096:543::-;37197:2;37192:3;37189:11;37186:446;;;37231:38;37263:5;37231:38;:::i;:::-;37315:29;37333:10;37315:29;:::i;:::-;37305:8;37301:44;37498:2;37486:10;37483:18;37480:49;;;37519:8;37504:23;;37480:49;37542:80;37598:22;37616:3;37598:22;:::i;:::-;37588:8;37584:37;37571:11;37542:80;:::i;:::-;37201:431;;37186:446;37096:543;;;:::o;37645:117::-;37699:8;37749:5;37743:4;37739:16;37718:37;;37645:117;;;;:::o;37768:169::-;37812:6;37845:51;37893:1;37889:6;37881:5;37878:1;37874:13;37845:51;:::i;:::-;37841:56;37926:4;37920;37916:15;37906:25;;37819:118;37768:169;;;;:::o;37942:295::-;38018:4;38164:29;38189:3;38183:4;38164:29;:::i;:::-;38156:37;;38226:3;38223:1;38219:11;38213:4;38210:21;38202:29;;37942:295;;;;:::o;38242:1395::-;38359:37;38392:3;38359:37;:::i;:::-;38461:18;38453:6;38450:30;38447:56;;;38483:18;;:::i;:::-;38447:56;38527:38;38559:4;38553:11;38527:38;:::i;:::-;38612:67;38672:6;38664;38658:4;38612:67;:::i;:::-;38706:1;38730:4;38717:17;;38762:2;38754:6;38751:14;38779:1;38774:618;;;;39436:1;39453:6;39450:77;;;39502:9;39497:3;39493:19;39487:26;39478:35;;39450:77;39553:67;39613:6;39606:5;39553:67;:::i;:::-;39547:4;39540:81;39409:222;38744:887;;38774:618;38826:4;38822:9;38814:6;38810:22;38860:37;38892:4;38860:37;:::i;:::-;38919:1;38933:208;38947:7;38944:1;38941:14;38933:208;;;39026:9;39021:3;39017:19;39011:26;39003:6;38996:42;39077:1;39069:6;39065:14;39055:24;;39124:2;39113:9;39109:18;39096:31;;38970:4;38967:1;38963:12;38958:17;;38933:208;;;39169:6;39160:7;39157:19;39154:179;;;39227:9;39222:3;39218:19;39212:26;39270:48;39312:4;39304:6;39300:17;39289:9;39270:48;:::i;:::-;39262:6;39255:64;39177:156;39154:179;39379:1;39375;39367:6;39363:14;39359:22;39353:4;39346:36;38781:611;;;38744:887;;38334:1303;;;38242:1395;;:::o;39643:180::-;39691:77;39688:1;39681:88;39788:4;39785:1;39778:15;39812:4;39809:1;39802:15;39829:168;39969:20;39965:1;39957:6;39953:14;39946:44;39829:168;:::o;40003:366::-;40145:3;40166:67;40230:2;40225:3;40166:67;:::i;:::-;40159:74;;40242:93;40331:3;40242:93;:::i;:::-;40360:2;40355:3;40351:12;40344:19;;40003:366;;;:::o;40375:419::-;40541:4;40579:2;40568:9;40564:18;40556:26;;40628:9;40622:4;40618:20;40614:1;40603:9;40599:17;40592:47;40656:131;40782:4;40656:131;:::i;:::-;40648:139;;40375:419;;;:::o;40800:174::-;40940:26;40936:1;40928:6;40924:14;40917:50;40800:174;:::o;40980:366::-;41122:3;41143:67;41207:2;41202:3;41143:67;:::i;:::-;41136:74;;41219:93;41308:3;41219:93;:::i;:::-;41337:2;41332:3;41328:12;41321:19;;40980:366;;;:::o;41352:419::-;41518:4;41556:2;41545:9;41541:18;41533:26;;41605:9;41599:4;41595:20;41591:1;41580:9;41576:17;41569:47;41633:131;41759:4;41633:131;:::i;:::-;41625:139;;41352:419;;;:::o;41777:94::-;41810:8;41858:5;41854:2;41850:14;41829:35;;41777:94;;;:::o;41877:::-;41916:7;41945:20;41959:5;41945:20;:::i;:::-;41934:31;;41877:94;;;:::o;41977:100::-;42016:7;42045:26;42065:5;42045:26;:::i;:::-;42034:37;;41977:100;;;:::o;42083:157::-;42188:45;42208:24;42226:5;42208:24;:::i;:::-;42188:45;:::i;:::-;42183:3;42176:58;42083:157;;:::o;42246:79::-;42285:7;42314:5;42303:16;;42246:79;;;:::o;42331:157::-;42436:45;42456:24;42474:5;42456:24;:::i;:::-;42436:45;:::i;:::-;42431:3;42424:58;42331:157;;:::o;42494:397::-;42634:3;42649:75;42720:3;42711:6;42649:75;:::i;:::-;42749:2;42744:3;42740:12;42733:19;;42762:75;42833:3;42824:6;42762:75;:::i;:::-;42862:2;42857:3;42853:12;42846:19;;42882:3;42875:10;;42494:397;;;;;:::o;42897:174::-;43037:26;43033:1;43025:6;43021:14;43014:50;42897:174;:::o;43077:366::-;43219:3;43240:67;43304:2;43299:3;43240:67;:::i;:::-;43233:74;;43316:93;43405:3;43316:93;:::i;:::-;43434:2;43429:3;43425:12;43418:19;;43077:366;;;:::o;43449:419::-;43615:4;43653:2;43642:9;43638:18;43630:26;;43702:9;43696:4;43692:20;43688:1;43677:9;43673:17;43666:47;43730:131;43856:4;43730:131;:::i;:::-;43722:139;;43449:419;;;:::o;43874:238::-;44014:34;44010:1;44002:6;43998:14;43991:58;44083:21;44078:2;44070:6;44066:15;44059:46;43874:238;:::o;44118:366::-;44260:3;44281:67;44345:2;44340:3;44281:67;:::i;:::-;44274:74;;44357:93;44446:3;44357:93;:::i;:::-;44475:2;44470:3;44466:12;44459:19;;44118:366;;;:::o;44490:419::-;44656:4;44694:2;44683:9;44679:18;44671:26;;44743:9;44737:4;44733:20;44729:1;44718:9;44714:17;44707:47;44771:131;44897:4;44771:131;:::i;:::-;44763:139;;44490:419;;;:::o;44915:235::-;45055:34;45051:1;45043:6;45039:14;45032:58;45124:18;45119:2;45111:6;45107:15;45100:43;44915:235;:::o;45156:366::-;45298:3;45319:67;45383:2;45378:3;45319:67;:::i;:::-;45312:74;;45395:93;45484:3;45395:93;:::i;:::-;45513:2;45508:3;45504:12;45497:19;;45156:366;;;:::o;45528:419::-;45694:4;45732:2;45721:9;45717:18;45709:26;;45781:9;45775:4;45771:20;45767:1;45756:9;45752:17;45745:47;45809:131;45935:4;45809:131;:::i;:::-;45801:139;;45528:419;;;:::o;45953:148::-;46055:11;46092:3;46077:18;;45953:148;;;;:::o;46131:874::-;46234:3;46271:5;46265:12;46300:36;46326:9;46300:36;:::i;:::-;46352:89;46434:6;46429:3;46352:89;:::i;:::-;46345:96;;46472:1;46461:9;46457:17;46488:1;46483:166;;;;46663:1;46658:341;;;;46450:549;;46483:166;46567:4;46563:9;46552;46548:25;46543:3;46536:38;46629:6;46622:14;46615:22;46607:6;46603:35;46598:3;46594:45;46587:52;;46483:166;;46658:341;46725:38;46757:5;46725:38;:::i;:::-;46785:1;46799:154;46813:6;46810:1;46807:13;46799:154;;;46887:7;46881:14;46877:1;46872:3;46868:11;46861:35;46937:1;46928:7;46924:15;46913:26;;46835:4;46832:1;46828:12;46823:17;;46799:154;;;46982:6;46977:3;46973:16;46966:23;;46665:334;;46450:549;;46238:767;;46131:874;;;;:::o;47011:377::-;47117:3;47145:39;47178:5;47145:39;:::i;:::-;47200:89;47282:6;47277:3;47200:89;:::i;:::-;47193:96;;47298:52;47343:6;47338:3;47331:4;47324:5;47320:16;47298:52;:::i;:::-;47375:6;47370:3;47366:16;47359:23;;47121:267;47011:377;;;;:::o;47394:583::-;47616:3;47638:92;47726:3;47717:6;47638:92;:::i;:::-;47631:99;;47747:95;47838:3;47829:6;47747:95;:::i;:::-;47740:102;;47859:92;47947:3;47938:6;47859:92;:::i;:::-;47852:99;;47968:3;47961:10;;47394:583;;;;;;:::o;47983:225::-;48123:34;48119:1;48111:6;48107:14;48100:58;48192:8;48187:2;48179:6;48175:15;48168:33;47983:225;:::o;48214:366::-;48356:3;48377:67;48441:2;48436:3;48377:67;:::i;:::-;48370:74;;48453:93;48542:3;48453:93;:::i;:::-;48571:2;48566:3;48562:12;48555:19;;48214:366;;;:::o;48586:419::-;48752:4;48790:2;48779:9;48775:18;48767:26;;48839:9;48833:4;48829:20;48825:1;48814:9;48810:17;48803:47;48867:131;48993:4;48867:131;:::i;:::-;48859:139;;48586:419;;;:::o;49011:98::-;49062:6;49096:5;49090:12;49080:22;;49011:98;;;:::o;49115:168::-;49198:11;49232:6;49227:3;49220:19;49272:4;49267:3;49263:14;49248:29;;49115:168;;;;:::o;49289:360::-;49375:3;49403:38;49435:5;49403:38;:::i;:::-;49457:70;49520:6;49515:3;49457:70;:::i;:::-;49450:77;;49536:52;49581:6;49576:3;49569:4;49562:5;49558:16;49536:52;:::i;:::-;49613:29;49635:6;49613:29;:::i;:::-;49608:3;49604:39;49597:46;;49379:270;49289:360;;;;:::o;49655:640::-;49850:4;49888:3;49877:9;49873:19;49865:27;;49902:71;49970:1;49959:9;49955:17;49946:6;49902:71;:::i;:::-;49983:72;50051:2;50040:9;50036:18;50027:6;49983:72;:::i;:::-;50065;50133:2;50122:9;50118:18;50109:6;50065:72;:::i;:::-;50184:9;50178:4;50174:20;50169:2;50158:9;50154:18;50147:48;50212:76;50283:4;50274:6;50212:76;:::i;:::-;50204:84;;49655:640;;;;;;;:::o;50301:141::-;50357:5;50388:6;50382:13;50373:22;;50404:32;50430:5;50404:32;:::i;:::-;50301:141;;;;:::o;50448:349::-;50517:6;50566:2;50554:9;50545:7;50541:23;50537:32;50534:119;;;50572:79;;:::i;:::-;50534:119;50692:1;50717:63;50772:7;50763:6;50752:9;50748:22;50717:63;:::i;:::-;50707:73;;50663:127;50448:349;;;;:::o;50803:233::-;50842:3;50865:24;50883:5;50865:24;:::i;:::-;50856:33;;50911:66;50904:5;50901:77;50898:103;;50981:18;;:::i;:::-;50898:103;51028:1;51021:5;51017:13;51010:20;;50803:233;;;:::o;51042:180::-;51090:77;51087:1;51080:88;51187:4;51184:1;51177:15;51211:4;51208:1;51201:15;51228:185;51268:1;51285:20;51303:1;51285:20;:::i;:::-;51280:25;;51319:20;51337:1;51319:20;:::i;:::-;51314:25;;51358:1;51348:35;;51363:18;;:::i;:::-;51348:35;51405:1;51402;51398:9;51393:14;;51228:185;;;;:::o;51419:191::-;51459:4;51479:20;51497:1;51479:20;:::i;:::-;51474:25;;51513:20;51531:1;51513:20;:::i;:::-;51508:25;;51552:1;51549;51546:8;51543:34;;;51557:18;;:::i;:::-;51543:34;51602:1;51599;51595:9;51587:17;;51419:191;;;;:::o;51616:176::-;51648:1;51665:20;51683:1;51665:20;:::i;:::-;51660:25;;51699:20;51717:1;51699:20;:::i;:::-;51694:25;;51738:1;51728:35;;51743:18;;:::i;:::-;51728:35;51784:1;51781;51777:9;51772:14;;51616:176;;;;:::o

Swarm Source

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