ETH Price: $3,166.72 (-8.18%)
Gas: 3 Gwei

Token

ROE Legendary Mounts (LMNT)
 

Overview

Max Total Supply

625 LMNT

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 LMNT
0x871a185222966B2dDE7c811117431A32Ad3d166F
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:
ROELegendaryMounts

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/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: https://github.com/chiru-labs/ERC721A/blob/v4.1.0/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: https://github.com/chiru-labs/ERC721A/blob/v4.1.0/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: contracts/ROEMount.sol



pragma solidity ^0.8.4;





contract ROELegendaryMounts is ERC721A, Ownable, ReentrancyGuard {
    uint256 public MAX_SUPPLY = 625;
    uint256 public MINT_PRICE = 190000000000000000; // 0.19ETH
    bool public pauseMint = true;
    bool public pausePublicMint = true;
    string public baseURI = "";
    bytes32 public merkleRoot;

    mapping(address => bool) public mintTracker;
    
    constructor() ERC721A("ROE Legendary Mounts", "LMNT") {}

    function mint(bytes32[] calldata _merkleProof) external payable nonReentrant {
        require(pauseMint == false, "Mint is paused");
        require(totalSupply() + 1 <= MAX_SUPPLY, "Max supply exceeded");
        require(mintTracker[msg.sender] == false, "Max minted can only be 1");
        require(isAllowListed(msg.sender, _merkleProof), "You are not whitelist user");
        require(msg.value >= MINT_PRICE, "Invalid ETH value");
        payable(owner()).transfer(msg.value);
        mintTracker[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function publicMint(uint _amount) external payable nonReentrant {
        require(_amount > 0, "Amount must not be zero");
        require(pausePublicMint == false, "Public mint is paused");
        require(totalSupply() + _amount <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= MINT_PRICE * _amount, "Invalid ETH value");
        payable(owner()).transfer(msg.value);
        _safeMint(msg.sender, _amount);
    }

    function bulkMint(uint _amount) external onlyOwner nonReentrant {
        require(totalSupply() + _amount <= MAX_SUPPLY, "Max supply exceeded");
        _safeMint(msg.sender, _amount);
    }

    function isAllowListed(address _recipient, bytes32[] calldata _merkleProof) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_recipient));
        bool isal = MerkleProof.verify(_merkleProof, merkleRoot, leaf);
        return isal;
    }

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

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMintPaused() external onlyOwner {
        pauseMint = !pauseMint;
    }

    function setPublicMintPaused() external onlyOwner {
        pausePublicMint = !pausePublicMint;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        MINT_PRICE = _price;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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_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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","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":"_recipient","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintTracker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610271600a556702a303fe4b530000600b556001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600d90816200006c9190620004a2565b503480156200007a57600080fd5b506040518060400160405280601481526020017f524f45204c6567656e64617279204d6f756e74730000000000000000000000008152506040518060400160405280600481526020017f4c4d4e54000000000000000000000000000000000000000000000000000000008152508160029081620000f89190620004a2565b5080600390816200010a9190620004a2565b506200011b6200015160201b60201c565b600081905550505062000143620001376200015a60201b60201c565b6200016260201b60201c565b600160098190555062000589565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002aa57607f821691505b602082108103620002c057620002bf62000262565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200032a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002eb565b620003368683620002eb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003836200037d62000377846200034e565b62000358565b6200034e565b9050919050565b6000819050919050565b6200039f8362000362565b620003b7620003ae826200038a565b848454620002f8565b825550505050565b600090565b620003ce620003bf565b620003db81848462000394565b505050565b5b818110156200040357620003f7600082620003c4565b600181019050620003e1565b5050565b601f82111562000452576200041c81620002c6565b6200042784620002db565b8101602085101562000437578190505b6200044f6200044685620002db565b830182620003e0565b50505b505050565b600082821c905092915050565b6000620004776000198460080262000457565b1980831691505092915050565b600062000492838362000464565b9150826002028217905092915050565b620004ad8262000228565b67ffffffffffffffff811115620004c957620004c862000233565b5b620004d5825462000291565b620004e282828562000407565b600060209050601f8311600181146200051a576000841562000505578287015190505b62000511858262000484565b86555062000581565b601f1984166200052a86620002c6565b60005b8281101562000554578489015182556001820191506020850194506020810190506200052d565b8683101562000574578489015162000570601f89168262000464565b8355505b6001600288020188555050505b505050505050565b61392680620005996000396000f3fe6080604052600436106101ed5760003560e01c80636c0360eb1161010d578063b77a147b116100a0578063cd85cdb51161006f578063cd85cdb5146106a8578063e0b1f68c146106d3578063e985e9c514610710578063f2fde38b1461074d578063f4a0a52814610776576101ed565b8063b77a147b146105fb578063b88d4fde14610617578063c002d23d14610640578063c87b56dd1461066b576101ed565b80638da5cb5b116100dc5780638da5cb5b1461056557806395d89b41146105905780639aba0386146105bb578063a22cb465146105d2576101ed565b80636c0360eb146104bd57806370a08231146104e8578063715018a6146105255780637cb647591461053c576101ed565b80632db115441161018557806349e5fa7b1161015457806349e5fa7b1461040357806355f804b31461041a5780636352211e146104435780636776216914610480576101ed565b80632db11544146103685780632eb4a7ab1461038457806332cb6b0c146103af57806342842e0e146103da576101ed565b8063081812fc116101c1578063081812fc146102ae578063095ea7b3146102eb57806318160ddd1461031457806323b872dd1461033f576101ed565b8062bc653c146101f257806301ffc9a71461021b578063056f8a3d1461025857806306fdde0314610283575b600080fd5b3480156101fe57600080fd5b50610219600480360381019061021491906126fe565b61079f565b005b34801561022757600080fd5b50610242600480360381019061023d9190612783565b6108d4565b60405161024f91906127cb565b60405180910390f35b34801561026457600080fd5b5061026d610966565b60405161027a91906127cb565b60405180910390f35b34801561028f57600080fd5b50610298610979565b6040516102a59190612876565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906126fe565b610a0b565b6040516102e291906128d9565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612920565b610a87565b005b34801561032057600080fd5b50610329610bc8565b604051610336919061296f565b60405180910390f35b34801561034b57600080fd5b506103666004803603810190610361919061298a565b610bdf565b005b610382600480360381019061037d91906126fe565b610f01565b005b34801561039057600080fd5b506103996110f1565b6040516103a691906129f6565b60405180910390f35b3480156103bb57600080fd5b506103c46110f7565b6040516103d1919061296f565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061298a565b6110fd565b005b34801561040f57600080fd5b5061041861111d565b005b34801561042657600080fd5b50610441600480360381019061043c9190612b46565b6111c5565b005b34801561044f57600080fd5b5061046a600480360381019061046591906126fe565b611254565b60405161047791906128d9565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612bef565b611266565b6040516104b491906127cb565b60405180910390f35b3480156104c957600080fd5b506104d26112f0565b6040516104df9190612876565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612c4f565b61137e565b60405161051c919061296f565b60405180910390f35b34801561053157600080fd5b5061053a611436565b005b34801561054857600080fd5b50610563600480360381019061055e9190612ca8565b6114be565b005b34801561057157600080fd5b5061057a611544565b60405161058791906128d9565b60405180910390f35b34801561059c57600080fd5b506105a561156e565b6040516105b29190612876565b60405180910390f35b3480156105c757600080fd5b506105d0611600565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612d01565b6116a8565b005b61061560048036038101906106109190612d41565b61181f565b005b34801561062357600080fd5b5061063e60048036038101906106399190612e2f565b611af9565b005b34801561064c57600080fd5b50610655611b6c565b604051610662919061296f565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906126fe565b611b72565b60405161069f9190612876565b60405180910390f35b3480156106b457600080fd5b506106bd611c10565b6040516106ca91906127cb565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612c4f565b611c23565b60405161070791906127cb565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190612eb2565b611c43565b60405161074491906127cb565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612c4f565b611cd7565b005b34801561078257600080fd5b5061079d600480360381019061079891906126fe565b611dce565b005b6107a7611e54565b73ffffffffffffffffffffffffffffffffffffffff166107c5611544565b73ffffffffffffffffffffffffffffffffffffffff161461081b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081290612f3e565b60405180910390fd5b600260095403610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790612faa565b60405180910390fd5b6002600981905550600a5481610874610bc8565b61087e9190612ff9565b11156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690613079565b60405180910390fd5b6108c93382611e5c565b600160098190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c60019054906101000a900460ff1681565b606060028054610988906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b4906130c8565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611e7a565b610a4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9282611254565b90508073ffffffffffffffffffffffffffffffffffffffff16610ab3611ed9565b73ffffffffffffffffffffffffffffffffffffffff1614610b1657610adf81610ada611ed9565b611c43565b610b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bd2611ee1565b6001546000540303905090565b6000610bea82611eea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c51576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5d84611fb6565b91509150610c738187610c6e611ed9565b611fd8565b610cbf57610c8886610c83611ed9565b611c43565b610cbe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d25576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d32868686600161201c565b8015610d3d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0b85610de7888887612022565b7c02000000000000000000000000000000000000000000000000000000001761204a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e915760006001850190506000600460008381526020019081526020016000205403610e8f576000548114610e8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef98686866001612075565b505050505050565b600260095403610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90612faa565b60405180910390fd5b600260098190555060008111610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613145565b60405180910390fd5b60001515600c60019054906101000a900460ff16151514610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906131b1565b60405180910390fd5b600a5481610ff3610bc8565b610ffd9190612ff9565b111561103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613079565b60405180910390fd5b80600b5461104c91906131d1565b34101561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061325f565b60405180910390fd5b611096611544565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156110db573d6000803e3d6000fd5b506110e63382611e5c565b600160098190555050565b600e5481565b600a5481565b61111883838360405180602001604052806000815250611af9565b505050565b611125611e54565b73ffffffffffffffffffffffffffffffffffffffff16611143611544565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612f3e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6111cd611e54565b73ffffffffffffffffffffffffffffffffffffffff166111eb611544565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890612f3e565b60405180910390fd5b80600d9081611250919061342b565b5050565b600061125f82611eea565b9050919050565b6000808460405160200161127a9190613545565b60405160208183030381529060405280519060200120905060006112e2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548461207b565b905080925050509392505050565b600d80546112fd906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611329906130c8565b80156113765780601f1061134b57610100808354040283529160200191611376565b820191906000526020600020905b81548152906001019060200180831161135957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61143e611e54565b73ffffffffffffffffffffffffffffffffffffffff1661145c611544565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990612f3e565b60405180910390fd5b6114bc6000612092565b565b6114c6611e54565b73ffffffffffffffffffffffffffffffffffffffff166114e4611544565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612f3e565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461157d906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546115a9906130c8565b80156115f65780601f106115cb576101008083540402835291602001916115f6565b820191906000526020600020905b8154815290600101906020018083116115d957829003601f168201915b5050505050905090565b611608611e54565b73ffffffffffffffffffffffffffffffffffffffff16611626611544565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612f3e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6116b0611ed9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611714576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611721611ed9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ce611ed9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181391906127cb565b60405180910390a35050565b600260095403611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90612faa565b60405180910390fd5b600260098190555060001515600c60009054906101000a900460ff161515146118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906135ac565b60405180910390fd5b600a5460016118cf610bc8565b6118d99190612ff9565b111561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613079565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613618565b60405180910390fd5b6119b8338383611266565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613684565b60405180910390fd5b600b54341015611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061325f565b60405180910390fd5b611a44611544565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611a89573d6000803e3d6000fd5b506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aed336001611e5c565b60016009819055505050565b611b04848484610bdf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6657611b2f84848484612158565b611b65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060611b7d82611e7a565b611bb3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bbd6122a8565b90506000815103611bdd5760405180602001604052806000815250611c08565b80611be78461233a565b604051602001611bf89291906136e0565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cdf611e54565b73ffffffffffffffffffffffffffffffffffffffff16611cfd611544565b73ffffffffffffffffffffffffffffffffffffffff1614611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90612f3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613776565b60405180910390fd5b611dcb81612092565b50565b611dd6611e54565b73ffffffffffffffffffffffffffffffffffffffff16611df4611544565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190612f3e565b60405180910390fd5b80600b8190555050565b600033905090565b611e76828260405180602001604052806000815250612394565b5050565b600081611e85611ee1565b11158015611e94575060005482105b8015611ed2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ef9611ee1565b11611f7f57600054811015611f7e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f7c575b60008103611f72576004600083600190039350838152602001908152602001600020549050611f48565b8092505050611fb1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612039868684612431565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082612088858461243a565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217e611ed9565b8786866040518563ffffffff1660e01b81526004016121a094939291906137eb565b6020604051808303816000875af19250505080156121dc57506040513d601f19601f820116820180604052508101906121d9919061384c565b60015b612255573d806000811461220c576040519150601f19603f3d011682016040523d82523d6000602084013e612211565b606091505b50600081510361224d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546122b7906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546122e3906130c8565b80156123305780601f1061230557610100808354040283529160200191612330565b820191906000526020600020905b81548152906001019060200180831161231357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561238057600183039250600a81066030018353600a81049050612360565b508181036020830392508083525050919050565b61239e8383612490565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461242c57600080549050600083820390505b6123de6000868380600101945086612158565b612414576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123cb57816000541461242957600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612485576124708286838151811061246357612462613879565b5b6020026020010151612662565b9150808061247d906138a8565b915050612443565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612536576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612543600084838561201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ba836125ab6000866000612022565b6125b48561268d565b1761204a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125de5780600081905550505061265d6000848385612075565b505050565b600081831061267a57612675828461269d565b612685565b612684838361269d565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6126db816126c8565b81146126e657600080fd5b50565b6000813590506126f8816126d2565b92915050565b600060208284031215612714576127136126be565b5b6000612722848285016126e9565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127608161272b565b811461276b57600080fd5b50565b60008135905061277d81612757565b92915050565b600060208284031215612799576127986126be565b5b60006127a78482850161276e565b91505092915050565b60008115159050919050565b6127c5816127b0565b82525050565b60006020820190506127e060008301846127bc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612820578082015181840152602081019050612805565b60008484015250505050565b6000601f19601f8301169050919050565b6000612848826127e6565b61285281856127f1565b9350612862818560208601612802565b61286b8161282c565b840191505092915050565b60006020820190508181036000830152612890818461283d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128c382612898565b9050919050565b6128d3816128b8565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b6128fd816128b8565b811461290857600080fd5b50565b60008135905061291a816128f4565b92915050565b60008060408385031215612937576129366126be565b5b60006129458582860161290b565b9250506020612956858286016126e9565b9150509250929050565b612969816126c8565b82525050565b60006020820190506129846000830184612960565b92915050565b6000806000606084860312156129a3576129a26126be565b5b60006129b18682870161290b565b93505060206129c28682870161290b565b92505060406129d3868287016126e9565b9150509250925092565b6000819050919050565b6129f0816129dd565b82525050565b6000602082019050612a0b60008301846129e7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a538261282c565b810181811067ffffffffffffffff82111715612a7257612a71612a1b565b5b80604052505050565b6000612a856126b4565b9050612a918282612a4a565b919050565b600067ffffffffffffffff821115612ab157612ab0612a1b565b5b612aba8261282c565b9050602081019050919050565b82818337600083830152505050565b6000612ae9612ae484612a96565b612a7b565b905082815260208101848484011115612b0557612b04612a16565b5b612b10848285612ac7565b509392505050565b600082601f830112612b2d57612b2c612a11565b5b8135612b3d848260208601612ad6565b91505092915050565b600060208284031215612b5c57612b5b6126be565b5b600082013567ffffffffffffffff811115612b7a57612b796126c3565b5b612b8684828501612b18565b91505092915050565b600080fd5b600080fd5b60008083601f840112612baf57612bae612a11565b5b8235905067ffffffffffffffff811115612bcc57612bcb612b8f565b5b602083019150836020820283011115612be857612be7612b94565b5b9250929050565b600080600060408486031215612c0857612c076126be565b5b6000612c168682870161290b565b935050602084013567ffffffffffffffff811115612c3757612c366126c3565b5b612c4386828701612b99565b92509250509250925092565b600060208284031215612c6557612c646126be565b5b6000612c738482850161290b565b91505092915050565b612c85816129dd565b8114612c9057600080fd5b50565b600081359050612ca281612c7c565b92915050565b600060208284031215612cbe57612cbd6126be565b5b6000612ccc84828501612c93565b91505092915050565b612cde816127b0565b8114612ce957600080fd5b50565b600081359050612cfb81612cd5565b92915050565b60008060408385031215612d1857612d176126be565b5b6000612d268582860161290b565b9250506020612d3785828601612cec565b9150509250929050565b60008060208385031215612d5857612d576126be565b5b600083013567ffffffffffffffff811115612d7657612d756126c3565b5b612d8285828601612b99565b92509250509250929050565b600067ffffffffffffffff821115612da957612da8612a1b565b5b612db28261282c565b9050602081019050919050565b6000612dd2612dcd84612d8e565b612a7b565b905082815260208101848484011115612dee57612ded612a16565b5b612df9848285612ac7565b509392505050565b600082601f830112612e1657612e15612a11565b5b8135612e26848260208601612dbf565b91505092915050565b60008060008060808587031215612e4957612e486126be565b5b6000612e578782880161290b565b9450506020612e688782880161290b565b9350506040612e79878288016126e9565b925050606085013567ffffffffffffffff811115612e9a57612e996126c3565b5b612ea687828801612e01565b91505092959194509250565b60008060408385031215612ec957612ec86126be565b5b6000612ed78582860161290b565b9250506020612ee88582860161290b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f286020836127f1565b9150612f3382612ef2565b602082019050919050565b60006020820190508181036000830152612f5781612f1b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f94601f836127f1565b9150612f9f82612f5e565b602082019050919050565b60006020820190508181036000830152612fc381612f87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613004826126c8565b915061300f836126c8565b925082820190508082111561302757613026612fca565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006130636013836127f1565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e057607f821691505b6020821081036130f3576130f2613099565b5b50919050565b7f416d6f756e74206d757374206e6f74206265207a65726f000000000000000000600082015250565b600061312f6017836127f1565b915061313a826130f9565b602082019050919050565b6000602082019050818103600083015261315e81613122565b9050919050565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b600061319b6015836127f1565b91506131a682613165565b602082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b60006131dc826126c8565b91506131e7836126c8565b92508282026131f5816126c8565b9150828204841483151761320c5761320b612fca565b5b5092915050565b7f496e76616c6964204554482076616c7565000000000000000000000000000000600082015250565b60006132496011836127f1565b915061325482613213565b602082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132a4565b6132eb86836132a4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061332861332361331e846126c8565b613303565b6126c8565b9050919050565b6000819050919050565b6133428361330d565b61335661334e8261332f565b8484546132b1565b825550505050565b600090565b61336b61335e565b613376818484613339565b505050565b5b8181101561339a5761338f600082613363565b60018101905061337c565b5050565b601f8211156133df576133b08161327f565b6133b984613294565b810160208510156133c8578190505b6133dc6133d485613294565b83018261337b565b50505b505050565b600082821c905092915050565b6000613402600019846008026133e4565b1980831691505092915050565b600061341b83836133f1565b9150826002028217905092915050565b613434826127e6565b67ffffffffffffffff81111561344d5761344c612a1b565b5b61345782546130c8565b61346282828561339e565b600060209050601f8311600181146134955760008415613483578287015190505b61348d858261340f565b8655506134f5565b601f1984166134a38661327f565b60005b828110156134cb578489015182556001820191506020850194506020810190506134a6565b868310156134e857848901516134e4601f8916826133f1565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b6000613515826134fd565b9050919050565b60006135278261350a565b9050919050565b61353f61353a826128b8565b61351c565b82525050565b6000613551828461352e565b60148201915081905092915050565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6000613596600e836127f1565b91506135a182613560565b602082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4d6178206d696e7465642063616e206f6e6c7920626520310000000000000000600082015250565b60006136026018836127f1565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f596f7520617265206e6f742077686974656c6973742075736572000000000000600082015250565b600061366e601a836127f1565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b600081905092915050565b60006136ba826127e6565b6136c481856136a4565b93506136d4818560208601612802565b80840191505092915050565b60006136ec82856136af565b91506136f882846136af565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137606026836127f1565b915061376b82613704565b604082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137bd82613796565b6137c781856137a1565b93506137d7818560208601612802565b6137e08161282c565b840191505092915050565b600060808201905061380060008301876128ca565b61380d60208301866128ca565b61381a6040830185612960565b818103606083015261382c81846137b2565b905095945050505050565b60008151905061384681612757565b92915050565b600060208284031215613862576138616126be565b5b600061387084828501613837565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138b3826126c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138e5576138e4612fca565b5b60018201905091905056fea264697066735822122026bcd522cc2febd6076b971852e2ed47fcde28fd34d7bde6c4a635246893638d64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c80636c0360eb1161010d578063b77a147b116100a0578063cd85cdb51161006f578063cd85cdb5146106a8578063e0b1f68c146106d3578063e985e9c514610710578063f2fde38b1461074d578063f4a0a52814610776576101ed565b8063b77a147b146105fb578063b88d4fde14610617578063c002d23d14610640578063c87b56dd1461066b576101ed565b80638da5cb5b116100dc5780638da5cb5b1461056557806395d89b41146105905780639aba0386146105bb578063a22cb465146105d2576101ed565b80636c0360eb146104bd57806370a08231146104e8578063715018a6146105255780637cb647591461053c576101ed565b80632db115441161018557806349e5fa7b1161015457806349e5fa7b1461040357806355f804b31461041a5780636352211e146104435780636776216914610480576101ed565b80632db11544146103685780632eb4a7ab1461038457806332cb6b0c146103af57806342842e0e146103da576101ed565b8063081812fc116101c1578063081812fc146102ae578063095ea7b3146102eb57806318160ddd1461031457806323b872dd1461033f576101ed565b8062bc653c146101f257806301ffc9a71461021b578063056f8a3d1461025857806306fdde0314610283575b600080fd5b3480156101fe57600080fd5b50610219600480360381019061021491906126fe565b61079f565b005b34801561022757600080fd5b50610242600480360381019061023d9190612783565b6108d4565b60405161024f91906127cb565b60405180910390f35b34801561026457600080fd5b5061026d610966565b60405161027a91906127cb565b60405180910390f35b34801561028f57600080fd5b50610298610979565b6040516102a59190612876565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906126fe565b610a0b565b6040516102e291906128d9565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612920565b610a87565b005b34801561032057600080fd5b50610329610bc8565b604051610336919061296f565b60405180910390f35b34801561034b57600080fd5b506103666004803603810190610361919061298a565b610bdf565b005b610382600480360381019061037d91906126fe565b610f01565b005b34801561039057600080fd5b506103996110f1565b6040516103a691906129f6565b60405180910390f35b3480156103bb57600080fd5b506103c46110f7565b6040516103d1919061296f565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061298a565b6110fd565b005b34801561040f57600080fd5b5061041861111d565b005b34801561042657600080fd5b50610441600480360381019061043c9190612b46565b6111c5565b005b34801561044f57600080fd5b5061046a600480360381019061046591906126fe565b611254565b60405161047791906128d9565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612bef565b611266565b6040516104b491906127cb565b60405180910390f35b3480156104c957600080fd5b506104d26112f0565b6040516104df9190612876565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612c4f565b61137e565b60405161051c919061296f565b60405180910390f35b34801561053157600080fd5b5061053a611436565b005b34801561054857600080fd5b50610563600480360381019061055e9190612ca8565b6114be565b005b34801561057157600080fd5b5061057a611544565b60405161058791906128d9565b60405180910390f35b34801561059c57600080fd5b506105a561156e565b6040516105b29190612876565b60405180910390f35b3480156105c757600080fd5b506105d0611600565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612d01565b6116a8565b005b61061560048036038101906106109190612d41565b61181f565b005b34801561062357600080fd5b5061063e60048036038101906106399190612e2f565b611af9565b005b34801561064c57600080fd5b50610655611b6c565b604051610662919061296f565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906126fe565b611b72565b60405161069f9190612876565b60405180910390f35b3480156106b457600080fd5b506106bd611c10565b6040516106ca91906127cb565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612c4f565b611c23565b60405161070791906127cb565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190612eb2565b611c43565b60405161074491906127cb565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612c4f565b611cd7565b005b34801561078257600080fd5b5061079d600480360381019061079891906126fe565b611dce565b005b6107a7611e54565b73ffffffffffffffffffffffffffffffffffffffff166107c5611544565b73ffffffffffffffffffffffffffffffffffffffff161461081b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081290612f3e565b60405180910390fd5b600260095403610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790612faa565b60405180910390fd5b6002600981905550600a5481610874610bc8565b61087e9190612ff9565b11156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690613079565b60405180910390fd5b6108c93382611e5c565b600160098190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c60019054906101000a900460ff1681565b606060028054610988906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b4906130c8565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611e7a565b610a4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9282611254565b90508073ffffffffffffffffffffffffffffffffffffffff16610ab3611ed9565b73ffffffffffffffffffffffffffffffffffffffff1614610b1657610adf81610ada611ed9565b611c43565b610b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610bd2611ee1565b6001546000540303905090565b6000610bea82611eea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c51576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5d84611fb6565b91509150610c738187610c6e611ed9565b611fd8565b610cbf57610c8886610c83611ed9565b611c43565b610cbe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d25576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d32868686600161201c565b8015610d3d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0b85610de7888887612022565b7c02000000000000000000000000000000000000000000000000000000001761204a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e915760006001850190506000600460008381526020019081526020016000205403610e8f576000548114610e8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef98686866001612075565b505050505050565b600260095403610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90612faa565b60405180910390fd5b600260098190555060008111610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613145565b60405180910390fd5b60001515600c60019054906101000a900460ff16151514610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde906131b1565b60405180910390fd5b600a5481610ff3610bc8565b610ffd9190612ff9565b111561103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613079565b60405180910390fd5b80600b5461104c91906131d1565b34101561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061325f565b60405180910390fd5b611096611544565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156110db573d6000803e3d6000fd5b506110e63382611e5c565b600160098190555050565b600e5481565b600a5481565b61111883838360405180602001604052806000815250611af9565b505050565b611125611e54565b73ffffffffffffffffffffffffffffffffffffffff16611143611544565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090612f3e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6111cd611e54565b73ffffffffffffffffffffffffffffffffffffffff166111eb611544565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890612f3e565b60405180910390fd5b80600d9081611250919061342b565b5050565b600061125f82611eea565b9050919050565b6000808460405160200161127a9190613545565b60405160208183030381529060405280519060200120905060006112e2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548461207b565b905080925050509392505050565b600d80546112fd906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611329906130c8565b80156113765780601f1061134b57610100808354040283529160200191611376565b820191906000526020600020905b81548152906001019060200180831161135957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61143e611e54565b73ffffffffffffffffffffffffffffffffffffffff1661145c611544565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990612f3e565b60405180910390fd5b6114bc6000612092565b565b6114c6611e54565b73ffffffffffffffffffffffffffffffffffffffff166114e4611544565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612f3e565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461157d906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546115a9906130c8565b80156115f65780601f106115cb576101008083540402835291602001916115f6565b820191906000526020600020905b8154815290600101906020018083116115d957829003601f168201915b5050505050905090565b611608611e54565b73ffffffffffffffffffffffffffffffffffffffff16611626611544565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612f3e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6116b0611ed9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611714576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611721611ed9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ce611ed9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181391906127cb565b60405180910390a35050565b600260095403611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b90612faa565b60405180910390fd5b600260098190555060001515600c60009054906101000a900460ff161515146118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b9906135ac565b60405180910390fd5b600a5460016118cf610bc8565b6118d99190612ff9565b111561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613079565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613618565b60405180910390fd5b6119b8338383611266565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90613684565b60405180910390fd5b600b54341015611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061325f565b60405180910390fd5b611a44611544565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611a89573d6000803e3d6000fd5b506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aed336001611e5c565b60016009819055505050565b611b04848484610bdf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6657611b2f84848484612158565b611b65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060611b7d82611e7a565b611bb3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bbd6122a8565b90506000815103611bdd5760405180602001604052806000815250611c08565b80611be78461233a565b604051602001611bf89291906136e0565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cdf611e54565b73ffffffffffffffffffffffffffffffffffffffff16611cfd611544565b73ffffffffffffffffffffffffffffffffffffffff1614611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90612f3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613776565b60405180910390fd5b611dcb81612092565b50565b611dd6611e54565b73ffffffffffffffffffffffffffffffffffffffff16611df4611544565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190612f3e565b60405180910390fd5b80600b8190555050565b600033905090565b611e76828260405180602001604052806000815250612394565b5050565b600081611e85611ee1565b11158015611e94575060005482105b8015611ed2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ef9611ee1565b11611f7f57600054811015611f7e5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f7c575b60008103611f72576004600083600190039350838152602001908152602001600020549050611f48565b8092505050611fb1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612039868684612431565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082612088858461243a565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217e611ed9565b8786866040518563ffffffff1660e01b81526004016121a094939291906137eb565b6020604051808303816000875af19250505080156121dc57506040513d601f19601f820116820180604052508101906121d9919061384c565b60015b612255573d806000811461220c576040519150601f19603f3d011682016040523d82523d6000602084013e612211565b606091505b50600081510361224d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546122b7906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546122e3906130c8565b80156123305780601f1061230557610100808354040283529160200191612330565b820191906000526020600020905b81548152906001019060200180831161231357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561238057600183039250600a81066030018353600a81049050612360565b508181036020830392508083525050919050565b61239e8383612490565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461242c57600080549050600083820390505b6123de6000868380600101945086612158565b612414576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123cb57816000541461242957600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612485576124708286838151811061246357612462613879565b5b6020026020010151612662565b9150808061247d906138a8565b915050612443565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612536576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612543600084838561201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ba836125ab6000866000612022565b6125b48561268d565b1761204a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106125de5780600081905550505061265d6000848385612075565b505050565b600081831061267a57612675828461269d565b612685565b612684838361269d565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6126db816126c8565b81146126e657600080fd5b50565b6000813590506126f8816126d2565b92915050565b600060208284031215612714576127136126be565b5b6000612722848285016126e9565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127608161272b565b811461276b57600080fd5b50565b60008135905061277d81612757565b92915050565b600060208284031215612799576127986126be565b5b60006127a78482850161276e565b91505092915050565b60008115159050919050565b6127c5816127b0565b82525050565b60006020820190506127e060008301846127bc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612820578082015181840152602081019050612805565b60008484015250505050565b6000601f19601f8301169050919050565b6000612848826127e6565b61285281856127f1565b9350612862818560208601612802565b61286b8161282c565b840191505092915050565b60006020820190508181036000830152612890818461283d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128c382612898565b9050919050565b6128d3816128b8565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b6128fd816128b8565b811461290857600080fd5b50565b60008135905061291a816128f4565b92915050565b60008060408385031215612937576129366126be565b5b60006129458582860161290b565b9250506020612956858286016126e9565b9150509250929050565b612969816126c8565b82525050565b60006020820190506129846000830184612960565b92915050565b6000806000606084860312156129a3576129a26126be565b5b60006129b18682870161290b565b93505060206129c28682870161290b565b92505060406129d3868287016126e9565b9150509250925092565b6000819050919050565b6129f0816129dd565b82525050565b6000602082019050612a0b60008301846129e7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a538261282c565b810181811067ffffffffffffffff82111715612a7257612a71612a1b565b5b80604052505050565b6000612a856126b4565b9050612a918282612a4a565b919050565b600067ffffffffffffffff821115612ab157612ab0612a1b565b5b612aba8261282c565b9050602081019050919050565b82818337600083830152505050565b6000612ae9612ae484612a96565b612a7b565b905082815260208101848484011115612b0557612b04612a16565b5b612b10848285612ac7565b509392505050565b600082601f830112612b2d57612b2c612a11565b5b8135612b3d848260208601612ad6565b91505092915050565b600060208284031215612b5c57612b5b6126be565b5b600082013567ffffffffffffffff811115612b7a57612b796126c3565b5b612b8684828501612b18565b91505092915050565b600080fd5b600080fd5b60008083601f840112612baf57612bae612a11565b5b8235905067ffffffffffffffff811115612bcc57612bcb612b8f565b5b602083019150836020820283011115612be857612be7612b94565b5b9250929050565b600080600060408486031215612c0857612c076126be565b5b6000612c168682870161290b565b935050602084013567ffffffffffffffff811115612c3757612c366126c3565b5b612c4386828701612b99565b92509250509250925092565b600060208284031215612c6557612c646126be565b5b6000612c738482850161290b565b91505092915050565b612c85816129dd565b8114612c9057600080fd5b50565b600081359050612ca281612c7c565b92915050565b600060208284031215612cbe57612cbd6126be565b5b6000612ccc84828501612c93565b91505092915050565b612cde816127b0565b8114612ce957600080fd5b50565b600081359050612cfb81612cd5565b92915050565b60008060408385031215612d1857612d176126be565b5b6000612d268582860161290b565b9250506020612d3785828601612cec565b9150509250929050565b60008060208385031215612d5857612d576126be565b5b600083013567ffffffffffffffff811115612d7657612d756126c3565b5b612d8285828601612b99565b92509250509250929050565b600067ffffffffffffffff821115612da957612da8612a1b565b5b612db28261282c565b9050602081019050919050565b6000612dd2612dcd84612d8e565b612a7b565b905082815260208101848484011115612dee57612ded612a16565b5b612df9848285612ac7565b509392505050565b600082601f830112612e1657612e15612a11565b5b8135612e26848260208601612dbf565b91505092915050565b60008060008060808587031215612e4957612e486126be565b5b6000612e578782880161290b565b9450506020612e688782880161290b565b9350506040612e79878288016126e9565b925050606085013567ffffffffffffffff811115612e9a57612e996126c3565b5b612ea687828801612e01565b91505092959194509250565b60008060408385031215612ec957612ec86126be565b5b6000612ed78582860161290b565b9250506020612ee88582860161290b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f286020836127f1565b9150612f3382612ef2565b602082019050919050565b60006020820190508181036000830152612f5781612f1b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f94601f836127f1565b9150612f9f82612f5e565b602082019050919050565b60006020820190508181036000830152612fc381612f87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613004826126c8565b915061300f836126c8565b925082820190508082111561302757613026612fca565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006130636013836127f1565b915061306e8261302d565b602082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e057607f821691505b6020821081036130f3576130f2613099565b5b50919050565b7f416d6f756e74206d757374206e6f74206265207a65726f000000000000000000600082015250565b600061312f6017836127f1565b915061313a826130f9565b602082019050919050565b6000602082019050818103600083015261315e81613122565b9050919050565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b600061319b6015836127f1565b91506131a682613165565b602082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b60006131dc826126c8565b91506131e7836126c8565b92508282026131f5816126c8565b9150828204841483151761320c5761320b612fca565b5b5092915050565b7f496e76616c6964204554482076616c7565000000000000000000000000000000600082015250565b60006132496011836127f1565b915061325482613213565b602082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132a4565b6132eb86836132a4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061332861332361331e846126c8565b613303565b6126c8565b9050919050565b6000819050919050565b6133428361330d565b61335661334e8261332f565b8484546132b1565b825550505050565b600090565b61336b61335e565b613376818484613339565b505050565b5b8181101561339a5761338f600082613363565b60018101905061337c565b5050565b601f8211156133df576133b08161327f565b6133b984613294565b810160208510156133c8578190505b6133dc6133d485613294565b83018261337b565b50505b505050565b600082821c905092915050565b6000613402600019846008026133e4565b1980831691505092915050565b600061341b83836133f1565b9150826002028217905092915050565b613434826127e6565b67ffffffffffffffff81111561344d5761344c612a1b565b5b61345782546130c8565b61346282828561339e565b600060209050601f8311600181146134955760008415613483578287015190505b61348d858261340f565b8655506134f5565b601f1984166134a38661327f565b60005b828110156134cb578489015182556001820191506020850194506020810190506134a6565b868310156134e857848901516134e4601f8916826133f1565b8355505b6001600288020188555050505b505050505050565b60008160601b9050919050565b6000613515826134fd565b9050919050565b60006135278261350a565b9050919050565b61353f61353a826128b8565b61351c565b82525050565b6000613551828461352e565b60148201915081905092915050565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6000613596600e836127f1565b91506135a182613560565b602082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4d6178206d696e7465642063616e206f6e6c7920626520310000000000000000600082015250565b60006136026018836127f1565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f596f7520617265206e6f742077686974656c6973742075736572000000000000600082015250565b600061366e601a836127f1565b915061367982613638565b602082019050919050565b6000602082019050818103600083015261369d81613661565b9050919050565b600081905092915050565b60006136ba826127e6565b6136c481856136a4565b93506136d4818560208601612802565b80840191505092915050565b60006136ec82856136af565b91506136f882846136af565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137606026836127f1565b915061376b82613704565b604082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137bd82613796565b6137c781856137a1565b93506137d7818560208601612802565b6137e08161282c565b840191505092915050565b600060808201905061380060008301876128ca565b61380d60208301866128ca565b61381a6040830185612960565b818103606083015261382c81846137b2565b905095945050505050565b60008151905061384681612757565b92915050565b600060208284031215613862576138616126be565b5b600061387084828501613837565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138b3826126c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138e5576138e4612fca565b5b60018201905091905056fea264697066735822122026bcd522cc2febd6076b971852e2ed47fcde28fd34d7bde6c4a635246893638d64736f6c63430008110033

Deployed Bytecode Sourcemap

59822:3073:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61287:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29616:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60031:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35263:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37209:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36757:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28670:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46474:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60838:441;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60105:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59894:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38099:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62572:103;;;;;;;;;;;;;:::i;:::-;;62365:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35052:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61488:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60072:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30295:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14123:103;;;;;;;;;;;;;:::i;:::-;;62786:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13472:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35432:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62479:85;;;;;;;;;;;;;:::i;:::-;;37485:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60259:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38355:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59932:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35607:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59996:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60139:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37864:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14381:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62683:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61287:193;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10570:1:::1;11168:7;;:19:::0;11160:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10570:1;11301:7;:18;;;;61397:10:::2;;61386:7;61370:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;61362:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61442:30;61452:10;61464:7;61442:9;:30::i;:::-;10526:1:::1;11480:7;:22;;;;61287:193:::0;:::o;29616:615::-;29701:4;30016:10;30001:25;;:11;:25;;;;:102;;;;30093:10;30078:25;;:11;:25;;;;30001:102;:179;;;;30170:10;30155:25;;:11;:25;;;;30001:179;29981:199;;29616:615;;;:::o;60031:34::-;;;;;;;;;;;;;:::o;35263:100::-;35317:13;35350:5;35343:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35263:100;:::o;37209:204::-;37277:7;37302:16;37310:7;37302;:16::i;:::-;37297:64;;37327:34;;;;;;;;;;;;;;37297:64;37381:15;:24;37397:7;37381:24;;;;;;;;;;;;;;;;;;;;;37374:31;;37209:204;;;:::o;36757:386::-;36830:13;36846:16;36854:7;36846;:16::i;:::-;36830:32;;36902:5;36879:28;;:19;:17;:19::i;:::-;:28;;;36875:175;;36927:44;36944:5;36951:19;:17;:19::i;:::-;36927:16;:44::i;:::-;36922:128;;36999:35;;;;;;;;;;;;;;36922:128;36875:175;37089:2;37062:15;:24;37078:7;37062:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37127:7;37123:2;37107:28;;37116:5;37107:28;;;;;;;;;;;;36819:324;36757:386;;:::o;28670:315::-;28723:7;28951:15;:13;:15::i;:::-;28936:12;;28920:13;;:28;:46;28913:53;;28670:315;:::o;46474:2800::-;46608:27;46638;46657:7;46638:18;:27::i;:::-;46608:57;;46723:4;46682:45;;46698:19;46682:45;;;46678:86;;46736:28;;;;;;;;;;;;;;46678:86;46778:27;46807:23;46834:28;46854:7;46834:19;:28::i;:::-;46777:85;;;;46962:62;46981:15;46998:4;47004:19;:17;:19::i;:::-;46962:18;:62::i;:::-;46957:174;;47044:43;47061:4;47067:19;:17;:19::i;:::-;47044:16;:43::i;:::-;47039:92;;47096:35;;;;;;;;;;;;;;47039:92;46957:174;47162:1;47148:16;;:2;:16;;;47144:52;;47173:23;;;;;;;;;;;;;;47144:52;47209:43;47231:4;47237:2;47241:7;47250:1;47209:21;:43::i;:::-;47345:15;47342:160;;;47485:1;47464:19;47457:30;47342:160;47880:18;:24;47899:4;47880:24;;;;;;;;;;;;;;;;47878:26;;;;;;;;;;;;47949:18;:22;47968:2;47949:22;;;;;;;;;;;;;;;;47947:24;;;;;;;;;;;48271:145;48308:2;48356:45;48371:4;48377:2;48381:19;48356:14;:45::i;:::-;25898:8;48329:72;48271:18;:145::i;:::-;48242:17;:26;48260:7;48242:26;;;;;;;;;;;:174;;;;48586:1;25898:8;48536:19;:46;:51;48532:626;;48608:19;48640:1;48630:7;:11;48608:33;;48797:1;48763:17;:30;48781:11;48763:30;;;;;;;;;;;;:35;48759:384;;48901:13;;48886:11;:28;48882:242;;49081:19;49048:17;:30;49066:11;49048:30;;;;;;;;;;;:52;;;;48882:242;48759:384;48589:569;48532:626;49205:7;49201:2;49186:27;;49195:4;49186:27;;;;;;;;;;;;49224:42;49245:4;49251:2;49255:7;49264:1;49224:20;:42::i;:::-;46597:2677;;;46474:2800;;;:::o;60838:441::-;10570:1;11168:7;;:19;11160:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10570:1;11301:7;:18;;;;60931:1:::1;60921:7;:11;60913:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;60998:5;60979:24;;:15;;;;;;;;;;;:24;;;60971:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61075:10;;61064:7;61048:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;61040:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61154:7;61141:10;;:20;;;;:::i;:::-;61128:9;:33;;61120:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;61202:7;:5;:7::i;:::-;61194:25;;:36;61220:9;61194:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61241:30;61251:10;61263:7;61241:9;:30::i;:::-;10526:1:::0;11480:7;:22;;;;60838:441;:::o;60105:25::-;;;;:::o;59894:31::-;;;;:::o;38099:185::-;38237:39;38254:4;38260:2;38264:7;38237:39;;;;;;;;;;;;:16;:39::i;:::-;38099:185;;;:::o;62572:103::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62652:15:::1;;;;;;;;;;;62651:16;62633:15;;:34;;;;;;;;;;;;;;;;;;62572:103::o:0;62365:106::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62452:11:::1;62442:7;:21;;;;;;:::i;:::-;;62365:106:::0;:::o;35052:144::-;35116:7;35159:27;35178:7;35159:18;:27::i;:::-;35136:52;;35052:144;;;:::o;61488:270::-;61584:4;61601:12;61643:10;61626:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;61616:39;;;;;;61601:54;;61666:9;61678:50;61697:12;;61678:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61711:10;;61723:4;61678:18;:50::i;:::-;61666:62;;61746:4;61739:11;;;;61488:270;;;;;:::o;60072:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30295:224::-;30359:7;30400:1;30383:19;;:5;:19;;;30379:60;;30411:28;;;;;;;;;;;;;;30379:60;24850:13;30457:18;:25;30476:5;30457:25;;;;;;;;;;;;;;;;:54;30450:61;;30295:224;;;:::o;14123:103::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14188:30:::1;14215:1;14188:18;:30::i;:::-;14123:103::o:0;62786:106::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62873:11:::1;62860:10;:24;;;;62786:106:::0;:::o;13472:87::-;13518:7;13545:6;;;;;;;;;;;13538:13;;13472:87;:::o;35432:104::-;35488:13;35521:7;35514:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35432:104;:::o;62479:85::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62547:9:::1;;;;;;;;;;;62546:10;62534:9;;:22;;;;;;;;;;;;;;;;;;62479:85::o:0;37485:308::-;37596:19;:17;:19::i;:::-;37584:31;;:8;:31;;;37580:61;;37624:17;;;;;;;;;;;;;;37580:61;37706:8;37654:18;:39;37673:19;:17;:19::i;:::-;37654:39;;;;;;;;;;;;;;;:49;37694:8;37654:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37766:8;37730:55;;37745:19;:17;:19::i;:::-;37730:55;;;37776:8;37730:55;;;;;;:::i;:::-;;;;;;;;37485:308;;:::o;60259:571::-;10570:1;11168:7;;:19;11160:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10570:1;11301:7;:18;;;;60368:5:::1;60355:18;;:9;;;;;;;;;;;:18;;;60347:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;60432:10;;60427:1;60411:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;60403:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60512:5;60485:32;;:11;:23;60497:10;60485:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;60477:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;60565:39;60579:10;60591:12;;60565:13;:39::i;:::-;60557:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;60667:10;;60654:9;:23;;60646:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;60718:7;:5;:7::i;:::-;60710:25;;:36;60736:9;60710:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60783:4;60757:11;:23;60769:10;60757:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;60798:24;60808:10;60820:1;60798:9;:24::i;:::-;10526:1:::0;11480:7;:22;;;;60259:571;;:::o;38355:399::-;38522:31;38535:4;38541:2;38545:7;38522:12;:31::i;:::-;38586:1;38568:2;:14;;;:19;38564:183;;38607:56;38638:4;38644:2;38648:7;38657:5;38607:30;:56::i;:::-;38602:145;;38691:40;;;;;;;;;;;;;;38602:145;38564:183;38355:399;;;;:::o;59932:46::-;;;;:::o;35607:318::-;35680:13;35711:16;35719:7;35711;:16::i;:::-;35706:59;;35736:29;;;;;;;;;;;;;;35706:59;35778:21;35802:10;:8;:10::i;:::-;35778:34;;35855:1;35836:7;35830:21;:26;:87;;;;;;;;;;;;;;;;;35883:7;35892:18;35902:7;35892:9;:18::i;:::-;35866:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35830:87;35823:94;;;35607:318;;;:::o;59996:28::-;;;;;;;;;;;;;:::o;60139:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;37864:164::-;37961:4;37985:18;:25;38004:5;37985:25;;;;;;;;;;;;;;;:35;38011:8;37985:35;;;;;;;;;;;;;;;;;;;;;;;;;37978:42;;37864:164;;;;:::o;14381:201::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14490:1:::1;14470:22;;:8;:22;;::::0;14462:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14546:28;14565:8;14546:18;:28::i;:::-;14381:201:::0;:::o;62683:95::-;13703:12;:10;:12::i;:::-;13692:23;;:7;:5;:7::i;:::-;:23;;;13684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62764:6:::1;62751:10;:19;;;;62683:95:::0;:::o;12196:98::-;12249:7;12276:10;12269:17;;12196:98;:::o;39366:104::-;39435:27;39445:2;39449:8;39435:27;;;;;;;;;;;;:9;:27::i;:::-;39366:104;;:::o;39009:273::-;39066:4;39122:7;39103:15;:13;:15::i;:::-;:26;;:66;;;;;39156:13;;39146:7;:23;39103:66;:152;;;;;39254:1;25620:8;39207:17;:26;39225:7;39207:26;;;;;;;;;;;;:43;:48;39103:152;39083:172;;39009:273;;;:::o;57570:105::-;57630:7;57657:10;57650:17;;57570:105;:::o;61900:101::-;61965:7;61992:1;61985:8;;61900:101;:::o;31969:1129::-;32036:7;32056:12;32071:7;32056:22;;32139:4;32120:15;:13;:15::i;:::-;:23;32116:915;;32173:13;;32166:4;:20;32162:869;;;32211:14;32228:17;:23;32246:4;32228:23;;;;;;;;;;;;32211:40;;32344:1;25620:8;32317:6;:23;:28;32313:699;;32836:113;32853:1;32843:6;:11;32836:113;;32896:17;:25;32914:6;;;;;;;32896:25;;;;;;;;;;;;32887:34;;32836:113;;;32982:6;32975:13;;;;;;32313:699;32188:843;32162:869;32116:915;33059:31;;;;;;;;;;;;;;31969:1129;;;;:::o;44810:652::-;44905:27;44934:23;44975:53;45031:15;44975:71;;45217:7;45211:4;45204:21;45252:22;45246:4;45239:36;45328:4;45322;45312:21;45289:44;;45424:19;45418:26;45399:45;;45155:300;44810:652;;;:::o;45575:645::-;45717:11;45879:15;45873:4;45869:26;45861:34;;46038:15;46027:9;46023:31;46010:44;;46185:15;46174:9;46171:30;46164:4;46153:9;46150:19;46147:55;46137:65;;45575:645;;;;;:::o;56403:159::-;;;;;:::o;54715:309::-;54850:7;54870:16;26021:3;54896:19;:40;;54870:67;;26021:3;54963:31;54974:4;54980:2;54984:9;54963:10;:31::i;:::-;54955:40;;:61;;54948:68;;;54715:309;;;;;:::o;34543:447::-;34623:14;34791:15;34784:5;34780:27;34771:36;;34965:5;34951:11;34927:22;34923:40;34920:51;34913:5;34910:62;34900:72;;34543:447;;;;:::o;57221:158::-;;;;;:::o;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;1394:40;;1252:190;;;;;:::o;14742:191::-;14816:16;14835:6;;;;;;;;;;;14816:25;;14861:8;14852:6;;:17;;;;;;;;;;;;;;;;;;14916:8;14885:40;;14906:8;14885:40;;;;;;;;;;;;14805:128;14742:191;:::o;53225:716::-;53388:4;53434:2;53409:45;;;53455:19;:17;:19::i;:::-;53476:4;53482:7;53491:5;53409:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53405:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53709:1;53692:6;:13;:18;53688:235;;53738:40;;;;;;;;;;;;;;53688:235;53881:6;53875:13;53866:6;53862:2;53858:15;53851:38;53405:529;53578:54;;;53568:64;;;:6;:64;;;;53561:71;;;53225:716;;;;;;:::o;62249:108::-;62309:13;62342:7;62335:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62249:108;:::o;57781:1960::-;57838:17;58257:3;58250:4;58244:11;58240:21;58233:28;;58348:3;58342:4;58335:17;58454:3;58910:5;59040:1;59035:3;59031:11;59024:18;;59177:2;59171:4;59167:13;59163:2;59159:22;59154:3;59146:36;59218:2;59212:4;59208:13;59200:21;;58802:697;59237:4;58802:697;;;59428:1;59423:3;59419:11;59412:18;;59479:2;59473:4;59469:13;59465:2;59461:22;59456:3;59448:36;59332:2;59326:4;59322:13;59314:21;;58802:697;;;58806:430;59538:3;59533;59529:13;59653:2;59648:3;59644:12;59637:19;;59716:6;59711:3;59704:19;57877:1857;;57781:1960;;;:::o;39886:681::-;40009:19;40015:2;40019:8;40009:5;:19::i;:::-;40088:1;40070:2;:14;;;:19;40066:483;;40110:11;40124:13;;40110:27;;40156:13;40178:8;40172:3;:14;40156:30;;40205:233;40236:62;40275:1;40279:2;40283:7;;;;;;40292:5;40236:30;:62::i;:::-;40231:167;;40334:40;;;;;;;;;;;;;;40231:167;40433:3;40425:5;:11;40205:233;;40520:3;40503:13;;:20;40499:34;;40525:8;;;40499:34;40091:458;;40066:483;39886:681;;;:::o;55600:147::-;55737:6;55600:147;;;;;:::o;2119:296::-;2202:7;2222:20;2245:4;2222:27;;2265:9;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;:::i;:::-;;;;;;;;2333:9;:33::i;:::-;2318:48;;2298:3;;;;;:::i;:::-;;;;2260:118;;;;2395:12;2388:19;;;2119:296;;;;:::o;40840:1529::-;40905:20;40928:13;;40905:36;;40970:1;40956:16;;:2;:16;;;40952:48;;40981:19;;;;;;;;;;;;;;40952:48;41027:1;41015:8;:13;41011:44;;41037:18;;;;;;;;;;;;;;41011:44;41068:61;41098:1;41102:2;41106:12;41120:8;41068:21;:61::i;:::-;41611:1;24987:2;41582:1;:25;;41581:31;41569:8;:44;41543:18;:22;41562:2;41543:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41890:139;41927:2;41981:33;42004:1;42008:2;42012:1;41981:14;:33::i;:::-;41948:30;41969:8;41948:20;:30::i;:::-;:66;41890:18;:139::i;:::-;41856:17;:31;41874:12;41856:31;;;;;;;;;;;:173;;;;42046:15;42064:12;42046:30;;42091:11;42120:8;42105:12;:23;42091:37;;42143:101;42195:9;;;;;;42191:2;42170:35;;42187:1;42170:35;;;;;;;;;;;;42239:3;42229:7;:13;42143:101;;42276:3;42260:13;:19;;;;41317:974;;42301:60;42330:1;42334:2;42338:12;42352:8;42301:20;:60::i;:::-;40894:1475;40840:1529;;:::o;8326:149::-;8389:7;8420:1;8416;:5;:51;;8447:20;8462:1;8465;8447:14;:20::i;:::-;8416:51;;;8424:20;8439:1;8442;8424:14;:20::i;:::-;8416:51;8409:58;;8326:149;;;;:::o;36373:322::-;36443:14;36674:1;36664:8;36661:15;36636:23;36632:45;36622:55;;36373:322;;;:::o;8483:268::-;8551:13;8658:1;8652:4;8645:15;8687:1;8681:4;8674:15;8728:4;8722;8712:21;8703:30;;8483:268;;;;:::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:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:149::-;1061:7;1101:66;1094:5;1090:78;1079:89;;1025:149;;;:::o;1180:120::-;1252:23;1269:5;1252:23;:::i;:::-;1245:5;1242:34;1232:62;;1290:1;1287;1280:12;1232:62;1180:120;:::o;1306:137::-;1351:5;1389:6;1376:20;1367:29;;1405:32;1431:5;1405:32;:::i;:::-;1306:137;;;;:::o;1449:327::-;1507:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:119;;;1562:79;;:::i;:::-;1524:119;1682:1;1707:52;1751:7;1742:6;1731:9;1727:22;1707:52;:::i;:::-;1697:62;;1653:116;1449:327;;;;:::o;1782:90::-;1816:7;1859:5;1852:13;1845:21;1834:32;;1782:90;;;:::o;1878:109::-;1959:21;1974:5;1959:21;:::i;:::-;1954:3;1947:34;1878:109;;:::o;1993:210::-;2080:4;2118:2;2107:9;2103:18;2095:26;;2131:65;2193:1;2182:9;2178:17;2169:6;2131:65;:::i;:::-;1993:210;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:246::-;2570:1;2580:113;2594:6;2591:1;2588:13;2580:113;;;2679:1;2674:3;2670:11;2664:18;2660:1;2655:3;2651:11;2644:39;2616:2;2613:1;2609:10;2604:15;;2580:113;;;2727:1;2718:6;2713:3;2709:16;2702:27;2551:184;2489:246;;;:::o;2741:102::-;2782:6;2833:2;2829:7;2824:2;2817:5;2813:14;2809:28;2799:38;;2741:102;;;:::o;2849:377::-;2937:3;2965:39;2998:5;2965:39;:::i;:::-;3020:71;3084:6;3079:3;3020:71;:::i;:::-;3013:78;;3100:65;3158:6;3153:3;3146:4;3139:5;3135:16;3100:65;:::i;:::-;3190:29;3212:6;3190:29;:::i;:::-;3185:3;3181:39;3174:46;;2941:285;2849:377;;;;:::o;3232:313::-;3345:4;3383:2;3372:9;3368:18;3360:26;;3432:9;3426:4;3422:20;3418:1;3407:9;3403:17;3396:47;3460:78;3533:4;3524:6;3460:78;:::i;:::-;3452:86;;3232:313;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:180;6596:77;6593:1;6586:88;6693:4;6690:1;6683:15;6717:4;6714:1;6707:15;6734:281;6817:27;6839:4;6817:27;:::i;:::-;6809:6;6805:40;6947:6;6935:10;6932:22;6911:18;6899:10;6896:34;6893:62;6890:88;;;6958:18;;:::i;:::-;6890:88;6998:10;6994:2;6987:22;6777:238;6734:281;;:::o;7021:129::-;7055:6;7082:20;;:::i;:::-;7072:30;;7111:33;7139:4;7131:6;7111:33;:::i;:::-;7021:129;;;:::o;7156:308::-;7218:4;7308:18;7300:6;7297:30;7294:56;;;7330:18;;:::i;:::-;7294:56;7368:29;7390:6;7368:29;:::i;:::-;7360:37;;7452:4;7446;7442:15;7434:23;;7156:308;;;:::o;7470:146::-;7567:6;7562:3;7557;7544:30;7608:1;7599:6;7594:3;7590:16;7583:27;7470:146;;;:::o;7622:425::-;7700:5;7725:66;7741:49;7783:6;7741:49;:::i;:::-;7725:66;:::i;:::-;7716:75;;7814:6;7807:5;7800:21;7852:4;7845:5;7841:16;7890:3;7881:6;7876:3;7872:16;7869:25;7866:112;;;7897:79;;:::i;:::-;7866:112;7987:54;8034:6;8029:3;8024;7987:54;:::i;:::-;7706:341;7622:425;;;;;:::o;8067:340::-;8123:5;8172:3;8165:4;8157:6;8153:17;8149:27;8139:122;;8180:79;;:::i;:::-;8139:122;8297:6;8284:20;8322:79;8397:3;8389:6;8382:4;8374:6;8370:17;8322:79;:::i;:::-;8313:88;;8129:278;8067:340;;;;:::o;8413:509::-;8482:6;8531:2;8519:9;8510:7;8506:23;8502:32;8499:119;;;8537:79;;:::i;:::-;8499:119;8685:1;8674:9;8670:17;8657:31;8715:18;8707:6;8704:30;8701:117;;;8737:79;;:::i;:::-;8701:117;8842:63;8897:7;8888:6;8877:9;8873:22;8842:63;:::i;:::-;8832:73;;8628:287;8413:509;;;;:::o;8928:117::-;9037:1;9034;9027:12;9051:117;9160:1;9157;9150:12;9191:568;9264:8;9274:6;9324:3;9317:4;9309:6;9305:17;9301:27;9291:122;;9332:79;;:::i;:::-;9291:122;9445:6;9432:20;9422:30;;9475:18;9467:6;9464:30;9461:117;;;9497:79;;:::i;:::-;9461:117;9611:4;9603:6;9599:17;9587:29;;9665:3;9657:4;9649:6;9645:17;9635:8;9631:32;9628:41;9625:128;;;9672:79;;:::i;:::-;9625:128;9191:568;;;;;:::o;9765:704::-;9860:6;9868;9876;9925:2;9913:9;9904:7;9900:23;9896:32;9893:119;;;9931:79;;:::i;:::-;9893:119;10051:1;10076:53;10121:7;10112:6;10101:9;10097:22;10076:53;:::i;:::-;10066:63;;10022:117;10206:2;10195:9;10191:18;10178:32;10237:18;10229:6;10226:30;10223:117;;;10259:79;;:::i;:::-;10223:117;10372:80;10444:7;10435:6;10424:9;10420:22;10372:80;:::i;:::-;10354:98;;;;10149:313;9765:704;;;;;:::o;10475:329::-;10534:6;10583:2;10571:9;10562:7;10558:23;10554:32;10551:119;;;10589:79;;:::i;:::-;10551:119;10709:1;10734:53;10779:7;10770:6;10759:9;10755:22;10734:53;:::i;:::-;10724:63;;10680:117;10475:329;;;;:::o;10810:122::-;10883:24;10901:5;10883:24;:::i;:::-;10876:5;10873:35;10863:63;;10922:1;10919;10912:12;10863:63;10810:122;:::o;10938:139::-;10984:5;11022:6;11009:20;11000:29;;11038:33;11065:5;11038:33;:::i;:::-;10938:139;;;;:::o;11083:329::-;11142:6;11191:2;11179:9;11170:7;11166:23;11162:32;11159:119;;;11197:79;;:::i;:::-;11159:119;11317:1;11342:53;11387:7;11378:6;11367:9;11363:22;11342:53;:::i;:::-;11332:63;;11288:117;11083:329;;;;:::o;11418:116::-;11488:21;11503:5;11488:21;:::i;:::-;11481:5;11478:32;11468:60;;11524:1;11521;11514:12;11468:60;11418:116;:::o;11540:133::-;11583:5;11621:6;11608:20;11599:29;;11637:30;11661:5;11637:30;:::i;:::-;11540:133;;;;:::o;11679:468::-;11744:6;11752;11801:2;11789:9;11780:7;11776:23;11772:32;11769:119;;;11807:79;;:::i;:::-;11769:119;11927:1;11952:53;11997:7;11988:6;11977:9;11973:22;11952:53;:::i;:::-;11942:63;;11898:117;12054:2;12080:50;12122:7;12113:6;12102:9;12098:22;12080:50;:::i;:::-;12070:60;;12025:115;11679:468;;;;;:::o;12153:559::-;12239:6;12247;12296:2;12284:9;12275:7;12271:23;12267:32;12264:119;;;12302:79;;:::i;:::-;12264:119;12450:1;12439:9;12435:17;12422:31;12480:18;12472:6;12469:30;12466:117;;;12502:79;;:::i;:::-;12466:117;12615:80;12687:7;12678:6;12667:9;12663:22;12615:80;:::i;:::-;12597:98;;;;12393:312;12153:559;;;;;:::o;12718:307::-;12779:4;12869:18;12861:6;12858:30;12855:56;;;12891:18;;:::i;:::-;12855:56;12929:29;12951:6;12929:29;:::i;:::-;12921:37;;13013:4;13007;13003:15;12995:23;;12718:307;;;:::o;13031:423::-;13108:5;13133:65;13149:48;13190:6;13149:48;:::i;:::-;13133:65;:::i;:::-;13124:74;;13221:6;13214:5;13207:21;13259:4;13252:5;13248:16;13297:3;13288:6;13283:3;13279:16;13276:25;13273:112;;;13304:79;;:::i;:::-;13273:112;13394:54;13441:6;13436:3;13431;13394:54;:::i;:::-;13114:340;13031:423;;;;;:::o;13473:338::-;13528:5;13577:3;13570:4;13562:6;13558:17;13554:27;13544:122;;13585:79;;:::i;:::-;13544:122;13702:6;13689:20;13727:78;13801:3;13793:6;13786:4;13778:6;13774:17;13727:78;:::i;:::-;13718:87;;13534:277;13473:338;;;;:::o;13817:943::-;13912:6;13920;13928;13936;13985:3;13973:9;13964:7;13960:23;13956:33;13953:120;;;13992:79;;:::i;:::-;13953:120;14112:1;14137:53;14182:7;14173:6;14162:9;14158:22;14137:53;:::i;:::-;14127:63;;14083:117;14239:2;14265:53;14310:7;14301:6;14290:9;14286:22;14265:53;:::i;:::-;14255:63;;14210:118;14367:2;14393:53;14438:7;14429:6;14418:9;14414:22;14393:53;:::i;:::-;14383:63;;14338:118;14523:2;14512:9;14508:18;14495:32;14554:18;14546:6;14543:30;14540:117;;;14576:79;;:::i;:::-;14540:117;14681:62;14735:7;14726:6;14715:9;14711:22;14681:62;:::i;:::-;14671:72;;14466:287;13817:943;;;;;;;:::o;14766:474::-;14834:6;14842;14891:2;14879:9;14870:7;14866:23;14862:32;14859:119;;;14897:79;;:::i;:::-;14859:119;15017:1;15042:53;15087:7;15078:6;15067:9;15063:22;15042:53;:::i;:::-;15032:63;;14988:117;15144:2;15170:53;15215:7;15206:6;15195:9;15191:22;15170:53;:::i;:::-;15160:63;;15115:118;14766:474;;;;;:::o;15246:182::-;15386:34;15382:1;15374:6;15370:14;15363:58;15246:182;:::o;15434:366::-;15576:3;15597:67;15661:2;15656:3;15597:67;:::i;:::-;15590:74;;15673:93;15762:3;15673:93;:::i;:::-;15791:2;15786:3;15782:12;15775:19;;15434:366;;;:::o;15806:419::-;15972:4;16010:2;15999:9;15995:18;15987:26;;16059:9;16053:4;16049:20;16045:1;16034:9;16030:17;16023:47;16087:131;16213:4;16087:131;:::i;:::-;16079:139;;15806:419;;;:::o;16231:181::-;16371:33;16367:1;16359:6;16355:14;16348:57;16231:181;:::o;16418:366::-;16560:3;16581:67;16645:2;16640:3;16581:67;:::i;:::-;16574:74;;16657:93;16746:3;16657:93;:::i;:::-;16775:2;16770:3;16766:12;16759:19;;16418:366;;;:::o;16790:419::-;16956:4;16994:2;16983:9;16979:18;16971:26;;17043:9;17037:4;17033:20;17029:1;17018:9;17014:17;17007:47;17071:131;17197:4;17071:131;:::i;:::-;17063:139;;16790:419;;;:::o;17215:180::-;17263:77;17260:1;17253:88;17360:4;17357:1;17350:15;17384:4;17381:1;17374:15;17401:191;17441:3;17460:20;17478:1;17460:20;:::i;:::-;17455:25;;17494:20;17512:1;17494:20;:::i;:::-;17489:25;;17537:1;17534;17530:9;17523:16;;17558:3;17555:1;17552:10;17549:36;;;17565:18;;:::i;:::-;17549:36;17401:191;;;;:::o;17598:169::-;17738:21;17734:1;17726:6;17722:14;17715:45;17598:169;:::o;17773:366::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:419::-;18311:4;18349:2;18338:9;18334:18;18326:26;;18398:9;18392:4;18388:20;18384:1;18373:9;18369:17;18362:47;18426:131;18552:4;18426:131;:::i;:::-;18418:139;;18145:419;;;:::o;18570:180::-;18618:77;18615:1;18608:88;18715:4;18712:1;18705:15;18739:4;18736:1;18729:15;18756:320;18800:6;18837:1;18831:4;18827:12;18817:22;;18884:1;18878:4;18874:12;18905:18;18895:81;;18961:4;18953:6;18949:17;18939:27;;18895:81;19023:2;19015:6;19012:14;18992:18;18989:38;18986:84;;19042:18;;:::i;:::-;18986:84;18807:269;18756:320;;;:::o;19082:173::-;19222:25;19218:1;19210:6;19206:14;19199:49;19082:173;:::o;19261:366::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:419::-;19799:4;19837:2;19826:9;19822:18;19814:26;;19886:9;19880:4;19876:20;19872:1;19861:9;19857:17;19850:47;19914:131;20040:4;19914:131;:::i;:::-;19906:139;;19633:419;;;:::o;20058:171::-;20198:23;20194:1;20186:6;20182:14;20175:47;20058:171;:::o;20235:366::-;20377:3;20398:67;20462:2;20457:3;20398:67;:::i;:::-;20391:74;;20474:93;20563:3;20474:93;:::i;:::-;20592:2;20587:3;20583:12;20576:19;;20235:366;;;:::o;20607:419::-;20773:4;20811:2;20800:9;20796:18;20788:26;;20860:9;20854:4;20850:20;20846:1;20835:9;20831:17;20824:47;20888:131;21014:4;20888:131;:::i;:::-;20880:139;;20607:419;;;:::o;21032:410::-;21072:7;21095:20;21113:1;21095:20;:::i;:::-;21090:25;;21129:20;21147:1;21129:20;:::i;:::-;21124:25;;21184:1;21181;21177:9;21206:30;21224:11;21206:30;:::i;:::-;21195:41;;21385:1;21376:7;21372:15;21369:1;21366:22;21346:1;21339:9;21319:83;21296:139;;21415:18;;:::i;:::-;21296:139;21080:362;21032:410;;;;:::o;21448:167::-;21588:19;21584:1;21576:6;21572:14;21565:43;21448:167;:::o;21621:366::-;21763:3;21784:67;21848:2;21843:3;21784:67;:::i;:::-;21777:74;;21860:93;21949:3;21860:93;:::i;:::-;21978:2;21973:3;21969:12;21962:19;;21621:366;;;:::o;21993:419::-;22159:4;22197:2;22186:9;22182:18;22174:26;;22246:9;22240:4;22236:20;22232:1;22221:9;22217:17;22210:47;22274:131;22400:4;22274:131;:::i;:::-;22266:139;;21993:419;;;:::o;22418:141::-;22467:4;22490:3;22482:11;;22513:3;22510:1;22503:14;22547:4;22544:1;22534:18;22526:26;;22418:141;;;:::o;22565:93::-;22602:6;22649:2;22644;22637:5;22633:14;22629:23;22619:33;;22565:93;;;:::o;22664:107::-;22708:8;22758:5;22752:4;22748:16;22727:37;;22664:107;;;;:::o;22777:393::-;22846:6;22896:1;22884:10;22880:18;22919:97;22949:66;22938:9;22919:97;:::i;:::-;23037:39;23067:8;23056:9;23037:39;:::i;:::-;23025:51;;23109:4;23105:9;23098:5;23094:21;23085:30;;23158:4;23148:8;23144:19;23137:5;23134:30;23124:40;;22853:317;;22777:393;;;;;:::o;23176:60::-;23204:3;23225:5;23218:12;;23176:60;;;:::o;23242:142::-;23292:9;23325:53;23343:34;23352:24;23370:5;23352:24;:::i;:::-;23343:34;:::i;:::-;23325:53;:::i;:::-;23312:66;;23242:142;;;:::o;23390:75::-;23433:3;23454:5;23447:12;;23390:75;;;:::o;23471:269::-;23581:39;23612:7;23581:39;:::i;:::-;23642:91;23691:41;23715:16;23691:41;:::i;:::-;23683:6;23676:4;23670:11;23642:91;:::i;:::-;23636:4;23629:105;23547:193;23471:269;;;:::o;23746:73::-;23791:3;23746:73;:::o;23825:189::-;23902:32;;:::i;:::-;23943:65;24001:6;23993;23987:4;23943:65;:::i;:::-;23878:136;23825:189;;:::o;24020:186::-;24080:120;24097:3;24090:5;24087:14;24080:120;;;24151:39;24188:1;24181:5;24151:39;:::i;:::-;24124:1;24117:5;24113:13;24104:22;;24080:120;;;24020:186;;:::o;24212:543::-;24313:2;24308:3;24305:11;24302:446;;;24347:38;24379:5;24347:38;:::i;:::-;24431:29;24449:10;24431:29;:::i;:::-;24421:8;24417:44;24614:2;24602:10;24599:18;24596:49;;;24635:8;24620:23;;24596:49;24658:80;24714:22;24732:3;24714:22;:::i;:::-;24704:8;24700:37;24687:11;24658:80;:::i;:::-;24317:431;;24302:446;24212:543;;;:::o;24761:117::-;24815:8;24865:5;24859:4;24855:16;24834:37;;24761:117;;;;:::o;24884:169::-;24928:6;24961:51;25009:1;25005:6;24997:5;24994:1;24990:13;24961:51;:::i;:::-;24957:56;25042:4;25036;25032:15;25022:25;;24935:118;24884:169;;;;:::o;25058:295::-;25134:4;25280:29;25305:3;25299:4;25280:29;:::i;:::-;25272:37;;25342:3;25339:1;25335:11;25329:4;25326:21;25318:29;;25058:295;;;;:::o;25358:1395::-;25475:37;25508:3;25475:37;:::i;:::-;25577:18;25569:6;25566:30;25563:56;;;25599:18;;:::i;:::-;25563:56;25643:38;25675:4;25669:11;25643:38;:::i;:::-;25728:67;25788:6;25780;25774:4;25728:67;:::i;:::-;25822:1;25846:4;25833:17;;25878:2;25870:6;25867:14;25895:1;25890:618;;;;26552:1;26569:6;26566:77;;;26618:9;26613:3;26609:19;26603:26;26594:35;;26566:77;26669:67;26729:6;26722:5;26669:67;:::i;:::-;26663:4;26656:81;26525:222;25860:887;;25890:618;25942:4;25938:9;25930:6;25926:22;25976:37;26008:4;25976:37;:::i;:::-;26035:1;26049:208;26063:7;26060:1;26057:14;26049:208;;;26142:9;26137:3;26133:19;26127:26;26119:6;26112:42;26193:1;26185:6;26181:14;26171:24;;26240:2;26229:9;26225:18;26212:31;;26086:4;26083:1;26079:12;26074:17;;26049:208;;;26285:6;26276:7;26273:19;26270:179;;;26343:9;26338:3;26334:19;26328:26;26386:48;26428:4;26420:6;26416:17;26405:9;26386:48;:::i;:::-;26378:6;26371:64;26293:156;26270:179;26495:1;26491;26483:6;26479:14;26475:22;26469:4;26462:36;25897:611;;;25860:887;;25450:1303;;;25358:1395;;:::o;26759:94::-;26792:8;26840:5;26836:2;26832:14;26811:35;;26759:94;;;:::o;26859:::-;26898:7;26927:20;26941:5;26927:20;:::i;:::-;26916:31;;26859:94;;;:::o;26959:100::-;26998:7;27027:26;27047:5;27027:26;:::i;:::-;27016:37;;26959:100;;;:::o;27065:157::-;27170:45;27190:24;27208:5;27190:24;:::i;:::-;27170:45;:::i;:::-;27165:3;27158:58;27065:157;;:::o;27228:256::-;27340:3;27355:75;27426:3;27417:6;27355:75;:::i;:::-;27455:2;27450:3;27446:12;27439:19;;27475:3;27468:10;;27228:256;;;;:::o;27490:164::-;27630:16;27626:1;27618:6;27614:14;27607:40;27490:164;:::o;27660:366::-;27802:3;27823:67;27887:2;27882:3;27823:67;:::i;:::-;27816:74;;27899:93;27988:3;27899:93;:::i;:::-;28017:2;28012:3;28008:12;28001:19;;27660:366;;;:::o;28032:419::-;28198:4;28236:2;28225:9;28221:18;28213:26;;28285:9;28279:4;28275:20;28271:1;28260:9;28256:17;28249:47;28313:131;28439:4;28313:131;:::i;:::-;28305:139;;28032:419;;;:::o;28457:174::-;28597:26;28593:1;28585:6;28581:14;28574:50;28457:174;:::o;28637:366::-;28779:3;28800:67;28864:2;28859:3;28800:67;:::i;:::-;28793:74;;28876:93;28965:3;28876:93;:::i;:::-;28994:2;28989:3;28985:12;28978:19;;28637:366;;;:::o;29009:419::-;29175:4;29213:2;29202:9;29198:18;29190:26;;29262:9;29256:4;29252:20;29248:1;29237:9;29233:17;29226:47;29290:131;29416:4;29290:131;:::i;:::-;29282:139;;29009:419;;;:::o;29434:176::-;29574:28;29570:1;29562:6;29558:14;29551:52;29434:176;:::o;29616:366::-;29758:3;29779:67;29843:2;29838:3;29779:67;:::i;:::-;29772:74;;29855:93;29944:3;29855:93;:::i;:::-;29973:2;29968:3;29964:12;29957:19;;29616:366;;;:::o;29988:419::-;30154:4;30192:2;30181:9;30177:18;30169:26;;30241:9;30235:4;30231:20;30227:1;30216:9;30212:17;30205:47;30269:131;30395:4;30269:131;:::i;:::-;30261:139;;29988:419;;;:::o;30413:148::-;30515:11;30552:3;30537:18;;30413:148;;;;:::o;30567:390::-;30673:3;30701:39;30734:5;30701:39;:::i;:::-;30756:89;30838:6;30833:3;30756:89;:::i;:::-;30749:96;;30854:65;30912:6;30907:3;30900:4;30893:5;30889:16;30854:65;:::i;:::-;30944:6;30939:3;30935:16;30928:23;;30677:280;30567:390;;;;:::o;30963:435::-;31143:3;31165:95;31256:3;31247:6;31165:95;:::i;:::-;31158:102;;31277:95;31368:3;31359:6;31277:95;:::i;:::-;31270:102;;31389:3;31382:10;;30963:435;;;;;:::o;31404:225::-;31544:34;31540:1;31532:6;31528:14;31521:58;31613:8;31608:2;31600:6;31596:15;31589:33;31404:225;:::o;31635:366::-;31777:3;31798:67;31862:2;31857:3;31798:67;:::i;:::-;31791:74;;31874:93;31963:3;31874:93;:::i;:::-;31992:2;31987:3;31983:12;31976:19;;31635:366;;;:::o;32007:419::-;32173:4;32211:2;32200:9;32196:18;32188:26;;32260:9;32254:4;32250:20;32246:1;32235:9;32231:17;32224:47;32288:131;32414:4;32288:131;:::i;:::-;32280:139;;32007:419;;;:::o;32432:98::-;32483:6;32517:5;32511:12;32501:22;;32432:98;;;:::o;32536:168::-;32619:11;32653:6;32648:3;32641:19;32693:4;32688:3;32684:14;32669:29;;32536:168;;;;:::o;32710:373::-;32796:3;32824:38;32856:5;32824:38;:::i;:::-;32878:70;32941:6;32936:3;32878:70;:::i;:::-;32871:77;;32957:65;33015:6;33010:3;33003:4;32996:5;32992:16;32957:65;:::i;:::-;33047:29;33069:6;33047:29;:::i;:::-;33042:3;33038:39;33031:46;;32800:283;32710:373;;;;:::o;33089:640::-;33284:4;33322:3;33311:9;33307:19;33299:27;;33336:71;33404:1;33393:9;33389:17;33380:6;33336:71;:::i;:::-;33417:72;33485:2;33474:9;33470:18;33461:6;33417:72;:::i;:::-;33499;33567:2;33556:9;33552:18;33543:6;33499:72;:::i;:::-;33618:9;33612:4;33608:20;33603:2;33592:9;33588:18;33581:48;33646:76;33717:4;33708:6;33646:76;:::i;:::-;33638:84;;33089:640;;;;;;;:::o;33735:141::-;33791:5;33822:6;33816:13;33807:22;;33838:32;33864:5;33838:32;:::i;:::-;33735:141;;;;:::o;33882:349::-;33951:6;34000:2;33988:9;33979:7;33975:23;33971:32;33968:119;;;34006:79;;:::i;:::-;33968:119;34126:1;34151:63;34206:7;34197:6;34186:9;34182:22;34151:63;:::i;:::-;34141:73;;34097:127;33882:349;;;;:::o;34237:180::-;34285:77;34282:1;34275:88;34382:4;34379:1;34372:15;34406:4;34403:1;34396:15;34423:233;34462:3;34485:24;34503:5;34485:24;:::i;:::-;34476:33;;34531:66;34524:5;34521:77;34518:103;;34601:18;;:::i;:::-;34518:103;34648:1;34641:5;34637:13;34630:20;;34423:233;;;:::o

Swarm Source

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