ETH Price: $2,468.24 (-2.10%)

Token

Sleepy Frog (SF)
 

Overview

Max Total Supply

656 SF

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yoboiearl.eth
Balance
1 SF
0x4643d7104e588cc5f0933bd94c23b85c88d00740
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:
SleepyFrog

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 0;
    }

    /**
     * @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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: sf.sol





pragma solidity ^0.8.7;






contract SleepyFrog is ERC721A, Ownable {

    uint public constant maxFree = 1;

    uint256 public constant maxFreeMintNum = 4000;

    uint public supply = 10000;

    uint public price = 0.002 ether;

    uint public alrFreeTotal = 0;

    string public baseURI = "https://ipfs.io/ipfs/bafybeig5ffpcdubr4wqfwew6yoesood2wbhlfpspwgtysaoof3o2y35s7i/";

    string public constant baseExtension = ".json";



    bool public _live = true;



    constructor() ERC721A("Sleepy Frog", "SF") {}



    function Mint(uint256 _amount) external payable {

        address _caller = _msgSender();

        require(_live, "Not live!");

        require(supply >= totalSupply() + _amount, "Exceeds max supply");

        require(_amount > 0, "No 0 mints");

        require(tx.origin == _caller, "No contracts");

        



        if(_numberMinted(msg.sender) >= maxFree) {

            require(msg.value >= _amount * price, "Invalid funds provided");

        } else{

            uint count = _numberMinted(msg.sender) + _amount;

            if(count > maxFree){

                require(msg.value >= (count - maxFree) * price , "Insufficient funds");

            }

        }

        if(_numberMinted(msg.sender) == 0) {

            if(alrFreeTotal < maxFreeMintNum){

                alrFreeTotal++;

            }else{

                if(msg.value < _amount  * price){

                    require( msg.value >= _amount * price, "Mint would exceed max supply of free mints" );

                }

            }

        }

        _safeMint(_caller, _amount);

    }



    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        (bool success, ) = _msgSender().call{value: balance}("");

        require(success, "Failed to send");

    }



    function _startTokenId() internal view virtual override returns (uint256) {

        return 0;

    }



    function TeamMint() external onlyOwner {

        _safeMint(_msgSender(), 100);

    }



    function reduceSupply(uint newSupply) external onlyOwner {

        supply = newSupply;

    }



    function setBaseURI(string memory baseURI_) external onlyOwner {

        baseURI = baseURI_;

    }



    function setCost(uint256 newPrice) external onlyOwner {

        price = newPrice;

    }

    function numberMinted(address owner) public view returns (uint256) {

        return _numberMinted(owner);

    }



    function tokenURI(uint256 _tokenId) public view override returns (string memory) {

        require(_exists(_tokenId), "Token does not exist.");

        return bytes(baseURI).length > 0 ? string(

            abi.encodePacked(

              baseURI,

              Strings.toString(_tokenId),

            //   _tokenId.toString(),

              baseExtension

            )

        ) : "";

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alrFreeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261271060095566071afd498d0000600a556000600b556040518060800160405280605181526020016200354760519139600c90805190602001906200004b92919062000224565b506001600d60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b506040518060400160405280600b81526020017f536c656570792046726f670000000000000000000000000000000000000000008152506040518060400160405280600281526020017f53460000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f992919062000224565b5080600390805190602001906200011292919062000224565b50620001236200015160201b60201c565b60008190555050506200014b6200013f6200015660201b60201c565b6200015e60201b60201c565b62000339565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023290620002d4565b90600052602060002090601f016020900481019282620002565760008555620002a2565b82601f106200027157805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a157825182559160200191906001019062000284565b5b509050620002b19190620002b5565b5090565b5b80821115620002d0576000816000905550600101620002b6565b5090565b60006002820490506001821680620002ed57607f821691505b602082108114156200030457620003036200030a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6131fe80620003496000396000f3fe6080604052600436106101e35760003560e01c806369e5d62011610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd14610655578063dc33e68114610692578063e985e9c5146106cf578063f2fde38b1461070c576101e3565b8063a035b1fe146105ba578063a22cb465146105e5578063b88d4fde1461060e578063c66828621461062a576101e3565b80637b460aac116100d15780637b460aac14610510578063806234441461053b5780638da5cb5b1461056457806395d89b411461058f576101e3565b806369e5d620146104665780636c0360eb1461049157806370a08231146104bc578063715018a6146104f9576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103be57806356e0ec72146103e75780636242a8a3146104125780636352211e14610429576101e3565b80633ccfd60b1461033757806342842e0e1461034e57806344a0d68a1461036a578063485a68a314610393576101e3565b8063081812fc116101b6578063081812fc14610297578063095ea7b3146102d457806318160ddd146102f057806323b872dd1461031b576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063078837031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612521565b610735565b60405161021c9190612991565b60405180910390f35b34801561023157600080fd5b5061023a6107c7565b6040516102479190612b2e565b60405180910390f35b34801561025c57600080fd5b506102656107cd565b60405161027291906129ac565b60405180910390f35b610295600480360381019061029091906125c4565b61085f565b005b3480156102a357600080fd5b506102be60048036038101906102b991906125c4565b610b57565b6040516102cb919061292a565b60405180910390f35b6102ee60048036038101906102e991906124e1565b610bd6565b005b3480156102fc57600080fd5b50610305610d1a565b6040516103129190612b2e565b60405180910390f35b610335600480360381019061033091906123cb565b610d31565b005b34801561034357600080fd5b5061034c611056565b005b610368600480360381019061036391906123cb565b61111a565b005b34801561037657600080fd5b50610391600480360381019061038c91906125c4565b61113a565b005b34801561039f57600080fd5b506103a861114c565b6040516103b59190612b2e565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e0919061257b565b611151565b005b3480156103f357600080fd5b506103fc611173565b6040516104099190612991565b60405180910390f35b34801561041e57600080fd5b50610427611186565b005b34801561043557600080fd5b50610450600480360381019061044b91906125c4565b6111a2565b60405161045d919061292a565b60405180910390f35b34801561047257600080fd5b5061047b6111b4565b6040516104889190612b2e565b60405180910390f35b34801561049d57600080fd5b506104a66111ba565b6040516104b391906129ac565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de919061235e565b611248565b6040516104f09190612b2e565b60405180910390f35b34801561050557600080fd5b5061050e611301565b005b34801561051c57600080fd5b50610525611315565b6040516105329190612b2e565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906125c4565b61131b565b005b34801561057057600080fd5b5061057961132d565b604051610586919061292a565b60405180910390f35b34801561059b57600080fd5b506105a4611357565b6040516105b191906129ac565b60405180910390f35b3480156105c657600080fd5b506105cf6113e9565b6040516105dc9190612b2e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906124a1565b6113ef565b005b6106286004803603810190610623919061241e565b6114fa565b005b34801561063657600080fd5b5061063f61156d565b60405161064c91906129ac565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906125c4565b6115a6565b60405161068991906129ac565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061235e565b611685565b6040516106c69190612b2e565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f1919061238b565b611697565b6040516107039190612991565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061235e565b61172b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b6060600280546107dc90612dcd565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612dcd565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b60006108696117af565b9050600d60009054906101000a900460ff166108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612b0e565b60405180910390fd5b816108c3610d1a565b6108cd9190612c33565b6009541015610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890612a4e565b60405180910390fd5b60008211610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90612a0e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990612aee565b60405180910390fd5b60016109cd336117b7565b10610a2757600a54826109e09190612c89565b341015610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990612aae565b60405180910390fd5b610aa7565b600082610a33336117b7565b610a3d9190612c33565b90506001811115610aa557600a54600182610a589190612ce3565b610a629190612c89565b341015610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612a2e565b60405180910390fd5b5b505b6000610ab2336117b7565b1415610b4957610fa0600b541015610ae157600b6000815480929190610ad790612e30565b9190505550610b48565b600a5482610aef9190612c89565b341015610b4757600a5482610b049190612c89565b341015610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906129ce565b60405180910390fd5b5b5b5b610b53818361180e565b5050565b6000610b628261182c565b610b98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be1826111a2565b90508073ffffffffffffffffffffffffffffffffffffffff16610c0261188b565b73ffffffffffffffffffffffffffffffffffffffff1614610c6557610c2e81610c2961188b565b611697565b610c64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d24611893565b6001546000540303905090565b6000610d3c82611898565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610daf84611966565b91509150610dc58187610dc061188b565b61198d565b610e1157610dda86610dd561188b565b611697565b610e10576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8586868660016119d1565b8015610e9057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5e85610f3a8888876119d7565b7c0200000000000000000000000000000000000000000000000000000000176119ff565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe6576000600185019050600060046000838152602001908152602001600020541415610fe4576000548114610fe3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104e8686866001611a2a565b505050505050565b61105e611a30565b6000479050600061106d6117af565b73ffffffffffffffffffffffffffffffffffffffff168260405161109090612915565b60006040518083038185875af1925050503d80600081146110cd576040519150601f19603f3d011682016040523d82523d6000602084013e6110d2565b606091505b5050905080611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90612ace565b60405180910390fd5b5050565b611135838383604051806020016040528060008152506114fa565b505050565b611142611a30565b80600a8190555050565b600181565b611159611a30565b80600c908051906020019061116f929190612172565b5050565b600d60009054906101000a900460ff1681565b61118e611a30565b6111a06111996117af565b606461180e565b565b60006111ad82611898565b9050919050565b600b5481565b600c80546111c790612dcd565b80601f01602080910402602001604051908101604052809291908181526020018280546111f390612dcd565b80156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611309611a30565b6113136000611aae565b565b610fa081565b611323611a30565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461136690612dcd565b80601f016020809104026020016040519081016040528092919081815260200182805461139290612dcd565b80156113df5780601f106113b4576101008083540402835291602001916113df565b820191906000526020600020905b8154815290600101906020018083116113c257829003601f168201915b5050505050905090565b600a5481565b80600760006113fc61188b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114a961188b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ee9190612991565b60405180910390a35050565b611505848484610d31565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115675761153084848484611b74565b611566576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606115b18261182c565b6115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790612a6e565b60405180910390fd5b6000600c80546115ff90612dcd565b90501161161b576040518060200160405280600081525061167e565b600c61162683611cd4565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161166e939291906128e4565b6040516020818303038152906040525b9050919050565b6000611690826117b7565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611733611a30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906129ee565b60405180910390fd5b6117ac81611aae565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611828828260405180602001604052806000815250611dac565b5050565b600081611837611893565b11158015611846575060005482105b8015611884575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118a7611893565b1161192f5760005481101561192e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561192c575b60008114156119225760046000836001900393508381526020019081526020016000205490506118f7565b8092505050611961565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119ee868684611e49565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a386117af565b73ffffffffffffffffffffffffffffffffffffffff16611a5661132d565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612a8e565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b9a61188b565b8786866040518563ffffffff1660e01b8152600401611bbc9493929190612945565b602060405180830381600087803b158015611bd657600080fd5b505af1925050508015611c0757506040513d601f19601f82011682018060405250810190611c04919061254e565b60015b611c81573d8060008114611c37576040519150601f19603f3d011682016040523d82523d6000602084013e611c3c565b606091505b50600081511415611c79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611ce384611e52565b01905060008167ffffffffffffffff811115611d0257611d01612f06565b5b6040519080825280601f01601f191660200182016040528015611d345781602001600182028036833780820191505090505b509050600082602001820190505b600115611da1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d8b57611d8a612ea8565b5b0494506000851415611d9c57611da1565b611d42565b819350505050919050565b611db68383611fa5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e4457600080549050600083820390505b611df66000868380600101945086611b74565b611e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611de3578160005414611e4157600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611eb0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ea657611ea5612ea8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611eed576d04ee2d6d415b85acef81000000008381611ee357611ee2612ea8565b5b0492506020810190505b662386f26fc100008310611f1c57662386f26fc100008381611f1257611f11612ea8565b5b0492506010810190505b6305f5e1008310611f45576305f5e1008381611f3b57611f3a612ea8565b5b0492506008810190505b6127108310611f6a576127108381611f6057611f5f612ea8565b5b0492506004810190505b60648310611f8d5760648381611f8357611f82612ea8565b5b0492506002810190505b600a8310611f9c576001810190505b80915050919050565b6000805490506000821415611fe6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff360008483856119d1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061206a8361205b60008660006119d7565b61206485612162565b176119ff565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120d0565b506000821415612147576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061215d6000848385611a2a565b505050565b60006001821460e11b9050919050565b82805461217e90612dcd565b90600052602060002090601f0160209004810192826121a057600085556121e7565b82601f106121b957805160ff19168380011785556121e7565b828001600101855582156121e7579182015b828111156121e65782518255916020019190600101906121cb565b5b5090506121f491906121f8565b5090565b5b808211156122115760008160009055506001016121f9565b5090565b600061222861222384612b6e565b612b49565b90508281526020810184848401111561224457612243612f3a565b5b61224f848285612d8b565b509392505050565b600061226a61226584612b9f565b612b49565b90508281526020810184848401111561228657612285612f3a565b5b612291848285612d8b565b509392505050565b6000813590506122a88161316c565b92915050565b6000813590506122bd81613183565b92915050565b6000813590506122d28161319a565b92915050565b6000815190506122e78161319a565b92915050565b600082601f83011261230257612301612f35565b5b8135612312848260208601612215565b91505092915050565b600082601f8301126123305761232f612f35565b5b8135612340848260208601612257565b91505092915050565b600081359050612358816131b1565b92915050565b60006020828403121561237457612373612f44565b5b600061238284828501612299565b91505092915050565b600080604083850312156123a2576123a1612f44565b5b60006123b085828601612299565b92505060206123c185828601612299565b9150509250929050565b6000806000606084860312156123e4576123e3612f44565b5b60006123f286828701612299565b935050602061240386828701612299565b925050604061241486828701612349565b9150509250925092565b6000806000806080858703121561243857612437612f44565b5b600061244687828801612299565b945050602061245787828801612299565b935050604061246887828801612349565b925050606085013567ffffffffffffffff81111561248957612488612f3f565b5b612495878288016122ed565b91505092959194509250565b600080604083850312156124b8576124b7612f44565b5b60006124c685828601612299565b92505060206124d7858286016122ae565b9150509250929050565b600080604083850312156124f8576124f7612f44565b5b600061250685828601612299565b925050602061251785828601612349565b9150509250929050565b60006020828403121561253757612536612f44565b5b6000612545848285016122c3565b91505092915050565b60006020828403121561256457612563612f44565b5b6000612572848285016122d8565b91505092915050565b60006020828403121561259157612590612f44565b5b600082013567ffffffffffffffff8111156125af576125ae612f3f565b5b6125bb8482850161231b565b91505092915050565b6000602082840312156125da576125d9612f44565b5b60006125e884828501612349565b91505092915050565b6125fa81612d17565b82525050565b61260981612d29565b82525050565b600061261a82612be5565b6126248185612bfb565b9350612634818560208601612d9a565b61263d81612f49565b840191505092915050565b600061265382612bf0565b61265d8185612c17565b935061266d818560208601612d9a565b61267681612f49565b840191505092915050565b600061268c82612bf0565b6126968185612c28565b93506126a6818560208601612d9a565b80840191505092915050565b600081546126bf81612dcd565b6126c98186612c28565b945060018216600081146126e457600181146126f557612728565b60ff19831686528186019350612728565b6126fe85612bd0565b60005b8381101561272057815481890152600182019150602081019050612701565b838801955050505b50505092915050565b600061273e602a83612c17565b915061274982612f5a565b604082019050919050565b6000612761602683612c17565b915061276c82612fa9565b604082019050919050565b6000612784600a83612c17565b915061278f82612ff8565b602082019050919050565b60006127a7601283612c17565b91506127b282613021565b602082019050919050565b60006127ca601283612c17565b91506127d58261304a565b602082019050919050565b60006127ed601583612c17565b91506127f882613073565b602082019050919050565b6000612810602083612c17565b915061281b8261309c565b602082019050919050565b6000612833601683612c17565b915061283e826130c5565b602082019050919050565b6000612856600083612c0c565b9150612861826130ee565b600082019050919050565b6000612879600e83612c17565b9150612884826130f1565b602082019050919050565b600061289c600c83612c17565b91506128a78261311a565b602082019050919050565b60006128bf600983612c17565b91506128ca82613143565b602082019050919050565b6128de81612d81565b82525050565b60006128f082866126b2565b91506128fc8285612681565b91506129088284612681565b9150819050949350505050565b600061292082612849565b9150819050919050565b600060208201905061293f60008301846125f1565b92915050565b600060808201905061295a60008301876125f1565b61296760208301866125f1565b61297460408301856128d5565b8181036060830152612986818461260f565b905095945050505050565b60006020820190506129a66000830184612600565b92915050565b600060208201905081810360008301526129c68184612648565b905092915050565b600060208201905081810360008301526129e781612731565b9050919050565b60006020820190508181036000830152612a0781612754565b9050919050565b60006020820190508181036000830152612a2781612777565b9050919050565b60006020820190508181036000830152612a478161279a565b9050919050565b60006020820190508181036000830152612a67816127bd565b9050919050565b60006020820190508181036000830152612a87816127e0565b9050919050565b60006020820190508181036000830152612aa781612803565b9050919050565b60006020820190508181036000830152612ac781612826565b9050919050565b60006020820190508181036000830152612ae78161286c565b9050919050565b60006020820190508181036000830152612b078161288f565b9050919050565b60006020820190508181036000830152612b27816128b2565b9050919050565b6000602082019050612b4360008301846128d5565b92915050565b6000612b53612b64565b9050612b5f8282612dff565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8957612b88612f06565b5b612b9282612f49565b9050602081019050919050565b600067ffffffffffffffff821115612bba57612bb9612f06565b5b612bc382612f49565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c3e82612d81565b9150612c4983612d81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c7e57612c7d612e79565b5b828201905092915050565b6000612c9482612d81565b9150612c9f83612d81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd857612cd7612e79565b5b828202905092915050565b6000612cee82612d81565b9150612cf983612d81565b925082821015612d0c57612d0b612e79565b5b828203905092915050565b6000612d2282612d61565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612db8578082015181840152602081019050612d9d565b83811115612dc7576000848401525b50505050565b60006002820490506001821680612de557607f821691505b60208210811415612df957612df8612ed7565b5b50919050565b612e0882612f49565b810181811067ffffffffffffffff82111715612e2757612e26612f06565b5b80604052505050565b6000612e3b82612d81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e6e57612e6d612e79565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f66726565206d696e747300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61317581612d17565b811461318057600080fd5b50565b61318c81612d29565b811461319757600080fd5b50565b6131a381612d35565b81146131ae57600080fd5b50565b6131ba81612d81565b81146131c557600080fd5b5056fea2646970667358221220cb58bfe8900a1851df6d72221df3ef169a74d67072da9e0a52cd3003e78fdd5964736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f62616679626569673566667063647562723477716677657736796f65736f6f64327762686c667073707767747973616f6f66336f327933357337692f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806369e5d62011610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd14610655578063dc33e68114610692578063e985e9c5146106cf578063f2fde38b1461070c576101e3565b8063a035b1fe146105ba578063a22cb465146105e5578063b88d4fde1461060e578063c66828621461062a576101e3565b80637b460aac116100d15780637b460aac14610510578063806234441461053b5780638da5cb5b1461056457806395d89b411461058f576101e3565b806369e5d620146104665780636c0360eb1461049157806370a08231146104bc578063715018a6146104f9576101e3565b80633ccfd60b1161017a57806355f804b31161014957806355f804b3146103be57806356e0ec72146103e75780636242a8a3146104125780636352211e14610429576101e3565b80633ccfd60b1461033757806342842e0e1461034e57806344a0d68a1461036a578063485a68a314610393576101e3565b8063081812fc116101b6578063081812fc14610297578063095ea7b3146102d457806318160ddd146102f057806323b872dd1461031b576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063078837031461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612521565b610735565b60405161021c9190612991565b60405180910390f35b34801561023157600080fd5b5061023a6107c7565b6040516102479190612b2e565b60405180910390f35b34801561025c57600080fd5b506102656107cd565b60405161027291906129ac565b60405180910390f35b610295600480360381019061029091906125c4565b61085f565b005b3480156102a357600080fd5b506102be60048036038101906102b991906125c4565b610b57565b6040516102cb919061292a565b60405180910390f35b6102ee60048036038101906102e991906124e1565b610bd6565b005b3480156102fc57600080fd5b50610305610d1a565b6040516103129190612b2e565b60405180910390f35b610335600480360381019061033091906123cb565b610d31565b005b34801561034357600080fd5b5061034c611056565b005b610368600480360381019061036391906123cb565b61111a565b005b34801561037657600080fd5b50610391600480360381019061038c91906125c4565b61113a565b005b34801561039f57600080fd5b506103a861114c565b6040516103b59190612b2e565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e0919061257b565b611151565b005b3480156103f357600080fd5b506103fc611173565b6040516104099190612991565b60405180910390f35b34801561041e57600080fd5b50610427611186565b005b34801561043557600080fd5b50610450600480360381019061044b91906125c4565b6111a2565b60405161045d919061292a565b60405180910390f35b34801561047257600080fd5b5061047b6111b4565b6040516104889190612b2e565b60405180910390f35b34801561049d57600080fd5b506104a66111ba565b6040516104b391906129ac565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de919061235e565b611248565b6040516104f09190612b2e565b60405180910390f35b34801561050557600080fd5b5061050e611301565b005b34801561051c57600080fd5b50610525611315565b6040516105329190612b2e565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906125c4565b61131b565b005b34801561057057600080fd5b5061057961132d565b604051610586919061292a565b60405180910390f35b34801561059b57600080fd5b506105a4611357565b6040516105b191906129ac565b60405180910390f35b3480156105c657600080fd5b506105cf6113e9565b6040516105dc9190612b2e565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906124a1565b6113ef565b005b6106286004803603810190610623919061241e565b6114fa565b005b34801561063657600080fd5b5061063f61156d565b60405161064c91906129ac565b60405180910390f35b34801561066157600080fd5b5061067c600480360381019061067791906125c4565b6115a6565b60405161068991906129ac565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b4919061235e565b611685565b6040516106c69190612b2e565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f1919061238b565b611697565b6040516107039190612991565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061235e565b61172b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b6060600280546107dc90612dcd565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612dcd565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b60006108696117af565b9050600d60009054906101000a900460ff166108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612b0e565b60405180910390fd5b816108c3610d1a565b6108cd9190612c33565b6009541015610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890612a4e565b60405180910390fd5b60008211610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90612a0e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990612aee565b60405180910390fd5b60016109cd336117b7565b10610a2757600a54826109e09190612c89565b341015610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990612aae565b60405180910390fd5b610aa7565b600082610a33336117b7565b610a3d9190612c33565b90506001811115610aa557600a54600182610a589190612ce3565b610a629190612c89565b341015610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90612a2e565b60405180910390fd5b5b505b6000610ab2336117b7565b1415610b4957610fa0600b541015610ae157600b6000815480929190610ad790612e30565b9190505550610b48565b600a5482610aef9190612c89565b341015610b4757600a5482610b049190612c89565b341015610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906129ce565b60405180910390fd5b5b5b5b610b53818361180e565b5050565b6000610b628261182c565b610b98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be1826111a2565b90508073ffffffffffffffffffffffffffffffffffffffff16610c0261188b565b73ffffffffffffffffffffffffffffffffffffffff1614610c6557610c2e81610c2961188b565b611697565b610c64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d24611893565b6001546000540303905090565b6000610d3c82611898565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610daf84611966565b91509150610dc58187610dc061188b565b61198d565b610e1157610dda86610dd561188b565b611697565b610e10576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8586868660016119d1565b8015610e9057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5e85610f3a8888876119d7565b7c0200000000000000000000000000000000000000000000000000000000176119ff565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe6576000600185019050600060046000838152602001908152602001600020541415610fe4576000548114610fe3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104e8686866001611a2a565b505050505050565b61105e611a30565b6000479050600061106d6117af565b73ffffffffffffffffffffffffffffffffffffffff168260405161109090612915565b60006040518083038185875af1925050503d80600081146110cd576040519150601f19603f3d011682016040523d82523d6000602084013e6110d2565b606091505b5050905080611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90612ace565b60405180910390fd5b5050565b611135838383604051806020016040528060008152506114fa565b505050565b611142611a30565b80600a8190555050565b600181565b611159611a30565b80600c908051906020019061116f929190612172565b5050565b600d60009054906101000a900460ff1681565b61118e611a30565b6111a06111996117af565b606461180e565b565b60006111ad82611898565b9050919050565b600b5481565b600c80546111c790612dcd565b80601f01602080910402602001604051908101604052809291908181526020018280546111f390612dcd565b80156112405780601f1061121557610100808354040283529160200191611240565b820191906000526020600020905b81548152906001019060200180831161122357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611309611a30565b6113136000611aae565b565b610fa081565b611323611a30565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461136690612dcd565b80601f016020809104026020016040519081016040528092919081815260200182805461139290612dcd565b80156113df5780601f106113b4576101008083540402835291602001916113df565b820191906000526020600020905b8154815290600101906020018083116113c257829003601f168201915b5050505050905090565b600a5481565b80600760006113fc61188b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114a961188b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ee9190612991565b60405180910390a35050565b611505848484610d31565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115675761153084848484611b74565b611566576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606115b18261182c565b6115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790612a6e565b60405180910390fd5b6000600c80546115ff90612dcd565b90501161161b576040518060200160405280600081525061167e565b600c61162683611cd4565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161166e939291906128e4565b6040516020818303038152906040525b9050919050565b6000611690826117b7565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611733611a30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906129ee565b60405180910390fd5b6117ac81611aae565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611828828260405180602001604052806000815250611dac565b5050565b600081611837611893565b11158015611846575060005482105b8015611884575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118a7611893565b1161192f5760005481101561192e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561192c575b60008114156119225760046000836001900393508381526020019081526020016000205490506118f7565b8092505050611961565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119ee868684611e49565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a386117af565b73ffffffffffffffffffffffffffffffffffffffff16611a5661132d565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390612a8e565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b9a61188b565b8786866040518563ffffffff1660e01b8152600401611bbc9493929190612945565b602060405180830381600087803b158015611bd657600080fd5b505af1925050508015611c0757506040513d601f19601f82011682018060405250810190611c04919061254e565b60015b611c81573d8060008114611c37576040519150601f19603f3d011682016040523d82523d6000602084013e611c3c565b606091505b50600081511415611c79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611ce384611e52565b01905060008167ffffffffffffffff811115611d0257611d01612f06565b5b6040519080825280601f01601f191660200182016040528015611d345781602001600182028036833780820191505090505b509050600082602001820190505b600115611da1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d8b57611d8a612ea8565b5b0494506000851415611d9c57611da1565b611d42565b819350505050919050565b611db68383611fa5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e4457600080549050600083820390505b611df66000868380600101945086611b74565b611e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611de3578160005414611e4157600080fd5b50505b505050565b60009392505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611eb0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ea657611ea5612ea8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611eed576d04ee2d6d415b85acef81000000008381611ee357611ee2612ea8565b5b0492506020810190505b662386f26fc100008310611f1c57662386f26fc100008381611f1257611f11612ea8565b5b0492506010810190505b6305f5e1008310611f45576305f5e1008381611f3b57611f3a612ea8565b5b0492506008810190505b6127108310611f6a576127108381611f6057611f5f612ea8565b5b0492506004810190505b60648310611f8d5760648381611f8357611f82612ea8565b5b0492506002810190505b600a8310611f9c576001810190505b80915050919050565b6000805490506000821415611fe6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff360008483856119d1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061206a8361205b60008660006119d7565b61206485612162565b176119ff565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120d0565b506000821415612147576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061215d6000848385611a2a565b505050565b60006001821460e11b9050919050565b82805461217e90612dcd565b90600052602060002090601f0160209004810192826121a057600085556121e7565b82601f106121b957805160ff19168380011785556121e7565b828001600101855582156121e7579182015b828111156121e65782518255916020019190600101906121cb565b5b5090506121f491906121f8565b5090565b5b808211156122115760008160009055506001016121f9565b5090565b600061222861222384612b6e565b612b49565b90508281526020810184848401111561224457612243612f3a565b5b61224f848285612d8b565b509392505050565b600061226a61226584612b9f565b612b49565b90508281526020810184848401111561228657612285612f3a565b5b612291848285612d8b565b509392505050565b6000813590506122a88161316c565b92915050565b6000813590506122bd81613183565b92915050565b6000813590506122d28161319a565b92915050565b6000815190506122e78161319a565b92915050565b600082601f83011261230257612301612f35565b5b8135612312848260208601612215565b91505092915050565b600082601f8301126123305761232f612f35565b5b8135612340848260208601612257565b91505092915050565b600081359050612358816131b1565b92915050565b60006020828403121561237457612373612f44565b5b600061238284828501612299565b91505092915050565b600080604083850312156123a2576123a1612f44565b5b60006123b085828601612299565b92505060206123c185828601612299565b9150509250929050565b6000806000606084860312156123e4576123e3612f44565b5b60006123f286828701612299565b935050602061240386828701612299565b925050604061241486828701612349565b9150509250925092565b6000806000806080858703121561243857612437612f44565b5b600061244687828801612299565b945050602061245787828801612299565b935050604061246887828801612349565b925050606085013567ffffffffffffffff81111561248957612488612f3f565b5b612495878288016122ed565b91505092959194509250565b600080604083850312156124b8576124b7612f44565b5b60006124c685828601612299565b92505060206124d7858286016122ae565b9150509250929050565b600080604083850312156124f8576124f7612f44565b5b600061250685828601612299565b925050602061251785828601612349565b9150509250929050565b60006020828403121561253757612536612f44565b5b6000612545848285016122c3565b91505092915050565b60006020828403121561256457612563612f44565b5b6000612572848285016122d8565b91505092915050565b60006020828403121561259157612590612f44565b5b600082013567ffffffffffffffff8111156125af576125ae612f3f565b5b6125bb8482850161231b565b91505092915050565b6000602082840312156125da576125d9612f44565b5b60006125e884828501612349565b91505092915050565b6125fa81612d17565b82525050565b61260981612d29565b82525050565b600061261a82612be5565b6126248185612bfb565b9350612634818560208601612d9a565b61263d81612f49565b840191505092915050565b600061265382612bf0565b61265d8185612c17565b935061266d818560208601612d9a565b61267681612f49565b840191505092915050565b600061268c82612bf0565b6126968185612c28565b93506126a6818560208601612d9a565b80840191505092915050565b600081546126bf81612dcd565b6126c98186612c28565b945060018216600081146126e457600181146126f557612728565b60ff19831686528186019350612728565b6126fe85612bd0565b60005b8381101561272057815481890152600182019150602081019050612701565b838801955050505b50505092915050565b600061273e602a83612c17565b915061274982612f5a565b604082019050919050565b6000612761602683612c17565b915061276c82612fa9565b604082019050919050565b6000612784600a83612c17565b915061278f82612ff8565b602082019050919050565b60006127a7601283612c17565b91506127b282613021565b602082019050919050565b60006127ca601283612c17565b91506127d58261304a565b602082019050919050565b60006127ed601583612c17565b91506127f882613073565b602082019050919050565b6000612810602083612c17565b915061281b8261309c565b602082019050919050565b6000612833601683612c17565b915061283e826130c5565b602082019050919050565b6000612856600083612c0c565b9150612861826130ee565b600082019050919050565b6000612879600e83612c17565b9150612884826130f1565b602082019050919050565b600061289c600c83612c17565b91506128a78261311a565b602082019050919050565b60006128bf600983612c17565b91506128ca82613143565b602082019050919050565b6128de81612d81565b82525050565b60006128f082866126b2565b91506128fc8285612681565b91506129088284612681565b9150819050949350505050565b600061292082612849565b9150819050919050565b600060208201905061293f60008301846125f1565b92915050565b600060808201905061295a60008301876125f1565b61296760208301866125f1565b61297460408301856128d5565b8181036060830152612986818461260f565b905095945050505050565b60006020820190506129a66000830184612600565b92915050565b600060208201905081810360008301526129c68184612648565b905092915050565b600060208201905081810360008301526129e781612731565b9050919050565b60006020820190508181036000830152612a0781612754565b9050919050565b60006020820190508181036000830152612a2781612777565b9050919050565b60006020820190508181036000830152612a478161279a565b9050919050565b60006020820190508181036000830152612a67816127bd565b9050919050565b60006020820190508181036000830152612a87816127e0565b9050919050565b60006020820190508181036000830152612aa781612803565b9050919050565b60006020820190508181036000830152612ac781612826565b9050919050565b60006020820190508181036000830152612ae78161286c565b9050919050565b60006020820190508181036000830152612b078161288f565b9050919050565b60006020820190508181036000830152612b27816128b2565b9050919050565b6000602082019050612b4360008301846128d5565b92915050565b6000612b53612b64565b9050612b5f8282612dff565b919050565b6000604051905090565b600067ffffffffffffffff821115612b8957612b88612f06565b5b612b9282612f49565b9050602081019050919050565b600067ffffffffffffffff821115612bba57612bb9612f06565b5b612bc382612f49565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c3e82612d81565b9150612c4983612d81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c7e57612c7d612e79565b5b828201905092915050565b6000612c9482612d81565b9150612c9f83612d81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd857612cd7612e79565b5b828202905092915050565b6000612cee82612d81565b9150612cf983612d81565b925082821015612d0c57612d0b612e79565b5b828203905092915050565b6000612d2282612d61565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612db8578082015181840152602081019050612d9d565b83811115612dc7576000848401525b50505050565b60006002820490506001821680612de557607f821691505b60208210811415612df957612df8612ed7565b5b50919050565b612e0882612f49565b810181811067ffffffffffffffff82111715612e2757612e26612f06565b5b80604052505050565b6000612e3b82612d81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e6e57612e6d612e79565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f66726565206d696e747300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61317581612d17565b811461318057600080fd5b50565b61318c81612d29565b811461319757600080fd5b50565b6131a381612d35565b81146131ae57600080fd5b50565b6131ba81612d81565b81146131c557600080fd5b5056fea2646970667358221220cb58bfe8900a1851df6d72221df3ef169a74d67072da9e0a52cd3003e78fdd5964736f6c63430008070033

Deployed Bytecode Sourcemap

70291:2990:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70435:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70816:1123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44589:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44022:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33849:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48228:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71951:217;;;;;;;;;;;;;:::i;:::-;;51149:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72625:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70340:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72509:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70722:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72297:90;;;;;;;;;;;;;:::i;:::-;;39491:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70510:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70547:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35033:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;70381:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72399:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70470:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51940:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70663:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72855:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72726:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45538:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37196:639;37281:4;37620:10;37605:25;;:11;:25;;;;:102;;;;37697:10;37682:25;;:11;:25;;;;37605:102;:179;;;;37774:10;37759:25;;:11;:25;;;;37605:179;37585:199;;37196:639;;;:::o;70435:26::-;;;;:::o;38098:100::-;38152:13;38185:5;38178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098:100;:::o;70816:1123::-;70877:15;70895:12;:10;:12::i;:::-;70877:30;;70928:5;;;;;;;;;;;70920:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;70994:7;70978:13;:11;:13::i;:::-;:23;;;;:::i;:::-;70968:6;;:33;;70960:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;71055:1;71045:7;:11;71037:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;71105:7;71092:20;;:9;:20;;;71084:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;70371:1;71161:25;71175:10;71161:13;:25::i;:::-;:36;71158:363;;71247:5;;71237:7;:15;;;;:::i;:::-;71224:9;:28;;71216:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71158:363;;;71315:10;71356:7;71328:25;71342:10;71328:13;:25::i;:::-;:35;;;;:::i;:::-;71315:48;;70371:1;71383:5;:15;71380:128;;;71461:5;;70371:1;71442:5;:15;;;;:::i;:::-;71441:25;;;;:::i;:::-;71428:9;:38;;71420:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71380:128;71298:223;71158:363;71565:1;71536:25;71550:10;71536:13;:25::i;:::-;:30;71533:357;;;70422:4;71588:12;;:29;71585:292;;;71639:12;;:14;;;;;;;;;:::i;:::-;;;;;;71585:292;;;71722:5;;71711:7;:16;;;;:::i;:::-;71699:9;:28;71696:164;;;71785:5;;71775:7;:15;;;;:::i;:::-;71762:9;:28;;71753:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;71696:164;71585:292;71533:357;71902:27;71912:7;71921;71902:9;:27::i;:::-;70864:1075;70816:1123;:::o;44589:218::-;44665:7;44690:16;44698:7;44690;:16::i;:::-;44685:64;;44715:34;;;;;;;;;;;;;;44685:64;44769:15;:24;44785:7;44769:24;;;;;;;;;;;:30;;;;;;;;;;;;44762:37;;44589:218;;;:::o;44022:408::-;44111:13;44127:16;44135:7;44127;:16::i;:::-;44111:32;;44183:5;44160:28;;:19;:17;:19::i;:::-;:28;;;44156:175;;44208:44;44225:5;44232:19;:17;:19::i;:::-;44208:16;:44::i;:::-;44203:128;;44280:35;;;;;;;;;;;;;;44203:128;44156:175;44376:2;44343:15;:24;44359:7;44343:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44414:7;44410:2;44394:28;;44403:5;44394:28;;;;;;;;;;;;44100:330;44022:408;;:::o;33849:323::-;33910:7;34138:15;:13;:15::i;:::-;34123:12;;34107:13;;:28;:46;34100:53;;33849:323;:::o;48228:2825::-;48370:27;48400;48419:7;48400:18;:27::i;:::-;48370:57;;48485:4;48444:45;;48460:19;48444:45;;;48440:86;;48498:28;;;;;;;;;;;;;;48440:86;48540:27;48569:23;48596:35;48623:7;48596:26;:35::i;:::-;48539:92;;;;48731:68;48756:15;48773:4;48779:19;:17;:19::i;:::-;48731:24;:68::i;:::-;48726:180;;48819:43;48836:4;48842:19;:17;:19::i;:::-;48819:16;:43::i;:::-;48814:92;;48871:35;;;;;;;;;;;;;;48814:92;48726:180;48937:1;48923:16;;:2;:16;;;48919:52;;;48948:23;;;;;;;;;;;;;;48919:52;48984:43;49006:4;49012:2;49016:7;49025:1;48984:21;:43::i;:::-;49120:15;49117:160;;;49260:1;49239:19;49232:30;49117:160;49657:18;:24;49676:4;49657:24;;;;;;;;;;;;;;;;49655:26;;;;;;;;;;;;49726:18;:22;49745:2;49726:22;;;;;;;;;;;;;;;;49724:24;;;;;;;;;;;50048:146;50085:2;50134:45;50149:4;50155:2;50159:19;50134:14;:45::i;:::-;30248:8;50106:73;50048:18;:146::i;:::-;50019:17;:26;50037:7;50019:26;;;;;;;;;;;:175;;;;50365:1;30248:8;50314:19;:47;:52;50310:627;;;50387:19;50419:1;50409:7;:11;50387:33;;50576:1;50542:17;:30;50560:11;50542:30;;;;;;;;;;;;:35;50538:384;;;50680:13;;50665:11;:28;50661:242;;50860:19;50827:17;:30;50845:11;50827:30;;;;;;;;;;;:52;;;;50661:242;50538:384;50368:569;50310:627;50984:7;50980:2;50965:27;;50974:4;50965:27;;;;;;;;;;;;51003:42;51024:4;51030:2;51034:7;51043:1;51003:20;:42::i;:::-;48359:2694;;;48228:2825;;;:::o;71951:217::-;17213:13;:11;:13::i;:::-;72003:15:::1;72021:21;72003:39;;72056:12;72074;:10;:12::i;:::-;:17;;72099:7;72074:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72055:56;;;72132:7;72124:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;71990:178;;71951:217::o:0;51149:193::-;51295:39;51312:4;51318:2;51322:7;51295:39;;;;;;;;;;;;:16;:39::i;:::-;51149:193;;;:::o;72625:93::-;17213:13;:11;:13::i;:::-;72700:8:::1;72692:5;:16;;;;72625:93:::0;:::o;70340:32::-;70371:1;70340:32;:::o;72509:104::-;17213:13;:11;:13::i;:::-;72595:8:::1;72585:7;:18;;;;;;;;;;;;:::i;:::-;;72509:104:::0;:::o;70722:24::-;;;;;;;;;;;;;:::o;72297:90::-;17213:13;:11;:13::i;:::-;72349:28:::1;72359:12;:10;:12::i;:::-;72373:3;72349:9;:28::i;:::-;72297:90::o:0;39491:152::-;39563:7;39606:27;39625:7;39606:18;:27::i;:::-;39583:52;;39491:152;;;:::o;70510:28::-;;;;:::o;70547:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35033:233::-;35105:7;35146:1;35129:19;;:5;:19;;;35125:60;;;35157:28;;;;;;;;;;;;;;35125:60;29192:13;35203:18;:25;35222:5;35203:25;;;;;;;;;;;;;;;;:55;35196:62;;35033:233;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;70381:45::-;70422:4;70381:45;:::o;72399:98::-;17213:13;:11;:13::i;:::-;72478:9:::1;72469:6;:18;;;;72399:98:::0;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;38274:104::-;38330:13;38363:7;38356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38274:104;:::o;70470:31::-;;;;:::o;45147:234::-;45294:8;45242:18;:39;45261:19;:17;:19::i;:::-;45242:39;;;;;;;;;;;;;;;:49;45282:8;45242:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45354:8;45318:55;;45333:19;:17;:19::i;:::-;45318:55;;;45364:8;45318:55;;;;;;:::i;:::-;;;;;;;;45147:234;;:::o;51940:407::-;52115:31;52128:4;52134:2;52138:7;52115:12;:31::i;:::-;52179:1;52161:2;:14;;;:19;52157:183;;52200:56;52231:4;52237:2;52241:7;52250:5;52200:30;:56::i;:::-;52195:145;;52284:40;;;;;;;;;;;;;;52195:145;52157:183;51940:407;;;;:::o;70663:46::-;;;;;;;;;;;;;;;;;;;:::o;72855:421::-;72921:13;72957:17;72965:8;72957:7;:17::i;:::-;72949:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;73044:1;73026:7;73020:21;;;;;:::i;:::-;;;:25;:246;;;;;;;;;;;;;;;;;73106:7;73132:26;73149:8;73132:16;:26::i;:::-;73218:13;;;;;;;;;;;;;;;;;73071:177;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73020:246;73013:253;;72855:421;;;:::o;72726:117::-;72784:7;72813:20;72827:5;72813:13;:20::i;:::-;72806:27;;72726:117;;;:::o;45538:164::-;45635:4;45659:18;:25;45678:5;45659:25;;;;;;;;;;;;;;;:35;45685:8;45659:35;;;;;;;;;;;;;;;;;;;;;;;;;45652:42;;45538:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;35348:178::-;35409:7;29192:13;29330:2;35437:18;:25;35456:5;35437:25;;;;;;;;;;;;;;;;:50;;35436:82;35429:89;;35348:178;;;:::o;62100:112::-;62177:27;62187:2;62191:8;62177:27;;;;;;;;;;;;:9;:27::i;:::-;62100:112;;:::o;45960:282::-;46025:4;46081:7;46062:15;:13;:15::i;:::-;:26;;:66;;;;;46115:13;;46105:7;:23;46062:66;:153;;;;;46214:1;29968:8;46166:17;:26;46184:7;46166:26;;;;;;;;;;;;:44;:49;46062:153;46042:173;;45960:282;;;:::o;68268:105::-;68328:7;68355:10;68348:17;;68268:105;:::o;72180:::-;72245:7;72180:105;:::o;40646:1275::-;40713:7;40733:12;40748:7;40733:22;;40816:4;40797:15;:13;:15::i;:::-;:23;40793:1061;;40850:13;;40843:4;:20;40839:1015;;;40888:14;40905:17;:23;40923:4;40905:23;;;;;;;;;;;;40888:40;;41022:1;29968:8;40994:6;:24;:29;40990:845;;;41659:113;41676:1;41666:6;:11;41659:113;;;41719:17;:25;41737:6;;;;;;;41719:25;;;;;;;;;;;;41710:34;;41659:113;;;41805:6;41798:13;;;;;;40990:845;40865:989;40839:1015;40793:1061;41882:31;;;;;;;;;;;;;;40646:1275;;;;:::o;47123:485::-;47225:27;47254:23;47295:38;47336:15;:24;47352:7;47336:24;;;;;;;;;;;47295:65;;47513:18;47490:41;;47570:19;47564:26;47545:45;;47475:126;47123:485;;;:::o;46351:659::-;46500:11;46665:16;46658:5;46654:28;46645:37;;46825:16;46814:9;46810:32;46797:45;;46975:15;46964:9;46961:30;46953:5;46942:9;46939:20;46936:56;46926:66;;46351:659;;;;;:::o;53009:159::-;;;;;:::o;67577:311::-;67712:7;67732:16;30372:3;67758:19;:41;;67732:68;;30372:3;67826:31;67837:4;67843:2;67847:9;67826:10;:31::i;:::-;67818:40;;:62;;67811:69;;;67577:311;;;;;:::o;42469:450::-;42549:14;42717:16;42710:5;42706:28;42697:37;;42894:5;42880:11;42855:23;42851:41;42848:52;42841:5;42838:63;42828:73;;42469:450;;;;:::o;53833:158::-;;;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;54431:716::-;54594:4;54640:2;54615:45;;;54661:19;:17;:19::i;:::-;54682:4;54688:7;54697:5;54615:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54915:1;54898:6;:13;:18;54894:235;;;54944:40;;;;;;;;;;;;;;54894:235;55087:6;55081:13;55072:6;55068:2;55064:15;55057:38;54611:529;54784:54;;;54774:64;;;:6;:64;;;;54767:71;;;54431:716;;;;;;:::o;13305:::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;61327:689::-;61458:19;61464:2;61468:8;61458:5;:19::i;:::-;61537:1;61519:2;:14;;;:19;61515:483;;61559:11;61573:13;;61559:27;;61605:13;61627:8;61621:3;:14;61605:30;;61654:233;61685:62;61724:1;61728:2;61732:7;;;;;;61741:5;61685:30;:62::i;:::-;61680:167;;61783:40;;;;;;;;;;;;;;61680:167;61882:3;61874:5;:11;61654:233;;61969:3;61952:13;;:20;61948:34;;61974:8;;;61948:34;61540:458;;61515:483;61327:689;;;:::o;67278:147::-;67415:6;67278:147;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;55609:2966::-;55682:20;55705:13;;55682:36;;55745:1;55733:8;:13;55729:44;;;55755:18;;;;;;;;;;;;;;55729:44;55786:61;55816:1;55820:2;55824:12;55838:8;55786:21;:61::i;:::-;56330:1;29330:2;56300:1;:26;;56299:32;56287:8;:45;56261:18;:22;56280:2;56261:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56609:139;56646:2;56700:33;56723:1;56727:2;56731:1;56700:14;:33::i;:::-;56667:30;56688:8;56667:20;:30::i;:::-;:66;56609:18;:139::i;:::-;56575:17;:31;56593:12;56575:31;;;;;;;;;;;:173;;;;56765:16;56796:11;56825:8;56810:12;:23;56796:37;;57346:16;57342:2;57338:25;57326:37;;57718:12;57678:8;57637:1;57575:25;57516:1;57455;57428:335;58089:1;58075:12;58071:20;58029:346;58130:3;58121:7;58118:16;58029:346;;58348:7;58338:8;58335:1;58308:25;58305:1;58302;58297:59;58183:1;58174:7;58170:15;58159:26;;58029:346;;;58033:77;58420:1;58408:8;:13;58404:45;;;58430:19;;;;;;;;;;;;;;58404:45;58482:3;58466:13;:19;;;;56035:2462;;58507:60;58536:1;58540:2;58544:12;58558:8;58507:20;:60::i;:::-;55671:2904;55609:2966;;:::o;43021:324::-;43091:14;43324:1;43314:8;43311:15;43285:24;43281:46;43271:56;;43021:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:398::-;12526:3;12547:83;12628:1;12623:3;12547:83;:::i;:::-;12540:90;;12639:93;12728:3;12639:93;:::i;:::-;12757:1;12752:3;12748:11;12741:18;;12367:398;;;:::o;12771:366::-;12913:3;12934:67;12998:2;12993:3;12934:67;:::i;:::-;12927:74;;13010:93;13099:3;13010:93;:::i;:::-;13128:2;13123:3;13119:12;13112:19;;12771:366;;;:::o;13143:::-;13285:3;13306:67;13370:2;13365:3;13306:67;:::i;:::-;13299:74;;13382:93;13471:3;13382:93;:::i;:::-;13500:2;13495:3;13491:12;13484:19;;13143:366;;;:::o;13515:365::-;13657:3;13678:66;13742:1;13737:3;13678:66;:::i;:::-;13671:73;;13753:93;13842:3;13753:93;:::i;:::-;13871:2;13866:3;13862:12;13855:19;;13515:365;;;:::o;13886:118::-;13973:24;13991:5;13973:24;:::i;:::-;13968:3;13961:37;13886:118;;:::o;14010:589::-;14235:3;14257:92;14345:3;14336:6;14257:92;:::i;:::-;14250:99;;14366:95;14457:3;14448:6;14366:95;:::i;:::-;14359:102;;14478:95;14569:3;14560:6;14478:95;:::i;:::-;14471:102;;14590:3;14583:10;;14010:589;;;;;;:::o;14605:379::-;14789:3;14811:147;14954:3;14811:147;:::i;:::-;14804:154;;14975:3;14968:10;;14605:379;;;:::o;14990:222::-;15083:4;15121:2;15110:9;15106:18;15098:26;;15134:71;15202:1;15191:9;15187:17;15178:6;15134:71;:::i;:::-;14990:222;;;;:::o;15218:640::-;15413:4;15451:3;15440:9;15436:19;15428:27;;15465:71;15533:1;15522:9;15518:17;15509:6;15465:71;:::i;:::-;15546:72;15614:2;15603:9;15599:18;15590:6;15546:72;:::i;:::-;15628;15696:2;15685:9;15681:18;15672:6;15628:72;:::i;:::-;15747:9;15741:4;15737:20;15732:2;15721:9;15717:18;15710:48;15775:76;15846:4;15837:6;15775:76;:::i;:::-;15767:84;;15218:640;;;;;;;:::o;15864:210::-;15951:4;15989:2;15978:9;15974:18;15966:26;;16002:65;16064:1;16053:9;16049:17;16040:6;16002:65;:::i;:::-;15864:210;;;;:::o;16080:313::-;16193:4;16231:2;16220:9;16216:18;16208:26;;16280:9;16274:4;16270:20;16266:1;16255:9;16251:17;16244:47;16308:78;16381:4;16372:6;16308:78;:::i;:::-;16300:86;;16080:313;;;;:::o;16399:419::-;16565:4;16603:2;16592:9;16588:18;16580:26;;16652:9;16646:4;16642:20;16638:1;16627:9;16623:17;16616:47;16680:131;16806:4;16680:131;:::i;:::-;16672:139;;16399:419;;;:::o;16824:::-;16990:4;17028:2;17017:9;17013:18;17005:26;;17077:9;17071:4;17067:20;17063:1;17052:9;17048:17;17041:47;17105:131;17231:4;17105:131;:::i;:::-;17097:139;;16824:419;;;:::o;17249:::-;17415:4;17453:2;17442:9;17438:18;17430:26;;17502:9;17496:4;17492:20;17488:1;17477:9;17473:17;17466:47;17530:131;17656:4;17530:131;:::i;:::-;17522:139;;17249:419;;;:::o;17674:::-;17840:4;17878:2;17867:9;17863:18;17855:26;;17927:9;17921:4;17917:20;17913:1;17902:9;17898:17;17891:47;17955:131;18081:4;17955:131;:::i;:::-;17947:139;;17674:419;;;:::o;18099:::-;18265:4;18303:2;18292:9;18288:18;18280:26;;18352:9;18346:4;18342:20;18338:1;18327:9;18323:17;18316:47;18380:131;18506:4;18380:131;:::i;:::-;18372:139;;18099:419;;;:::o;18524:::-;18690:4;18728:2;18717:9;18713:18;18705:26;;18777:9;18771:4;18767:20;18763:1;18752:9;18748:17;18741:47;18805:131;18931:4;18805:131;:::i;:::-;18797:139;;18524:419;;;:::o;18949:::-;19115:4;19153:2;19142:9;19138:18;19130:26;;19202:9;19196:4;19192:20;19188:1;19177:9;19173:17;19166:47;19230:131;19356:4;19230:131;:::i;:::-;19222:139;;18949:419;;;:::o;19374:::-;19540:4;19578:2;19567:9;19563:18;19555:26;;19627:9;19621:4;19617:20;19613:1;19602:9;19598:17;19591:47;19655:131;19781:4;19655:131;:::i;:::-;19647:139;;19374:419;;;:::o;19799:::-;19965:4;20003:2;19992:9;19988:18;19980:26;;20052:9;20046:4;20042:20;20038:1;20027:9;20023:17;20016:47;20080:131;20206:4;20080:131;:::i;:::-;20072:139;;19799:419;;;:::o;20224:::-;20390:4;20428:2;20417:9;20413:18;20405:26;;20477:9;20471:4;20467:20;20463:1;20452:9;20448:17;20441:47;20505:131;20631:4;20505:131;:::i;:::-;20497:139;;20224:419;;;:::o;20649:::-;20815:4;20853:2;20842:9;20838:18;20830:26;;20902:9;20896:4;20892:20;20888:1;20877:9;20873:17;20866:47;20930:131;21056:4;20930:131;:::i;:::-;20922:139;;20649:419;;;:::o;21074:222::-;21167:4;21205:2;21194:9;21190:18;21182:26;;21218:71;21286:1;21275:9;21271:17;21262:6;21218:71;:::i;:::-;21074:222;;;;:::o;21302:129::-;21336:6;21363:20;;:::i;:::-;21353:30;;21392:33;21420:4;21412:6;21392:33;:::i;:::-;21302:129;;;:::o;21437:75::-;21470:6;21503:2;21497:9;21487:19;;21437:75;:::o;21518:307::-;21579:4;21669:18;21661:6;21658:30;21655:56;;;21691:18;;:::i;:::-;21655:56;21729:29;21751:6;21729:29;:::i;:::-;21721:37;;21813:4;21807;21803:15;21795:23;;21518:307;;;:::o;21831:308::-;21893:4;21983:18;21975:6;21972:30;21969:56;;;22005:18;;:::i;:::-;21969:56;22043:29;22065:6;22043:29;:::i;:::-;22035:37;;22127:4;22121;22117:15;22109:23;;21831:308;;;:::o;22145:141::-;22194:4;22217:3;22209:11;;22240:3;22237:1;22230:14;22274:4;22271:1;22261:18;22253:26;;22145:141;;;:::o;22292:98::-;22343:6;22377:5;22371:12;22361:22;;22292:98;;;:::o;22396:99::-;22448:6;22482:5;22476:12;22466:22;;22396:99;;;:::o;22501:168::-;22584:11;22618:6;22613:3;22606:19;22658:4;22653:3;22649:14;22634:29;;22501:168;;;;:::o;22675:147::-;22776:11;22813:3;22798:18;;22675:147;;;;:::o;22828:169::-;22912:11;22946:6;22941:3;22934:19;22986:4;22981:3;22977:14;22962:29;;22828:169;;;;:::o;23003:148::-;23105:11;23142:3;23127:18;;23003:148;;;;:::o;23157:305::-;23197:3;23216:20;23234:1;23216:20;:::i;:::-;23211:25;;23250:20;23268:1;23250:20;:::i;:::-;23245:25;;23404:1;23336:66;23332:74;23329:1;23326:81;23323:107;;;23410:18;;:::i;:::-;23323:107;23454:1;23451;23447:9;23440:16;;23157:305;;;;:::o;23468:348::-;23508:7;23531:20;23549:1;23531:20;:::i;:::-;23526:25;;23565:20;23583:1;23565:20;:::i;:::-;23560:25;;23753:1;23685:66;23681:74;23678:1;23675:81;23670:1;23663:9;23656:17;23652:105;23649:131;;;23760:18;;:::i;:::-;23649:131;23808:1;23805;23801:9;23790:20;;23468:348;;;;:::o;23822:191::-;23862:4;23882:20;23900:1;23882:20;:::i;:::-;23877:25;;23916:20;23934:1;23916:20;:::i;:::-;23911:25;;23955:1;23952;23949:8;23946:34;;;23960:18;;:::i;:::-;23946:34;24005:1;24002;23998:9;23990:17;;23822:191;;;;:::o;24019:96::-;24056:7;24085:24;24103:5;24085:24;:::i;:::-;24074:35;;24019:96;;;:::o;24121:90::-;24155:7;24198:5;24191:13;24184:21;24173:32;;24121:90;;;:::o;24217:149::-;24253:7;24293:66;24286:5;24282:78;24271:89;;24217:149;;;:::o;24372:126::-;24409:7;24449:42;24442:5;24438:54;24427:65;;24372:126;;;:::o;24504:77::-;24541:7;24570:5;24559:16;;24504:77;;;:::o;24587:154::-;24671:6;24666:3;24661;24648:30;24733:1;24724:6;24719:3;24715:16;24708:27;24587:154;;;:::o;24747:307::-;24815:1;24825:113;24839:6;24836:1;24833:13;24825:113;;;24924:1;24919:3;24915:11;24909:18;24905:1;24900:3;24896:11;24889:39;24861:2;24858:1;24854:10;24849:15;;24825:113;;;24956:6;24953:1;24950:13;24947:101;;;25036:1;25027:6;25022:3;25018:16;25011:27;24947:101;24796:258;24747:307;;;:::o;25060:320::-;25104:6;25141:1;25135:4;25131:12;25121:22;;25188:1;25182:4;25178:12;25209:18;25199:81;;25265:4;25257:6;25253:17;25243:27;;25199:81;25327:2;25319:6;25316:14;25296:18;25293:38;25290:84;;;25346:18;;:::i;:::-;25290:84;25111:269;25060:320;;;:::o;25386:281::-;25469:27;25491:4;25469:27;:::i;:::-;25461:6;25457:40;25599:6;25587:10;25584:22;25563:18;25551:10;25548:34;25545:62;25542:88;;;25610:18;;:::i;:::-;25542:88;25650:10;25646:2;25639:22;25429:238;25386:281;;:::o;25673:233::-;25712:3;25735:24;25753:5;25735:24;:::i;:::-;25726:33;;25781:66;25774:5;25771:77;25768:103;;;25851:18;;:::i;:::-;25768:103;25898:1;25891:5;25887:13;25880:20;;25673:233;;;:::o;25912:180::-;25960:77;25957:1;25950:88;26057:4;26054:1;26047:15;26081:4;26078:1;26071:15;26098:180;26146:77;26143:1;26136:88;26243:4;26240:1;26233:15;26267:4;26264:1;26257:15;26284:180;26332:77;26329:1;26322:88;26429:4;26426:1;26419:15;26453:4;26450:1;26443:15;26470:180;26518:77;26515:1;26508:88;26615:4;26612:1;26605:15;26639:4;26636:1;26629:15;26656:117;26765:1;26762;26755:12;26779:117;26888:1;26885;26878:12;26902:117;27011:1;27008;27001:12;27025:117;27134:1;27131;27124:12;27148:102;27189:6;27240:2;27236:7;27231:2;27224:5;27220:14;27216:28;27206:38;;27148:102;;;:::o;27256:229::-;27396:34;27392:1;27384:6;27380:14;27373:58;27465:12;27460:2;27452:6;27448:15;27441:37;27256:229;:::o;27491:225::-;27631:34;27627:1;27619:6;27615:14;27608:58;27700:8;27695:2;27687:6;27683:15;27676:33;27491:225;:::o;27722:160::-;27862:12;27858:1;27850:6;27846:14;27839:36;27722:160;:::o;27888:168::-;28028:20;28024:1;28016:6;28012:14;28005:44;27888:168;:::o;28062:::-;28202:20;28198:1;28190:6;28186:14;28179:44;28062:168;:::o;28236:171::-;28376:23;28372:1;28364:6;28360:14;28353:47;28236:171;:::o;28413:182::-;28553:34;28549:1;28541:6;28537:14;28530:58;28413:182;:::o;28601:172::-;28741:24;28737:1;28729:6;28725:14;28718:48;28601:172;:::o;28779:114::-;;:::o;28899:164::-;29039:16;29035:1;29027:6;29023:14;29016:40;28899:164;:::o;29069:162::-;29209:14;29205:1;29197:6;29193:14;29186:38;29069:162;:::o;29237:159::-;29377:11;29373:1;29365:6;29361:14;29354:35;29237:159;:::o;29402:122::-;29475:24;29493:5;29475:24;:::i;:::-;29468:5;29465:35;29455:63;;29514:1;29511;29504:12;29455:63;29402:122;:::o;29530:116::-;29600:21;29615:5;29600:21;:::i;:::-;29593:5;29590:32;29580:60;;29636:1;29633;29626:12;29580:60;29530:116;:::o;29652:120::-;29724:23;29741:5;29724:23;:::i;:::-;29717:5;29714:34;29704:62;;29762:1;29759;29752:12;29704:62;29652:120;:::o;29778:122::-;29851:24;29869:5;29851:24;:::i;:::-;29844:5;29841:35;29831:63;;29890:1;29887;29880:12;29831:63;29778:122;:::o

Swarm Source

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