ETH Price: $3,374.40 (-3.13%)
Gas: 4 Gwei

Token

BONK Flower (BF)
 

Overview

Max Total Supply

1,000 BF

Holders

369

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BF
0xc822ef4ad884fe13a48648385f2201d4b86fb073
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:
BonkFlowerNFT

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 2023-04-11
*/

// File: contracts/assets/IOperatorFilterRegistry.sol


pragma solidity ^0.8.2;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/assets/OperatorFilterer.sol


pragma solidity ^0.8.2;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/assets/IERC721A.sol


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

pragma solidity ^0.8.4;

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// File: contracts/assets/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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.
                // The ASCII index of the '0' character is 48.
                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/BONKFlowerNFT.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;








contract BonkFlowerNFT is ERC721A, Ownable, ERC2981,OperatorFilterer{
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;
  
    uint256 public constant maxSupply = 1000;
    uint256 public  maxMintAmount = 1;
    mapping(address => uint256) public tokensMintedPerAddress; 
    string private baseTokenUri;
    address private signerAddress;
    bool public paused = false;
    bool public checkWhitelist = true;
    bool public isRevealed=false;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        address _signerAddress
    )   ERC721A(_name, _symbol)
        OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true)
    {
        setBaseURI(_initBaseURI);
        setSignerAddresss(_signerAddress);
    }

    function verifyAddressSigner(bytes memory signature,address _to) private view returns (bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(checkWhitelist ? _to : signerAddress ));
        return signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
    }

    function mint(uint256 _quantity,bytes memory _signature) public  {
        require(verifyAddressSigner(_signature,msg.sender), "SIGNATURE_VALIDATION_FAILED");
        require(!paused, "Not Yet Active.");
        require(tokensMintedPerAddress[msg.sender] + _quantity <= maxMintAmount ,"Beyond Max Mint");
        require((totalSupply() + _quantity) <= maxSupply, "Beyond Max Supply");
        
        tokensMintedPerAddress[msg.sender]  += _quantity;

        _safeMint(msg.sender, _quantity);
    }

    function mMint(address _to,uint256 _quantity) public onlyOwner {
      require(totalSupply() + _quantity <= maxSupply, "Beyond Max Supply");
      _safeMint(_to, _quantity);
    }

    function reveal(string memory _updatedTokenURI) public onlyOwner {
        require(!isRevealed,"IsAlreadyUnveiled") ;
        baseTokenUri = _updatedTokenURI;
        isRevealed = true;
    }

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

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    function setBaseURI(string memory _baseTokenUri) public onlyOwner{
        baseTokenUri = _baseTokenUri;
    }

    function togglePause() external onlyOwner{
        paused = !paused;
    }

    function toggleCheckWhitelist() external onlyOwner{
        checkWhitelist = !checkWhitelist;
    }
    
    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setSignerAddresss(address _newSignerAddress) public onlyOwner {
        signerAddress = _newSignerAddress;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    function setDefaultRoyalty(address receiver,uint96 feeNumerator) external onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function withdraw() public onlyOwner {
     require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_signerAddress","type":"address"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newSignerAddress","type":"address"}],"name":"setSignerAddresss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleCheckWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensMintedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600b556000600e60146101000a81548160ff0219169083151502179055506001600e60156101000a81548160ff0219169083151502179055506000600e60166101000a81548160ff0219169083151502179055503480156200006757600080fd5b5060405162004e8838038062004e8883398181016040528101906200008d9190620006eb565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600185858160029080519060200190620000be929190620005b2565b508060039080519060200190620000d7929190620005b2565b50620000e86200033360201b60201c565b600081905550505062000110620001046200033c60201b60201c565b6200034460201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000305578015620001cb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000191929190620007f7565b600060405180830381600087803b158015620001ac57600080fd5b505af1158015620001c1573d6000803e3d6000fd5b5050505062000304565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000285576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200024b929190620007f7565b600060405180830381600087803b1580156200026657600080fd5b505af11580156200027b573d6000803e3d6000fd5b5050505062000303565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ce9190620007da565b600060405180830381600087803b158015620002e957600080fd5b505af1158015620002fe573d6000803e3d6000fd5b505050505b5b5b505062000318826200040a60201b60201c565b6200032981620004b560201b60201c565b5050505062000a3e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200041a6200033c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004406200058860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004909062000824565b60405180910390fd5b80600d9080519060200190620004b1929190620005b2565b5050565b620004c56200033c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004eb6200058860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000544576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053b9062000824565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005c09062000920565b90600052602060002090601f016020900481019282620005e4576000855562000630565b82601f10620005ff57805160ff191683800117855562000630565b8280016001018555821562000630579182015b828111156200062f57825182559160200191906001019062000612565b5b5090506200063f919062000643565b5090565b5b808211156200065e57600081600090555060010162000644565b5090565b60006200067962000673846200086f565b62000846565b9050828152602081018484840111156200069257600080fd5b6200069f848285620008ea565b509392505050565b600081519050620006b88162000a24565b92915050565b600082601f830112620006d057600080fd5b8151620006e284826020860162000662565b91505092915050565b600080600080608085870312156200070257600080fd5b600085015167ffffffffffffffff8111156200071d57600080fd5b6200072b87828801620006be565b945050602085015167ffffffffffffffff8111156200074957600080fd5b6200075787828801620006be565b935050604085015167ffffffffffffffff8111156200077557600080fd5b6200078387828801620006be565b92505060606200079687828801620006a7565b91505092959194509250565b620007ad81620008b6565b82525050565b6000620007c2602083620008a5565b9150620007cf82620009fb565b602082019050919050565b6000602082019050620007f16000830184620007a2565b92915050565b60006040820190506200080e6000830185620007a2565b6200081d6020830184620007a2565b9392505050565b600060208201905081810360008301526200083f81620007b3565b9050919050565b60006200085262000865565b905062000860828262000956565b919050565b6000604051905090565b600067ffffffffffffffff8211156200088d576200088c620009bb565b5b6200089882620009ea565b9050602081019050919050565b600082825260208201905092915050565b6000620008c382620008ca565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200090a578082015181840152602081019050620008ed565b838111156200091a576000848401525b50505050565b600060028204905060018216806200093957607f821691505b6020821081141562000950576200094f6200098c565b5b50919050565b6200096182620009ea565b810181811067ffffffffffffffff82111715620009835762000982620009bb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000a2f81620008b6565b811462000a3b57600080fd5b50565b61443a8062000a4e6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806355f804b311610125578063b88d4fde116100ad578063d5abeb011161007c578063d5abeb01146105c7578063db7fd408146105e5578063dd4aa59c14610601578063e985e9c51461060b578063f2fde38b1461063b57610211565b8063b88d4fde14610555578063c4ae316814610571578063c87b56dd1461057b578063ca07aed6146105ab57610211565b8063715018a6116100f4578063715018a6146104c35780637c735d44146104cd5780638da5cb5b146104fd57806395d89b411461051b578063a22cb4651461053957610211565b806355f804b3146104295780635c975abb146104455780636352211e1461046357806370a082311461049357610211565b8063239c70ae116101a857806341f434341161017757806341f434341461039957806342842e0e146103b75780634c261247146103d35780634d7bde6e146103ef57806354214f691461040b57610211565b8063239c70ae1461032457806323b872dd146103425780632a55205a1461035e5780633ccfd60b1461038f57610211565b8063081812fc116101e4578063081812fc1461029e578063088a4ed0146102ce578063095ea7b3146102ea57806318160ddd1461030657610211565b806301ffc9a71461021657806304634d8d1461024657806306f2057a1461026257806306fdde0314610280575b600080fd5b610230600480360381019061022b91906133bf565b610657565b60405161023d919061398b565b60405180910390f35b610260600480360381019061025b919061335a565b610679565b005b61026a610703565b604051610277919061398b565b60405180910390f35b610288610716565b6040516102959190613a06565b60405180910390f35b6102b860048036038101906102b39190613452565b6107a8565b6040516102c591906138d2565b60405180910390f35b6102e860048036038101906102e39190613452565b610827565b005b61030460048036038101906102ff919061331e565b6108ad565b005b61030e6108c6565b60405161031b9190613bc8565b60405180910390f35b61032c6108dd565b6040516103399190613bc8565b60405180910390f35b61035c60048036038101906103579190613218565b6108e3565b005b610378600480360381019061037391906134cf565b610932565b604051610386929190613962565b60405180910390f35b610397610b1d565b005b6103a1610bd9565b6040516103ae91906139eb565b60405180910390f35b6103d160048036038101906103cc9190613218565b610beb565b005b6103ed60048036038101906103e89190613411565b610c3a565b005b610409600480360381019061040491906131b3565b610d3b565b005b610413610dfb565b604051610420919061398b565b60405180910390f35b610443600480360381019061043e9190613411565b610e0e565b005b61044d610ea4565b60405161045a919061398b565b60405180910390f35b61047d60048036038101906104789190613452565b610eb7565b60405161048a91906138d2565b60405180910390f35b6104ad60048036038101906104a891906131b3565b610ec9565b6040516104ba9190613bc8565b60405180910390f35b6104cb610f82565b005b6104e760048036038101906104e291906131b3565b61100a565b6040516104f49190613bc8565b60405180910390f35b610505611022565b60405161051291906138d2565b60405180910390f35b61052361104c565b6040516105309190613a06565b60405180910390f35b610553600480360381019061054e91906132e2565b6110de565b005b61056f600480360381019061056a9190613267565b6110f7565b005b610579611148565b005b61059560048036038101906105909190613452565b6111f0565b6040516105a29190613a06565b60405180910390f35b6105c560048036038101906105c0919061331e565b611298565b005b6105cf611379565b6040516105dc9190613bc8565b60405180910390f35b6105ff60048036038101906105fa919061347b565b61137f565b005b610609611562565b005b610625600480360381019061062091906131dc565b61160a565b604051610632919061398b565b60405180910390f35b610655600480360381019061065091906131b3565b61169e565b005b600061066282611796565b80610672575061067182611828565b5b9050919050565b6106816118a2565b73ffffffffffffffffffffffffffffffffffffffff1661069f611022565b73ffffffffffffffffffffffffffffffffffffffff16146106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec90613b08565b60405180910390fd5b6106ff82826118aa565b5050565b600e60159054906101000a900460ff1681565b60606002805461072590613ee0565b80601f016020809104026020016040519081016040528092919081815260200182805461075190613ee0565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b60006107b382611a40565b6107e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61082f6118a2565b73ffffffffffffffffffffffffffffffffffffffff1661084d611022565b73ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613b08565b60405180910390fd5b80600b8190555050565b816108b781611a9f565b6108c18383611bab565b505050565b60006108d0611cef565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109215761092033611a9f565b5b61092c848484611cf8565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ac85760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ad261201d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610afe9190613d49565b610b089190613d18565b90508160000151819350935050509250929050565b610b256118a2565b73ffffffffffffffffffffffffffffffffffffffff16610b43611022565b73ffffffffffffffffffffffffffffffffffffffff1614610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090613b08565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bd757600080fd5b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2957610c2833611a9f565b5b610c34848484612027565b50505050565b610c426118a2565b73ffffffffffffffffffffffffffffffffffffffff16610c60611022565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613b08565b60405180910390fd5b600e60169054906101000a900460ff1615610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613a48565b60405180910390fd5b80600d9080519060200190610d1c929190612fad565b506001600e60166101000a81548160ff02191690831515021790555050565b610d436118a2565b73ffffffffffffffffffffffffffffffffffffffff16610d61611022565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613b08565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60169054906101000a900460ff1681565b610e166118a2565b73ffffffffffffffffffffffffffffffffffffffff16610e34611022565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613b08565b60405180910390fd5b80600d9080519060200190610ea0929190612fad565b5050565b600e60149054906101000a900460ff1681565b6000610ec282612047565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f8a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611022565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590613b08565b60405180910390fd5b6110086000612115565b565b600c6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105b90613ee0565b80601f016020809104026020016040519081016040528092919081815260200182805461108790613ee0565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b5050505050905090565b816110e881611a9f565b6110f283836121db565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111355761113433611a9f565b5b61114185858585612353565b5050505050565b6111506118a2565b73ffffffffffffffffffffffffffffffffffffffff1661116e611022565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613b08565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b60606111fb82611a40565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613b28565b60405180910390fd5b6000600d805461124990613ee0565b9050116112655760405180602001604052806000815250611291565b600d611270836123c6565b6040516020016112819291906138a3565b6040516020818303038152906040525b9050919050565b6112a06118a2565b73ffffffffffffffffffffffffffffffffffffffff166112be611022565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613b08565b60405180910390fd5b6103e8816113206108c6565b61132a9190613cc2565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613b48565b60405180910390fd5b6113758282612573565b5050565b6103e881565b6113898133612591565b6113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613ae8565b60405180910390fd5b600e60149054906101000a900460ff1615611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613aa8565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114669190613cc2565b11156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613b88565b60405180910390fd5b6103e8826114b36108c6565b6114bd9190613cc2565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613b48565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154d9190613cc2565b9250508190555061155e3383612573565b5050565b61156a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16611588611022565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613b08565b60405180910390fd5b600e60159054906101000a900460ff1615600e60156101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a66118a2565b73ffffffffffffffffffffffffffffffffffffffff166116c4611022565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613b08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613a88565b60405180910390fd5b61179381612115565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117f157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061189b575061189a8261266e565b5b9050919050565b600033905090565b6118b261201d565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613ba8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611a4b611cef565b11158015611a5a575060005482105b8015611a98575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ba8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b169291906138ed565b60206040518083038186803b158015611b2e57600080fd5b505afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b669190613396565b611ba757806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b9e91906138d2565b60405180910390fd5b5b50565b6000611bb682610eb7565b90508073ffffffffffffffffffffffffffffffffffffffff16611bd76126d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a57611c0381611bfe6126d8565b61160a565b611c39576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d0382612047565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d76846126e0565b91509150611d8c8187611d876126d8565b612707565b611dd857611da186611d9c6126d8565b61160a565b611dd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4c868686600161274b565b8015611e5757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f2585611f01888887612751565b7c020000000000000000000000000000000000000000000000000000000017612779565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611fad576000600185019050600060046000838152602001908152602001600020541415611fab576000548114611faa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201586868660016127a4565b505050505050565b6000612710905090565b612042838383604051806020016040528060008152506110f7565b505050565b60008082905080612056611cef565b116120de576000548110156120dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120db575b60008114156120d15760046000836001900393508381526020019081526020016000205490506120a6565b8092505050612110565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e36126d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612248576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006122556126d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123026126d8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612347919061398b565b60405180910390a35050565b61235e8484846108e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c057612389848484846127aa565b6123bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141561240e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256e565b600082905060005b6000821461244057808061242990613f43565b915050600a826124399190613d18565b9150612416565b60008167ffffffffffffffff811115612482577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b45781602001600182028036833780820191505090505b5090505b60008514612567576001826124cd9190613da3565b9150600a856124dc9190613fb0565b60306124e89190613cc2565b60f81b818381518110612524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125609190613d18565b94506124b8565b8093505050505b919050565b61258d82826040518060200160405280600081525061290a565b5050565b600080600e60159054906101000a900460ff166125d057600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166125d2565b825b6040516020016125e29190613888565b60405160208183030381529060405280519060200120905061261584612607836129a7565b6129dd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612768868684612a04565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127d06126d8565b8786866040518563ffffffff1660e01b81526004016127f29493929190613916565b602060405180830381600087803b15801561280c57600080fd5b505af192505050801561283d57506040513d601f19601f8201168201806040525081019061283a91906133e8565b60015b6128b7573d806000811461286d576040519150601f19603f3d011682016040523d82523d6000602084013e612872565b606091505b506000815114156128af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129148383612a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129a257600080549050600083820390505b61295460008683806001019450866127aa565b61298a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061294157816000541461299f57600080fd5b50505b505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b60008060006129ec8585612bca565b915091506129f981612c1c565b819250505092915050565b60009392505050565b6000805490506000821415612a4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5b600084838561274b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ad283612ac36000866000612751565b612acc85612eba565b17612779565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b38565b506000821415612baf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612bc560008483856127a4565b505050565b600080604183511415612c0c5760008060006020860151925060408601519150606086015160001a9050612c0087828585612eca565b94509450505050612c15565b60006002915091505b9250929050565b60006004811115612c56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c9a57612eb7565b60016004811115612cd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590613a28565b60405180910390fd5b60026004811115612d88577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612dc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990613a68565b60405180910390fd5b60036004811115612e3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90613ac8565b60405180910390fd5b5b50565b60006001821460e11b9050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612f05576000600391509150612fa4565b600060018787878760405160008152602001604052604051612f2a94939291906139a6565b6020604051602081039080840390855afa158015612f4c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f9b57600060019250925050612fa4565b80600092509250505b94509492505050565b828054612fb990613ee0565b90600052602060002090601f016020900481019282612fdb5760008555613022565b82601f10612ff457805160ff1916838001178555613022565b82800160010185558215613022579182015b82811115613021578251825591602001919060010190613006565b5b50905061302f9190613033565b5090565b5b8082111561304c576000816000905550600101613034565b5090565b600061306361305e84613c08565b613be3565b90508281526020810184848401111561307b57600080fd5b613086848285613e9e565b509392505050565b60006130a161309c84613c39565b613be3565b9050828152602081018484840111156130b957600080fd5b6130c4848285613e9e565b509392505050565b6000813590506130db81614391565b92915050565b6000813590506130f0816143a8565b92915050565b600081519050613105816143a8565b92915050565b60008135905061311a816143bf565b92915050565b60008151905061312f816143bf565b92915050565b600082601f83011261314657600080fd5b8135613156848260208601613050565b91505092915050565b600082601f83011261317057600080fd5b813561318084826020860161308e565b91505092915050565b600081359050613198816143d6565b92915050565b6000813590506131ad816143ed565b92915050565b6000602082840312156131c557600080fd5b60006131d3848285016130cc565b91505092915050565b600080604083850312156131ef57600080fd5b60006131fd858286016130cc565b925050602061320e858286016130cc565b9150509250929050565b60008060006060848603121561322d57600080fd5b600061323b868287016130cc565b935050602061324c868287016130cc565b925050604061325d86828701613189565b9150509250925092565b6000806000806080858703121561327d57600080fd5b600061328b878288016130cc565b945050602061329c878288016130cc565b93505060406132ad87828801613189565b925050606085013567ffffffffffffffff8111156132ca57600080fd5b6132d687828801613135565b91505092959194509250565b600080604083850312156132f557600080fd5b6000613303858286016130cc565b9250506020613314858286016130e1565b9150509250929050565b6000806040838503121561333157600080fd5b600061333f858286016130cc565b925050602061335085828601613189565b9150509250929050565b6000806040838503121561336d57600080fd5b600061337b858286016130cc565b925050602061338c8582860161319e565b9150509250929050565b6000602082840312156133a857600080fd5b60006133b6848285016130f6565b91505092915050565b6000602082840312156133d157600080fd5b60006133df8482850161310b565b91505092915050565b6000602082840312156133fa57600080fd5b600061340884828501613120565b91505092915050565b60006020828403121561342357600080fd5b600082013567ffffffffffffffff81111561343d57600080fd5b6134498482850161315f565b91505092915050565b60006020828403121561346457600080fd5b600061347284828501613189565b91505092915050565b6000806040838503121561348e57600080fd5b600061349c85828601613189565b925050602083013567ffffffffffffffff8111156134b957600080fd5b6134c585828601613135565b9150509250929050565b600080604083850312156134e257600080fd5b60006134f085828601613189565b925050602061350185828601613189565b9150509250929050565b61351481613dd7565b82525050565b61352b61352682613dd7565b613f8c565b82525050565b61353a81613de9565b82525050565b61354981613df5565b82525050565b600061355a82613c7f565b6135648185613c95565b9350613574818560208601613ead565b61357d8161409d565b840191505092915050565b61359181613e7a565b82525050565b60006135a282613c8a565b6135ac8185613ca6565b93506135bc818560208601613ead565b6135c58161409d565b840191505092915050565b60006135db82613c8a565b6135e58185613cb7565b93506135f5818560208601613ead565b80840191505092915050565b6000815461360e81613ee0565b6136188186613cb7565b94506001821660008114613633576001811461364457613677565b60ff19831686528186019350613677565b61364d85613c6a565b60005b8381101561366f57815481890152600182019150602081019050613650565b838801955050505b50505092915050565b600061368d601883613ca6565b9150613698826140bb565b602082019050919050565b60006136b0601183613ca6565b91506136bb826140e4565b602082019050919050565b60006136d3601f83613ca6565b91506136de8261410d565b602082019050919050565b60006136f6602683613ca6565b915061370182614136565b604082019050919050565b6000613719600f83613ca6565b915061372482614185565b602082019050919050565b600061373c602283613ca6565b9150613747826141ae565b604082019050919050565b600061375f601b83613ca6565b915061376a826141fd565b602082019050919050565b6000613782600583613cb7565b915061378d82614226565b600582019050919050565b60006137a5602083613ca6565b91506137b08261424f565b602082019050919050565b60006137c8602f83613ca6565b91506137d382614278565b604082019050919050565b60006137eb601183613ca6565b91506137f6826142c7565b602082019050919050565b600061380e602a83613ca6565b9150613819826142f0565b604082019050919050565b6000613831600f83613ca6565b915061383c8261433f565b602082019050919050565b6000613854601983613ca6565b915061385f82614368565b602082019050919050565b61387381613e4b565b82525050565b61388281613e55565b82525050565b6000613894828461351a565b60148201915081905092915050565b60006138af8285613601565b91506138bb82846135d0565b91506138c682613775565b91508190509392505050565b60006020820190506138e7600083018461350b565b92915050565b6000604082019050613902600083018561350b565b61390f602083018461350b565b9392505050565b600060808201905061392b600083018761350b565b613938602083018661350b565b613945604083018561386a565b8181036060830152613957818461354f565b905095945050505050565b6000604082019050613977600083018561350b565b613984602083018461386a565b9392505050565b60006020820190506139a06000830184613531565b92915050565b60006080820190506139bb6000830187613540565b6139c86020830186613879565b6139d56040830185613540565b6139e26060830184613540565b95945050505050565b6000602082019050613a006000830184613588565b92915050565b60006020820190508181036000830152613a208184613597565b905092915050565b60006020820190508181036000830152613a4181613680565b9050919050565b60006020820190508181036000830152613a61816136a3565b9050919050565b60006020820190508181036000830152613a81816136c6565b9050919050565b60006020820190508181036000830152613aa1816136e9565b9050919050565b60006020820190508181036000830152613ac18161370c565b9050919050565b60006020820190508181036000830152613ae18161372f565b9050919050565b60006020820190508181036000830152613b0181613752565b9050919050565b60006020820190508181036000830152613b2181613798565b9050919050565b60006020820190508181036000830152613b41816137bb565b9050919050565b60006020820190508181036000830152613b61816137de565b9050919050565b60006020820190508181036000830152613b8181613801565b9050919050565b60006020820190508181036000830152613ba181613824565b9050919050565b60006020820190508181036000830152613bc181613847565b9050919050565b6000602082019050613bdd600083018461386a565b92915050565b6000613bed613bfe565b9050613bf98282613f12565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2357613c2261406e565b5b613c2c8261409d565b9050602081019050919050565b600067ffffffffffffffff821115613c5457613c5361406e565b5b613c5d8261409d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ccd82613e4b565b9150613cd883613e4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0d57613d0c613fe1565b5b828201905092915050565b6000613d2382613e4b565b9150613d2e83613e4b565b925082613d3e57613d3d614010565b5b828204905092915050565b6000613d5482613e4b565b9150613d5f83613e4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d9857613d97613fe1565b5b828202905092915050565b6000613dae82613e4b565b9150613db983613e4b565b925082821015613dcc57613dcb613fe1565b5b828203905092915050565b6000613de282613e2b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613e8582613e8c565b9050919050565b6000613e9782613e2b565b9050919050565b82818337600083830152505050565b60005b83811015613ecb578082015181840152602081019050613eb0565b83811115613eda576000848401525b50505050565b60006002820490506001821680613ef857607f821691505b60208210811415613f0c57613f0b61403f565b5b50919050565b613f1b8261409d565b810181811067ffffffffffffffff82111715613f3a57613f3961406e565b5b80604052505050565b6000613f4e82613e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8157613f80613fe1565b5b600182019050919050565b6000613f9782613f9e565b9050919050565b6000613fa9826140ae565b9050919050565b6000613fbb82613e4b565b9150613fc683613e4b565b925082613fd657613fd5614010565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4973416c7265616479556e7665696c6564000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4265796f6e64204d6178204d696e740000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61439a81613dd7565b81146143a557600080fd5b50565b6143b181613de9565b81146143bc57600080fd5b50565b6143c881613dff565b81146143d357600080fd5b50565b6143df81613e4b565b81146143ea57600080fd5b50565b6143f681613e62565b811461440157600080fd5b5056fea2646970667358221220a667c0f815611a5162fcbc61b992b0d04406fcddfc586652fa396bcec1d4e30564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000733969d7bcbb1d155e9204f9fbd0cec568ebc082000000000000000000000000000000000000000000000000000000000000000b424f4e4b20466c6f776572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e7a5a7165637a314c4b6e5176444169686f5065596734426e5636393351336264716e637a634244443464612f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806355f804b311610125578063b88d4fde116100ad578063d5abeb011161007c578063d5abeb01146105c7578063db7fd408146105e5578063dd4aa59c14610601578063e985e9c51461060b578063f2fde38b1461063b57610211565b8063b88d4fde14610555578063c4ae316814610571578063c87b56dd1461057b578063ca07aed6146105ab57610211565b8063715018a6116100f4578063715018a6146104c35780637c735d44146104cd5780638da5cb5b146104fd57806395d89b411461051b578063a22cb4651461053957610211565b806355f804b3146104295780635c975abb146104455780636352211e1461046357806370a082311461049357610211565b8063239c70ae116101a857806341f434341161017757806341f434341461039957806342842e0e146103b75780634c261247146103d35780634d7bde6e146103ef57806354214f691461040b57610211565b8063239c70ae1461032457806323b872dd146103425780632a55205a1461035e5780633ccfd60b1461038f57610211565b8063081812fc116101e4578063081812fc1461029e578063088a4ed0146102ce578063095ea7b3146102ea57806318160ddd1461030657610211565b806301ffc9a71461021657806304634d8d1461024657806306f2057a1461026257806306fdde0314610280575b600080fd5b610230600480360381019061022b91906133bf565b610657565b60405161023d919061398b565b60405180910390f35b610260600480360381019061025b919061335a565b610679565b005b61026a610703565b604051610277919061398b565b60405180910390f35b610288610716565b6040516102959190613a06565b60405180910390f35b6102b860048036038101906102b39190613452565b6107a8565b6040516102c591906138d2565b60405180910390f35b6102e860048036038101906102e39190613452565b610827565b005b61030460048036038101906102ff919061331e565b6108ad565b005b61030e6108c6565b60405161031b9190613bc8565b60405180910390f35b61032c6108dd565b6040516103399190613bc8565b60405180910390f35b61035c60048036038101906103579190613218565b6108e3565b005b610378600480360381019061037391906134cf565b610932565b604051610386929190613962565b60405180910390f35b610397610b1d565b005b6103a1610bd9565b6040516103ae91906139eb565b60405180910390f35b6103d160048036038101906103cc9190613218565b610beb565b005b6103ed60048036038101906103e89190613411565b610c3a565b005b610409600480360381019061040491906131b3565b610d3b565b005b610413610dfb565b604051610420919061398b565b60405180910390f35b610443600480360381019061043e9190613411565b610e0e565b005b61044d610ea4565b60405161045a919061398b565b60405180910390f35b61047d60048036038101906104789190613452565b610eb7565b60405161048a91906138d2565b60405180910390f35b6104ad60048036038101906104a891906131b3565b610ec9565b6040516104ba9190613bc8565b60405180910390f35b6104cb610f82565b005b6104e760048036038101906104e291906131b3565b61100a565b6040516104f49190613bc8565b60405180910390f35b610505611022565b60405161051291906138d2565b60405180910390f35b61052361104c565b6040516105309190613a06565b60405180910390f35b610553600480360381019061054e91906132e2565b6110de565b005b61056f600480360381019061056a9190613267565b6110f7565b005b610579611148565b005b61059560048036038101906105909190613452565b6111f0565b6040516105a29190613a06565b60405180910390f35b6105c560048036038101906105c0919061331e565b611298565b005b6105cf611379565b6040516105dc9190613bc8565b60405180910390f35b6105ff60048036038101906105fa919061347b565b61137f565b005b610609611562565b005b610625600480360381019061062091906131dc565b61160a565b604051610632919061398b565b60405180910390f35b610655600480360381019061065091906131b3565b61169e565b005b600061066282611796565b80610672575061067182611828565b5b9050919050565b6106816118a2565b73ffffffffffffffffffffffffffffffffffffffff1661069f611022565b73ffffffffffffffffffffffffffffffffffffffff16146106f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ec90613b08565b60405180910390fd5b6106ff82826118aa565b5050565b600e60159054906101000a900460ff1681565b60606002805461072590613ee0565b80601f016020809104026020016040519081016040528092919081815260200182805461075190613ee0565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b60006107b382611a40565b6107e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61082f6118a2565b73ffffffffffffffffffffffffffffffffffffffff1661084d611022565b73ffffffffffffffffffffffffffffffffffffffff16146108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90613b08565b60405180910390fd5b80600b8190555050565b816108b781611a9f565b6108c18383611bab565b505050565b60006108d0611cef565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109215761092033611a9f565b5b61092c848484611cf8565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ac85760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ad261201d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610afe9190613d49565b610b089190613d18565b90508160000151819350935050509250929050565b610b256118a2565b73ffffffffffffffffffffffffffffffffffffffff16610b43611022565b73ffffffffffffffffffffffffffffffffffffffff1614610b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9090613b08565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bd757600080fd5b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2957610c2833611a9f565b5b610c34848484612027565b50505050565b610c426118a2565b73ffffffffffffffffffffffffffffffffffffffff16610c60611022565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613b08565b60405180910390fd5b600e60169054906101000a900460ff1615610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613a48565b60405180910390fd5b80600d9080519060200190610d1c929190612fad565b506001600e60166101000a81548160ff02191690831515021790555050565b610d436118a2565b73ffffffffffffffffffffffffffffffffffffffff16610d61611022565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90613b08565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60169054906101000a900460ff1681565b610e166118a2565b73ffffffffffffffffffffffffffffffffffffffff16610e34611022565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613b08565b60405180910390fd5b80600d9080519060200190610ea0929190612fad565b5050565b600e60149054906101000a900460ff1681565b6000610ec282612047565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f8a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611022565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590613b08565b60405180910390fd5b6110086000612115565b565b600c6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105b90613ee0565b80601f016020809104026020016040519081016040528092919081815260200182805461108790613ee0565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b5050505050905090565b816110e881611a9f565b6110f283836121db565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111355761113433611a9f565b5b61114185858585612353565b5050505050565b6111506118a2565b73ffffffffffffffffffffffffffffffffffffffff1661116e611022565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90613b08565b60405180910390fd5b600e60149054906101000a900460ff1615600e60146101000a81548160ff021916908315150217905550565b60606111fb82611a40565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613b28565b60405180910390fd5b6000600d805461124990613ee0565b9050116112655760405180602001604052806000815250611291565b600d611270836123c6565b6040516020016112819291906138a3565b6040516020818303038152906040525b9050919050565b6112a06118a2565b73ffffffffffffffffffffffffffffffffffffffff166112be611022565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613b08565b60405180910390fd5b6103e8816113206108c6565b61132a9190613cc2565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613b48565b60405180910390fd5b6113758282612573565b5050565b6103e881565b6113898133612591565b6113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613ae8565b60405180910390fd5b600e60149054906101000a900460ff1615611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613aa8565b60405180910390fd5b600b5482600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114669190613cc2565b11156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613b88565b60405180910390fd5b6103e8826114b36108c6565b6114bd9190613cc2565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613b48565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154d9190613cc2565b9250508190555061155e3383612573565b5050565b61156a6118a2565b73ffffffffffffffffffffffffffffffffffffffff16611588611022565b73ffffffffffffffffffffffffffffffffffffffff16146115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613b08565b60405180910390fd5b600e60159054906101000a900460ff1615600e60156101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a66118a2565b73ffffffffffffffffffffffffffffffffffffffff166116c4611022565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613b08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613a88565b60405180910390fd5b61179381612115565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117f157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061189b575061189a8261266e565b5b9050919050565b600033905090565b6118b261201d565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613ba8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611a4b611cef565b11158015611a5a575060005482105b8015611a98575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ba8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b169291906138ed565b60206040518083038186803b158015611b2e57600080fd5b505afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b669190613396565b611ba757806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b9e91906138d2565b60405180910390fd5b5b50565b6000611bb682610eb7565b90508073ffffffffffffffffffffffffffffffffffffffff16611bd76126d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a57611c0381611bfe6126d8565b61160a565b611c39576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d0382612047565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611d76846126e0565b91509150611d8c8187611d876126d8565b612707565b611dd857611da186611d9c6126d8565b61160a565b611dd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4c868686600161274b565b8015611e5757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f2585611f01888887612751565b7c020000000000000000000000000000000000000000000000000000000017612779565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611fad576000600185019050600060046000838152602001908152602001600020541415611fab576000548114611faa578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461201586868660016127a4565b505050505050565b6000612710905090565b612042838383604051806020016040528060008152506110f7565b505050565b60008082905080612056611cef565b116120de576000548110156120dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156120db575b60008114156120d15760046000836001900393508381526020019081526020016000205490506120a6565b8092505050612110565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e36126d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612248576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006122556126d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123026126d8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612347919061398b565b60405180910390a35050565b61235e8484846108e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123c057612389848484846127aa565b6123bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141561240e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061256e565b600082905060005b6000821461244057808061242990613f43565b915050600a826124399190613d18565b9150612416565b60008167ffffffffffffffff811115612482577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b45781602001600182028036833780820191505090505b5090505b60008514612567576001826124cd9190613da3565b9150600a856124dc9190613fb0565b60306124e89190613cc2565b60f81b818381518110612524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125609190613d18565b94506124b8565b8093505050505b919050565b61258d82826040518060200160405280600081525061290a565b5050565b600080600e60159054906101000a900460ff166125d057600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166125d2565b825b6040516020016125e29190613888565b60405160208183030381529060405280519060200120905061261584612607836129a7565b6129dd90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612768868684612a04565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127d06126d8565b8786866040518563ffffffff1660e01b81526004016127f29493929190613916565b602060405180830381600087803b15801561280c57600080fd5b505af192505050801561283d57506040513d601f19601f8201168201806040525081019061283a91906133e8565b60015b6128b7573d806000811461286d576040519150601f19603f3d011682016040523d82523d6000602084013e612872565b606091505b506000815114156128af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6129148383612a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129a257600080549050600083820390505b61295460008683806001019450866127aa565b61298a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061294157816000541461299f57600080fd5b50505b505050565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b60008060006129ec8585612bca565b915091506129f981612c1c565b819250505092915050565b60009392505050565b6000805490506000821415612a4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a5b600084838561274b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ad283612ac36000866000612751565b612acc85612eba565b17612779565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b7357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b38565b506000821415612baf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612bc560008483856127a4565b505050565b600080604183511415612c0c5760008060006020860151925060408601519150606086015160001a9050612c0087828585612eca565b94509450505050612c15565b60006002915091505b9250929050565b60006004811115612c56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c9a57612eb7565b60016004811115612cd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d0d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590613a28565b60405180910390fd5b60026004811115612d88577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612dc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990613a68565b60405180910390fd5b60036004811115612e3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90613ac8565b60405180910390fd5b5b50565b60006001821460e11b9050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612f05576000600391509150612fa4565b600060018787878760405160008152602001604052604051612f2a94939291906139a6565b6020604051602081039080840390855afa158015612f4c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f9b57600060019250925050612fa4565b80600092509250505b94509492505050565b828054612fb990613ee0565b90600052602060002090601f016020900481019282612fdb5760008555613022565b82601f10612ff457805160ff1916838001178555613022565b82800160010185558215613022579182015b82811115613021578251825591602001919060010190613006565b5b50905061302f9190613033565b5090565b5b8082111561304c576000816000905550600101613034565b5090565b600061306361305e84613c08565b613be3565b90508281526020810184848401111561307b57600080fd5b613086848285613e9e565b509392505050565b60006130a161309c84613c39565b613be3565b9050828152602081018484840111156130b957600080fd5b6130c4848285613e9e565b509392505050565b6000813590506130db81614391565b92915050565b6000813590506130f0816143a8565b92915050565b600081519050613105816143a8565b92915050565b60008135905061311a816143bf565b92915050565b60008151905061312f816143bf565b92915050565b600082601f83011261314657600080fd5b8135613156848260208601613050565b91505092915050565b600082601f83011261317057600080fd5b813561318084826020860161308e565b91505092915050565b600081359050613198816143d6565b92915050565b6000813590506131ad816143ed565b92915050565b6000602082840312156131c557600080fd5b60006131d3848285016130cc565b91505092915050565b600080604083850312156131ef57600080fd5b60006131fd858286016130cc565b925050602061320e858286016130cc565b9150509250929050565b60008060006060848603121561322d57600080fd5b600061323b868287016130cc565b935050602061324c868287016130cc565b925050604061325d86828701613189565b9150509250925092565b6000806000806080858703121561327d57600080fd5b600061328b878288016130cc565b945050602061329c878288016130cc565b93505060406132ad87828801613189565b925050606085013567ffffffffffffffff8111156132ca57600080fd5b6132d687828801613135565b91505092959194509250565b600080604083850312156132f557600080fd5b6000613303858286016130cc565b9250506020613314858286016130e1565b9150509250929050565b6000806040838503121561333157600080fd5b600061333f858286016130cc565b925050602061335085828601613189565b9150509250929050565b6000806040838503121561336d57600080fd5b600061337b858286016130cc565b925050602061338c8582860161319e565b9150509250929050565b6000602082840312156133a857600080fd5b60006133b6848285016130f6565b91505092915050565b6000602082840312156133d157600080fd5b60006133df8482850161310b565b91505092915050565b6000602082840312156133fa57600080fd5b600061340884828501613120565b91505092915050565b60006020828403121561342357600080fd5b600082013567ffffffffffffffff81111561343d57600080fd5b6134498482850161315f565b91505092915050565b60006020828403121561346457600080fd5b600061347284828501613189565b91505092915050565b6000806040838503121561348e57600080fd5b600061349c85828601613189565b925050602083013567ffffffffffffffff8111156134b957600080fd5b6134c585828601613135565b9150509250929050565b600080604083850312156134e257600080fd5b60006134f085828601613189565b925050602061350185828601613189565b9150509250929050565b61351481613dd7565b82525050565b61352b61352682613dd7565b613f8c565b82525050565b61353a81613de9565b82525050565b61354981613df5565b82525050565b600061355a82613c7f565b6135648185613c95565b9350613574818560208601613ead565b61357d8161409d565b840191505092915050565b61359181613e7a565b82525050565b60006135a282613c8a565b6135ac8185613ca6565b93506135bc818560208601613ead565b6135c58161409d565b840191505092915050565b60006135db82613c8a565b6135e58185613cb7565b93506135f5818560208601613ead565b80840191505092915050565b6000815461360e81613ee0565b6136188186613cb7565b94506001821660008114613633576001811461364457613677565b60ff19831686528186019350613677565b61364d85613c6a565b60005b8381101561366f57815481890152600182019150602081019050613650565b838801955050505b50505092915050565b600061368d601883613ca6565b9150613698826140bb565b602082019050919050565b60006136b0601183613ca6565b91506136bb826140e4565b602082019050919050565b60006136d3601f83613ca6565b91506136de8261410d565b602082019050919050565b60006136f6602683613ca6565b915061370182614136565b604082019050919050565b6000613719600f83613ca6565b915061372482614185565b602082019050919050565b600061373c602283613ca6565b9150613747826141ae565b604082019050919050565b600061375f601b83613ca6565b915061376a826141fd565b602082019050919050565b6000613782600583613cb7565b915061378d82614226565b600582019050919050565b60006137a5602083613ca6565b91506137b08261424f565b602082019050919050565b60006137c8602f83613ca6565b91506137d382614278565b604082019050919050565b60006137eb601183613ca6565b91506137f6826142c7565b602082019050919050565b600061380e602a83613ca6565b9150613819826142f0565b604082019050919050565b6000613831600f83613ca6565b915061383c8261433f565b602082019050919050565b6000613854601983613ca6565b915061385f82614368565b602082019050919050565b61387381613e4b565b82525050565b61388281613e55565b82525050565b6000613894828461351a565b60148201915081905092915050565b60006138af8285613601565b91506138bb82846135d0565b91506138c682613775565b91508190509392505050565b60006020820190506138e7600083018461350b565b92915050565b6000604082019050613902600083018561350b565b61390f602083018461350b565b9392505050565b600060808201905061392b600083018761350b565b613938602083018661350b565b613945604083018561386a565b8181036060830152613957818461354f565b905095945050505050565b6000604082019050613977600083018561350b565b613984602083018461386a565b9392505050565b60006020820190506139a06000830184613531565b92915050565b60006080820190506139bb6000830187613540565b6139c86020830186613879565b6139d56040830185613540565b6139e26060830184613540565b95945050505050565b6000602082019050613a006000830184613588565b92915050565b60006020820190508181036000830152613a208184613597565b905092915050565b60006020820190508181036000830152613a4181613680565b9050919050565b60006020820190508181036000830152613a61816136a3565b9050919050565b60006020820190508181036000830152613a81816136c6565b9050919050565b60006020820190508181036000830152613aa1816136e9565b9050919050565b60006020820190508181036000830152613ac18161370c565b9050919050565b60006020820190508181036000830152613ae18161372f565b9050919050565b60006020820190508181036000830152613b0181613752565b9050919050565b60006020820190508181036000830152613b2181613798565b9050919050565b60006020820190508181036000830152613b41816137bb565b9050919050565b60006020820190508181036000830152613b61816137de565b9050919050565b60006020820190508181036000830152613b8181613801565b9050919050565b60006020820190508181036000830152613ba181613824565b9050919050565b60006020820190508181036000830152613bc181613847565b9050919050565b6000602082019050613bdd600083018461386a565b92915050565b6000613bed613bfe565b9050613bf98282613f12565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2357613c2261406e565b5b613c2c8261409d565b9050602081019050919050565b600067ffffffffffffffff821115613c5457613c5361406e565b5b613c5d8261409d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ccd82613e4b565b9150613cd883613e4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0d57613d0c613fe1565b5b828201905092915050565b6000613d2382613e4b565b9150613d2e83613e4b565b925082613d3e57613d3d614010565b5b828204905092915050565b6000613d5482613e4b565b9150613d5f83613e4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d9857613d97613fe1565b5b828202905092915050565b6000613dae82613e4b565b9150613db983613e4b565b925082821015613dcc57613dcb613fe1565b5b828203905092915050565b6000613de282613e2b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b6000613e8582613e8c565b9050919050565b6000613e9782613e2b565b9050919050565b82818337600083830152505050565b60005b83811015613ecb578082015181840152602081019050613eb0565b83811115613eda576000848401525b50505050565b60006002820490506001821680613ef857607f821691505b60208210811415613f0c57613f0b61403f565b5b50919050565b613f1b8261409d565b810181811067ffffffffffffffff82111715613f3a57613f3961406e565b5b80604052505050565b6000613f4e82613e4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8157613f80613fe1565b5b600182019050919050565b6000613f9782613f9e565b9050919050565b6000613fa9826140ae565b9050919050565b6000613fbb82613e4b565b9150613fc683613e4b565b925082613fd657613fd5614010565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4973416c7265616479556e7665696c6564000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4265796f6e64204d617820537570706c79000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4265796f6e64204d6178204d696e740000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b61439a81613dd7565b81146143a557600080fd5b50565b6143b181613de9565b81146143bc57600080fd5b50565b6143c881613dff565b81146143d357600080fd5b50565b6143df81613e4b565b81146143ea57600080fd5b50565b6143f681613e62565b811461440157600080fd5b5056fea2646970667358221220a667c0f815611a5162fcbc61b992b0d04406fcddfc586652fa396bcec1d4e30564736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000733969d7bcbb1d155e9204f9fbd0cec568ebc082000000000000000000000000000000000000000000000000000000000000000b424f4e4b20466c6f776572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e7a5a7165637a314c4b6e5176444169686f5065596734426e5636393351336264716e637a634244443464612f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BONK Flower
Arg [1] : _symbol (string): BF
Arg [2] : _initBaseURI (string): ipfs://QmNzZqecz1LKnQvDAihoPeYg4BnV693Q3bdqnczcBDD4da/
Arg [3] : _signerAddress (address): 0x733969d7Bcbb1D155e9204f9Fbd0cEc568EbC082

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000733969d7bcbb1d155e9204f9fbd0cec568ebc082
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 424f4e4b20466c6f776572000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4246000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e7a5a7165637a314c4b6e5176444169686f5065596734
Arg [10] : 426e5636393351336264716e637a634244443464612f00000000000000000000


Deployed Bytecode Sourcemap

86035:4549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89162:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89411:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86464:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54013:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60496:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88901:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89748:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49764:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86256:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89913:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9614:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;90472:109;;;:::i;:::-;;2899:143;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90084:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87908:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89031:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86504:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88584:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86431:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55406:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50948:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26769:103;;;:::i;:::-;;86296:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26118:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54189:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89564:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90263:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88704:76;;;:::i;:::-;;88268:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87718:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86209:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87201:509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88788:101;;;:::i;:::-;;61519:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27027:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89162:241;89265:4;89302:38;89328:11;89302:25;:38::i;:::-;:93;;;;89357:38;89383:11;89357:25;:38::i;:::-;89302:93;89282:113;;89162:241;;;:::o;89411:145::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89506:42:::1;89525:8;89535:12;89506:18;:42::i;:::-;89411:145:::0;;:::o;86464:33::-;;;;;;;;;;;;;:::o;54013:100::-;54067:13;54100:5;54093:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54013:100;:::o;60496:218::-;60572:7;60597:16;60605:7;60597;:16::i;:::-;60592:64;;60622:34;;;;;;;;;;;;;;60592:64;60676:15;:24;60692:7;60676:24;;;;;;;;;;;:30;;;;;;;;;;;;60669:37;;60496:218;;;:::o;88901:122::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88998:17:::1;88982:13;:33;;;;88901:122:::0;:::o;89748:157::-;89844:8;4420:30;4441:8;4420:20;:30::i;:::-;89865:32:::1;89879:8;89889:7;89865:13;:32::i;:::-;89748:157:::0;;;:::o;49764:323::-;49825:7;50053:15;:13;:15::i;:::-;50038:12;;50022:13;;:28;:46;50015:53;;49764:323;:::o;86256:33::-;;;;:::o;89913:163::-;90014:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;90031:37:::1;90050:4;90056:2;90060:7;90031:18;:37::i;:::-;89913:163:::0;;;;:::o;9614:442::-;9711:7;9720;9740:26;9769:17;:27;9787:8;9769:27;;;;;;;;;;;9740:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9841:1;9813:30;;:7;:16;;;:30;;;9809:92;;;9870:19;9860:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9809:92;9913:21;9978:17;:15;:17::i;:::-;9937:58;;9951:7;:23;;;9938:36;;:10;:36;;;;:::i;:::-;9937:58;;;;:::i;:::-;9913:82;;10016:7;:16;;;10034:13;10008:40;;;;;;9614:442;;;;;:::o;90472:109::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;90533:10:::1;90525:24;;:47;90550:21;90525:47;;;;;;;;;;;;;;;;;;;;;;;90517:56;;;::::0;::::1;;90472:109::o:0;2899:143::-;2999:42;2899:143;:::o;90084:171::-;90189:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;90206:41:::1;90229:4;90235:2;90239:7;90206:22;:41::i;:::-;90084:171:::0;;;;:::o;87908:195::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;87993:10:::1;;;;;;;;;;;87992:11;87984:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;88051:16;88036:12;:31;;;;;;;;;;;;:::i;:::-;;88091:4;88078:10;;:17;;;;;;;;;;;;;;;;;;87908:195:::0;:::o;89031:123::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89129:17:::1;89113:13;;:33;;;;;;;;;;;;;;;;;;89031:123:::0;:::o;86504:28::-;;;;;;;;;;;;;:::o;88584:112::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88675:13:::1;88660:12;:28;;;;;;;;;;;;:::i;:::-;;88584:112:::0;:::o;86431:26::-;;;;;;;;;;;;;:::o;55406:152::-;55478:7;55521:27;55540:7;55521:18;:27::i;:::-;55498:52;;55406:152;;;:::o;50948:233::-;51020:7;51061:1;51044:19;;:5;:19;;;51040:60;;;51072:28;;;;;;;;;;;;;;51040:60;45107:13;51118:18;:25;51137:5;51118:25;;;;;;;;;;;;;;;;:55;51111:62;;50948:233;;;:::o;26769:103::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26834:30:::1;26861:1;26834:18;:30::i;:::-;26769:103::o:0;86296:57::-;;;;;;;;;;;;;;;;;:::o;26118:87::-;26164:7;26191:6;;;;;;;;;;;26184:13;;26118:87;:::o;54189:104::-;54245:13;54278:7;54271:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54189:104;:::o;89564:176::-;89668:8;4420:30;4441:8;4420:20;:30::i;:::-;89689:43:::1;89713:8;89723;89689:23;:43::i;:::-;89564:176:::0;;;:::o;90263:201::-;90387:4;4248:10;4240:18;;:4;:18;;;4236:83;;4275:32;4296:10;4275:20;:32::i;:::-;4236:83;90409:47:::1;90432:4;90438:2;90442:7;90451:4;90409:22;:47::i;:::-;90263:201:::0;;;;;:::o;88704:76::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88766:6:::1;;;;;;;;;;;88765:7;88756:6;;:16;;;;;;;;;;;;;;;;;;88704:76::o:0;88268:308::-;88341:13;88375:16;88383:7;88375;:16::i;:::-;88367:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;88492:1;88469:12;88463:26;;;;;:::i;:::-;;;:30;:105;;;;;;;;;;;;;;;;;88520:12;88534:18;:7;:16;:18::i;:::-;88503:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88463:105;88456:112;;88268:308;;;:::o;87718:182::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;86245:4:::1;87814:9;87798:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;87790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;87867:25;87877:3;87882:9;87867;:25::i;:::-;87718:182:::0;;:::o;86209:40::-;86245:4;86209:40;:::o;87201:509::-;87285:42;87305:10;87316;87285:19;:42::i;:::-;87277:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;87379:6;;;;;;;;;;;87378:7;87370:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;87474:13;;87461:9;87424:22;:34;87447:10;87424:34;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:63;;87416:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;86245:4;87543:9;87527:13;:11;:13::i;:::-;:25;;;;:::i;:::-;87526:40;;87518:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;87648:9;87609:22;:34;87632:10;87609:34;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;87670:32;87680:10;87692:9;87670;:32::i;:::-;87201:509;;:::o;88788:101::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88867:14:::1;;;;;;;;;;;88866:15;88849:14;;:32;;;;;;;;;;;;;;;;;;88788:101::o:0;61519:164::-;61616:4;61640:18;:25;61659:5;61640:25;;;;;;;;;;;;;;;:35;61666:8;61640:35;;;;;;;;;;;;;;;;;;;;;;;;;61633:42;;61519:164;;;;:::o;27027:201::-;26349:12;:10;:12::i;:::-;26338:23;;:7;:5;:7::i;:::-;:23;;;26330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27136:1:::1;27116:22;;:8;:22;;;;27108:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27192:28;27211:8;27192:18;:28::i;:::-;27027:201:::0;:::o;53111:639::-;53196:4;53535:10;53520:25;;:11;:25;;;;:102;;;;53612:10;53597:25;;:11;:25;;;;53520:102;:179;;;;53689:10;53674:25;;:11;:25;;;;53520:179;53500:199;;53111:639;;;:::o;9344:215::-;9446:4;9485:26;9470:41;;;:11;:41;;;;:81;;;;9515:36;9539:11;9515:23;:36::i;:::-;9470:81;9463:88;;9344:215;;;:::o;24789:98::-;24842:7;24869:10;24862:17;;24789:98;:::o;10706:332::-;10825:17;:15;:17::i;:::-;10809:33;;:12;:33;;;;10801:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;10928:1;10908:22;;:8;:22;;;;10900:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;10995:35;;;;;;;;11007:8;10995:35;;;;;;11017:12;10995:35;;;;;10973:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10706:332;;:::o;61941:282::-;62006:4;62062:7;62043:15;:13;:15::i;:::-;:26;;:66;;;;;62096:13;;62086:7;:23;62043:66;:153;;;;;62195:1;45883:8;62147:17;:26;62165:7;62147:26;;;;;;;;;;;;:44;:49;62043:153;62023:173;;61941:282;;;:::o;4478:419::-;4717:1;2999:42;4669:45;;;:49;4665:225;;;2999:42;4740;;;4791:4;4798:8;4740:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4735:144;;4854:8;4835:28;;;;;;;;;;;:::i;:::-;;;;;;;;4735:144;4665:225;4478:419;:::o;59937:400::-;60018:13;60034:16;60042:7;60034;:16::i;:::-;60018:32;;60090:5;60067:28;;:19;:17;:19::i;:::-;:28;;;60063:175;;60115:44;60132:5;60139:19;:17;:19::i;:::-;60115:16;:44::i;:::-;60110:128;;60187:35;;;;;;;;;;;;;;60110:128;60063:175;60283:2;60250:15;:24;60266:7;60250:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;60321:7;60317:2;60301:28;;60310:5;60301:28;;;;;;;;;;;;59937:400;;;:::o;49280:92::-;49336:7;49363:1;49356:8;;49280:92;:::o;64203:2817::-;64337:27;64367;64386:7;64367:18;:27::i;:::-;64337:57;;64452:4;64411:45;;64427:19;64411:45;;;64407:86;;64465:28;;;;;;;;;;;;;;64407:86;64507:27;64536:23;64563:35;64590:7;64563:26;:35::i;:::-;64506:92;;;;64698:68;64723:15;64740:4;64746:19;:17;:19::i;:::-;64698:24;:68::i;:::-;64693:180;;64786:43;64803:4;64809:19;:17;:19::i;:::-;64786:16;:43::i;:::-;64781:92;;64838:35;;;;;;;;;;;;;;64781:92;64693:180;64904:1;64890:16;;:2;:16;;;64886:52;;;64915:23;;;;;;;;;;;;;;64886:52;64951:43;64973:4;64979:2;64983:7;64992:1;64951:21;:43::i;:::-;65087:15;65084:2;;;65227:1;65206:19;65199:30;65084:2;65624:18;:24;65643:4;65624:24;;;;;;;;;;;;;;;;65622:26;;;;;;;;;;;;65693:18;:22;65712:2;65693:22;;;;;;;;;;;;;;;;65691:24;;;;;;;;;;;66015:146;66052:2;66101:45;66116:4;66122:2;66126:19;66101:14;:45::i;:::-;46163:8;66073:73;66015:18;:146::i;:::-;65986:17;:26;66004:7;65986:26;;;;;;;;;;;:175;;;;66332:1;46163:8;66281:19;:47;:52;66277:627;;;66354:19;66386:1;66376:7;:11;66354:33;;66543:1;66509:17;:30;66527:11;66509:30;;;;;;;;;;;;:35;66505:384;;;66647:13;;66632:11;:28;66628:242;;66827:19;66794:17;:30;66812:11;66794:30;;;;;;;;;;;:52;;;;66628:242;66505:384;66277:627;;66951:7;66947:2;66932:27;;66941:4;66932:27;;;;;;;;;;;;66970:42;66991:4;66997:2;67001:7;67010:1;66970:20;:42::i;:::-;64203:2817;;;;;;:::o;10338:97::-;10396:6;10422:5;10415:12;;10338:97;:::o;67116:185::-;67254:39;67271:4;67277:2;67281:7;67254:39;;;;;;;;;;;;:16;:39::i;:::-;67116:185;;;:::o;56561:1275::-;56628:7;56648:12;56663:7;56648:22;;56731:4;56712:15;:13;:15::i;:::-;:23;56708:1061;;56765:13;;56758:4;:20;56754:1015;;;56803:14;56820:17;:23;56838:4;56820:23;;;;;;;;;;;;56803:40;;56937:1;45883:8;56909:6;:24;:29;56905:845;;;57574:113;57591:1;57581:6;:11;57574:113;;;57634:17;:25;57652:6;;;;;;;57634:25;;;;;;;;;;;;57625:34;;57574:113;;;57720:6;57713:13;;;;;;56905:845;56754:1015;;56708:1061;57797:31;;;;;;;;;;;;;;56561:1275;;;;:::o;27388:191::-;27462:16;27481:6;;;;;;;;;;;27462:25;;27507:8;27498:6;;:17;;;;;;;;;;;;;;;;;;27562:8;27531:40;;27552:8;27531:40;;;;;;;;;;;;27388:191;;:::o;61054:308::-;61165:19;:17;:19::i;:::-;61153:31;;:8;:31;;;61149:61;;;61193:17;;;;;;;;;;;;;;61149:61;61275:8;61223:18;:39;61242:19;:17;:19::i;:::-;61223:39;;;;;;;;;;;;;;;:49;61263:8;61223:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;61335:8;61299:55;;61314:19;:17;:19::i;:::-;61299:55;;;61345:8;61299:55;;;;;;:::i;:::-;;;;;;;;61054:308;;:::o;67899:399::-;68066:31;68079:4;68085:2;68089:7;68066:12;:31::i;:::-;68130:1;68112:2;:14;;;:19;68108:183;;68151:56;68182:4;68188:2;68192:7;68201:5;68151:30;:56::i;:::-;68146:145;;68235:40;;;;;;;;;;;;;;68146:145;68108:183;67899:399;;;;:::o;12579:723::-;12635:13;12865:1;12856:5;:10;12852:53;;;12883:10;;;;;;;;;;;;;;;;;;;;;12852:53;12915:12;12930:5;12915:20;;12946:14;12971:78;12986:1;12978:4;:9;12971:78;;13004:8;;;;;:::i;:::-;;;;13035:2;13027:10;;;;;:::i;:::-;;;12971:78;;;13059:19;13091:6;13081:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13059:39;;13109:154;13125:1;13116:5;:10;13109:154;;13153:1;13143:11;;;;;:::i;:::-;;;13220:2;13212:5;:10;;;;:::i;:::-;13199:2;:24;;;;:::i;:::-;13186:39;;13169:6;13176;13169:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;13249:2;13240:11;;;;;:::i;:::-;;;13109:154;;;13287:6;13273:21;;;;;12579:723;;;;:::o;77539:112::-;77616:27;77626:2;77630:8;77616:27;;;;;;;;;;;;:9;:27::i;:::-;77539:112;;:::o;86903:290::-;86990:4;87007:19;87056:14;;;;;;;;;;;:36;;87079:13;;;;;;;;;;;87056:36;;;87073:3;87056:36;87039:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;87029:66;;;;;;87007:88;;87130:55;87175:9;87130:36;:11;:34;:36::i;:::-;:44;;:55;;;;:::i;:::-;87113:72;;:13;;;;;;;;;;;:72;;;87106:79;;;86903:290;;;;:::o;6790:157::-;6875:4;6914:25;6899:40;;;:11;:40;;;;6892:47;;6790:157;;;:::o;83707:105::-;83767:7;83794:10;83787:17;;83707:105;:::o;63104:479::-;63206:27;63235:23;63276:38;63317:15;:24;63333:7;63317:24;;;;;;;;;;;63276:65;;63488:18;63465:41;;63545:19;63539:26;63520:45;;63450:126;;;;:::o;62332:659::-;62481:11;62646:16;62639:5;62635:28;62626:37;;62806:16;62795:9;62791:32;62778:45;;62956:15;62945:9;62942:30;62934:5;62923:9;62920:20;62917:56;62907:66;;62514:470;;;;;:::o;68960:159::-;;;;;:::o;83016:311::-;83151:7;83171:16;46287:3;83197:19;:41;;83171:68;;46287:3;83265:31;83276:4;83282:2;83286:9;83265:10;:31::i;:::-;83257:40;;:62;;83250:69;;;83016:311;;;;;:::o;58384:450::-;58464:14;58632:16;58625:5;58621:28;58612:37;;58809:5;58795:11;58770:23;58766:41;58763:52;58756:5;58753:63;58743:73;;58500:327;;;;:::o;69784:158::-;;;;;:::o;70382:716::-;70545:4;70591:2;70566:45;;;70612:19;:17;:19::i;:::-;70633:4;70639:7;70648:5;70566:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;70562:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70866:1;70849:6;:13;:18;70845:235;;;70895:40;;;;;;;;;;;;;;70845:235;71038:6;71032:13;71023:6;71019:2;71015:15;71008:38;70562:529;70735:54;;;70725:64;;;:6;:64;;;;70718:71;;;70382:716;;;;;;:::o;76766:689::-;76897:19;76903:2;76907:8;76897:5;:19::i;:::-;76976:1;76958:2;:14;;;:19;76954:483;;76998:11;77012:13;;76998:27;;77044:13;77066:8;77060:3;:14;77044:30;;77093:233;77124:62;77163:1;77167:2;77171:7;;;;;;77180:5;77124:30;:62::i;:::-;77119:167;;77222:40;;;;;;;;;;;;;;77119:167;77321:3;77313:5;:11;77093:233;;77408:3;77391:13;;:20;77387:34;;77413:8;;;77387:34;76954:483;;;76766:689;;;:::o;21991:405::-;22060:15;22265:34;22259:4;22252:48;22327:4;22321;22314:18;22373:4;22367;22357:21;22346:32;;22237:152;;;:::o;18455:231::-;18533:7;18554:17;18573:18;18595:27;18606:4;18612:9;18595:10;:27::i;:::-;18553:69;;;;18633:18;18645:5;18633:11;:18::i;:::-;18669:9;18662:16;;;;18455:231;;;;:::o;82717:147::-;82854:6;82717:147;;;;;:::o;71560:2454::-;71633:20;71656:13;;71633:36;;71696:1;71684:8;:13;71680:44;;;71706:18;;;;;;;;;;;;;;71680:44;71737:61;71767:1;71771:2;71775:12;71789:8;71737:21;:61::i;:::-;72281:1;45245:2;72251:1;:26;;72250:32;72238:8;:45;72212:18;:22;72231:2;72212:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;72560:139;72597:2;72651:33;72674:1;72678:2;72682:1;72651:14;:33::i;:::-;72618:30;72639:8;72618:20;:30::i;:::-;:66;72560:18;:139::i;:::-;72526:17;:31;72544:12;72526:31;;;;;;;;;;;:173;;;;72716:16;72747:11;72776:8;72761:12;:23;72747:37;;73031:16;73027:2;73023:25;73011:37;;73403:12;73363:8;73322:1;73260:25;73201:1;73140;73113:335;73528:1;73514:12;73510:20;73468:346;73569:3;73560:7;73557:16;73468:346;;73787:7;73777:8;73774:1;73747:25;73744:1;73741;73736:59;73622:1;73613:7;73609:15;73598:26;;73468:346;;;73472:77;73859:1;73847:8;:13;73843:45;;;73869:19;;;;;;;;;;;;;;73843:45;73921:3;73905:13;:19;;;;71560:2454;;73946:60;73975:1;73979:2;73983:12;73997:8;73946:20;:60::i;:::-;71560:2454;;;:::o;16906:747::-;16987:7;16996:12;17045:2;17025:9;:16;:22;17021:625;;;17064:9;17088;17112:7;17369:4;17358:9;17354:20;17348:27;17343:32;;17419:4;17408:9;17404:20;17398:27;17393:32;;17477:4;17466:9;17462:20;17456:27;17453:1;17448:36;17443:41;;17520:25;17531:4;17537:1;17540;17543;17520:10;:25::i;:::-;17513:32;;;;;;;;;17021:625;17594:1;17598:35;17578:56;;;;16906:747;;;;;;:::o;15299:521::-;15377:20;15368:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;15364:449;;;15414:7;;15364:449;15475:29;15466:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;15462:351;;;15521:34;;;;;;;;;;:::i;:::-;;;;;;;;15462:351;15586:35;15577:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;15573:240;;;15638:41;;;;;;;;;;:::i;:::-;;;;;;;;15573:240;15710:30;15701:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;15697:116;;;15757:44;;;;;;;;;;:::i;:::-;;;;;;;;15697:116;15299:521;;:::o;58936:324::-;59006:14;59239:1;59229:8;59226:15;59200:24;59196:46;59186:56;;59108:145;;;:::o;19839:1477::-;19927:7;19936:12;20861:66;20856:1;20848:10;;:79;20844:163;;;20960:1;20964:30;20944:51;;;;;;20844:163;21104:14;21121:24;21131:4;21137:1;21140;21143;21121:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21104:41;;21178:1;21160:20;;:6;:20;;;21156:103;;;21213:1;21217:29;21197:50;;;;;;;21156:103;21279:6;21287:20;21271:37;;;;;19839:1477;;;;;;;;:::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:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1045:5;1076:6;1070:13;1061:22;;1092:30;1116:5;1092:30;:::i;:::-;1051:77;;;;:::o;1134:137::-;1179:5;1217:6;1204:20;1195:29;;1233:32;1259:5;1233:32;:::i;:::-;1185:86;;;;:::o;1277:141::-;1333:5;1364:6;1358:13;1349:22;;1380:32;1406:5;1380:32;:::i;:::-;1339:79;;;;:::o;1437:271::-;1492:5;1541:3;1534:4;1526:6;1522:17;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1599:6;1586:20;1624:78;1698:3;1690:6;1683:4;1675:6;1671:17;1624:78;:::i;:::-;1615:87;;1498:210;;;;;:::o;1728:273::-;1784:5;1833:3;1826:4;1818:6;1814:17;1810:27;1800:2;;1851:1;1848;1841:12;1800:2;1891:6;1878:20;1916:79;1991:3;1983:6;1976:4;1968:6;1964:17;1916:79;:::i;:::-;1907:88;;1790:211;;;;;:::o;2007:139::-;2053:5;2091:6;2078:20;2069:29;;2107:33;2134:5;2107:33;:::i;:::-;2059:87;;;;:::o;2152:137::-;2197:5;2235:6;2222:20;2213:29;;2251:32;2277:5;2251:32;:::i;:::-;2203:86;;;;:::o;2295:262::-;2354:6;2403:2;2391:9;2382:7;2378:23;2374:32;2371:2;;;2419:1;2416;2409:12;2371:2;2462:1;2487:53;2532:7;2523:6;2512:9;2508:22;2487:53;:::i;:::-;2477:63;;2433:117;2361:196;;;;:::o;2563:407::-;2631:6;2639;2688:2;2676:9;2667:7;2663:23;2659:32;2656:2;;;2704:1;2701;2694:12;2656:2;2747:1;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2718:117;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2646:324;;;;;:::o;2976:552::-;3053:6;3061;3069;3118:2;3106:9;3097:7;3093:23;3089:32;3086:2;;;3134:1;3131;3124:12;3086:2;3177:1;3202:53;3247:7;3238:6;3227:9;3223:22;3202:53;:::i;:::-;3192:63;;3148:117;3304:2;3330:53;3375:7;3366:6;3355:9;3351:22;3330:53;:::i;:::-;3320:63;;3275:118;3432:2;3458:53;3503:7;3494:6;3483:9;3479:22;3458:53;:::i;:::-;3448:63;;3403:118;3076:452;;;;;:::o;3534:809::-;3629:6;3637;3645;3653;3702:3;3690:9;3681:7;3677:23;3673:33;3670:2;;;3719:1;3716;3709:12;3670:2;3762:1;3787:53;3832:7;3823:6;3812:9;3808:22;3787:53;:::i;:::-;3777:63;;3733:117;3889:2;3915:53;3960:7;3951:6;3940:9;3936:22;3915:53;:::i;:::-;3905:63;;3860:118;4017:2;4043:53;4088:7;4079:6;4068:9;4064:22;4043:53;:::i;:::-;4033:63;;3988:118;4173:2;4162:9;4158:18;4145:32;4204:18;4196:6;4193:30;4190:2;;;4236:1;4233;4226:12;4190:2;4264:62;4318:7;4309:6;4298:9;4294:22;4264:62;:::i;:::-;4254:72;;4116:220;3660:683;;;;;;;:::o;4349:401::-;4414:6;4422;4471:2;4459:9;4450:7;4446:23;4442:32;4439:2;;;4487:1;4484;4477:12;4439:2;4530:1;4555:53;4600:7;4591:6;4580:9;4576:22;4555:53;:::i;:::-;4545:63;;4501:117;4657:2;4683:50;4725:7;4716:6;4705:9;4701:22;4683:50;:::i;:::-;4673:60;;4628:115;4429:321;;;;;:::o;4756:407::-;4824:6;4832;4881:2;4869:9;4860:7;4856:23;4852:32;4849:2;;;4897:1;4894;4887:12;4849:2;4940:1;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4911:117;5067:2;5093:53;5138:7;5129:6;5118:9;5114:22;5093:53;:::i;:::-;5083:63;;5038:118;4839:324;;;;;:::o;5169:405::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5352:1;5377:53;5422:7;5413:6;5402:9;5398:22;5377:53;:::i;:::-;5367:63;;5323:117;5479:2;5505:52;5549:7;5540:6;5529:9;5525:22;5505:52;:::i;:::-;5495:62;;5450:117;5251:323;;;;;:::o;5580:278::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:2;;;5712:1;5709;5702:12;5664:2;5755:1;5780:61;5833:7;5824:6;5813:9;5809:22;5780:61;:::i;:::-;5770:71;;5726:125;5654:204;;;;:::o;5864:260::-;5922:6;5971:2;5959:9;5950:7;5946:23;5942:32;5939:2;;;5987:1;5984;5977:12;5939:2;6030:1;6055:52;6099:7;6090:6;6079:9;6075:22;6055:52;:::i;:::-;6045:62;;6001:116;5929:195;;;;:::o;6130:282::-;6199:6;6248:2;6236:9;6227:7;6223:23;6219:32;6216:2;;;6264:1;6261;6254:12;6216:2;6307:1;6332:63;6387:7;6378:6;6367:9;6363:22;6332:63;:::i;:::-;6322:73;;6278:127;6206:206;;;;:::o;6418:375::-;6487:6;6536:2;6524:9;6515:7;6511:23;6507:32;6504:2;;;6552:1;6549;6542:12;6504:2;6623:1;6612:9;6608:17;6595:31;6653:18;6645:6;6642:30;6639:2;;;6685:1;6682;6675:12;6639:2;6713:63;6768:7;6759:6;6748:9;6744:22;6713:63;:::i;:::-;6703:73;;6566:220;6494:299;;;;:::o;6799:262::-;6858:6;6907:2;6895:9;6886:7;6882:23;6878:32;6875:2;;;6923:1;6920;6913:12;6875:2;6966:1;6991:53;7036:7;7027:6;7016:9;7012:22;6991:53;:::i;:::-;6981:63;;6937:117;6865:196;;;;:::o;7067:518::-;7144:6;7152;7201:2;7189:9;7180:7;7176:23;7172:32;7169:2;;;7217:1;7214;7207:12;7169:2;7260:1;7285:53;7330:7;7321:6;7310:9;7306:22;7285:53;:::i;:::-;7275:63;;7231:117;7415:2;7404:9;7400:18;7387:32;7446:18;7438:6;7435:30;7432:2;;;7478:1;7475;7468:12;7432:2;7506:62;7560:7;7551:6;7540:9;7536:22;7506:62;:::i;:::-;7496:72;;7358:220;7159:426;;;;;:::o;7591:407::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:2;;;7732:1;7729;7722:12;7684:2;7775:1;7800:53;7845:7;7836:6;7825:9;7821:22;7800:53;:::i;:::-;7790:63;;7746:117;7902:2;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7873:118;7674:324;;;;;:::o;8004:118::-;8091:24;8109:5;8091:24;:::i;:::-;8086:3;8079:37;8069:53;;:::o;8128:157::-;8233:45;8253:24;8271:5;8253:24;:::i;:::-;8233:45;:::i;:::-;8228:3;8221:58;8211:74;;:::o;8291:109::-;8372:21;8387:5;8372:21;:::i;:::-;8367:3;8360:34;8350:50;;:::o;8406:118::-;8493:24;8511:5;8493:24;:::i;:::-;8488:3;8481:37;8471:53;;:::o;8530:360::-;8616:3;8644:38;8676:5;8644:38;:::i;:::-;8698:70;8761:6;8756:3;8698:70;:::i;:::-;8691:77;;8777:52;8822:6;8817:3;8810:4;8803:5;8799:16;8777:52;:::i;:::-;8854:29;8876:6;8854:29;:::i;:::-;8849:3;8845:39;8838:46;;8620:270;;;;;:::o;8896:193::-;9014:68;9076:5;9014:68;:::i;:::-;9009:3;9002:81;8992:97;;:::o;9095:364::-;9183:3;9211:39;9244:5;9211:39;:::i;:::-;9266:71;9330:6;9325:3;9266:71;:::i;:::-;9259:78;;9346:52;9391:6;9386:3;9379:4;9372:5;9368:16;9346:52;:::i;:::-;9423:29;9445:6;9423:29;:::i;:::-;9418:3;9414:39;9407:46;;9187:272;;;;;:::o;9465:377::-;9571:3;9599:39;9632:5;9599:39;:::i;:::-;9654:89;9736:6;9731:3;9654:89;:::i;:::-;9647:96;;9752:52;9797:6;9792:3;9785:4;9778:5;9774:16;9752:52;:::i;:::-;9829:6;9824:3;9820:16;9813:23;;9575:267;;;;;:::o;9872:845::-;9975:3;10012:5;10006:12;10041:36;10067:9;10041:36;:::i;:::-;10093:89;10175:6;10170:3;10093:89;:::i;:::-;10086:96;;10213:1;10202:9;10198:17;10229:1;10224:137;;;;10375:1;10370:341;;;;10191:520;;10224:137;10308:4;10304:9;10293;10289:25;10284:3;10277:38;10344:6;10339:3;10335:16;10328:23;;10224:137;;10370:341;10437:38;10469:5;10437:38;:::i;:::-;10497:1;10511:154;10525:6;10522:1;10519:13;10511:154;;;10599:7;10593:14;10589:1;10584:3;10580:11;10573:35;10649:1;10640:7;10636:15;10625:26;;10547:4;10544:1;10540:12;10535:17;;10511:154;;;10694:6;10689:3;10685:16;10678:23;;10377:334;;10191:520;;9979:738;;;;;;:::o;10723:366::-;10865:3;10886:67;10950:2;10945:3;10886:67;:::i;:::-;10879:74;;10962:93;11051:3;10962:93;:::i;:::-;11080:2;11075:3;11071:12;11064:19;;10869:220;;;:::o;11095:366::-;11237:3;11258:67;11322:2;11317:3;11258:67;:::i;:::-;11251:74;;11334:93;11423:3;11334:93;:::i;:::-;11452:2;11447:3;11443:12;11436:19;;11241:220;;;:::o;11467:366::-;11609:3;11630:67;11694:2;11689:3;11630:67;:::i;:::-;11623:74;;11706:93;11795:3;11706:93;:::i;:::-;11824:2;11819:3;11815:12;11808:19;;11613:220;;;:::o;11839:366::-;11981:3;12002:67;12066:2;12061:3;12002:67;:::i;:::-;11995:74;;12078:93;12167:3;12078:93;:::i;:::-;12196:2;12191:3;12187:12;12180:19;;11985:220;;;:::o;12211:366::-;12353:3;12374:67;12438:2;12433:3;12374:67;:::i;:::-;12367:74;;12450:93;12539:3;12450:93;:::i;:::-;12568:2;12563:3;12559:12;12552:19;;12357:220;;;:::o;12583:366::-;12725:3;12746:67;12810:2;12805:3;12746:67;:::i;:::-;12739:74;;12822:93;12911:3;12822:93;:::i;:::-;12940:2;12935:3;12931:12;12924:19;;12729:220;;;:::o;12955:366::-;13097:3;13118:67;13182:2;13177:3;13118:67;:::i;:::-;13111:74;;13194:93;13283:3;13194:93;:::i;:::-;13312:2;13307:3;13303:12;13296:19;;13101:220;;;:::o;13327:400::-;13487:3;13508:84;13590:1;13585:3;13508:84;:::i;:::-;13501:91;;13601:93;13690:3;13601:93;:::i;:::-;13719:1;13714:3;13710:11;13703:18;;13491:236;;;:::o;13733:366::-;13875:3;13896:67;13960:2;13955:3;13896:67;:::i;:::-;13889:74;;13972:93;14061:3;13972:93;:::i;:::-;14090:2;14085:3;14081:12;14074:19;;13879:220;;;:::o;14105:366::-;14247:3;14268:67;14332:2;14327:3;14268:67;:::i;:::-;14261:74;;14344:93;14433:3;14344:93;:::i;:::-;14462:2;14457:3;14453:12;14446:19;;14251:220;;;:::o;14477:366::-;14619:3;14640:67;14704:2;14699:3;14640:67;:::i;:::-;14633:74;;14716:93;14805:3;14716:93;:::i;:::-;14834:2;14829:3;14825:12;14818:19;;14623:220;;;:::o;14849:366::-;14991:3;15012:67;15076:2;15071:3;15012:67;:::i;:::-;15005:74;;15088:93;15177:3;15088:93;:::i;:::-;15206:2;15201:3;15197:12;15190:19;;14995:220;;;:::o;15221:366::-;15363:3;15384:67;15448:2;15443:3;15384:67;:::i;:::-;15377:74;;15460:93;15549:3;15460:93;:::i;:::-;15578:2;15573:3;15569:12;15562:19;;15367:220;;;:::o;15593:366::-;15735:3;15756:67;15820:2;15815:3;15756:67;:::i;:::-;15749:74;;15832:93;15921:3;15832:93;:::i;:::-;15950:2;15945:3;15941:12;15934:19;;15739:220;;;:::o;15965:118::-;16052:24;16070:5;16052:24;:::i;:::-;16047:3;16040:37;16030:53;;:::o;16089:112::-;16172:22;16188:5;16172:22;:::i;:::-;16167:3;16160:35;16150:51;;:::o;16207:256::-;16319:3;16334:75;16405:3;16396:6;16334:75;:::i;:::-;16434:2;16429:3;16425:12;16418:19;;16454:3;16447:10;;16323:140;;;;:::o;16469:695::-;16747:3;16769:92;16857:3;16848:6;16769:92;:::i;:::-;16762:99;;16878:95;16969:3;16960:6;16878:95;:::i;:::-;16871:102;;16990:148;17134:3;16990:148;:::i;:::-;16983:155;;17155:3;17148:10;;16751:413;;;;;:::o;17170:222::-;17263:4;17301:2;17290:9;17286:18;17278:26;;17314:71;17382:1;17371:9;17367:17;17358:6;17314:71;:::i;:::-;17268:124;;;;:::o;17398:332::-;17519:4;17557:2;17546:9;17542:18;17534:26;;17570:71;17638:1;17627:9;17623:17;17614:6;17570:71;:::i;:::-;17651:72;17719:2;17708:9;17704:18;17695:6;17651:72;:::i;:::-;17524:206;;;;;:::o;17736:640::-;17931:4;17969:3;17958:9;17954:19;17946:27;;17983:71;18051:1;18040:9;18036:17;18027:6;17983:71;:::i;:::-;18064:72;18132:2;18121:9;18117:18;18108:6;18064:72;:::i;:::-;18146;18214:2;18203:9;18199:18;18190:6;18146:72;:::i;:::-;18265:9;18259:4;18255:20;18250:2;18239:9;18235:18;18228:48;18293:76;18364:4;18355:6;18293:76;:::i;:::-;18285:84;;17936:440;;;;;;;:::o;18382:332::-;18503:4;18541:2;18530:9;18526:18;18518:26;;18554:71;18622:1;18611:9;18607:17;18598:6;18554:71;:::i;:::-;18635:72;18703:2;18692:9;18688:18;18679:6;18635:72;:::i;:::-;18508:206;;;;;:::o;18720:210::-;18807:4;18845:2;18834:9;18830:18;18822:26;;18858:65;18920:1;18909:9;18905:17;18896:6;18858:65;:::i;:::-;18812:118;;;;:::o;18936:545::-;19109:4;19147:3;19136:9;19132:19;19124:27;;19161:71;19229:1;19218:9;19214:17;19205:6;19161:71;:::i;:::-;19242:68;19306:2;19295:9;19291:18;19282:6;19242:68;:::i;:::-;19320:72;19388:2;19377:9;19373:18;19364:6;19320:72;:::i;:::-;19402;19470:2;19459:9;19455:18;19446:6;19402:72;:::i;:::-;19114:367;;;;;;;:::o;19487:284::-;19611:4;19649:2;19638:9;19634:18;19626:26;;19662:102;19761:1;19750:9;19746:17;19737:6;19662:102;:::i;:::-;19616:155;;;;:::o;19777:313::-;19890:4;19928:2;19917:9;19913:18;19905:26;;19977:9;19971:4;19967:20;19963:1;19952:9;19948:17;19941:47;20005:78;20078:4;20069:6;20005:78;:::i;:::-;19997:86;;19895:195;;;;:::o;20096:419::-;20262:4;20300:2;20289:9;20285:18;20277:26;;20349:9;20343:4;20339:20;20335:1;20324:9;20320:17;20313:47;20377:131;20503:4;20377:131;:::i;:::-;20369:139;;20267:248;;;:::o;20521:419::-;20687:4;20725:2;20714:9;20710:18;20702:26;;20774:9;20768:4;20764:20;20760:1;20749:9;20745:17;20738:47;20802:131;20928:4;20802:131;:::i;:::-;20794:139;;20692:248;;;:::o;20946:419::-;21112:4;21150:2;21139:9;21135:18;21127:26;;21199:9;21193:4;21189:20;21185:1;21174:9;21170:17;21163:47;21227:131;21353:4;21227:131;:::i;:::-;21219:139;;21117:248;;;:::o;21371:419::-;21537:4;21575:2;21564:9;21560:18;21552:26;;21624:9;21618:4;21614:20;21610:1;21599:9;21595:17;21588:47;21652:131;21778:4;21652:131;:::i;:::-;21644:139;;21542:248;;;:::o;21796:419::-;21962:4;22000:2;21989:9;21985:18;21977:26;;22049:9;22043:4;22039:20;22035:1;22024:9;22020:17;22013:47;22077:131;22203:4;22077:131;:::i;:::-;22069:139;;21967:248;;;:::o;22221:419::-;22387:4;22425:2;22414:9;22410:18;22402:26;;22474:9;22468:4;22464:20;22460:1;22449:9;22445:17;22438:47;22502:131;22628:4;22502:131;:::i;:::-;22494:139;;22392:248;;;:::o;22646:419::-;22812:4;22850:2;22839:9;22835:18;22827:26;;22899:9;22893:4;22889:20;22885:1;22874:9;22870:17;22863:47;22927:131;23053:4;22927:131;:::i;:::-;22919:139;;22817:248;;;:::o;23071:419::-;23237:4;23275:2;23264:9;23260:18;23252:26;;23324:9;23318:4;23314:20;23310:1;23299:9;23295:17;23288:47;23352:131;23478:4;23352:131;:::i;:::-;23344:139;;23242:248;;;:::o;23496:419::-;23662:4;23700:2;23689:9;23685:18;23677:26;;23749:9;23743:4;23739:20;23735:1;23724:9;23720:17;23713:47;23777:131;23903:4;23777:131;:::i;:::-;23769:139;;23667:248;;;:::o;23921:419::-;24087:4;24125:2;24114:9;24110:18;24102:26;;24174:9;24168:4;24164:20;24160:1;24149:9;24145:17;24138:47;24202:131;24328:4;24202:131;:::i;:::-;24194:139;;24092:248;;;:::o;24346:419::-;24512:4;24550:2;24539:9;24535:18;24527:26;;24599:9;24593:4;24589:20;24585:1;24574:9;24570:17;24563:47;24627:131;24753:4;24627:131;:::i;:::-;24619:139;;24517:248;;;:::o;24771:419::-;24937:4;24975:2;24964:9;24960:18;24952:26;;25024:9;25018:4;25014:20;25010:1;24999:9;24995:17;24988:47;25052:131;25178:4;25052:131;:::i;:::-;25044:139;;24942:248;;;:::o;25196:419::-;25362:4;25400:2;25389:9;25385:18;25377:26;;25449:9;25443:4;25439:20;25435:1;25424:9;25420:17;25413:47;25477:131;25603:4;25477:131;:::i;:::-;25469:139;;25367:248;;;:::o;25621:222::-;25714:4;25752:2;25741:9;25737:18;25729:26;;25765:71;25833:1;25822:9;25818:17;25809:6;25765:71;:::i;:::-;25719:124;;;;:::o;25849:129::-;25883:6;25910:20;;:::i;:::-;25900:30;;25939:33;25967:4;25959:6;25939:33;:::i;:::-;25890:88;;;:::o;25984:75::-;26017:6;26050:2;26044:9;26034:19;;26024:35;:::o;26065:307::-;26126:4;26216:18;26208:6;26205:30;26202:2;;;26238:18;;:::i;:::-;26202:2;26276:29;26298:6;26276:29;:::i;:::-;26268:37;;26360:4;26354;26350:15;26342:23;;26131:241;;;:::o;26378:308::-;26440:4;26530:18;26522:6;26519:30;26516:2;;;26552:18;;:::i;:::-;26516:2;26590:29;26612:6;26590:29;:::i;:::-;26582:37;;26674:4;26668;26664:15;26656:23;;26445:241;;;:::o;26692:141::-;26741:4;26764:3;26756:11;;26787:3;26784:1;26777:14;26821:4;26818:1;26808:18;26800:26;;26746:87;;;:::o;26839:98::-;26890:6;26924:5;26918:12;26908:22;;26897:40;;;:::o;26943:99::-;26995:6;27029:5;27023:12;27013:22;;27002:40;;;:::o;27048:168::-;27131:11;27165:6;27160:3;27153:19;27205:4;27200:3;27196:14;27181:29;;27143:73;;;;:::o;27222:169::-;27306:11;27340:6;27335:3;27328:19;27380:4;27375:3;27371:14;27356:29;;27318:73;;;;:::o;27397:148::-;27499:11;27536:3;27521:18;;27511:34;;;;:::o;27551:305::-;27591:3;27610:20;27628:1;27610:20;:::i;:::-;27605:25;;27644:20;27662:1;27644:20;:::i;:::-;27639:25;;27798:1;27730:66;27726:74;27723:1;27720:81;27717:2;;;27804:18;;:::i;:::-;27717:2;27848:1;27845;27841:9;27834:16;;27595:261;;;;:::o;27862:185::-;27902:1;27919:20;27937:1;27919:20;:::i;:::-;27914:25;;27953:20;27971:1;27953:20;:::i;:::-;27948:25;;27992:1;27982:2;;27997:18;;:::i;:::-;27982:2;28039:1;28036;28032:9;28027:14;;27904:143;;;;:::o;28053:348::-;28093:7;28116:20;28134:1;28116:20;:::i;:::-;28111:25;;28150:20;28168:1;28150:20;:::i;:::-;28145:25;;28338:1;28270:66;28266:74;28263:1;28260:81;28255:1;28248:9;28241:17;28237:105;28234:2;;;28345:18;;:::i;:::-;28234:2;28393:1;28390;28386:9;28375:20;;28101:300;;;;:::o;28407:191::-;28447:4;28467:20;28485:1;28467:20;:::i;:::-;28462:25;;28501:20;28519:1;28501:20;:::i;:::-;28496:25;;28540:1;28537;28534:8;28531:2;;;28545:18;;:::i;:::-;28531:2;28590:1;28587;28583:9;28575:17;;28452:146;;;;:::o;28604:96::-;28641:7;28670:24;28688:5;28670:24;:::i;:::-;28659:35;;28649:51;;;:::o;28706:90::-;28740:7;28783:5;28776:13;28769:21;28758:32;;28748:48;;;:::o;28802:77::-;28839:7;28868:5;28857:16;;28847:32;;;:::o;28885:149::-;28921:7;28961:66;28954:5;28950:78;28939:89;;28929:105;;;:::o;29040:126::-;29077:7;29117:42;29110:5;29106:54;29095:65;;29085:81;;;:::o;29172:77::-;29209:7;29238:5;29227:16;;29217:32;;;:::o;29255:86::-;29290:7;29330:4;29323:5;29319:16;29308:27;;29298:43;;;:::o;29347:109::-;29383:7;29423:26;29416:5;29412:38;29401:49;;29391:65;;;:::o;29462:188::-;29543:9;29576:68;29638:5;29576:68;:::i;:::-;29563:81;;29553:97;;;:::o;29656:144::-;29737:9;29770:24;29788:5;29770:24;:::i;:::-;29757:37;;29747:53;;;:::o;29806:154::-;29890:6;29885:3;29880;29867:30;29952:1;29943:6;29938:3;29934:16;29927:27;29857:103;;;:::o;29966:307::-;30034:1;30044:113;30058:6;30055:1;30052:13;30044:113;;;30143:1;30138:3;30134:11;30128:18;30124:1;30119:3;30115:11;30108:39;30080:2;30077:1;30073:10;30068:15;;30044:113;;;30175:6;30172:1;30169:13;30166:2;;;30255:1;30246:6;30241:3;30237:16;30230:27;30166:2;30015:258;;;;:::o;30279:320::-;30323:6;30360:1;30354:4;30350:12;30340:22;;30407:1;30401:4;30397:12;30428:18;30418:2;;30484:4;30476:6;30472:17;30462:27;;30418:2;30546;30538:6;30535:14;30515:18;30512:38;30509:2;;;30565:18;;:::i;:::-;30509:2;30330:269;;;;:::o;30605:281::-;30688:27;30710:4;30688:27;:::i;:::-;30680:6;30676:40;30818:6;30806:10;30803:22;30782:18;30770:10;30767:34;30764:62;30761:2;;;30829:18;;:::i;:::-;30761:2;30869:10;30865:2;30858:22;30648:238;;;:::o;30892:233::-;30931:3;30954:24;30972:5;30954:24;:::i;:::-;30945:33;;31000:66;30993:5;30990:77;30987:2;;;31070:18;;:::i;:::-;30987:2;31117:1;31110:5;31106:13;31099:20;;30935:190;;;:::o;31131:100::-;31170:7;31199:26;31219:5;31199:26;:::i;:::-;31188:37;;31178:53;;;:::o;31237:94::-;31276:7;31305:20;31319:5;31305:20;:::i;:::-;31294:31;;31284:47;;;:::o;31337:176::-;31369:1;31386:20;31404:1;31386:20;:::i;:::-;31381:25;;31420:20;31438:1;31420:20;:::i;:::-;31415:25;;31459:1;31449:2;;31464:18;;:::i;:::-;31449:2;31505:1;31502;31498:9;31493:14;;31371:142;;;;:::o;31519:180::-;31567:77;31564:1;31557:88;31664:4;31661:1;31654:15;31688:4;31685:1;31678:15;31705:180;31753:77;31750:1;31743:88;31850:4;31847:1;31840:15;31874:4;31871:1;31864:15;31891:180;31939:77;31936:1;31929:88;32036:4;32033:1;32026:15;32060:4;32057:1;32050:15;32077:180;32125:77;32122:1;32115:88;32222:4;32219:1;32212:15;32246:4;32243:1;32236:15;32263:102;32304:6;32355:2;32351:7;32346:2;32339:5;32335:14;32331:28;32321:38;;32311:54;;;:::o;32371:94::-;32404:8;32452:5;32448:2;32444:14;32423:35;;32413:52;;;:::o;32471:174::-;32611:26;32607:1;32599:6;32595:14;32588:50;32577:68;:::o;32651:167::-;32791:19;32787:1;32779:6;32775:14;32768:43;32757:61;:::o;32824:181::-;32964:33;32960:1;32952:6;32948:14;32941:57;32930:75;:::o;33011:225::-;33151:34;33147:1;33139:6;33135:14;33128:58;33220:8;33215:2;33207:6;33203:15;33196:33;33117:119;:::o;33242:165::-;33382:17;33378:1;33370:6;33366:14;33359:41;33348:59;:::o;33413:221::-;33553:34;33549:1;33541:6;33537:14;33530:58;33622:4;33617:2;33609:6;33605:15;33598:29;33519:115;:::o;33640:177::-;33780:29;33776:1;33768:6;33764:14;33757:53;33746:71;:::o;33823:155::-;33963:7;33959:1;33951:6;33947:14;33940:31;33929:49;:::o;33984:182::-;34124:34;34120:1;34112:6;34108:14;34101:58;34090:76;:::o;34172:234::-;34312:34;34308:1;34300:6;34296:14;34289:58;34381:17;34376:2;34368:6;34364:15;34357:42;34278:128;:::o;34412:167::-;34552:19;34548:1;34540:6;34536:14;34529:43;34518:61;:::o;34585:229::-;34725:34;34721:1;34713:6;34709:14;34702:58;34794:12;34789:2;34781:6;34777:15;34770:37;34691:123;:::o;34820:165::-;34960:17;34956:1;34948:6;34944:14;34937:41;34926:59;:::o;34991:175::-;35131:27;35127:1;35119:6;35115:14;35108:51;35097:69;:::o;35172:122::-;35245:24;35263:5;35245:24;:::i;:::-;35238:5;35235:35;35225:2;;35284:1;35281;35274:12;35225:2;35215:79;:::o;35300:116::-;35370:21;35385:5;35370:21;:::i;:::-;35363:5;35360:32;35350:2;;35406:1;35403;35396:12;35350:2;35340:76;:::o;35422:120::-;35494:23;35511:5;35494:23;:::i;:::-;35487:5;35484:34;35474:2;;35532:1;35529;35522:12;35474:2;35464:78;:::o;35548:122::-;35621:24;35639:5;35621:24;:::i;:::-;35614:5;35611:35;35601:2;;35660:1;35657;35650:12;35601:2;35591:79;:::o;35676:120::-;35748:23;35765:5;35748:23;:::i;:::-;35741:5;35738:34;35728:2;;35786:1;35783;35776:12;35728:2;35718:78;:::o

Swarm Source

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