ETH Price: $2,907.51 (-4.05%)
Gas: 2 Gwei

Token

SIMP (SIMP)
 

Overview

Max Total Supply

3,000 SIMP

Holders

2,403

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
raylin51.eth
Balance
1 SIMP
0x88508c2cc76c6042b4e5912b03c512ff1c05df43
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:
SIMP

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/SIMP.sol



/*
 ___   __ __    _ __ ___    _ __ 
/ __|  |   |   | '_ ` _ \   | '_\
\__ \   | |    | | | | | |  |  _/
|___/  | _ |   |_| |_| |_|  |_|
                                     
*/

pragma solidity ^0.8.4;




contract SIMP is ERC721A, Ownable {
    enum Status {
        Waiting,
        Started,
        Finished,
        AllowListOnly
    }

    Status public status;
    string public baseURI;
    bytes32 public merkleRoot;

    uint256 public constant MAX_RESERVE_AMOUNT = 200;
    uint256 public constant MAX_PUBLIC_AMOUNT = 1;
    uint256 public constant MAX_ALLOWLIST_AMOUNT = 2;
    uint256 public constant MAX_SUPPLY = 3000;

    mapping(address => uint256) public allowlist;

    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event BaseURIChanged(string newBaseURI);
    event BaseMerkleRootChanged(bytes32 newMerkleRoot);

    constructor(string memory initBaseURI) ERC721A("SIMP", "SIMP") {
        baseURI = initBaseURI;
    }

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

    function mint(uint256 quantity) external {
        require(status == Status.Started, "SIMP: Public mint is not active.");
        require(tx.origin == msg.sender, "SIMP: ?? Not you!");
        require(
            numberMinted(msg.sender) + quantity <= MAX_PUBLIC_AMOUNT,
            "SIMP: Max public mint amount per wallet exceeded"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "SIMP: Exceed max supply."
        );

        _safeMint(msg.sender, quantity);
        emit Minted(msg.sender, quantity);
    }

    function allowlistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        external
    {
        require(
            status == Status.AllowListOnly,
            "SIMP: Allowlist mint is not active or passed."
        );
        require(tx.origin == msg.sender, "SIMP: ?? Not you!");
        require(
            allowlist[msg.sender] + quantity <= MAX_ALLOWLIST_AMOUNT,
            "SIMP: Max allowlist mint amount per wallet exceeded."
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "SIMP: Exceed max supply."
        );
        require(
            isAllowlist(msg.sender, _merkleProof),
            "SIMP: Invalid Merkle Proof."
        );

        allowlist[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);

        emit Minted(msg.sender, quantity);
    }

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

    function reserve() public onlyOwner {
        require(
            totalSupply() + MAX_RESERVE_AMOUNT <= MAX_SUPPLY,
            "SIMP: Exceed max supply."
        );
        _safeMint(msg.sender, MAX_RESERVE_AMOUNT);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(status);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setAllowlistMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
        emit BaseMerkleRootChanged(merkleRoot);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"BaseMerkleRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"enum SIMP.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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_ALLOWLIST_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"yourAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlist","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":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","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":"enum SIMP.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum SIMP.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b506040516200394538038062003945833981810160405281019062000037919062000322565b6040518060400160405280600481526020017f53494d50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53494d50000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000200565b508060039080519060200190620000d492919062000200565b50620000e56200012d60201b60201c565b60008190555050506200010d620001016200013260201b60201c565b6200013a60201b60201c565b80600990805190602001906200012592919062000200565b5050620004d7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020e90620003fc565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b6000620002c7620002c18462000390565b62000367565b905082815260208101848484011115620002e057600080fd5b620002ed848285620003c6565b509392505050565b600082601f8301126200030757600080fd5b815162000319848260208601620002b0565b91505092915050565b6000602082840312156200033557600080fd5b600082015167ffffffffffffffff8111156200035057600080fd5b6200035e84828501620002f5565b91505092915050565b60006200037362000386565b905062000381828262000432565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ae57620003ad62000497565b5b620003b982620004c6565b9050602081019050919050565b60005b83811015620003e6578082015181840152602081019050620003c9565b83811115620003f6576000848401525b50505050565b600060028204905060018216806200041557607f821691505b602082108114156200042c576200042b62000468565b5b50919050565b6200043d82620004c6565b810181811067ffffffffffffffff821117156200045f576200045e62000497565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61345e80620004e76000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636c0360eb1161011a578063a22cb465116100ad578063cd3293de1161007c578063cd3293de146105a0578063dc33e681146105aa578063e985e9c5146105da578063f2fde38b1461060a578063f95df41414610626576101fb565b8063a22cb46514610508578063a7cd52cb14610524578063b88d4fde14610554578063c87b56dd14610570576101fb565b80638da5cb5b116100e95780638da5cb5b1461048057806391e36fdc1461049e57806395d89b41146104ce578063a0712d68146104ec576101fb565b80636c0360eb1461040c57806370a082311461042a578063715018a61461045a5780637bc9200e14610464576101fb565b806323b872dd1161019257806332cb6b0c1161016157806332cb6b0c1461038657806342842e0e146103a457806355f804b3146103c05780636352211e146103dc576101fb565b806323b872dd146103125780632e49d78b1461032e5780632e747d191461034a5780632eb4a7ab14610368576101fb565b80631402e867116101ce5780631402e8671461029a57806318160ddd146102b857806319e08edd146102d6578063200d2ed2146102f4576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906127bb565b610642565b6040516102279190612c38565b60405180910390f35b6102386106d4565b6040516102459190612cad565b60405180910390f35b6102686004803603810190610263919061287b565b610766565b6040516102759190612ba8565b60405180910390f35b61029860048036038101906102939190612756565b6107e2565b005b6102a2610923565b6040516102af9190612def565b60405180910390f35b6102c0610928565b6040516102cd9190612def565b60405180910390f35b6102de61093f565b6040516102eb9190612def565b60405180910390f35b6102fc610944565b6040516103099190612c6e565b60405180910390f35b61032c600480360381019061032791906125f8565b610957565b005b6103486004803603810190610343919061280d565b610c7c565b005b610352610d1d565b60405161035f9190612def565b60405180910390f35b610370610d22565b60405161037d9190612c53565b60405180910390f35b61038e610d28565b60405161039b9190612def565b60405180910390f35b6103be60048036038101906103b991906125f8565b610d2e565b005b6103da60048036038101906103d59190612836565b610d4e565b005b6103f660048036038101906103f1919061287b565b610da5565b6040516104039190612ba8565b60405180910390f35b610414610db7565b6040516104219190612cad565b60405180910390f35b610444600480360381019061043f9190612593565b610e45565b6040516104519190612def565b60405180910390f35b610462610efe565b005b61047e600480360381019061047991906128a4565b610f12565b005b61048861120e565b6040516104959190612ba8565b60405180910390f35b6104b860048036038101906104b391906126c2565b611238565b6040516104c59190612c38565b60405180910390f35b6104d66112bc565b6040516104e39190612cad565b60405180910390f35b6105066004803603810190610501919061287b565b61134e565b005b610522600480360381019061051d919061271a565b611572565b005b61053e60048036038101906105399190612593565b6116ea565b60405161054b9190612def565b60405180910390f35b61056e60048036038101906105699190612647565b611702565b005b61058a6004803603810190610585919061287b565b611775565b6040516105979190612cad565b60405180910390f35b6105a8611814565b005b6105c460048036038101906105bf9190612593565b611881565b6040516105d19190612def565b60405180910390f35b6105f460048036038101906105ef91906125bc565b611893565b6040516106019190612c38565b60405180910390f35b610624600480360381019061061f9190612593565b611927565b005b610640600480360381019061063b9190612792565b6119ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106e390612fde565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90612fde565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b5050505050905090565b6000610771826119f6565b6107a7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610da5565b90508073ffffffffffffffffffffffffffffffffffffffff1661080e611a55565b73ffffffffffffffffffffffffffffffffffffffff16146108715761083a81610835611a55565b611893565b610870576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b6000610932611a5d565b6001546000540303905090565b60c881565b600860149054906101000a900460ff1681565b600061096282611a62565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d584611b30565b915091506109eb81876109e6611a55565b611b52565b610a3757610a00866109fb611a55565b611893565b610a36576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aab8686866001611b96565b8015610ab657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8485610b60888887611b9c565b7c020000000000000000000000000000000000000000000000000000000017611bc4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0c576000600185019050600060046000838152602001908152602001600020541415610c0a576000548114610c09578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c748686866001611bef565b505050505050565b610c84611bf5565b80600860146101000a81548160ff02191690836003811115610ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600860149054906101000a900460ff16604051610d129190612c6e565b60405180910390a150565b600181565b600a5481565b610bb881565b610d4983838360405180602001604052806000815250611702565b505050565b610d56611bf5565b818160099190610d67929190612361565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610d99929190612c89565b60405180910390a15050565b6000610db082611a62565b9050919050565b60098054610dc490612fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610df090612fde565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ead576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f06611bf5565b610f106000611c73565b565b600380811115610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166003811115610f93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612cef565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612d6f565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108e9190612ea3565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612daf565b60405180910390fd5b610bb8836110db610928565b6110e59190612ea3565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612dcf565b60405180910390fd5b611131338383611238565b611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790612d4f565b60405180910390fd5b82600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bf9190612ea3565b925050819055506111d03384611d39565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3384604051611201929190612c0f565b60405180910390a1505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000808460405160200161124c9190612b69565b6040516020818303038152906040528051906020012090506112b2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611d57565b9150509392505050565b6060600380546112cb90612fde565b80601f01602080910402602001604051908101604052809291908181526020018280546112f790612fde565b80156113445780601f1061131957610100808354040283529160200191611344565b820191906000526020600020905b81548152906001019060200180831161132757829003601f168201915b5050505050905090565b60016003811115611388577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff1660038111156113d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612ccf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612d6f565b60405180910390fd5b60018161148a33611881565b6114949190612ea3565b11156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90612d0f565b60405180910390fd5b610bb8816114e1610928565b6114eb9190612ea3565b111561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612dcf565b60405180910390fd5b6115363382611d39565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611567929190612c0f565b60405180910390a150565b61157a611a55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ec611a55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611699611a55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116de9190612c38565b60405180910390a35050565b600b6020528060005260406000206000915090505481565b61170d848484610957565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461176f5761173884848484611d6e565b61176e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611780826119f6565b6117b6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117c0611ece565b90506000815114156117e1576040518060200160405280600081525061180c565b806117eb84611f60565b6040516020016117fc929190612b84565b6040516020818303038152906040525b915050919050565b61181c611bf5565b610bb860c8611829610928565b6118339190612ea3565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612dcf565b60405180910390fd5b61187f3360c8611d39565b565b600061188c82611fba565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192f611bf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d2f565b60405180910390fd5b6119a881611c73565b50565b6119b3611bf5565b80600a819055507f0a4f0633a0220f10cb6a91b54a70b617fc8e7d9058980613784ec316d2ed91b3600a546040516119eb9190612c53565b60405180910390a150565b600081611a01611a5d565b11158015611a10575060005482105b8015611a4e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a71611a5d565b11611af957600054811015611af85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611af6575b6000811415611aec576004600083600190039350838152602001908152602001600020549050611ac1565b8092505050611b2b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb3868684612011565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bfd61201a565b73ffffffffffffffffffffffffffffffffffffffff16611c1b61120e565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890612d8f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d53828260405180602001604052806000815250612022565b5050565b600082611d6485846120bf565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d94611a55565b8786866040518563ffffffff1660e01b8152600401611db69493929190612bc3565b602060405180830381600087803b158015611dd057600080fd5b505af1925050508015611e0157506040513d601f19601f82011682018060405250810190611dfe91906127e4565b60015b611e7b573d8060008114611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b50600081511415611e73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611edd90612fde565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990612fde565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611fa657600183039250600a81066030018353600a81049050611f86565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61202c838361213b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ba57600080549050600083820390505b61206c6000868380600101945086611d6e565b6120a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120595781600054146120b757600080fd5b50505b505050565b60008082905060005b84518110156121305761211b8286838151811061210e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161230f565b9150808061212890613041565b9150506120c8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f06000848385611b96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612267836122586000866000611b9c565b6122618561233a565b17611bc4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061228b5780600081905550505061230a6000848385611bef565b505050565b600081831061232757612322828461234a565b612332565b612331838361234a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461236d90612fde565b90600052602060002090601f01602090048101928261238f57600085556123d6565b82601f106123a857803560ff19168380011785556123d6565b828001600101855582156123d6579182015b828111156123d55782358255916020019190600101906123ba565b5b5090506123e391906123e7565b5090565b5b808211156124005760008160009055506001016123e8565b5090565b600061241761241284612e2f565b612e0a565b90508281526020810184848401111561242f57600080fd5b61243a848285612f9c565b509392505050565b600081359050612451816133a5565b92915050565b60008083601f84011261246957600080fd5b8235905067ffffffffffffffff81111561248257600080fd5b60208301915083602082028301111561249a57600080fd5b9250929050565b6000813590506124b0816133bc565b92915050565b6000813590506124c5816133d3565b92915050565b6000813590506124da816133ea565b92915050565b6000815190506124ef816133ea565b92915050565b600082601f83011261250657600080fd5b8135612516848260208601612404565b91505092915050565b60008135905061252e81613401565b92915050565b60008083601f84011261254657600080fd5b8235905067ffffffffffffffff81111561255f57600080fd5b60208301915083600182028301111561257757600080fd5b9250929050565b60008135905061258d81613411565b92915050565b6000602082840312156125a557600080fd5b60006125b384828501612442565b91505092915050565b600080604083850312156125cf57600080fd5b60006125dd85828601612442565b92505060206125ee85828601612442565b9150509250929050565b60008060006060848603121561260d57600080fd5b600061261b86828701612442565b935050602061262c86828701612442565b925050604061263d8682870161257e565b9150509250925092565b6000806000806080858703121561265d57600080fd5b600061266b87828801612442565b945050602061267c87828801612442565b935050604061268d8782880161257e565b925050606085013567ffffffffffffffff8111156126aa57600080fd5b6126b6878288016124f5565b91505092959194509250565b6000806000604084860312156126d757600080fd5b60006126e586828701612442565b935050602084013567ffffffffffffffff81111561270257600080fd5b61270e86828701612457565b92509250509250925092565b6000806040838503121561272d57600080fd5b600061273b85828601612442565b925050602061274c858286016124a1565b9150509250929050565b6000806040838503121561276957600080fd5b600061277785828601612442565b92505060206127888582860161257e565b9150509250929050565b6000602082840312156127a457600080fd5b60006127b2848285016124b6565b91505092915050565b6000602082840312156127cd57600080fd5b60006127db848285016124cb565b91505092915050565b6000602082840312156127f657600080fd5b6000612804848285016124e0565b91505092915050565b60006020828403121561281f57600080fd5b600061282d8482850161251f565b91505092915050565b6000806020838503121561284957600080fd5b600083013567ffffffffffffffff81111561286357600080fd5b61286f85828601612534565b92509250509250929050565b60006020828403121561288d57600080fd5b600061289b8482850161257e565b91505092915050565b6000806000604084860312156128b957600080fd5b60006128c78682870161257e565b935050602084013567ffffffffffffffff8111156128e457600080fd5b6128f086828701612457565b92509250509250925092565b61290581612ef9565b82525050565b61291c61291782612ef9565b61308a565b82525050565b61292b81612f0b565b82525050565b61293a81612f17565b82525050565b600061294b82612e60565b6129558185612e76565b9350612965818560208601612fab565b61296e8161316a565b840191505092915050565b61298281612f8a565b82525050565b60006129948385612e87565b93506129a1838584612f9c565b6129aa8361316a565b840190509392505050565b60006129c082612e6b565b6129ca8185612e87565b93506129da818560208601612fab565b6129e38161316a565b840191505092915050565b60006129f982612e6b565b612a038185612e98565b9350612a13818560208601612fab565b80840191505092915050565b6000612a2c602083612e87565b9150612a3782613188565b602082019050919050565b6000612a4f602d83612e87565b9150612a5a826131b1565b604082019050919050565b6000612a72603083612e87565b9150612a7d82613200565b604082019050919050565b6000612a95602683612e87565b9150612aa08261324f565b604082019050919050565b6000612ab8601b83612e87565b9150612ac38261329e565b602082019050919050565b6000612adb601183612e87565b9150612ae6826132c7565b602082019050919050565b6000612afe602083612e87565b9150612b09826132f0565b602082019050919050565b6000612b21603483612e87565b9150612b2c82613319565b604082019050919050565b6000612b44601883612e87565b9150612b4f82613368565b602082019050919050565b612b6381612f80565b82525050565b6000612b75828461290b565b60148201915081905092915050565b6000612b9082856129ee565b9150612b9c82846129ee565b91508190509392505050565b6000602082019050612bbd60008301846128fc565b92915050565b6000608082019050612bd860008301876128fc565b612be560208301866128fc565b612bf26040830185612b5a565b8181036060830152612c048184612940565b905095945050505050565b6000604082019050612c2460008301856128fc565b612c316020830184612b5a565b9392505050565b6000602082019050612c4d6000830184612922565b92915050565b6000602082019050612c686000830184612931565b92915050565b6000602082019050612c836000830184612979565b92915050565b60006020820190508181036000830152612ca4818486612988565b90509392505050565b60006020820190508181036000830152612cc781846129b5565b905092915050565b60006020820190508181036000830152612ce881612a1f565b9050919050565b60006020820190508181036000830152612d0881612a42565b9050919050565b60006020820190508181036000830152612d2881612a65565b9050919050565b60006020820190508181036000830152612d4881612a88565b9050919050565b60006020820190508181036000830152612d6881612aab565b9050919050565b60006020820190508181036000830152612d8881612ace565b9050919050565b60006020820190508181036000830152612da881612af1565b9050919050565b60006020820190508181036000830152612dc881612b14565b9050919050565b60006020820190508181036000830152612de881612b37565b9050919050565b6000602082019050612e046000830184612b5a565b92915050565b6000612e14612e25565b9050612e208282613010565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4a57612e4961313b565b5b612e538261316a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eae82612f80565b9150612eb983612f80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eee57612eed6130ae565b5b828201905092915050565b6000612f0482612f60565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050612f5b82613391565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612f9582612f4d565b9050919050565b82818337600083830152505050565b60005b83811015612fc9578082015181840152602081019050612fae565b83811115612fd8576000848401525b50505050565b60006002820490506001821680612ff657607f821691505b6020821081141561300a5761300961310c565b5b50919050565b6130198261316a565b810181811067ffffffffffffffff821117156130385761303761313b565b5b80604052505050565b600061304c82612f80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561307f5761307e6130ae565b5b600182019050919050565b60006130958261309c565b9050919050565b60006130a78261317b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f53494d503a205075626c6963206d696e74206973206e6f74206163746976652e600082015250565b7f53494d503a20416c6c6f776c697374206d696e74206973206e6f74206163746960008201527f7665206f72207061737365642e00000000000000000000000000000000000000602082015250565b7f53494d503a204d6178207075626c6963206d696e7420616d6f756e742070657260008201527f2077616c6c657420657863656564656400000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53494d503a20496e76616c6964204d65726b6c652050726f6f662e0000000000600082015250565b7f53494d503a203f3f204e6f7420796f7521000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53494d503a204d617820616c6c6f776c697374206d696e7420616d6f756e742060008201527f7065722077616c6c65742065786365656465642e000000000000000000000000602082015250565b7f53494d503a20457863656564206d617820737570706c792e0000000000000000600082015250565b600481106133a2576133a16130dd565b5b50565b6133ae81612ef9565b81146133b957600080fd5b50565b6133c581612f0b565b81146133d057600080fd5b50565b6133dc81612f17565b81146133e757600080fd5b50565b6133f381612f21565b81146133fe57600080fd5b50565b6004811061340e57600080fd5b50565b61341a81612f80565b811461342557600080fd5b5056fea26469706673582212208fa659c36cfbbf519b67ad3a9b883164b7da43d004b2e2d07662558d2ba4381264736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576963356838796172794e667843555350345853386136625867346f5371376b523361794571364741537a462f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636c0360eb1161011a578063a22cb465116100ad578063cd3293de1161007c578063cd3293de146105a0578063dc33e681146105aa578063e985e9c5146105da578063f2fde38b1461060a578063f95df41414610626576101fb565b8063a22cb46514610508578063a7cd52cb14610524578063b88d4fde14610554578063c87b56dd14610570576101fb565b80638da5cb5b116100e95780638da5cb5b1461048057806391e36fdc1461049e57806395d89b41146104ce578063a0712d68146104ec576101fb565b80636c0360eb1461040c57806370a082311461042a578063715018a61461045a5780637bc9200e14610464576101fb565b806323b872dd1161019257806332cb6b0c1161016157806332cb6b0c1461038657806342842e0e146103a457806355f804b3146103c05780636352211e146103dc576101fb565b806323b872dd146103125780632e49d78b1461032e5780632e747d191461034a5780632eb4a7ab14610368576101fb565b80631402e867116101ce5780631402e8671461029a57806318160ddd146102b857806319e08edd146102d6578063200d2ed2146102f4576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e578063095ea7b31461027e575b600080fd5b61021a600480360381019061021591906127bb565b610642565b6040516102279190612c38565b60405180910390f35b6102386106d4565b6040516102459190612cad565b60405180910390f35b6102686004803603810190610263919061287b565b610766565b6040516102759190612ba8565b60405180910390f35b61029860048036038101906102939190612756565b6107e2565b005b6102a2610923565b6040516102af9190612def565b60405180910390f35b6102c0610928565b6040516102cd9190612def565b60405180910390f35b6102de61093f565b6040516102eb9190612def565b60405180910390f35b6102fc610944565b6040516103099190612c6e565b60405180910390f35b61032c600480360381019061032791906125f8565b610957565b005b6103486004803603810190610343919061280d565b610c7c565b005b610352610d1d565b60405161035f9190612def565b60405180910390f35b610370610d22565b60405161037d9190612c53565b60405180910390f35b61038e610d28565b60405161039b9190612def565b60405180910390f35b6103be60048036038101906103b991906125f8565b610d2e565b005b6103da60048036038101906103d59190612836565b610d4e565b005b6103f660048036038101906103f1919061287b565b610da5565b6040516104039190612ba8565b60405180910390f35b610414610db7565b6040516104219190612cad565b60405180910390f35b610444600480360381019061043f9190612593565b610e45565b6040516104519190612def565b60405180910390f35b610462610efe565b005b61047e600480360381019061047991906128a4565b610f12565b005b61048861120e565b6040516104959190612ba8565b60405180910390f35b6104b860048036038101906104b391906126c2565b611238565b6040516104c59190612c38565b60405180910390f35b6104d66112bc565b6040516104e39190612cad565b60405180910390f35b6105066004803603810190610501919061287b565b61134e565b005b610522600480360381019061051d919061271a565b611572565b005b61053e60048036038101906105399190612593565b6116ea565b60405161054b9190612def565b60405180910390f35b61056e60048036038101906105699190612647565b611702565b005b61058a6004803603810190610585919061287b565b611775565b6040516105979190612cad565b60405180910390f35b6105a8611814565b005b6105c460048036038101906105bf9190612593565b611881565b6040516105d19190612def565b60405180910390f35b6105f460048036038101906105ef91906125bc565b611893565b6040516106019190612c38565b60405180910390f35b610624600480360381019061061f9190612593565b611927565b005b610640600480360381019061063b9190612792565b6119ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106e390612fde565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90612fde565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b5050505050905090565b6000610771826119f6565b6107a7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ed82610da5565b90508073ffffffffffffffffffffffffffffffffffffffff1661080e611a55565b73ffffffffffffffffffffffffffffffffffffffff16146108715761083a81610835611a55565b611893565b610870576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b6000610932611a5d565b6001546000540303905090565b60c881565b600860149054906101000a900460ff1681565b600061096282611a62565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d584611b30565b915091506109eb81876109e6611a55565b611b52565b610a3757610a00866109fb611a55565b611893565b610a36576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aab8686866001611b96565b8015610ab657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8485610b60888887611b9c565b7c020000000000000000000000000000000000000000000000000000000017611bc4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0c576000600185019050600060046000838152602001908152602001600020541415610c0a576000548114610c09578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c748686866001611bef565b505050505050565b610c84611bf5565b80600860146101000a81548160ff02191690836003811115610ccf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600860149054906101000a900460ff16604051610d129190612c6e565b60405180910390a150565b600181565b600a5481565b610bb881565b610d4983838360405180602001604052806000815250611702565b505050565b610d56611bf5565b818160099190610d67929190612361565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610d99929190612c89565b60405180910390a15050565b6000610db082611a62565b9050919050565b60098054610dc490612fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610df090612fde565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ead576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f06611bf5565b610f106000611c73565b565b600380811115610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166003811115610f93577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612cef565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890612d6f565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108e9190612ea3565b11156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612daf565b60405180910390fd5b610bb8836110db610928565b6110e59190612ea3565b1115611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612dcf565b60405180910390fd5b611131338383611238565b611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790612d4f565b60405180910390fd5b82600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bf9190612ea3565b925050819055506111d03384611d39565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3384604051611201929190612c0f565b60405180910390a1505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000808460405160200161124c9190612b69565b6040516020818303038152906040528051906020012090506112b2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611d57565b9150509392505050565b6060600380546112cb90612fde565b80601f01602080910402602001604051908101604052809291908181526020018280546112f790612fde565b80156113445780601f1061131957610100808354040283529160200191611344565b820191906000526020600020905b81548152906001019060200180831161132757829003601f168201915b5050505050905090565b60016003811115611388577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff1660038111156113d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790612ccf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612d6f565b60405180910390fd5b60018161148a33611881565b6114949190612ea3565b11156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90612d0f565b60405180910390fd5b610bb8816114e1610928565b6114eb9190612ea3565b111561152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612dcf565b60405180910390fd5b6115363382611d39565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611567929190612c0f565b60405180910390a150565b61157a611a55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ec611a55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611699611a55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116de9190612c38565b60405180910390a35050565b600b6020528060005260406000206000915090505481565b61170d848484610957565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461176f5761173884848484611d6e565b61176e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611780826119f6565b6117b6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117c0611ece565b90506000815114156117e1576040518060200160405280600081525061180c565b806117eb84611f60565b6040516020016117fc929190612b84565b6040516020818303038152906040525b915050919050565b61181c611bf5565b610bb860c8611829610928565b6118339190612ea3565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90612dcf565b60405180910390fd5b61187f3360c8611d39565b565b600061188c82611fba565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61192f611bf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d2f565b60405180910390fd5b6119a881611c73565b50565b6119b3611bf5565b80600a819055507f0a4f0633a0220f10cb6a91b54a70b617fc8e7d9058980613784ec316d2ed91b3600a546040516119eb9190612c53565b60405180910390a150565b600081611a01611a5d565b11158015611a10575060005482105b8015611a4e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a71611a5d565b11611af957600054811015611af85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611af6575b6000811415611aec576004600083600190039350838152602001908152602001600020549050611ac1565b8092505050611b2b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bb3868684612011565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611bfd61201a565b73ffffffffffffffffffffffffffffffffffffffff16611c1b61120e565b73ffffffffffffffffffffffffffffffffffffffff1614611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890612d8f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d53828260405180602001604052806000815250612022565b5050565b600082611d6485846120bf565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d94611a55565b8786866040518563ffffffff1660e01b8152600401611db69493929190612bc3565b602060405180830381600087803b158015611dd057600080fd5b505af1925050508015611e0157506040513d601f19601f82011682018060405250810190611dfe91906127e4565b60015b611e7b573d8060008114611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b50600081511415611e73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611edd90612fde565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990612fde565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611fa657600183039250600a81066030018353600a81049050611f86565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61202c838361213b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120ba57600080549050600083820390505b61206c6000868380600101945086611d6e565b6120a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120595781600054146120b757600080fd5b50505b505050565b60008082905060005b84518110156121305761211b8286838151811061210e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161230f565b9150808061212890613041565b9150506120c8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f06000848385611b96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612267836122586000866000611b9c565b6122618561233a565b17611bc4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061228b5780600081905550505061230a6000848385611bef565b505050565b600081831061232757612322828461234a565b612332565b612331838361234a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b82805461236d90612fde565b90600052602060002090601f01602090048101928261238f57600085556123d6565b82601f106123a857803560ff19168380011785556123d6565b828001600101855582156123d6579182015b828111156123d55782358255916020019190600101906123ba565b5b5090506123e391906123e7565b5090565b5b808211156124005760008160009055506001016123e8565b5090565b600061241761241284612e2f565b612e0a565b90508281526020810184848401111561242f57600080fd5b61243a848285612f9c565b509392505050565b600081359050612451816133a5565b92915050565b60008083601f84011261246957600080fd5b8235905067ffffffffffffffff81111561248257600080fd5b60208301915083602082028301111561249a57600080fd5b9250929050565b6000813590506124b0816133bc565b92915050565b6000813590506124c5816133d3565b92915050565b6000813590506124da816133ea565b92915050565b6000815190506124ef816133ea565b92915050565b600082601f83011261250657600080fd5b8135612516848260208601612404565b91505092915050565b60008135905061252e81613401565b92915050565b60008083601f84011261254657600080fd5b8235905067ffffffffffffffff81111561255f57600080fd5b60208301915083600182028301111561257757600080fd5b9250929050565b60008135905061258d81613411565b92915050565b6000602082840312156125a557600080fd5b60006125b384828501612442565b91505092915050565b600080604083850312156125cf57600080fd5b60006125dd85828601612442565b92505060206125ee85828601612442565b9150509250929050565b60008060006060848603121561260d57600080fd5b600061261b86828701612442565b935050602061262c86828701612442565b925050604061263d8682870161257e565b9150509250925092565b6000806000806080858703121561265d57600080fd5b600061266b87828801612442565b945050602061267c87828801612442565b935050604061268d8782880161257e565b925050606085013567ffffffffffffffff8111156126aa57600080fd5b6126b6878288016124f5565b91505092959194509250565b6000806000604084860312156126d757600080fd5b60006126e586828701612442565b935050602084013567ffffffffffffffff81111561270257600080fd5b61270e86828701612457565b92509250509250925092565b6000806040838503121561272d57600080fd5b600061273b85828601612442565b925050602061274c858286016124a1565b9150509250929050565b6000806040838503121561276957600080fd5b600061277785828601612442565b92505060206127888582860161257e565b9150509250929050565b6000602082840312156127a457600080fd5b60006127b2848285016124b6565b91505092915050565b6000602082840312156127cd57600080fd5b60006127db848285016124cb565b91505092915050565b6000602082840312156127f657600080fd5b6000612804848285016124e0565b91505092915050565b60006020828403121561281f57600080fd5b600061282d8482850161251f565b91505092915050565b6000806020838503121561284957600080fd5b600083013567ffffffffffffffff81111561286357600080fd5b61286f85828601612534565b92509250509250929050565b60006020828403121561288d57600080fd5b600061289b8482850161257e565b91505092915050565b6000806000604084860312156128b957600080fd5b60006128c78682870161257e565b935050602084013567ffffffffffffffff8111156128e457600080fd5b6128f086828701612457565b92509250509250925092565b61290581612ef9565b82525050565b61291c61291782612ef9565b61308a565b82525050565b61292b81612f0b565b82525050565b61293a81612f17565b82525050565b600061294b82612e60565b6129558185612e76565b9350612965818560208601612fab565b61296e8161316a565b840191505092915050565b61298281612f8a565b82525050565b60006129948385612e87565b93506129a1838584612f9c565b6129aa8361316a565b840190509392505050565b60006129c082612e6b565b6129ca8185612e87565b93506129da818560208601612fab565b6129e38161316a565b840191505092915050565b60006129f982612e6b565b612a038185612e98565b9350612a13818560208601612fab565b80840191505092915050565b6000612a2c602083612e87565b9150612a3782613188565b602082019050919050565b6000612a4f602d83612e87565b9150612a5a826131b1565b604082019050919050565b6000612a72603083612e87565b9150612a7d82613200565b604082019050919050565b6000612a95602683612e87565b9150612aa08261324f565b604082019050919050565b6000612ab8601b83612e87565b9150612ac38261329e565b602082019050919050565b6000612adb601183612e87565b9150612ae6826132c7565b602082019050919050565b6000612afe602083612e87565b9150612b09826132f0565b602082019050919050565b6000612b21603483612e87565b9150612b2c82613319565b604082019050919050565b6000612b44601883612e87565b9150612b4f82613368565b602082019050919050565b612b6381612f80565b82525050565b6000612b75828461290b565b60148201915081905092915050565b6000612b9082856129ee565b9150612b9c82846129ee565b91508190509392505050565b6000602082019050612bbd60008301846128fc565b92915050565b6000608082019050612bd860008301876128fc565b612be560208301866128fc565b612bf26040830185612b5a565b8181036060830152612c048184612940565b905095945050505050565b6000604082019050612c2460008301856128fc565b612c316020830184612b5a565b9392505050565b6000602082019050612c4d6000830184612922565b92915050565b6000602082019050612c686000830184612931565b92915050565b6000602082019050612c836000830184612979565b92915050565b60006020820190508181036000830152612ca4818486612988565b90509392505050565b60006020820190508181036000830152612cc781846129b5565b905092915050565b60006020820190508181036000830152612ce881612a1f565b9050919050565b60006020820190508181036000830152612d0881612a42565b9050919050565b60006020820190508181036000830152612d2881612a65565b9050919050565b60006020820190508181036000830152612d4881612a88565b9050919050565b60006020820190508181036000830152612d6881612aab565b9050919050565b60006020820190508181036000830152612d8881612ace565b9050919050565b60006020820190508181036000830152612da881612af1565b9050919050565b60006020820190508181036000830152612dc881612b14565b9050919050565b60006020820190508181036000830152612de881612b37565b9050919050565b6000602082019050612e046000830184612b5a565b92915050565b6000612e14612e25565b9050612e208282613010565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4a57612e4961313b565b5b612e538261316a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eae82612f80565b9150612eb983612f80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eee57612eed6130ae565b5b828201905092915050565b6000612f0482612f60565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050612f5b82613391565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612f9582612f4d565b9050919050565b82818337600083830152505050565b60005b83811015612fc9578082015181840152602081019050612fae565b83811115612fd8576000848401525b50505050565b60006002820490506001821680612ff657607f821691505b6020821081141561300a5761300961310c565b5b50919050565b6130198261316a565b810181811067ffffffffffffffff821117156130385761303761313b565b5b80604052505050565b600061304c82612f80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561307f5761307e6130ae565b5b600182019050919050565b60006130958261309c565b9050919050565b60006130a78261317b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f53494d503a205075626c6963206d696e74206973206e6f74206163746976652e600082015250565b7f53494d503a20416c6c6f776c697374206d696e74206973206e6f74206163746960008201527f7665206f72207061737365642e00000000000000000000000000000000000000602082015250565b7f53494d503a204d6178207075626c6963206d696e7420616d6f756e742070657260008201527f2077616c6c657420657863656564656400000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53494d503a20496e76616c6964204d65726b6c652050726f6f662e0000000000600082015250565b7f53494d503a203f3f204e6f7420796f7521000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53494d503a204d617820616c6c6f776c697374206d696e7420616d6f756e742060008201527f7065722077616c6c65742065786365656465642e000000000000000000000000602082015250565b7f53494d503a20457863656564206d617820737570706c792e0000000000000000600082015250565b600481106133a2576133a16130dd565b5b50565b6133ae81612ef9565b81146133b957600080fd5b50565b6133c581612f0b565b81146133d057600080fd5b50565b6133dc81612f17565b81146133e757600080fd5b50565b6133f381612f21565b81146133fe57600080fd5b50565b6004811061340e57600080fd5b50565b61341a81612f80565b811461342557600080fd5b5056fea26469706673582212208fa659c36cfbbf519b67ad3a9b883164b7da43d004b2e2d07662558d2ba4381264736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d576963356838796172794e667843555350345853386136625867346f5371376b523361794571364741537a462f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmWic5h8yaryNfxCUSP4XS8a6bXg4oSq7kR3ayEq6GASzF/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d576963356838796172794e667843555350345853386136625867346f
Arg [4] : 5371376b523361794571364741537a462f000000000000000000000000000000


Deployed Bytecode Sourcemap

57332:3457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26945:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32592:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34538:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34086:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57675:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25999:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57568:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57479:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43803:2800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60332:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57623:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57534:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57730:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35428:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60466:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32381:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57506:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27624:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11536:103;;;:::i;:::-;;58826:856;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10888:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59690:276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32761:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58249:569;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34814:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57780:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35684:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32936:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59974:229;;;:::i;:::-;;60211:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35193:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11794:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60622:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26945:615;27030:4;27345:10;27330:25;;:11;:25;;;;:102;;;;27422:10;27407:25;;:11;:25;;;;27330:102;:179;;;;27499:10;27484:25;;:11;:25;;;;27330:179;27310:199;;26945:615;;;:::o;32592:100::-;32646:13;32679:5;32672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32592:100;:::o;34538:204::-;34606:7;34631:16;34639:7;34631;:16::i;:::-;34626:64;;34656:34;;;;;;;;;;;;;;34626:64;34710:15;:24;34726:7;34710:24;;;;;;;;;;;;;;;;;;;;;34703:31;;34538:204;;;:::o;34086:386::-;34159:13;34175:16;34183:7;34175;:16::i;:::-;34159:32;;34231:5;34208:28;;:19;:17;:19::i;:::-;:28;;;34204:175;;34256:44;34273:5;34280:19;:17;:19::i;:::-;34256:16;:44::i;:::-;34251:128;;34328:35;;;;;;;;;;;;;;34251:128;34204:175;34418:2;34391:15;:24;34407:7;34391:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34456:7;34452:2;34436:28;;34445:5;34436:28;;;;;;;;;;;;34086:386;;;:::o;57675:48::-;57722:1;57675:48;:::o;25999:315::-;26052:7;26280:15;:13;:15::i;:::-;26265:12;;26249:13;;:28;:46;26242:53;;25999:315;:::o;57568:48::-;57613:3;57568:48;:::o;57479:20::-;;;;;;;;;;;;;:::o;43803:2800::-;43937:27;43967;43986:7;43967:18;:27::i;:::-;43937:57;;44052:4;44011:45;;44027:19;44011:45;;;44007:86;;44065:28;;;;;;;;;;;;;;44007:86;44107:27;44136:23;44163:28;44183:7;44163:19;:28::i;:::-;44106:85;;;;44291:62;44310:15;44327:4;44333:19;:17;:19::i;:::-;44291:18;:62::i;:::-;44286:174;;44373:43;44390:4;44396:19;:17;:19::i;:::-;44373:16;:43::i;:::-;44368:92;;44425:35;;;;;;;;;;;;;;44368:92;44286:174;44491:1;44477:16;;:2;:16;;;44473:52;;;44502:23;;;;;;;;;;;;;;44473:52;44538:43;44560:4;44566:2;44570:7;44579:1;44538:21;:43::i;:::-;44674:15;44671:2;;;44814:1;44793:19;44786:30;44671:2;45209:18;:24;45228:4;45209:24;;;;;;;;;;;;;;;;45207:26;;;;;;;;;;;;45278:18;:22;45297:2;45278:22;;;;;;;;;;;;;;;;45276:24;;;;;;;;;;;45600:145;45637:2;45685:45;45700:4;45706:2;45710:19;45685:14;:45::i;:::-;23227:8;45658:72;45600:18;:145::i;:::-;45571:17;:26;45589:7;45571:26;;;;;;;;;;;:174;;;;45915:1;23227:8;45865:19;:46;:51;45861:626;;;45937:19;45969:1;45959:7;:11;45937:33;;46126:1;46092:17;:30;46110:11;46092:30;;;;;;;;;;;;:35;46088:384;;;46230:13;;46215:11;:28;46211:242;;46410:19;46377:17;:30;46395:11;46377:30;;;;;;;;;;;:52;;;;46211:242;46088:384;45861:626;;46534:7;46530:2;46515:27;;46524:4;46515:27;;;;;;;;;;;;46553:42;46574:4;46580:2;46584:7;46593:1;46553:20;:42::i;:::-;43803:2800;;;;;;:::o;60332:126::-;10774:13;:11;:13::i;:::-;60406:7:::1;60397:6;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60429:21;60443:6;;;;;;;;;;;60429:21;;;;;;:::i;:::-;;;;;;;;60332:126:::0;:::o;57623:45::-;57667:1;57623:45;:::o;57534:25::-;;;;:::o;57730:41::-;57767:4;57730:41;:::o;35428:185::-;35566:39;35583:4;35589:2;35593:7;35566:39;;;;;;;;;;;;:16;:39::i;:::-;35428:185;;;:::o;60466:148::-;10774:13;:11;:13::i;:::-;60554:10:::1;;60544:7;:20;;;;;;;:::i;:::-;;60580:26;60595:10;;60580:26;;;;;;;:::i;:::-;;;;;;;;60466:148:::0;;:::o;32381:144::-;32445:7;32488:27;32507:7;32488:18;:27::i;:::-;32465:52;;32381:144;;;:::o;57506:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27624:224::-;27688:7;27729:1;27712:19;;:5;:19;;;27708:60;;;27740:28;;;;;;;;;;;;;;27708:60;22179:13;27786:18;:25;27805:5;27786:25;;;;;;;;;;;;;;;;:54;27779:61;;27624:224;;;:::o;11536:103::-;10774:13;:11;:13::i;:::-;11601:30:::1;11628:1;11601:18;:30::i;:::-;11536:103::o:0;58826:856::-;58966:20;58956:30;;;;;;;;;;;;;;;;:6;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;58934:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;59091:10;59078:23;;:9;:23;;;59070:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57722:1;59180:8;59156:9;:21;59166:10;59156:21;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:56;;59134:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;57767:4;59341:8;59325:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;59303:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;59448:37;59460:10;59472:12;;59448:11;:37::i;:::-;59426:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;59578:8;59553:9;:21;59563:10;59553:21;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;59597:31;59607:10;59619:8;59597:9;:31::i;:::-;59646:28;59653:10;59665:8;59646:28;;;;;;;:::i;:::-;;;;;;;;58826:856;;;:::o;10888:87::-;10934:7;10961:6;;;;;;;;;;;10954:13;;10888:87;:::o;59690:276::-;59813:4;59835:12;59877:11;59860:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;59850:40;;;;;;59835:55;;59908:50;59927:12;;59908:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59941:10;;59953:4;59908:18;:50::i;:::-;59901:57;;;59690:276;;;;;:::o;32761:104::-;32817:13;32850:7;32843:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32761:104;:::o;58249:569::-;58319:14;58309:24;;;;;;;;;;;;;;;;:6;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;58301:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;58402:10;58389:23;;:9;:23;;;58381:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57667:1;58494:8;58467:24;58480:10;58467:12;:24::i;:::-;:35;;;;:::i;:::-;:56;;58445:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;57767:4;58648:8;58632:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;58610:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;58735:31;58745:10;58757:8;58735:9;:31::i;:::-;58782:28;58789:10;58801:8;58782:28;;;;;;;:::i;:::-;;;;;;;;58249:569;:::o;34814:308::-;34925:19;:17;:19::i;:::-;34913:31;;:8;:31;;;34909:61;;;34953:17;;;;;;;;;;;;;;34909:61;35035:8;34983:18;:39;35002:19;:17;:19::i;:::-;34983:39;;;;;;;;;;;;;;;:49;35023:8;34983:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35095:8;35059:55;;35074:19;:17;:19::i;:::-;35059:55;;;35105:8;35059:55;;;;;;:::i;:::-;;;;;;;;34814:308;;:::o;57780:44::-;;;;;;;;;;;;;;;;;:::o;35684:399::-;35851:31;35864:4;35870:2;35874:7;35851:12;:31::i;:::-;35915:1;35897:2;:14;;;:19;35893:183;;35936:56;35967:4;35973:2;35977:7;35986:5;35936:30;:56::i;:::-;35931:145;;36020:40;;;;;;;;;;;;;;35931:145;35893:183;35684:399;;;;:::o;32936:318::-;33009:13;33040:16;33048:7;33040;:16::i;:::-;33035:59;;33065:29;;;;;;;;;;;;;;33035:59;33107:21;33131:10;:8;:10::i;:::-;33107:34;;33184:1;33165:7;33159:21;:26;;:87;;;;;;;;;;;;;;;;;33212:7;33221:18;33231:7;33221:9;:18::i;:::-;33195:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33159:87;33152:94;;;32936:318;;;:::o;59974:229::-;10774:13;:11;:13::i;:::-;57767:4:::1;57613:3;60043:13;:11;:13::i;:::-;:34;;;;:::i;:::-;:48;;60021:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;60154:41;60164:10;57613:3;60154:9;:41::i;:::-;59974:229::o:0;60211:113::-;60269:7;60296:20;60310:5;60296:13;:20::i;:::-;60289:27;;60211:113;;;:::o;35193:164::-;35290:4;35314:18;:25;35333:5;35314:25;;;;;;;;;;;;;;;:35;35340:8;35314:35;;;;;;;;;;;;;;;;;;;;;;;;;35307:42;;35193:164;;;;:::o;11794:201::-;10774:13;:11;:13::i;:::-;11903:1:::1;11883:22;;:8;:22;;;;11875:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11959:28;11978:8;11959:18;:28::i;:::-;11794:201:::0;:::o;60622:164::-;10774:13;:11;:13::i;:::-;60718:11:::1;60705:10;:24;;;;60745:33;60767:10;;60745:33;;;;;;:::i;:::-;;;;;;;;60622:164:::0;:::o;36338:273::-;36395:4;36451:7;36432:15;:13;:15::i;:::-;:26;;:66;;;;;36485:13;;36475:7;:23;36432:66;:152;;;;;36583:1;22949:8;36536:17;:26;36554:7;36536:26;;;;;;;;;;;;:43;:48;36432:152;36412:172;;36338:273;;;:::o;54899:105::-;54959:7;54986:10;54979:17;;54899:105;:::o;25523:92::-;25579:7;25523:92;:::o;29298:1129::-;29365:7;29385:12;29400:7;29385:22;;29468:4;29449:15;:13;:15::i;:::-;:23;29445:915;;29502:13;;29495:4;:20;29491:869;;;29540:14;29557:17;:23;29575:4;29557:23;;;;;;;;;;;;29540:40;;29673:1;22949:8;29646:6;:23;:28;29642:699;;;30165:113;30182:1;30172:6;:11;30165:113;;;30225:17;:25;30243:6;;;;;;;30225:25;;;;;;;;;;;;30216:34;;30165:113;;;30311:6;30304:13;;;;;;29642:699;29491:869;;29445:915;30388:31;;;;;;;;;;;;;;29298:1129;;;;:::o;42139:652::-;42234:27;42263:23;42304:53;42360:15;42304:71;;42546:7;42540:4;42533:21;42581:22;42575:4;42568:36;42657:4;42651;42641:21;42618:44;;42753:19;42747:26;42728:45;;42484:300;;;;:::o;42904:645::-;43046:11;43208:15;43202:4;43198:26;43190:34;;43367:15;43356:9;43352:31;43339:44;;43514:15;43503:9;43500:30;43493:4;43482:9;43479:19;43476:55;43466:65;;43079:463;;;;;:::o;53732:159::-;;;;;:::o;52044:309::-;52179:7;52199:16;23350:3;52225:19;:40;;52199:67;;23350:3;52292:31;52303:4;52309:2;52313:9;52292:10;:31::i;:::-;52284:40;;:61;;52277:68;;;52044:309;;;;;:::o;31872:447::-;31952:14;32120:15;32113:5;32109:27;32100:36;;32294:5;32280:11;32256:22;32252:40;32249:51;32242:5;32239:62;32229:72;;31988:324;;;;:::o;54550:158::-;;;;;:::o;11053:132::-;11128:12;:10;:12::i;:::-;11117:23;;:7;:5;:7::i;:::-;:23;;;11109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11053:132::o;12155:191::-;12229:16;12248:6;;;;;;;;;;;12229:25;;12274:8;12265:6;;:17;;;;;;;;;;;;;;;;;;12329:8;12298:40;;12319:8;12298:40;;;;;;;;;;;;12155:191;;:::o;36695:104::-;36764:27;36774:2;36778:8;36764:27;;;;;;;;;;;;:9;:27::i;:::-;36695:104;;:::o;1254:190::-;1379:4;1432;1403:25;1416:5;1423:4;1403:12;:25::i;:::-;:33;1396:40;;1254:190;;;;;:::o;50554:716::-;50717:4;50763:2;50738:45;;;50784:19;:17;:19::i;:::-;50805:4;50811:7;50820:5;50738:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50734:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51038:1;51021:6;:13;:18;51017:235;;;51067:40;;;;;;;;;;;;;;51017:235;51210:6;51204:13;51195:6;51191:2;51187:15;51180:38;50734:529;50907:54;;;50897:64;;;:6;:64;;;;50890:71;;;50554:716;;;;;;:::o;58141:100::-;58193:13;58226:7;58219:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58141:100;:::o;55110:1960::-;55167:17;55586:3;55579:4;55573:11;55569:21;55562:28;;55677:3;55671:4;55664:17;55783:3;56239:5;56369:1;56364:3;56360:11;56353:18;;56506:2;56500:4;56496:13;56492:2;56488:22;56483:3;56475:36;56547:2;56541:4;56537:13;56529:21;;56131:697;56566:4;56131:697;;;56757:1;56752:3;56748:11;56741:18;;56808:2;56802:4;56798:13;56794:2;56790:22;56785:3;56777:36;56661:2;56655:4;56651:13;56643:21;;56131:697;;;56135:430;56867:3;56862;56858:13;56982:2;56977:3;56973:12;56966:19;;57045:6;57040:3;57033:19;55206:1857;;;;;:::o;27930:176::-;27991:7;22179:13;22316:2;28019:18;:25;28038:5;28019:25;;;;;;;;;;;;;;;;:49;;28018:80;28011:87;;27930:176;;;:::o;52929:147::-;53066:6;52929:147;;;;;:::o;9439:98::-;9492:7;9519:10;9512:17;;9439:98;:::o;37215:681::-;37338:19;37344:2;37348:8;37338:5;:19::i;:::-;37417:1;37399:2;:14;;;:19;37395:483;;37439:11;37453:13;;37439:27;;37485:13;37507:8;37501:3;:14;37485:30;;37534:233;37565:62;37604:1;37608:2;37612:7;;;;;;37621:5;37565:30;:62::i;:::-;37560:167;;37663:40;;;;;;;;;;;;;;37560:167;37762:3;37754:5;:11;37534:233;;37849:3;37832:13;;:20;37828:34;;37854:8;;;37828:34;37395:483;;;37215:681;;;:::o;2121:296::-;2204:7;2224:20;2247:4;2224:27;;2267:9;2262:118;2286:5;:12;2282:1;:16;2262:118;;;2335:33;2345:12;2359:5;2365:1;2359:8;;;;;;;;;;;;;;;;;;;;;;2335:9;:33::i;:::-;2320:48;;2300:3;;;;;:::i;:::-;;;;2262:118;;;;2397:12;2390:19;;;2121:296;;;;:::o;38169:1529::-;38234:20;38257:13;;38234:36;;38299:1;38285:16;;:2;:16;;;38281:48;;;38310:19;;;;;;;;;;;;;;38281:48;38356:1;38344:8;:13;38340:44;;;38366:18;;;;;;;;;;;;;;38340:44;38397:61;38427:1;38431:2;38435:12;38449:8;38397:21;:61::i;:::-;38940:1;22316:2;38911:1;:25;;38910:31;38898:8;:44;38872:18;:22;38891:2;38872:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;39219:139;39256:2;39310:33;39333:1;39337:2;39341:1;39310:14;:33::i;:::-;39277:30;39298:8;39277:20;:30::i;:::-;:66;39219:18;:139::i;:::-;39185:17;:31;39203:12;39185:31;;;;;;;;;;;:173;;;;39375:15;39393:12;39375:30;;39420:11;39449:8;39434:12;:23;39420:37;;39472:101;39524:9;;;;;;39520:2;39499:35;;39516:1;39499:35;;;;;;;;;;;;39568:3;39558:7;:13;39472:101;;39605:3;39589:13;:19;;;;38169:1529;;39630:60;39659:1;39663:2;39667:12;39681:8;39630:20;:60::i;:::-;38169:1529;;;:::o;8328:149::-;8391:7;8422:1;8418;:5;:51;;8449:20;8464:1;8467;8449:14;:20::i;:::-;8418:51;;;8426:20;8441:1;8444;8426:14;:20::i;:::-;8418:51;8411:58;;8328:149;;;;:::o;33702:322::-;33772:14;34003:1;33993:8;33990:15;33965:23;33961:45;33951:55;;33874:143;;;:::o;8485:268::-;8553:13;8660:1;8654:4;8647:15;8689:1;8683:4;8676:15;8730:4;8724;8714:21;8705:30;;8632:114;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:139::-;1076:5;1114:6;1101:20;1092:29;;1130:33;1157:5;1130:33;:::i;:::-;1082:87;;;;:::o;1175:137::-;1220:5;1258:6;1245:20;1236:29;;1274:32;1300:5;1274:32;:::i;:::-;1226:86;;;;:::o;1318:141::-;1374:5;1405:6;1399:13;1390:22;;1421:32;1447:5;1421:32;:::i;:::-;1380:79;;;;:::o;1478:271::-;1533:5;1582:3;1575:4;1567:6;1563:17;1559:27;1549:2;;1600:1;1597;1590:12;1549:2;1640:6;1627:20;1665:78;1739:3;1731:6;1724:4;1716:6;1712:17;1665:78;:::i;:::-;1656:87;;1539:210;;;;;:::o;1755:161::-;1812:5;1850:6;1837:20;1828:29;;1866:44;1904:5;1866:44;:::i;:::-;1818:98;;;;:::o;1936:352::-;1994:8;2004:6;2054:3;2047:4;2039:6;2035:17;2031:27;2021:2;;2072:1;2069;2062:12;2021:2;2108:6;2095:20;2085:30;;2138:18;2130:6;2127:30;2124:2;;;2170:1;2167;2160:12;2124:2;2207:4;2199:6;2195:17;2183:29;;2261:3;2253:4;2245:6;2241:17;2231:8;2227:32;2224:41;2221:2;;;2278:1;2275;2268:12;2221:2;2011:277;;;;;:::o;2294:139::-;2340:5;2378:6;2365:20;2356:29;;2394:33;2421:5;2394:33;:::i;:::-;2346:87;;;;:::o;2439:262::-;2498:6;2547:2;2535:9;2526:7;2522:23;2518:32;2515:2;;;2563:1;2560;2553:12;2515:2;2606:1;2631:53;2676:7;2667:6;2656:9;2652:22;2631:53;:::i;:::-;2621:63;;2577:117;2505:196;;;;:::o;2707:407::-;2775:6;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;2790:324;;;;;:::o;3120:552::-;3197:6;3205;3213;3262:2;3250:9;3241:7;3237:23;3233:32;3230:2;;;3278:1;3275;3268:12;3230:2;3321:1;3346:53;3391:7;3382:6;3371:9;3367:22;3346:53;:::i;:::-;3336:63;;3292:117;3448:2;3474:53;3519:7;3510:6;3499:9;3495:22;3474:53;:::i;:::-;3464:63;;3419:118;3576:2;3602:53;3647:7;3638:6;3627:9;3623:22;3602:53;:::i;:::-;3592:63;;3547:118;3220:452;;;;;:::o;3678:809::-;3773:6;3781;3789;3797;3846:3;3834:9;3825:7;3821:23;3817:33;3814:2;;;3863:1;3860;3853:12;3814:2;3906:1;3931:53;3976:7;3967:6;3956:9;3952:22;3931:53;:::i;:::-;3921:63;;3877:117;4033:2;4059:53;4104:7;4095:6;4084:9;4080:22;4059:53;:::i;:::-;4049:63;;4004:118;4161:2;4187:53;4232:7;4223:6;4212:9;4208:22;4187:53;:::i;:::-;4177:63;;4132:118;4317:2;4306:9;4302:18;4289:32;4348:18;4340:6;4337:30;4334:2;;;4380:1;4377;4370:12;4334:2;4408:62;4462:7;4453:6;4442:9;4438:22;4408:62;:::i;:::-;4398:72;;4260:220;3804:683;;;;;;;:::o;4493:570::-;4588:6;4596;4604;4653:2;4641:9;4632:7;4628:23;4624:32;4621:2;;;4669:1;4666;4659:12;4621:2;4712:1;4737:53;4782:7;4773:6;4762:9;4758:22;4737:53;:::i;:::-;4727:63;;4683:117;4867:2;4856:9;4852:18;4839:32;4898:18;4890:6;4887:30;4884:2;;;4930:1;4927;4920:12;4884:2;4966:80;5038:7;5029:6;5018:9;5014:22;4966:80;:::i;:::-;4948:98;;;;4810:246;4611:452;;;;;:::o;5069:401::-;5134:6;5142;5191:2;5179:9;5170:7;5166:23;5162:32;5159:2;;;5207:1;5204;5197:12;5159:2;5250:1;5275:53;5320:7;5311:6;5300:9;5296:22;5275:53;:::i;:::-;5265:63;;5221:117;5377:2;5403:50;5445:7;5436:6;5425:9;5421:22;5403:50;:::i;:::-;5393:60;;5348:115;5149:321;;;;;:::o;5476:407::-;5544:6;5552;5601:2;5589:9;5580:7;5576:23;5572:32;5569:2;;;5617:1;5614;5607:12;5569:2;5660:1;5685:53;5730:7;5721:6;5710:9;5706:22;5685:53;:::i;:::-;5675:63;;5631:117;5787:2;5813:53;5858:7;5849:6;5838:9;5834:22;5813:53;:::i;:::-;5803:63;;5758:118;5559:324;;;;;:::o;5889:262::-;5948:6;5997:2;5985:9;5976:7;5972:23;5968:32;5965:2;;;6013:1;6010;6003:12;5965:2;6056:1;6081:53;6126:7;6117:6;6106:9;6102:22;6081:53;:::i;:::-;6071:63;;6027:117;5955:196;;;;:::o;6157:260::-;6215:6;6264:2;6252:9;6243:7;6239:23;6235:32;6232:2;;;6280:1;6277;6270:12;6232:2;6323:1;6348:52;6392:7;6383:6;6372:9;6368:22;6348:52;:::i;:::-;6338:62;;6294:116;6222:195;;;;:::o;6423:282::-;6492:6;6541:2;6529:9;6520:7;6516:23;6512:32;6509:2;;;6557:1;6554;6547:12;6509:2;6600:1;6625:63;6680:7;6671:6;6660:9;6656:22;6625:63;:::i;:::-;6615:73;;6571:127;6499:206;;;;:::o;6711:284::-;6781:6;6830:2;6818:9;6809:7;6805:23;6801:32;6798:2;;;6846:1;6843;6836:12;6798:2;6889:1;6914:64;6970:7;6961:6;6950:9;6946:22;6914:64;:::i;:::-;6904:74;;6860:128;6788:207;;;;:::o;7001:395::-;7072:6;7080;7129:2;7117:9;7108:7;7104:23;7100:32;7097:2;;;7145:1;7142;7135:12;7097:2;7216:1;7205:9;7201:17;7188:31;7246:18;7238:6;7235:30;7232:2;;;7278:1;7275;7268:12;7232:2;7314:65;7371:7;7362:6;7351:9;7347:22;7314:65;:::i;:::-;7296:83;;;;7159:230;7087:309;;;;;:::o;7402:262::-;7461:6;7510:2;7498:9;7489:7;7485:23;7481:32;7478:2;;;7526:1;7523;7516:12;7478:2;7569:1;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7540:117;7468:196;;;;:::o;7670:570::-;7765:6;7773;7781;7830:2;7818:9;7809:7;7805:23;7801:32;7798:2;;;7846:1;7843;7836:12;7798:2;7889:1;7914:53;7959:7;7950:6;7939:9;7935:22;7914:53;:::i;:::-;7904:63;;7860:117;8044:2;8033:9;8029:18;8016:32;8075:18;8067:6;8064:30;8061:2;;;8107:1;8104;8097:12;8061:2;8143:80;8215:7;8206:6;8195:9;8191:22;8143:80;:::i;:::-;8125:98;;;;7987:246;7788:452;;;;;:::o;8246:118::-;8333:24;8351:5;8333:24;:::i;:::-;8328:3;8321:37;8311:53;;:::o;8370:157::-;8475:45;8495:24;8513:5;8495:24;:::i;:::-;8475:45;:::i;:::-;8470:3;8463:58;8453:74;;:::o;8533:109::-;8614:21;8629:5;8614:21;:::i;:::-;8609:3;8602:34;8592:50;;:::o;8648:118::-;8735:24;8753:5;8735:24;:::i;:::-;8730:3;8723:37;8713:53;;:::o;8772:360::-;8858:3;8886:38;8918:5;8886:38;:::i;:::-;8940:70;9003:6;8998:3;8940:70;:::i;:::-;8933:77;;9019:52;9064:6;9059:3;9052:4;9045:5;9041:16;9019:52;:::i;:::-;9096:29;9118:6;9096:29;:::i;:::-;9091:3;9087:39;9080:46;;8862:270;;;;;:::o;9138:149::-;9234:46;9274:5;9234:46;:::i;:::-;9229:3;9222:59;9212:75;;:::o;9317:304::-;9415:3;9436:71;9500:6;9495:3;9436:71;:::i;:::-;9429:78;;9517:43;9553:6;9548:3;9541:5;9517:43;:::i;:::-;9585:29;9607:6;9585:29;:::i;:::-;9580:3;9576:39;9569:46;;9419:202;;;;;:::o;9627:364::-;9715:3;9743:39;9776:5;9743:39;:::i;:::-;9798:71;9862:6;9857:3;9798:71;:::i;:::-;9791:78;;9878:52;9923:6;9918:3;9911:4;9904:5;9900:16;9878:52;:::i;:::-;9955:29;9977:6;9955:29;:::i;:::-;9950:3;9946:39;9939:46;;9719:272;;;;;:::o;9997:377::-;10103:3;10131:39;10164:5;10131:39;:::i;:::-;10186:89;10268:6;10263:3;10186:89;:::i;:::-;10179:96;;10284:52;10329:6;10324:3;10317:4;10310:5;10306:16;10284:52;:::i;:::-;10361:6;10356:3;10352:16;10345:23;;10107:267;;;;;:::o;10380:366::-;10522:3;10543:67;10607:2;10602:3;10543:67;:::i;:::-;10536:74;;10619:93;10708:3;10619:93;:::i;:::-;10737:2;10732:3;10728:12;10721:19;;10526:220;;;:::o;10752:366::-;10894:3;10915:67;10979:2;10974:3;10915:67;:::i;:::-;10908:74;;10991:93;11080:3;10991:93;:::i;:::-;11109:2;11104:3;11100:12;11093:19;;10898:220;;;:::o;11124:366::-;11266:3;11287:67;11351:2;11346:3;11287:67;:::i;:::-;11280:74;;11363:93;11452:3;11363:93;:::i;:::-;11481:2;11476:3;11472:12;11465:19;;11270:220;;;:::o;11496:366::-;11638:3;11659:67;11723:2;11718:3;11659:67;:::i;:::-;11652:74;;11735:93;11824:3;11735:93;:::i;:::-;11853:2;11848:3;11844:12;11837:19;;11642:220;;;:::o;11868:366::-;12010:3;12031:67;12095:2;12090:3;12031:67;:::i;:::-;12024:74;;12107:93;12196:3;12107:93;:::i;:::-;12225:2;12220:3;12216:12;12209:19;;12014:220;;;:::o;12240:366::-;12382:3;12403:67;12467:2;12462:3;12403:67;:::i;:::-;12396:74;;12479:93;12568:3;12479:93;:::i;:::-;12597:2;12592:3;12588:12;12581:19;;12386:220;;;:::o;12612:366::-;12754:3;12775:67;12839:2;12834:3;12775:67;:::i;:::-;12768:74;;12851:93;12940:3;12851:93;:::i;:::-;12969:2;12964:3;12960:12;12953:19;;12758:220;;;:::o;12984:366::-;13126:3;13147:67;13211:2;13206:3;13147:67;:::i;:::-;13140:74;;13223:93;13312:3;13223:93;:::i;:::-;13341:2;13336:3;13332:12;13325:19;;13130:220;;;:::o;13356:366::-;13498:3;13519:67;13583:2;13578:3;13519:67;:::i;:::-;13512:74;;13595:93;13684:3;13595:93;:::i;:::-;13713:2;13708:3;13704:12;13697:19;;13502:220;;;:::o;13728:118::-;13815:24;13833:5;13815:24;:::i;:::-;13810:3;13803:37;13793:53;;:::o;13852:256::-;13964:3;13979:75;14050:3;14041:6;13979:75;:::i;:::-;14079:2;14074:3;14070:12;14063:19;;14099:3;14092:10;;13968:140;;;;:::o;14114:435::-;14294:3;14316:95;14407:3;14398:6;14316:95;:::i;:::-;14309:102;;14428:95;14519:3;14510:6;14428:95;:::i;:::-;14421:102;;14540:3;14533:10;;14298:251;;;;;:::o;14555:222::-;14648:4;14686:2;14675:9;14671:18;14663:26;;14699:71;14767:1;14756:9;14752:17;14743:6;14699:71;:::i;:::-;14653:124;;;;:::o;14783:640::-;14978:4;15016:3;15005:9;15001:19;14993:27;;15030:71;15098:1;15087:9;15083:17;15074:6;15030:71;:::i;:::-;15111:72;15179:2;15168:9;15164:18;15155:6;15111:72;:::i;:::-;15193;15261:2;15250:9;15246:18;15237:6;15193:72;:::i;:::-;15312:9;15306:4;15302:20;15297:2;15286:9;15282:18;15275:48;15340:76;15411:4;15402:6;15340:76;:::i;:::-;15332:84;;14983:440;;;;;;;:::o;15429:332::-;15550:4;15588:2;15577:9;15573:18;15565:26;;15601:71;15669:1;15658:9;15654:17;15645:6;15601:71;:::i;:::-;15682:72;15750:2;15739:9;15735:18;15726:6;15682:72;:::i;:::-;15555:206;;;;;:::o;15767:210::-;15854:4;15892:2;15881:9;15877:18;15869:26;;15905:65;15967:1;15956:9;15952:17;15943:6;15905:65;:::i;:::-;15859:118;;;;:::o;15983:222::-;16076:4;16114:2;16103:9;16099:18;16091:26;;16127:71;16195:1;16184:9;16180:17;16171:6;16127:71;:::i;:::-;16081:124;;;;:::o;16211:240::-;16313:4;16351:2;16340:9;16336:18;16328:26;;16364:80;16441:1;16430:9;16426:17;16417:6;16364:80;:::i;:::-;16318:133;;;;:::o;16457:333::-;16580:4;16618:2;16607:9;16603:18;16595:26;;16667:9;16661:4;16657:20;16653:1;16642:9;16638:17;16631:47;16695:88;16778:4;16769:6;16761;16695:88;:::i;:::-;16687:96;;16585:205;;;;;:::o;16796:313::-;16909:4;16947:2;16936:9;16932:18;16924:26;;16996:9;16990:4;16986:20;16982:1;16971:9;16967:17;16960:47;17024:78;17097:4;17088:6;17024:78;:::i;:::-;17016:86;;16914:195;;;;:::o;17115:419::-;17281:4;17319:2;17308:9;17304:18;17296:26;;17368:9;17362:4;17358:20;17354:1;17343:9;17339:17;17332:47;17396:131;17522:4;17396:131;:::i;:::-;17388:139;;17286:248;;;:::o;17540:419::-;17706:4;17744:2;17733:9;17729:18;17721:26;;17793:9;17787:4;17783:20;17779:1;17768:9;17764:17;17757:47;17821:131;17947:4;17821:131;:::i;:::-;17813:139;;17711:248;;;:::o;17965:419::-;18131:4;18169:2;18158:9;18154:18;18146:26;;18218:9;18212:4;18208:20;18204:1;18193:9;18189:17;18182:47;18246:131;18372:4;18246:131;:::i;:::-;18238:139;;18136:248;;;:::o;18390:419::-;18556:4;18594:2;18583:9;18579:18;18571:26;;18643:9;18637:4;18633:20;18629:1;18618:9;18614:17;18607:47;18671:131;18797:4;18671:131;:::i;:::-;18663:139;;18561:248;;;:::o;18815:419::-;18981:4;19019:2;19008:9;19004:18;18996:26;;19068:9;19062:4;19058:20;19054:1;19043:9;19039:17;19032:47;19096:131;19222:4;19096:131;:::i;:::-;19088:139;;18986:248;;;:::o;19240:419::-;19406:4;19444:2;19433:9;19429:18;19421:26;;19493:9;19487:4;19483:20;19479:1;19468:9;19464:17;19457:47;19521:131;19647:4;19521:131;:::i;:::-;19513:139;;19411:248;;;:::o;19665:419::-;19831:4;19869:2;19858:9;19854:18;19846:26;;19918:9;19912:4;19908:20;19904:1;19893:9;19889:17;19882:47;19946:131;20072:4;19946:131;:::i;:::-;19938:139;;19836:248;;;:::o;20090:419::-;20256:4;20294:2;20283:9;20279:18;20271:26;;20343:9;20337:4;20333:20;20329:1;20318:9;20314:17;20307:47;20371:131;20497:4;20371:131;:::i;:::-;20363:139;;20261:248;;;:::o;20515:419::-;20681:4;20719:2;20708:9;20704:18;20696:26;;20768:9;20762:4;20758:20;20754:1;20743:9;20739:17;20732:47;20796:131;20922:4;20796:131;:::i;:::-;20788:139;;20686:248;;;:::o;20940:222::-;21033:4;21071:2;21060:9;21056:18;21048:26;;21084:71;21152:1;21141:9;21137:17;21128:6;21084:71;:::i;:::-;21038:124;;;;:::o;21168:129::-;21202:6;21229:20;;:::i;:::-;21219:30;;21258:33;21286:4;21278:6;21258:33;:::i;:::-;21209:88;;;:::o;21303:75::-;21336:6;21369:2;21363:9;21353:19;;21343:35;:::o;21384:307::-;21445:4;21535:18;21527:6;21524:30;21521:2;;;21557:18;;:::i;:::-;21521:2;21595:29;21617:6;21595:29;:::i;:::-;21587:37;;21679:4;21673;21669:15;21661:23;;21450:241;;;:::o;21697:98::-;21748:6;21782:5;21776:12;21766:22;;21755:40;;;:::o;21801:99::-;21853:6;21887:5;21881:12;21871:22;;21860:40;;;:::o;21906:168::-;21989:11;22023:6;22018:3;22011:19;22063:4;22058:3;22054:14;22039:29;;22001:73;;;;:::o;22080:169::-;22164:11;22198:6;22193:3;22186:19;22238:4;22233:3;22229:14;22214:29;;22176:73;;;;:::o;22255:148::-;22357:11;22394:3;22379:18;;22369:34;;;;:::o;22409:305::-;22449:3;22468:20;22486:1;22468:20;:::i;:::-;22463:25;;22502:20;22520:1;22502:20;:::i;:::-;22497:25;;22656:1;22588:66;22584:74;22581:1;22578:81;22575:2;;;22662:18;;:::i;:::-;22575:2;22706:1;22703;22699:9;22692:16;;22453:261;;;;:::o;22720:96::-;22757:7;22786:24;22804:5;22786:24;:::i;:::-;22775:35;;22765:51;;;:::o;22822:90::-;22856:7;22899:5;22892:13;22885:21;22874:32;;22864:48;;;:::o;22918:77::-;22955:7;22984:5;22973:16;;22963:32;;;:::o;23001:149::-;23037:7;23077:66;23070:5;23066:78;23055:89;;23045:105;;;:::o;23156:133::-;23204:7;23233:5;23222:16;;23239:44;23277:5;23239:44;:::i;:::-;23212:77;;;:::o;23295:126::-;23332:7;23372:42;23365:5;23361:54;23350:65;;23340:81;;;:::o;23427:77::-;23464:7;23493:5;23482:16;;23472:32;;;:::o;23510:133::-;23569:9;23602:35;23631:5;23602:35;:::i;:::-;23589:48;;23579:64;;;:::o;23649:154::-;23733:6;23728:3;23723;23710:30;23795:1;23786:6;23781:3;23777:16;23770:27;23700:103;;;:::o;23809:307::-;23877:1;23887:113;23901:6;23898:1;23895:13;23887:113;;;23986:1;23981:3;23977:11;23971:18;23967:1;23962:3;23958:11;23951:39;23923:2;23920:1;23916:10;23911:15;;23887:113;;;24018:6;24015:1;24012:13;24009:2;;;24098:1;24089:6;24084:3;24080:16;24073:27;24009:2;23858:258;;;;:::o;24122:320::-;24166:6;24203:1;24197:4;24193:12;24183:22;;24250:1;24244:4;24240:12;24271:18;24261:2;;24327:4;24319:6;24315:17;24305:27;;24261:2;24389;24381:6;24378:14;24358:18;24355:38;24352:2;;;24408:18;;:::i;:::-;24352:2;24173:269;;;;:::o;24448:281::-;24531:27;24553:4;24531:27;:::i;:::-;24523:6;24519:40;24661:6;24649:10;24646:22;24625:18;24613:10;24610:34;24607:62;24604:2;;;24672:18;;:::i;:::-;24604:2;24712:10;24708:2;24701:22;24491:238;;;:::o;24735:233::-;24774:3;24797:24;24815:5;24797:24;:::i;:::-;24788:33;;24843:66;24836:5;24833:77;24830:2;;;24913:18;;:::i;:::-;24830:2;24960:1;24953:5;24949:13;24942:20;;24778:190;;;:::o;24974:100::-;25013:7;25042:26;25062:5;25042:26;:::i;:::-;25031:37;;25021:53;;;:::o;25080:94::-;25119:7;25148:20;25162:5;25148:20;:::i;:::-;25137:31;;25127:47;;;:::o;25180:180::-;25228:77;25225:1;25218:88;25325:4;25322:1;25315:15;25349:4;25346:1;25339:15;25366:180;25414:77;25411:1;25404:88;25511:4;25508:1;25501:15;25535:4;25532:1;25525:15;25552:180;25600:77;25597:1;25590:88;25697:4;25694:1;25687:15;25721:4;25718:1;25711:15;25738:180;25786:77;25783:1;25776:88;25883:4;25880:1;25873:15;25907:4;25904:1;25897:15;25924:102;25965:6;26016:2;26012:7;26007:2;26000:5;25996:14;25992:28;25982:38;;25972:54;;;:::o;26032:94::-;26065:8;26113:5;26109:2;26105:14;26084:35;;26074:52;;;:::o;26132:182::-;26272:34;26268:1;26260:6;26256:14;26249:58;26238:76;:::o;26320:232::-;26460:34;26456:1;26448:6;26444:14;26437:58;26529:15;26524:2;26516:6;26512:15;26505:40;26426:126;:::o;26558:235::-;26698:34;26694:1;26686:6;26682:14;26675:58;26767:18;26762:2;26754:6;26750:15;26743:43;26664:129;:::o;26799:225::-;26939:34;26935:1;26927:6;26923:14;26916:58;27008:8;27003:2;26995:6;26991:15;26984:33;26905:119;:::o;27030:177::-;27170:29;27166:1;27158:6;27154:14;27147:53;27136:71;:::o;27213:167::-;27353:19;27349:1;27341:6;27337:14;27330:43;27319:61;:::o;27386:182::-;27526:34;27522:1;27514:6;27510:14;27503:58;27492:76;:::o;27574:239::-;27714:34;27710:1;27702:6;27698:14;27691:58;27783:22;27778:2;27770:6;27766:15;27759:47;27680:133;:::o;27819:174::-;27959:26;27955:1;27947:6;27943:14;27936:50;27925:68;:::o;27999:116::-;28083:1;28076:5;28073:12;28063:2;;28089:18;;:::i;:::-;28063:2;28053:62;:::o;28121:122::-;28194:24;28212:5;28194:24;:::i;:::-;28187:5;28184:35;28174:2;;28233:1;28230;28223:12;28174:2;28164:79;:::o;28249:116::-;28319:21;28334:5;28319:21;:::i;:::-;28312:5;28309:32;28299:2;;28355:1;28352;28345:12;28299:2;28289:76;:::o;28371:122::-;28444:24;28462:5;28444:24;:::i;:::-;28437:5;28434:35;28424:2;;28483:1;28480;28473:12;28424:2;28414:79;:::o;28499:120::-;28571:23;28588:5;28571:23;:::i;:::-;28564:5;28561:34;28551:2;;28609:1;28606;28599:12;28551:2;28541:78;:::o;28625:110::-;28709:1;28702:5;28699:12;28689:2;;28725:1;28722;28715:12;28689:2;28679:56;:::o;28741:122::-;28814:24;28832:5;28814:24;:::i;:::-;28807:5;28804:35;28794:2;;28853:1;28850;28843:12;28794:2;28784:79;:::o

Swarm Source

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