ETH Price: $2,515.32 (+3.28%)

Token

Disappointing Gifts (DAD)
 

Overview

Max Total Supply

1,000 DAD

Holders

359

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DAD
0x28ade02a769f27a2bfca78a186be75ed0b9b9f13
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:
DisappointingFathersDayNFT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

/**
 @author: Arrnaya (www.arrnaya.com)
 NFT Contract for Disappointing Fathers Day NFT
*/

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

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


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


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

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


/// @title Access Lock
/// @author 0xhohenheim <[email protected]>
/// @notice Provides Admin Access Control
contract AccessLock is Ownable {
    mapping(address => bool) public isAdmin; // user => isAdmin? mapping

    /// @notice emitted when admin role is granted or revoked
    event AdminSet(address indexed user,bool isEnabled);

    /// @notice Grant or Revoke Admin Access
    /// @param user - Address of User
    /// @param isEnabled - Grant or Revoke?
    function setAdmin(address user, bool isEnabled) external onlyOwner {
        isAdmin[user] = isEnabled;
        emit AdminSet(user, isEnabled);
    }

    /// @notice reverts if caller is not admin or owner
    modifier onlyAdmin() {
        require(
            isAdmin[msg.sender] || msg.sender == owner(),
            "Caller does not have Admin/Owner access"
        );
        _;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


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


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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}


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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        // require(balanceOf(to) <= 50, "Exceeding max allowed holding amount");
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

contract DisappointingFathersDayNFT is ERC721A, AccessLock {

    // IERC20 public DADToken;
    using Counters for Counters.Counter;
    using Strings for uint256;
    string public baseURI;
    bool public isRevealed;
    bool public mintOpen;
    bool public whitelistOpen;
    string public initialURI;
    uint256 public maxTopHolders = 200;
    uint256 public teamReserved = 50;
    uint256 public teamMinted;
    uint256 public topHoldersMinted;
    // uint256 public whitelistedHolders = 400;
    uint256 public maxSupply = 1000;
    uint256 public mintPrice = 0.03 ether;
    uint16 public maxPerWallet = 1;

    mapping(address => bool) public topHolders;
    mapping(address => bool) public whitelistedMinters;

    event RevealUpdated(address indexed admin, string baseURI);
    event InitialURIUpdated(address indexed admin, string newURI);
    event BaseURIUpdated(address indexed admin, string newBaseURI);

    constructor(string memory _initialURI)
        ERC721A("Disappointing Gifts", "DAD")
    {
        initialURI = _initialURI;
    }

    // fallbacks
    receive() external payable {}

    modifier onlyOwnerOrWhitelisted() {
        require(msg.sender == owner() || whitelistedMinters[msg.sender], "Only owner or whitelisted wallets allowed");
        _;
    }

    function _checkHolderStatus(address _holder) external view returns (string memory _status) {
        if(topHolders[_holder]) {
            return("Top Holder");
        // } else if(whitelistedMinters[msg.sender]) {
        //     return("Whitelisted Minter");
        } else {
            return("Public Minter");
        }
    }

    // @notice - Mint NFT
    // @dev - callable only by topHolders
    function mintByTopHolders()
        external
    {
        require(topHolders[msg.sender], "Can only be used by top 200 holders!");
        require(topHoldersMinted < maxTopHolders, "Only 200 NFTs allowed to minted by top holders");
        // require(DADToken.balanceOf[msg.sender] > 0, "Not a holder");
        require(balanceOf(msg.sender) == 0, "Can't mint more than 1 for a wallet");
        require(totalSupply() < maxSupply, "Can't exceed max supply!");
        // require(totalSupply() <= 200, "Can't mint more than 200!");

        topHoldersMinted++;
        _safeMint(msg.sender, 1);
    }

    // @notice - Mint NFT
    // @dev - paid minting
    function mint(uint256 _amount)
        external
        payable
    {
        require(balanceOf(msg.sender) < maxPerWallet, "One wallet can't mint more than 50 NFTs");
        require(_amount <= maxPerWallet, "Can't mint more than max allowed at one go");
        require(msg.value == mintPrice * _amount, "Must pay mint fee!");
        require(mintOpen, "Minting is not yet open for public!");
        require(totalSupply() + _amount <= maxSupply, "Can't exceed max supply!");
        // }
        payable(address(this)).transfer(msg.value);
        _safeMint(msg.sender, _amount);
    }

    /// @notice - Mint NFT
    /// @dev - callable only by admin or whitelisted wallet
    /// @param recipient - mint to
    function mintByAdmin(address recipient, uint256 quantity)
        external
        onlyOwnerOrWhitelisted
    {
        require(totalSupply() + quantity < maxSupply, "Can't exceed max supply!");

        if(whitelistedMinters[msg.sender]) {
            require(quantity <= teamReserved, "Can't mint more than 50 NFTs at once");
            require(teamMinted + quantity <= teamReserved, "Can't mint more than reserved for the team");
            _safeMint(msg.sender, quantity);
        } else{
            _safeMint(recipient, quantity);
        }
    }

    function _changeMaxPerWallet(uint16 _newMaxPerWallet) external onlyOwner {
        require(_newMaxPerWallet > 0, "Cannot set to zero");
        maxPerWallet = _newMaxPerWallet;
    }

    // @notice - add top Holders
    function bulkAddTopHolders(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            topHolders[accounts[i]] = state;
        }
    }

    // @notice - add whitelist
    function bulkWhitelist(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            whitelistedMinters[accounts[i]] = state;
        }
    }

    function _togglePublicMinting(bool _status) external onlyOwner {
        mintOpen = _status;
    }

    /// @notice - Set initial unrevealed URI
    /// @dev - callable only by admin
    /// @param _initialURI - initial unrevealed URI
    function setInitialURI(string memory _initialURI) external onlyOwner {
        initialURI = _initialURI;
        emit InitialURIUpdated(msg.sender, _initialURI);
    }

    /// @notice - Reveal NFTs
    /// @dev - callable only by admin
    /// @param baseURI_ - base URI to set
    /// @param _isRevealed - is the URI revealed?
    function reveal(string memory baseURI_, bool _isRevealed)
        external
        onlyOwner
    {
        isRevealed = _isRevealed;
        emit RevealUpdated(msg.sender, baseURI_);
        setBaseURI(baseURI_);
    }

    // @notice - Update mint price
    // @dev - callable only by the owner
    function _updateMintPrice(uint256 _newMintPrice) external onlyOwner {
        mintPrice = _newMintPrice;
    }

    /// @notice - Set base URI for token
    /// @dev - callable only by admin
    /// @param baseURI_ - base URI to set
    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
        emit BaseURIUpdated(msg.sender, baseURI_);
    }

    /// @notice - Get token URI
    /// @param tokenId - Token ID of NFT
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!isRevealed) return initialURI;
        else
            return
                bytes(baseURI).length != 0
                    ? string(
                        abi.encodePacked(baseURI, tokenId.toString(), ".json")
                    )
                    : initialURI;
    }

    function recoverETH() public onlyOwner {
        payable(msg.sender).transfer (address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"AdminSet","type":"event"},{"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":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"InitialURIUpdated","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":"admin","type":"address"},{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"RevealUpdated","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":"uint16","name":"_newMaxPerWallet","type":"uint16"}],"name":"_changeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"_checkHolderStatus","outputs":[{"internalType":"string","name":"_status","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"_togglePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"_updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkAddTopHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTopHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintByTopHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialURI","type":"string"}],"name":"setInitialURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"topHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topHoldersMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260c8600d556032600e556103e8601155666a94d74f4300006012556013805461ffff1916600117905534801562000039575f80fd5b5060405162002988380380620029888339810160408190526200005c916200015a565b6040518060400160405280601381526020017f4469736170706f696e74696e67204769667473000000000000000000000000008152506040518060400160405280600381526020016211105160ea1b8152508160029081620000bf9190620002b4565b506003620000ce8282620002b4565b50505f805550620000df33620000f5565b600c620000ed8282620002b4565b50506200037c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156200016c575f80fd5b82516001600160401b038082111562000183575f80fd5b818501915085601f83011262000197575f80fd5b815181811115620001ac57620001ac62000146565b604051601f8201601f19908116603f01168101908382118183101715620001d757620001d762000146565b816040528281528886848701011115620001ef575f80fd5b5f93505b82841015620002125784840186015181850187015292850192620001f3565b5f86848301015280965050505050505092915050565b600181811c908216806200023d57607f821691505b6020821081036200025c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002af575f81815260208120601f850160051c810160208610156200028a5750805b601f850160051c820191505b81811015620002ab5782815560010162000296565b5050505b505050565b81516001600160401b03811115620002d057620002d062000146565b620002e881620002e1845462000228565b8462000262565b602080601f8311600181146200031e575f8415620003065750858301515b5f19600386901b1c1916600185901b178555620002ab565b5f85815260208120601f198616915b828110156200034e578886015182559484019460019091019084016200032d565b50858210156200036c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6125fe806200038a5f395ff3fe608060405260043610610278575f3560e01c80636d8185601161014a578063af3da2f4116100be578063d9dae97711610078578063d9dae97714610746578063e8b5498d1461075b578063e985e9c514610770578063ed1e00851461078f578063f2fde38b146107bd578063fb91a9e6146107dc575f80fd5b8063af3da2f4146106a1578063b88d4fde146106c0578063bc19a0c9146106df578063c87b56dd146106fe578063c9a230771461071d578063d5abeb0114610731575f80fd5b80638da5cb5b1161010f5780638da5cb5b146105f157806395d89b411461060e5780639eada1eb14610622578063a0712d6814610650578063a22cb46514610663578063a32a7b6514610682575f80fd5b80636d8185601461056b5780636ff62b151461058a57806370a082311461059f578063715018a6146105be5780637db3aecc146105d2575f80fd5b806335dc3c68116101ec57806354214f69116101a657806354214f69146104cc57806355f804b3146104e55780636352211e146105045780636817c76c146105235780636aeb4dda146105385780636c0360eb14610557575f80fd5b806335dc3c681461040e57806336f5b9a31461042d57806342842e0e14610442578063453c231014610461578063493d79571461048e5780634b0bddd2146104ad575f80fd5b806315e6df061161023d57806315e6df061461034457806318160ddd146103635780631c9641fb1461038457806323b872dd146103a357806324bbd049146103c257806324d7806c146103e0575f80fd5b806301ffc9a7146102835780630614117a146102b757806306fdde03146102cd578063081812fc146102ee578063095ea7b314610325575f80fd5b3661027f57005b5f80fd5b34801561028e575f80fd5b506102a261029d366004611edc565b6107f0565b60405190151581526020015b60405180910390f35b3480156102c2575f80fd5b506102cb610841565b005b3480156102d8575f80fd5b506102e1610875565b6040516102ae9190611f4b565b3480156102f9575f80fd5b5061030d610308366004611f5d565b610905565b6040516001600160a01b0390911681526020016102ae565b348015610330575f80fd5b506102cb61033f366004611f8a565b610947565b34801561034f575f80fd5b506102cb61035e366004612005565b6109cc565b34801561036e575f80fd5b506001545f54035b6040519081526020016102ae565b34801561038f575f80fd5b506102cb61039e366004611f5d565b610a38565b3480156103ae575f80fd5b506102cb6103bd3660046120be565b610a45565b3480156103cd575f80fd5b50600b546102a290610100900460ff1681565b3480156103eb575f80fd5b506102a26103fa3660046120f7565b60096020525f908152604090205460ff1681565b348015610419575f80fd5b506102cb610428366004612110565b610a50565b348015610438575f80fd5b50610376600e5481565b34801561044d575f80fd5b506102cb61045c3660046120be565b610abd565b34801561046c575f80fd5b5060135461047b9061ffff1681565b60405161ffff90911681526020016102ae565b348015610499575f80fd5b506102cb6104a8366004612005565b610ad7565b3480156104b8575f80fd5b506102cb6104c7366004612131565b610b43565b3480156104d7575f80fd5b50600b546102a29060ff1681565b3480156104f0575f80fd5b506102cb6104ff3660046121d4565b610ba9565b34801561050f575f80fd5b5061030d61051e366004611f5d565b610c02565b34801561052e575f80fd5b5061037660125481565b348015610543575f80fd5b506102e16105523660046120f7565b610c13565b348015610562575f80fd5b506102e1610c8a565b348015610576575f80fd5b506102cb610585366004612205565b610d16565b348015610595575f80fd5b5061037660105481565b3480156105aa575f80fd5b506103766105b93660046120f7565b610d73565b3480156105c9575f80fd5b506102cb610dbf565b3480156105dd575f80fd5b50600b546102a29062010000900460ff1681565b3480156105fc575f80fd5b506008546001600160a01b031661030d565b348015610619575f80fd5b506102e1610dd2565b34801561062d575f80fd5b506102a261063c3660046120f7565b60146020525f908152604090205460ff1681565b6102cb61065e366004611f5d565b610de1565b34801561066e575f80fd5b506102cb61067d366004612131565b610fd7565b34801561068d575f80fd5b506102cb61069c3660046121d4565b61106b565b3480156106ac575f80fd5b506102cb6106bb366004611f8a565b6110b9565b3480156106cb575f80fd5b506102cb6106da366004612246565b611270565b3480156106ea575f80fd5b506102cb6106f93660046122bc565b6112ba565b348015610709575f80fd5b506102e1610718366004611f5d565b6112dc565b348015610728575f80fd5b506102e161144d565b34801561073c575f80fd5b5061037660115481565b348015610751575f80fd5b50610376600d5481565b348015610766575f80fd5b50610376600f5481565b34801561077b575f80fd5b506102a261078a3660046122d5565b61145a565b34801561079a575f80fd5b506102a26107a93660046120f7565b60156020525f908152604090205460ff1681565b3480156107c8575f80fd5b506102cb6107d73660046120f7565b611487565b3480156107e7575f80fd5b506102cb6114fd565b5f6001600160e01b031982166380ac58cd60e01b148061082057506001600160e01b03198216635b5e139f60e01b145b8061083b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610849611678565b60405133904780156108fc02915f818181858888f19350505050158015610872573d5f803e3d5ffd5b50565b606060028054610884906122fd565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906122fd565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f61090f826116d2565b61092c576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61095182610c02565b9050806001600160a01b0316836001600160a01b0316036109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109bc5761099f813361145a565b6109bc576040516367d9dca160e11b815260040160405180910390fd5b6109c78383836116fb565b505050565b6109d4611678565b5f5b82518110156109c7578160145f8584815181106109f5576109f5612335565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610a308161235d565b9150506109d6565b610a40611678565b601255565b6109c7838383611756565b610a58611678565b5f8161ffff1611610aa55760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b60448201526064015b60405180910390fd5b6013805461ffff191661ffff92909216919091179055565b6109c783838360405180602001604052805f815250611270565b610adf611678565b5f5b82518110156109c7578160155f858481518110610b0057610b00612335565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610b3b8161235d565b915050610ae1565b610b4b611678565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527fe68d2c359a771606c400cf8b87000cf5864010363d6a736e98f5047b7bbe18e9910160405180910390a25050565b610bb1611678565b600a610bbd82826123c2565b50336001600160a01b03167ff765b68b6ff897de964353a0eb194e46ecea8772879eb880b4b0fd277124922c82604051610bf79190611f4b565b60405180910390a250565b5f610c0c8261193c565b5192915050565b6001600160a01b0381165f9081526014602052604090205460609060ff1615610c5c57505060408051808201909152600a8152692a37b8102437b63232b960b11b602082015290565b505060408051808201909152600d81526c283ab13634b19026b4b73a32b960991b602082015290565b919050565b600a8054610c97906122fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc3906122fd565b8015610d0e5780601f10610ce557610100808354040283529160200191610d0e565b820191905f5260205f20905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b610d1e611678565b600b805460ff191682151517905560405133907fffcd326b78e78031a693e986f76bfa19d1b13f1fe4b2ec67c23f46456ee100de90610d5e908590611f4b565b60405180910390a2610d6f82610ba9565b5050565b5f6001600160a01b038216610d9b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b610dc7611678565b610dd05f611a51565b565b606060038054610884906122fd565b60135461ffff16610df133610d73565b10610e4e5760405162461bcd60e51b815260206004820152602760248201527f4f6e652077616c6c65742063616e2774206d696e74206d6f7265207468616e206044820152663530204e46547360c81b6064820152608401610a9c565b60135461ffff16811115610eb75760405162461bcd60e51b815260206004820152602a60248201527f43616e2774206d696e74206d6f7265207468616e206d617820616c6c6f776564604482015269206174206f6e6520676f60b01b6064820152608401610a9c565b80601254610ec5919061247d565b3414610f085760405162461bcd60e51b81526020600482015260126024820152714d75737420706179206d696e74206665652160701b6044820152606401610a9c565b600b54610100900460ff16610f6b5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e67206973206e6f7420796574206f70656e20666f72207075626c60448201526269632160e81b6064820152608401610a9c565b60115481610f7b6001545f540390565b610f859190612494565b1115610fa35760405162461bcd60e51b8152600401610a9c906124a7565b60405130903480156108fc02915f818181858888f19350505050158015610fcc573d5f803e3d5ffd5b506108723382611aa2565b336001600160a01b038316036110005760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611073611678565b600c61107f82826123c2565b50336001600160a01b03167f998cc6c827a95d954dd9f7f353dbbb9e4959d633c6639bca42129fa1089c364882604051610bf79190611f4b565b6008546001600160a01b03163314806110e05750335f9081526015602052604090205460ff165b61113e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722077686974656c69737465642077616c6c65746044820152681cc8185b1b1bddd95960ba1b6064820152608401610a9c565b6011548161114e6001545f540390565b6111589190612494565b106111755760405162461bcd60e51b8152600401610a9c906124a7565b335f9081526015602052604090205460ff161561126657600e548111156111ea5760405162461bcd60e51b8152602060048201526024808201527f43616e2774206d696e74206d6f7265207468616e203530204e465473206174206044820152636f6e636560e01b6064820152608401610a9c565b600e5481600f546111fb9190612494565b111561125c5760405162461bcd60e51b815260206004820152602a60248201527f43616e2774206d696e74206d6f7265207468616e20726573657276656420666f6044820152697220746865207465616d60b01b6064820152608401610a9c565b610d6f3382611aa2565b610d6f8282611aa2565b61127b848484611756565b6001600160a01b0383163b156112b45761129784848484611abb565b6112b4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6112c2611678565b600b80549115156101000261ff0019909216919091179055565b600b5460609060ff1661137957600c80546112f6906122fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611322906122fd565b801561136d5780601f106113445761010080835404028352916020019161136d565b820191905f5260205f20905b81548152906001019060200180831161135057829003601f168201915b50505050509050919050565b600a8054611386906122fd565b90505f0361141c57600c805461139b906122fd565b80601f01602080910402602001604051908101604052809291908181526020018280546113c7906122fd565b80156114125780601f106113e957610100808354040283529160200191611412565b820191905f5260205f20905b8154815290600101906020018083116113f557829003601f168201915b505050505061083b565b600a61142783611ba3565b6040516020016114389291906124de565b60405160208183030381529060405292915050565b600c8054610c97906122fd565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b61148f611678565b6001600160a01b0381166114f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9c565b61087281611a51565b335f9081526014602052604090205460ff166115675760405162461bcd60e51b8152602060048201526024808201527f43616e206f6e6c79206265207573656420627920746f702032303020686f6c646044820152636572732160e01b6064820152608401610a9c565b600d54601054106115d15760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c7920323030204e46547320616c6c6f77656420746f206d696e7465642060448201526d627920746f7020686f6c6465727360901b6064820152608401610a9c565b6115da33610d73565b156116335760405162461bcd60e51b815260206004820152602360248201527f43616e2774206d696e74206d6f7265207468616e203120666f7220612077616c6044820152621b195d60ea1b6064820152608401610a9c565b6011546001545f5403106116595760405162461bcd60e51b8152600401610a9c906124a7565b60108054905f6116688361235d565b9190505550610dd0336001611aa2565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b5f80548210801561083b5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f6117608261193c565b9050836001600160a01b0316815f01516001600160a01b0316146117965760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806117b357506117b3853361145a565b806117ce5750336117c384610905565b6001600160a01b0316145b9050806117ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661181557604051633a954ecd60e21b815260040160405180910390fd5b6118205f84876116fb565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118f1575f5482146118f157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182525f8082526020820181905291810191909152815f54811015611a38575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a365780516001600160a01b0316156119cf579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a31579392505050565b6119cf565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610d6f828260405180602001604052805f815250611c32565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611aef903390899088908890600401612571565b6020604051808303815f875af1925050508015611b29575060408051601f3d908101601f19168201909252611b26918101906125ad565b60015b611b85573d808015611b56576040519150601f19603f3d011682016040523d82523d5f602084013e611b5b565b606091505b5080515f03611b7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60605f611baf83611df0565b60010190505f816001600160401b03811115611bcd57611bcd611fb2565b6040519080825280601f01601f191660200182016040528015611bf7576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c0157509392505050565b5f546001600160a01b038416611c5a57604051622e076360e81b815260040160405180910390fd5b825f03611c7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611d9d575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d685f878480600101955087611abb565b611d85576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d1f57825f5414611d98575f80fd5b611de1565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d9e575b505f9081556112b49085838684565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e2e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e5a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611e7857662386f26fc10000830492506010015b6305f5e1008310611e90576305f5e100830492506008015b6127108310611ea457612710830492506004015b60648310611eb6576064830492506002015b600a831061083b5760010192915050565b6001600160e01b031981168114610872575f80fd5b5f60208284031215611eec575f80fd5b8135611ef781611ec7565b9392505050565b5f5b83811015611f18578181015183820152602001611f00565b50505f910152565b5f8151808452611f37816020860160208601611efe565b601f01601f19169290920160200192915050565b602081525f611ef76020830184611f20565b5f60208284031215611f6d575f80fd5b5035919050565b80356001600160a01b0381168114610c85575f80fd5b5f8060408385031215611f9b575f80fd5b611fa483611f74565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715611fee57611fee611fb2565b604052919050565b80358015158114610c85575f80fd5b5f8060408385031215612016575f80fd5b82356001600160401b038082111561202c575f80fd5b818501915085601f83011261203f575f80fd5b813560208282111561205357612053611fb2565b8160051b9250612064818401611fc6565b828152928401810192818101908985111561207d575f80fd5b948201945b848610156120a25761209386611f74565b82529482019490820190612082565b96506120b19050878201611ff6565b9450505050509250929050565b5f805f606084860312156120d0575f80fd5b6120d984611f74565b92506120e760208501611f74565b9150604084013590509250925092565b5f60208284031215612107575f80fd5b611ef782611f74565b5f60208284031215612120575f80fd5b813561ffff81168114611ef7575f80fd5b5f8060408385031215612142575f80fd5b61214b83611f74565b915061215960208401611ff6565b90509250929050565b5f6001600160401b0383111561217a5761217a611fb2565b61218d601f8401601f1916602001611fc6565b90508281528383830111156121a0575f80fd5b828260208301375f602084830101529392505050565b5f82601f8301126121c5575f80fd5b611ef783833560208501612162565b5f602082840312156121e4575f80fd5b81356001600160401b038111156121f9575f80fd5b611b9b848285016121b6565b5f8060408385031215612216575f80fd5b82356001600160401b0381111561222b575f80fd5b612237858286016121b6565b92505061215960208401611ff6565b5f805f8060808587031215612259575f80fd5b61226285611f74565b935061227060208601611f74565b92506040850135915060608501356001600160401b03811115612291575f80fd5b8501601f810187136122a1575f80fd5b6122b087823560208401612162565b91505092959194509250565b5f602082840312156122cc575f80fd5b611ef782611ff6565b5f80604083850312156122e6575f80fd5b6122ef83611f74565b915061215960208401611f74565b600181811c9082168061231157607f821691505b60208210810361232f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161236e5761236e612349565b5060010190565b601f8211156109c7575f81815260208120601f850160051c8101602086101561239b5750805b601f850160051c820191505b818110156123ba578281556001016123a7565b505050505050565b81516001600160401b038111156123db576123db611fb2565b6123ef816123e984546122fd565b84612375565b602080601f831160018114612422575f841561240b5750858301515b5f19600386901b1c1916600185901b1785556123ba565b5f85815260208120601f198616915b8281101561245057888601518255948401946001909101908401612431565b508582101561246d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761083b5761083b612349565b8082018082111561083b5761083b612349565b60208082526018908201527f43616e277420657863656564206d617820737570706c79210000000000000000604082015260600190565b5f8084546124eb816122fd565b60018281168015612503576001811461251857612544565b60ff1984168752821515830287019450612544565b885f526020805f205f5b8581101561253b5781548a820152908401908201612522565b50505082870194505b505050508351612558818360208801611efe565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906125a390830184611f20565b9695505050505050565b5f602082840312156125bd575f80fd5b8151611ef781611ec756fea26469706673582212207829dc67d38326cc49ee49ab6e7df5f7c917dcfb3c1edf05442b38f77e65c5c764736f6c634300081400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6261666b72656963687933637672766d3467727a777968323363337a32337961703373677a68713769756a7770727661737a7074756264377477792e697066732e6e667473746f726167652e6c696e6b0000000000000000

Deployed Bytecode

0x608060405260043610610278575f3560e01c80636d8185601161014a578063af3da2f4116100be578063d9dae97711610078578063d9dae97714610746578063e8b5498d1461075b578063e985e9c514610770578063ed1e00851461078f578063f2fde38b146107bd578063fb91a9e6146107dc575f80fd5b8063af3da2f4146106a1578063b88d4fde146106c0578063bc19a0c9146106df578063c87b56dd146106fe578063c9a230771461071d578063d5abeb0114610731575f80fd5b80638da5cb5b1161010f5780638da5cb5b146105f157806395d89b411461060e5780639eada1eb14610622578063a0712d6814610650578063a22cb46514610663578063a32a7b6514610682575f80fd5b80636d8185601461056b5780636ff62b151461058a57806370a082311461059f578063715018a6146105be5780637db3aecc146105d2575f80fd5b806335dc3c68116101ec57806354214f69116101a657806354214f69146104cc57806355f804b3146104e55780636352211e146105045780636817c76c146105235780636aeb4dda146105385780636c0360eb14610557575f80fd5b806335dc3c681461040e57806336f5b9a31461042d57806342842e0e14610442578063453c231014610461578063493d79571461048e5780634b0bddd2146104ad575f80fd5b806315e6df061161023d57806315e6df061461034457806318160ddd146103635780631c9641fb1461038457806323b872dd146103a357806324bbd049146103c257806324d7806c146103e0575f80fd5b806301ffc9a7146102835780630614117a146102b757806306fdde03146102cd578063081812fc146102ee578063095ea7b314610325575f80fd5b3661027f57005b5f80fd5b34801561028e575f80fd5b506102a261029d366004611edc565b6107f0565b60405190151581526020015b60405180910390f35b3480156102c2575f80fd5b506102cb610841565b005b3480156102d8575f80fd5b506102e1610875565b6040516102ae9190611f4b565b3480156102f9575f80fd5b5061030d610308366004611f5d565b610905565b6040516001600160a01b0390911681526020016102ae565b348015610330575f80fd5b506102cb61033f366004611f8a565b610947565b34801561034f575f80fd5b506102cb61035e366004612005565b6109cc565b34801561036e575f80fd5b506001545f54035b6040519081526020016102ae565b34801561038f575f80fd5b506102cb61039e366004611f5d565b610a38565b3480156103ae575f80fd5b506102cb6103bd3660046120be565b610a45565b3480156103cd575f80fd5b50600b546102a290610100900460ff1681565b3480156103eb575f80fd5b506102a26103fa3660046120f7565b60096020525f908152604090205460ff1681565b348015610419575f80fd5b506102cb610428366004612110565b610a50565b348015610438575f80fd5b50610376600e5481565b34801561044d575f80fd5b506102cb61045c3660046120be565b610abd565b34801561046c575f80fd5b5060135461047b9061ffff1681565b60405161ffff90911681526020016102ae565b348015610499575f80fd5b506102cb6104a8366004612005565b610ad7565b3480156104b8575f80fd5b506102cb6104c7366004612131565b610b43565b3480156104d7575f80fd5b50600b546102a29060ff1681565b3480156104f0575f80fd5b506102cb6104ff3660046121d4565b610ba9565b34801561050f575f80fd5b5061030d61051e366004611f5d565b610c02565b34801561052e575f80fd5b5061037660125481565b348015610543575f80fd5b506102e16105523660046120f7565b610c13565b348015610562575f80fd5b506102e1610c8a565b348015610576575f80fd5b506102cb610585366004612205565b610d16565b348015610595575f80fd5b5061037660105481565b3480156105aa575f80fd5b506103766105b93660046120f7565b610d73565b3480156105c9575f80fd5b506102cb610dbf565b3480156105dd575f80fd5b50600b546102a29062010000900460ff1681565b3480156105fc575f80fd5b506008546001600160a01b031661030d565b348015610619575f80fd5b506102e1610dd2565b34801561062d575f80fd5b506102a261063c3660046120f7565b60146020525f908152604090205460ff1681565b6102cb61065e366004611f5d565b610de1565b34801561066e575f80fd5b506102cb61067d366004612131565b610fd7565b34801561068d575f80fd5b506102cb61069c3660046121d4565b61106b565b3480156106ac575f80fd5b506102cb6106bb366004611f8a565b6110b9565b3480156106cb575f80fd5b506102cb6106da366004612246565b611270565b3480156106ea575f80fd5b506102cb6106f93660046122bc565b6112ba565b348015610709575f80fd5b506102e1610718366004611f5d565b6112dc565b348015610728575f80fd5b506102e161144d565b34801561073c575f80fd5b5061037660115481565b348015610751575f80fd5b50610376600d5481565b348015610766575f80fd5b50610376600f5481565b34801561077b575f80fd5b506102a261078a3660046122d5565b61145a565b34801561079a575f80fd5b506102a26107a93660046120f7565b60156020525f908152604090205460ff1681565b3480156107c8575f80fd5b506102cb6107d73660046120f7565b611487565b3480156107e7575f80fd5b506102cb6114fd565b5f6001600160e01b031982166380ac58cd60e01b148061082057506001600160e01b03198216635b5e139f60e01b145b8061083b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610849611678565b60405133904780156108fc02915f818181858888f19350505050158015610872573d5f803e3d5ffd5b50565b606060028054610884906122fd565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906122fd565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f61090f826116d2565b61092c576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f61095182610c02565b9050806001600160a01b0316836001600160a01b0316036109855760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109bc5761099f813361145a565b6109bc576040516367d9dca160e11b815260040160405180910390fd5b6109c78383836116fb565b505050565b6109d4611678565b5f5b82518110156109c7578160145f8584815181106109f5576109f5612335565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610a308161235d565b9150506109d6565b610a40611678565b601255565b6109c7838383611756565b610a58611678565b5f8161ffff1611610aa55760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b60448201526064015b60405180910390fd5b6013805461ffff191661ffff92909216919091179055565b6109c783838360405180602001604052805f815250611270565b610adf611678565b5f5b82518110156109c7578160155f858481518110610b0057610b00612335565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905580610b3b8161235d565b915050610ae1565b610b4b611678565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527fe68d2c359a771606c400cf8b87000cf5864010363d6a736e98f5047b7bbe18e9910160405180910390a25050565b610bb1611678565b600a610bbd82826123c2565b50336001600160a01b03167ff765b68b6ff897de964353a0eb194e46ecea8772879eb880b4b0fd277124922c82604051610bf79190611f4b565b60405180910390a250565b5f610c0c8261193c565b5192915050565b6001600160a01b0381165f9081526014602052604090205460609060ff1615610c5c57505060408051808201909152600a8152692a37b8102437b63232b960b11b602082015290565b505060408051808201909152600d81526c283ab13634b19026b4b73a32b960991b602082015290565b919050565b600a8054610c97906122fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc3906122fd565b8015610d0e5780601f10610ce557610100808354040283529160200191610d0e565b820191905f5260205f20905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b610d1e611678565b600b805460ff191682151517905560405133907fffcd326b78e78031a693e986f76bfa19d1b13f1fe4b2ec67c23f46456ee100de90610d5e908590611f4b565b60405180910390a2610d6f82610ba9565b5050565b5f6001600160a01b038216610d9b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b610dc7611678565b610dd05f611a51565b565b606060038054610884906122fd565b60135461ffff16610df133610d73565b10610e4e5760405162461bcd60e51b815260206004820152602760248201527f4f6e652077616c6c65742063616e2774206d696e74206d6f7265207468616e206044820152663530204e46547360c81b6064820152608401610a9c565b60135461ffff16811115610eb75760405162461bcd60e51b815260206004820152602a60248201527f43616e2774206d696e74206d6f7265207468616e206d617820616c6c6f776564604482015269206174206f6e6520676f60b01b6064820152608401610a9c565b80601254610ec5919061247d565b3414610f085760405162461bcd60e51b81526020600482015260126024820152714d75737420706179206d696e74206665652160701b6044820152606401610a9c565b600b54610100900460ff16610f6b5760405162461bcd60e51b815260206004820152602360248201527f4d696e74696e67206973206e6f7420796574206f70656e20666f72207075626c60448201526269632160e81b6064820152608401610a9c565b60115481610f7b6001545f540390565b610f859190612494565b1115610fa35760405162461bcd60e51b8152600401610a9c906124a7565b60405130903480156108fc02915f818181858888f19350505050158015610fcc573d5f803e3d5ffd5b506108723382611aa2565b336001600160a01b038316036110005760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611073611678565b600c61107f82826123c2565b50336001600160a01b03167f998cc6c827a95d954dd9f7f353dbbb9e4959d633c6639bca42129fa1089c364882604051610bf79190611f4b565b6008546001600160a01b03163314806110e05750335f9081526015602052604090205460ff165b61113e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722077686974656c69737465642077616c6c65746044820152681cc8185b1b1bddd95960ba1b6064820152608401610a9c565b6011548161114e6001545f540390565b6111589190612494565b106111755760405162461bcd60e51b8152600401610a9c906124a7565b335f9081526015602052604090205460ff161561126657600e548111156111ea5760405162461bcd60e51b8152602060048201526024808201527f43616e2774206d696e74206d6f7265207468616e203530204e465473206174206044820152636f6e636560e01b6064820152608401610a9c565b600e5481600f546111fb9190612494565b111561125c5760405162461bcd60e51b815260206004820152602a60248201527f43616e2774206d696e74206d6f7265207468616e20726573657276656420666f6044820152697220746865207465616d60b01b6064820152608401610a9c565b610d6f3382611aa2565b610d6f8282611aa2565b61127b848484611756565b6001600160a01b0383163b156112b45761129784848484611abb565b6112b4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6112c2611678565b600b80549115156101000261ff0019909216919091179055565b600b5460609060ff1661137957600c80546112f6906122fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611322906122fd565b801561136d5780601f106113445761010080835404028352916020019161136d565b820191905f5260205f20905b81548152906001019060200180831161135057829003601f168201915b50505050509050919050565b600a8054611386906122fd565b90505f0361141c57600c805461139b906122fd565b80601f01602080910402602001604051908101604052809291908181526020018280546113c7906122fd565b80156114125780601f106113e957610100808354040283529160200191611412565b820191905f5260205f20905b8154815290600101906020018083116113f557829003601f168201915b505050505061083b565b600a61142783611ba3565b6040516020016114389291906124de565b60405160208183030381529060405292915050565b600c8054610c97906122fd565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b61148f611678565b6001600160a01b0381166114f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a9c565b61087281611a51565b335f9081526014602052604090205460ff166115675760405162461bcd60e51b8152602060048201526024808201527f43616e206f6e6c79206265207573656420627920746f702032303020686f6c646044820152636572732160e01b6064820152608401610a9c565b600d54601054106115d15760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c7920323030204e46547320616c6c6f77656420746f206d696e7465642060448201526d627920746f7020686f6c6465727360901b6064820152608401610a9c565b6115da33610d73565b156116335760405162461bcd60e51b815260206004820152602360248201527f43616e2774206d696e74206d6f7265207468616e203120666f7220612077616c6044820152621b195d60ea1b6064820152608401610a9c565b6011546001545f5403106116595760405162461bcd60e51b8152600401610a9c906124a7565b60108054905f6116688361235d565b9190505550610dd0336001611aa2565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b5f80548210801561083b5750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f6117608261193c565b9050836001600160a01b0316815f01516001600160a01b0316146117965760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806117b357506117b3853361145a565b806117ce5750336117c384610905565b6001600160a01b0316145b9050806117ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661181557604051633a954ecd60e21b815260040160405180910390fd5b6118205f84876116fb565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166118f1575f5482146118f157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182525f8082526020820181905291810191909152815f54811015611a38575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a365780516001600160a01b0316156119cf579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a31579392505050565b6119cf565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610d6f828260405180602001604052805f815250611c32565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611aef903390899088908890600401612571565b6020604051808303815f875af1925050508015611b29575060408051601f3d908101601f19168201909252611b26918101906125ad565b60015b611b85573d808015611b56576040519150601f19603f3d011682016040523d82523d5f602084013e611b5b565b606091505b5080515f03611b7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60605f611baf83611df0565b60010190505f816001600160401b03811115611bcd57611bcd611fb2565b6040519080825280601f01601f191660200182016040528015611bf7576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611c0157509392505050565b5f546001600160a01b038416611c5a57604051622e076360e81b815260040160405180910390fd5b825f03611c7a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611d9d575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d685f878480600101955087611abb565b611d85576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d1f57825f5414611d98575f80fd5b611de1565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d9e575b505f9081556112b49085838684565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e2e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e5a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611e7857662386f26fc10000830492506010015b6305f5e1008310611e90576305f5e100830492506008015b6127108310611ea457612710830492506004015b60648310611eb6576064830492506002015b600a831061083b5760010192915050565b6001600160e01b031981168114610872575f80fd5b5f60208284031215611eec575f80fd5b8135611ef781611ec7565b9392505050565b5f5b83811015611f18578181015183820152602001611f00565b50505f910152565b5f8151808452611f37816020860160208601611efe565b601f01601f19169290920160200192915050565b602081525f611ef76020830184611f20565b5f60208284031215611f6d575f80fd5b5035919050565b80356001600160a01b0381168114610c85575f80fd5b5f8060408385031215611f9b575f80fd5b611fa483611f74565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715611fee57611fee611fb2565b604052919050565b80358015158114610c85575f80fd5b5f8060408385031215612016575f80fd5b82356001600160401b038082111561202c575f80fd5b818501915085601f83011261203f575f80fd5b813560208282111561205357612053611fb2565b8160051b9250612064818401611fc6565b828152928401810192818101908985111561207d575f80fd5b948201945b848610156120a25761209386611f74565b82529482019490820190612082565b96506120b19050878201611ff6565b9450505050509250929050565b5f805f606084860312156120d0575f80fd5b6120d984611f74565b92506120e760208501611f74565b9150604084013590509250925092565b5f60208284031215612107575f80fd5b611ef782611f74565b5f60208284031215612120575f80fd5b813561ffff81168114611ef7575f80fd5b5f8060408385031215612142575f80fd5b61214b83611f74565b915061215960208401611ff6565b90509250929050565b5f6001600160401b0383111561217a5761217a611fb2565b61218d601f8401601f1916602001611fc6565b90508281528383830111156121a0575f80fd5b828260208301375f602084830101529392505050565b5f82601f8301126121c5575f80fd5b611ef783833560208501612162565b5f602082840312156121e4575f80fd5b81356001600160401b038111156121f9575f80fd5b611b9b848285016121b6565b5f8060408385031215612216575f80fd5b82356001600160401b0381111561222b575f80fd5b612237858286016121b6565b92505061215960208401611ff6565b5f805f8060808587031215612259575f80fd5b61226285611f74565b935061227060208601611f74565b92506040850135915060608501356001600160401b03811115612291575f80fd5b8501601f810187136122a1575f80fd5b6122b087823560208401612162565b91505092959194509250565b5f602082840312156122cc575f80fd5b611ef782611ff6565b5f80604083850312156122e6575f80fd5b6122ef83611f74565b915061215960208401611f74565b600181811c9082168061231157607f821691505b60208210810361232f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161236e5761236e612349565b5060010190565b601f8211156109c7575f81815260208120601f850160051c8101602086101561239b5750805b601f850160051c820191505b818110156123ba578281556001016123a7565b505050505050565b81516001600160401b038111156123db576123db611fb2565b6123ef816123e984546122fd565b84612375565b602080601f831160018114612422575f841561240b5750858301515b5f19600386901b1c1916600185901b1785556123ba565b5f85815260208120601f198616915b8281101561245057888601518255948401946001909101908401612431565b508582101561246d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761083b5761083b612349565b8082018082111561083b5761083b612349565b60208082526018908201527f43616e277420657863656564206d617820737570706c79210000000000000000604082015260600190565b5f8084546124eb816122fd565b60018281168015612503576001811461251857612544565b60ff1984168752821515830287019450612544565b885f526020805f205f5b8581101561253b5781548a820152908401908201612522565b50505082870194505b505050508351612558818360208801611efe565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906125a390830184611f20565b9695505050505050565b5f602082840312156125bd575f80fd5b8151611ef781611ec756fea26469706673582212207829dc67d38326cc49ee49ab6e7df5f7c917dcfb3c1edf05442b38f77e65c5c764736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6261666b72656963687933637672766d3467727a777968323363337a32337961703373677a68713769756a7770727661737a7074756264377477792e697066732e6e667473746f726167652e6c696e6b0000000000000000

-----Decoded View---------------
Arg [0] : _initialURI (string): https://bafkreichy3cvrvm4grzwyh23c3z23yap3sgzhq7iujwprvaszptubd7twy.ipfs.nftstorage.link

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [2] : 68747470733a2f2f6261666b72656963687933637672766d3467727a77796832
Arg [3] : 3363337a32337961703373677a68713769756a7770727661737a707475626437
Arg [4] : 7477792e697066732e6e667473746f726167652e6c696e6b0000000000000000


Deployed Bytecode Sourcemap

62311:6359:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42091:305;;;;;;;;;;-1:-1:-1;42091:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42091:305:0;;;;;;;;68557:110;;;;;;;;;;;;;:::i;:::-;;45206:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46710:204::-;;;;;;;;;;-1:-1:-1;46710:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;46710:204:0;1533:203:1;46272:372:0;;;;;;;;;;-1:-1:-1;46272:372:0;;;;;:::i;:::-;;:::i;66269:207::-;;;;;;;;;;-1:-1:-1;66269:207:0;;;;;:::i;:::-;;:::i;41331:312::-;;;;;;;;;;-1:-1:-1;41594:12:0;;41384:7;41578:13;:28;41331:312;;;3928:25:1;;;3916:2;3901:18;41331:312:0;3782:177:1;67634:112:0;;;;;;;;;;-1:-1:-1;67634:112:0;;;;;:::i;:::-;;:::i;47575:170::-;;;;;;;;;;-1:-1:-1;47575:170:0;;;;;:::i;:::-;;:::i;62542:20::-;;;;;;;;;;-1:-1:-1;62542:20:0;;;;;;;;;;;18501:39;;;;;;;;;;-1:-1:-1;18501:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;66042:185;;;;;;;;;;-1:-1:-1;66042:185:0;;;;;:::i;:::-;;:::i;62673:32::-;;;;;;;;;;;;;;;;47816:185;;;;;;;;;;-1:-1:-1;47816:185:0;;;;;:::i;:::-;;:::i;62913:30::-;;;;;;;;;;-1:-1:-1;62913:30:0;;;;;;;;;;;4939:6:1;4927:19;;;4909:38;;4897:2;4882:18;62913:30:0;4765:188:1;66516:211:0;;;;;;;;;;-1:-1:-1;66516:211:0;;;;;:::i;:::-;;:::i;18830:152::-;;;;;;;;;;-1:-1:-1;18830:152:0;;;;;:::i;:::-;;:::i;62513:22::-;;;;;;;;;;-1:-1:-1;62513:22:0;;;;;;;;67878:150;;;;;;;;;;-1:-1:-1;67878:150:0;;;;;:::i;:::-;;:::i;45014:125::-;;;;;;;;;;-1:-1:-1;45014:125:0;;;;;:::i;:::-;;:::i;62869:37::-;;;;;;;;;;;;;;;;63643:338;;;;;;;;;;-1:-1:-1;63643:338:0;;;;;:::i;:::-;;:::i;62485:21::-;;;;;;;;;;;;;:::i;67323:225::-;;;;;;;;;;-1:-1:-1;67323:225:0;;;;;:::i;:::-;;:::i;62744:31::-;;;;;;;;;;;;;;;;42460:206;;;;;;;;;;-1:-1:-1;42460:206:0;;;;;:::i;:::-;;:::i;17526:103::-;;;;;;;;;;;;;:::i;62569:25::-;;;;;;;;;;-1:-1:-1;62569:25:0;;;;;;;;;;;16878:87;;;;;;;;;;-1:-1:-1;16951:6:0;;-1:-1:-1;;;;;16951:6:0;16878:87;;45375:104;;;;;;;;;;;;;:::i;62952:42::-;;;;;;;;;;-1:-1:-1;62952:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;64734:600;;;;;;:::i;:::-;;:::i;46986:287::-;;;;;;;;;;-1:-1:-1;46986:287:0;;;;;:::i;:::-;;:::i;66981:170::-;;;;;;;;;;-1:-1:-1;66981:170:0;;;;;:::i;:::-;;:::i;65467:567::-;;;;;;;;;;-1:-1:-1;65467:567:0;;;;;:::i;:::-;;:::i;48072:370::-;;;;;;;;;;-1:-1:-1;48072:370:0;;;;;:::i;:::-;;:::i;66735:100::-;;;;;;;;;;-1:-1:-1;66735:100:0;;;;;:::i;:::-;;:::i;68111:438::-;;;;;;;;;;-1:-1:-1;68111:438:0;;;;;:::i;:::-;;:::i;62601:24::-;;;;;;;;;;;;;:::i;62831:31::-;;;;;;;;;;;;;;;;62632:34;;;;;;;;;;;;;;;;62712:25;;;;;;;;;;;;;;;;47344:164;;;;;;;;;;-1:-1:-1;47344:164:0;;;;;:::i;:::-;;:::i;63001:50::-;;;;;;;;;;-1:-1:-1;63001:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;17784:201;;;;;;;;;;-1:-1:-1;17784:201:0;;;;;:::i;:::-;;:::i;64059:612::-;;;;;;;;;;;;;:::i;42091:305::-;42193:4;-1:-1:-1;;;;;;42230:40:0;;-1:-1:-1;;;42230:40:0;;:105;;-1:-1:-1;;;;;;;42287:48:0;;-1:-1:-1;;;42287:48:0;42230:105;:158;;;-1:-1:-1;;;;;;;;;;30944:40:0;;;42352:36;42210:178;42091:305;-1:-1:-1;;42091:305:0:o;68557:110::-;16764:13;:11;:13::i;:::-;68607:52:::1;::::0;68615:10:::1;::::0;68637:21:::1;68607:52:::0;::::1;;;::::0;::::1;::::0;;;68637:21;68615:10;68607:52;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;68557:110::o:0;45206:100::-;45260:13;45293:5;45286:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45206:100;:::o;46710:204::-;46778:7;46803:16;46811:7;46803;:16::i;:::-;46798:64;;46828:34;;-1:-1:-1;;;46828:34:0;;;;;;;;;;;46798:64;-1:-1:-1;46882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46882:24:0;;46710:204::o;46272:372::-;46345:13;46361:24;46377:7;46361:15;:24::i;:::-;46345:40;;46406:5;-1:-1:-1;;;;;46400:11:0;:2;-1:-1:-1;;;;;46400:11:0;;46396:48;;46420:24;;-1:-1:-1;;;46420:24:0;;;;;;;;;;;46396:48;15667:10;-1:-1:-1;;;;;46461:21:0;;;46457:139;;46488:37;46505:5;15667:10;47344:164;:::i;46488:37::-;46484:112;;46549:35;;-1:-1:-1;;;46549:35:0;;;;;;;;;;;46484:112;46608:28;46617:2;46621:7;46630:5;46608:8;:28::i;:::-;46334:310;46272:372;;:::o;66269:207::-;16764:13;:11;:13::i;:::-;66370:9:::1;66365:104;66389:8;:15;66385:1;:19;66365:104;;;66452:5;66426:10;:23;66437:8;66446:1;66437:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;66426:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;66426:23:0;:31;;-1:-1:-1;;66426:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66406:3;::::1;::::0;::::1;:::i;:::-;;;;66365:104;;67634:112:::0;16764:13;:11;:13::i;:::-;67713:9:::1;:25:::0;67634:112::o;47575:170::-;47709:28;47719:4;47725:2;47729:7;47709:9;:28::i;66042:185::-;16764:13;:11;:13::i;:::-;66153:1:::1;66134:16;:20;;;66126:51;;;::::0;-1:-1:-1;;;66126:51:0;;8691:2:1;66126:51:0::1;::::0;::::1;8673:21:1::0;8730:2;8710:18;;;8703:30;-1:-1:-1;;;8749:18:1;;;8742:48;8807:18;;66126:51:0::1;;;;;;;;;66188:12;:31:::0;;-1:-1:-1;;66188:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;66042:185::o;47816:::-;47954:39;47971:4;47977:2;47981:7;47954:39;;;;;;;;;;;;:16;:39::i;66516:211::-;16764:13;:11;:13::i;:::-;66613:9:::1;66608:112;66632:8;:15;66628:1;:19;66608:112;;;66703:5;66669:18;:31;66688:8;66697:1;66688:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;66669:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;66669:31:0;:39;;-1:-1:-1;;66669:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66649:3;::::1;::::0;::::1;:::i;:::-;;;;66608:112;;18830:152:::0;16764:13;:11;:13::i;:::-;-1:-1:-1;;;;;18908:13:0;::::1;;::::0;;;:7:::1;:13;::::0;;;;;;;;:25;;-1:-1:-1;;18908:25:0::1;::::0;::::1;;::::0;;::::1;::::0;;;18949;;540:41:1;;;18949:25:0::1;::::0;513:18:1;18949:25:0::1;;;;;;;18830:152:::0;;:::o;67878:150::-;16764:13;:11;:13::i;:::-;67950:7:::1;:18;67960:8:::0;67950:7;:18:::1;:::i;:::-;;67999:10;-1:-1:-1::0;;;;;67984:36:0::1;;68011:8;67984:36;;;;;;:::i;:::-;;;;;;;;67878:150:::0;:::o;45014:125::-;45078:7;45105:21;45118:7;45105:12;:21::i;:::-;:26;;45014:125;-1:-1:-1;;45014:125:0:o;63643:338::-;-1:-1:-1;;;;;63748:19:0;;;;;;:10;:19;;;;;;63711:21;;63748:19;;63745:229;;;-1:-1:-1;;63784:20:0;;;;;;;;;;;;-1:-1:-1;;;63784:20:0;;;;;63643:338::o;63745:229::-;-1:-1:-1;;63939:23:0;;;;;;;;;;;;-1:-1:-1;;;63939:23:0;;;;;63643:338::o;63745:229::-;63643:338;;;:::o;62485:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67323:225::-;16764:13;:11;:13::i;:::-;67434:10:::1;:24:::0;;-1:-1:-1;;67434:24:0::1;::::0;::::1;;;::::0;;67474:35:::1;::::0;67488:10:::1;::::0;67474:35:::1;::::0;::::1;::::0;67500:8;;67474:35:::1;:::i;:::-;;;;;;;;67520:20;67531:8;67520:10;:20::i;:::-;67323:225:::0;;:::o;42460:206::-;42524:7;-1:-1:-1;;;;;42548:19:0;;42544:60;;42576:28;;-1:-1:-1;;;42576:28:0;;;;;;;;;;;42544:60;-1:-1:-1;;;;;;42630:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42630:27:0;;42460:206::o;17526:103::-;16764:13;:11;:13::i;:::-;17591:30:::1;17618:1;17591:18;:30::i;:::-;17526:103::o:0;45375:104::-;45431:13;45464:7;45457:14;;;;;:::i;64734:600::-;64848:12;;;;64824:21;64834:10;64824:9;:21::i;:::-;:36;64816:88;;;;-1:-1:-1;;;64816:88:0;;11242:2:1;64816:88:0;;;11224:21:1;11281:2;11261:18;;;11254:30;11320:34;11300:18;;;11293:62;-1:-1:-1;;;11371:18:1;;;11364:37;11418:19;;64816:88:0;11040:403:1;64816:88:0;64934:12;;;;64923:23;;;64915:78;;;;-1:-1:-1;;;64915:78:0;;11650:2:1;64915:78:0;;;11632:21:1;11689:2;11669:18;;;11662:30;11728:34;11708:18;;;11701:62;-1:-1:-1;;;11779:18:1;;;11772:40;11829:19;;64915:78:0;11448:406:1;64915:78:0;65037:7;65025:9;;:19;;;;:::i;:::-;65012:9;:32;65004:63;;;;-1:-1:-1;;;65004:63:0;;12234:2:1;65004:63:0;;;12216:21:1;12273:2;12253:18;;;12246:30;-1:-1:-1;;;12292:18:1;;;12285:48;12350:18;;65004:63:0;12032:342:1;65004:63:0;65086:8;;;;;;;65078:56;;;;-1:-1:-1;;;65078:56:0;;12581:2:1;65078:56:0;;;12563:21:1;12620:2;12600:18;;;12593:30;12659:34;12639:18;;;12632:62;-1:-1:-1;;;12710:18:1;;;12703:33;12753:19;;65078:56:0;12379:399:1;65078:56:0;65180:9;;65169:7;65153:13;41594:12;;41384:7;41578:13;:28;;41331:312;65153:13;:23;;;;:::i;:::-;:36;;65145:73;;;;-1:-1:-1;;;65145:73:0;;;;;;;:::i;:::-;65243:42;;65259:4;;65275:9;65243:42;;;;;;;;;65275:9;65259:4;65243:42;;;;;;;;;;;;;;;;;;;;;65296:30;65306:10;65318:7;65296:9;:30::i;46986:287::-;15667:10;-1:-1:-1;;;;;47085:24:0;;;47081:54;;47118:17;;-1:-1:-1;;;47118:17:0;;;;;;;;;;;47081:54;15667:10;47148:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;47148:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;47148:53:0;;;;;;;;;;47217:48;;540:41:1;;;47148:42:0;;15667:10;47217:48;;513:18:1;47217:48:0;;;;;;;46986:287;;:::o;66981:170::-;16764:13;:11;:13::i;:::-;67061:10:::1;:24;67074:11:::0;67061:10;:24:::1;:::i;:::-;;67119:10;-1:-1:-1::0;;;;;67101:42:0::1;;67131:11;67101:42;;;;;;:::i;65467:567::-:0;16951:6;;-1:-1:-1;;;;;16951:6:0;63514:10;:21;;:55;;-1:-1:-1;63558:10:0;63539:30;;;;:18;:30;;;;;;;;63514:55;63506:109;;;;-1:-1:-1;;;63506:109:0;;13468:2:1;63506:109:0;;;13450:21:1;13507:2;13487:18;;;13480:30;13546:34;13526:18;;;13519:62;-1:-1:-1;;;13597:18:1;;;13590:39;13646:19;;63506:109:0;13266:405:1;63506:109:0;65626:9:::1;;65615:8;65599:13;41594:12:::0;;41384:7;41578:13;:28;;41331:312;65599:13:::1;:24;;;;:::i;:::-;:36;65591:73;;;;-1:-1:-1::0;;;65591:73:0::1;;;;;;;:::i;:::-;65699:10;65680:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;65677:350;;;65747:12;;65735:8;:24;;65727:73;;;::::0;-1:-1:-1;;;65727:73:0;;13878:2:1;65727:73:0::1;::::0;::::1;13860:21:1::0;13917:2;13897:18;;;13890:30;13956:34;13936:18;;;13929:62;-1:-1:-1;;;14007:18:1;;;14000:34;14051:19;;65727:73:0::1;13676:400:1::0;65727:73:0::1;65848:12;;65836:8;65823:10;;:21;;;;:::i;:::-;:37;;65815:92;;;::::0;-1:-1:-1;;;65815:92:0;;14283:2:1;65815:92:0::1;::::0;::::1;14265:21:1::0;14322:2;14302:18;;;14295:30;14361:34;14341:18;;;14334:62;-1:-1:-1;;;14412:18:1;;;14405:40;14462:19;;65815:92:0::1;14081:406:1::0;65815:92:0::1;65922:31;65932:10;65944:8;65922:9;:31::i;65677:350::-;65985:30;65995:9;66006:8;65985:9;:30::i;48072:370::-:0;48239:28;48249:4;48255:2;48259:7;48239:9;:28::i;:::-;-1:-1:-1;;;;;48282:13:0;;20613:19;:23;48278:157;;48303:56;48334:4;48340:2;48344:7;48353:5;48303:30;:56::i;:::-;48299:136;;48383:40;;-1:-1:-1;;;48383:40:0;;;;;;;;;;;48299:136;48072:370;;;;:::o;66735:100::-;16764:13;:11;:13::i;:::-;66809:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;66809:18:0;;::::1;::::0;;;::::1;::::0;;66735:100::o;68111:438::-;68265:10;;68229:13;;68265:10;;68260:281;;68284:10;68277:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68111:438;;;:::o;68260:281::-;68353:7;68347:21;;;;;:::i;:::-;;;68372:1;68347:26;:194;;68531:10;68347:194;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68447:7;68456:18;:7;:16;:18::i;:::-;68430:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68323:218;68111:438;-1:-1:-1;;68111:438:0:o;62601:24::-;;;;;;;:::i;47344:164::-;-1:-1:-1;;;;;47465:25:0;;;47441:4;47465:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47344:164::o;17784:201::-;16764:13;:11;:13::i;:::-;-1:-1:-1;;;;;17873:22:0;::::1;17865:73;;;::::0;-1:-1:-1;;;17865:73:0;;15886:2:1;17865:73:0::1;::::0;::::1;15868:21:1::0;15925:2;15905:18;;;15898:30;15964:34;15944:18;;;15937:62;-1:-1:-1;;;16015:18:1;;;16008:36;16061:19;;17865:73:0::1;15684:402:1::0;17865:73:0::1;17949:28;17968:8;17949:18;:28::i;64059:612::-:0;64140:10;64129:22;;;;:10;:22;;;;;;;;64121:71;;;;-1:-1:-1;;;64121:71:0;;16293:2:1;64121:71:0;;;16275:21:1;16332:2;16312:18;;;16305:30;16371:34;16351:18;;;16344:62;-1:-1:-1;;;16422:18:1;;;16415:34;16466:19;;64121:71:0;16091:400:1;64121:71:0;64230:13;;64211:16;;:32;64203:91;;;;-1:-1:-1;;;64203:91:0;;16698:2:1;64203:91:0;;;16680:21:1;16737:2;16717:18;;;16710:30;16776:34;16756:18;;;16749:62;-1:-1:-1;;;16827:18:1;;;16820:44;16881:19;;64203:91:0;16496:410:1;64203:91:0;64386:21;64396:10;64386:9;:21::i;:::-;:26;64378:74;;;;-1:-1:-1;;;64378:74:0;;17113:2:1;64378:74:0;;;17095:21:1;17152:2;17132:18;;;17125:30;17191:34;17171:18;;;17164:62;-1:-1:-1;;;17242:18:1;;;17235:33;17285:19;;64378:74:0;16911:399:1;64378:74:0;64487:9;;41594:12;;41384:7;41578:13;:28;64471:25;64463:62;;;;-1:-1:-1;;;64463:62:0;;;;;;;:::i;:::-;64610:16;:18;;;:16;:18;;;:::i;:::-;;;;;;64639:24;64649:10;64661:1;64639:9;:24::i;17043:132::-;16951:6;;-1:-1:-1;;;;;16951:6:0;15667:10;17107:23;17099:68;;;;-1:-1:-1;;;17099:68:0;;17517:2:1;17099:68:0;;;17499:21:1;;;17536:18;;;17529:30;17595:34;17575:18;;;17568:62;17647:18;;17099:68:0;17315:356:1;48697:174:0;48754:4;48818:13;;48808:7;:23;48778:85;;;;-1:-1:-1;;48836:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;48836:27:0;;;;48835:28;;48697:174::o;58001:196::-;58116:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;58116:29:0;-1:-1:-1;;;;;58116:29:0;;;;;;;;;58161:28;;58116:24;;58161:28;;;;;;;58001:196;;;:::o;52867:2212::-;53064:35;53102:21;53115:7;53102:12;:21::i;:::-;53064:59;;53162:4;-1:-1:-1;;;;;53140:26:0;:13;:18;;;-1:-1:-1;;;;;53140:26:0;;53136:67;;53175:28;;-1:-1:-1;;;53175:28:0;;;;;;;;;;;53136:67;53216:22;15667:10;-1:-1:-1;;;;;53242:20:0;;;;:73;;-1:-1:-1;53279:36:0;53296:4;15667:10;47344:164;:::i;53279:36::-;53242:126;;;-1:-1:-1;15667:10:0;53332:20;53344:7;53332:11;:20::i;:::-;-1:-1:-1;;;;;53332:36:0;;53242:126;53216:153;;53387:17;53382:66;;53413:35;;-1:-1:-1;;;53413:35:0;;;;;;;;;;;53382:66;-1:-1:-1;;;;;53463:16:0;;53459:52;;53488:23;;-1:-1:-1;;;53488:23:0;;;;;;;;;;;53459:52;53632:35;53649:1;53653:7;53662:4;53632:8;:35::i;:::-;-1:-1:-1;;;;;53963:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;53963:31:0;;;-1:-1:-1;;;;;53963:31:0;;;-1:-1:-1;;53963:31:0;;;;;;;54009:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;54009:29:0;;;;;;;;;;;54089:20;;;:11;:20;;;;;;54124:18;;-1:-1:-1;;;;;;54157:49:0;;;;-1:-1:-1;;;54190:15:0;54157:49;;;;;;;;;;54480:11;;54540:24;;;;;54583:13;;54089:20;;54540:24;;54583:13;54579:384;;54793:13;;54778:11;:28;54774:174;;54831:20;;54900:28;;;;-1:-1:-1;;;;;54874:54:0;-1:-1:-1;;;54874:54:0;-1:-1:-1;;;;;;54874:54:0;;;-1:-1:-1;;;;;54831:20:0;;54874:54;;;;54774:174;53938:1036;;;55010:7;55006:2;-1:-1:-1;;;;;54991:27:0;55000:4;-1:-1:-1;;;;;54991:27:0;;;;;;;;;;;52971:2108;;52867:2212;;;:::o;43841:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;43952:7:0;44037:13;;44030:4;:20;44026:859;;;44071:31;44105:17;;;:11;:17;;;;;;;;;44071:51;;;;;;;;;-1:-1:-1;;;;;44071:51:0;;;;-1:-1:-1;;;44071:51:0;;-1:-1:-1;;;;;44071:51:0;;;;;;;;-1:-1:-1;;;44071:51:0;;;;;;;;;;;;;;44141:729;;44191:14;;-1:-1:-1;;;;;44191:28:0;;44187:101;;44255:9;43841:1111;-1:-1:-1;;;43841:1111:0:o;44187:101::-;-1:-1:-1;;;44630:6:0;44675:17;;;;:11;:17;;;;;;;;;44663:29;;;;;;;;;-1:-1:-1;;;;;44663:29:0;;;;;-1:-1:-1;;;44663:29:0;;-1:-1:-1;;;;;44663:29:0;;;;;;;;-1:-1:-1;;;44663:29:0;;;;;;;;;;;;;44723:28;44719:109;;44791:9;43841:1111;-1:-1:-1;;;43841:1111:0:o;44719:109::-;44590:261;;;44052:833;44026:859;44913:31;;-1:-1:-1;;;44913:31:0;;;;;;;;;;;18145:191;18238:6;;;-1:-1:-1;;;;;18255:17:0;;;-1:-1:-1;;;;;;18255:17:0;;;;;;;18288:40;;18238:6;;;18255:17;18238:6;;18288:40;;18219:16;;18288:40;18208:128;18145:191;:::o;48955:104::-;49024:27;49034:2;49038:8;49024:27;;;;;;;;;;;;:9;:27::i;58689:667::-;58873:72;;-1:-1:-1;;;58873:72:0;;58852:4;;-1:-1:-1;;;;;58873:36:0;;;;;:72;;15667:10;;58924:4;;58930:7;;58939:5;;58873:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58873:72:0;;;;;;;;-1:-1:-1;;58873:72:0;;;;;;;;;;;;:::i;:::-;;;58869:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59107:6;:13;59124:1;59107:18;59103:235;;59153:40;;-1:-1:-1;;;59153:40:0;;;;;;;;;;;59103:235;59296:6;59290:13;59281:6;59277:2;59273:15;59266:38;58869:480;-1:-1:-1;;;;;;58992:55:0;-1:-1:-1;;;58992:55:0;;-1:-1:-1;58869:480:0;58689:667;;;;;;:::o;13151:716::-;13207:13;13258:14;13275:17;13286:5;13275:10;:17::i;:::-;13295:1;13275:21;13258:38;;13311:20;13345:6;-1:-1:-1;;;;;13334:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13334:18:0;-1:-1:-1;13311:41:0;-1:-1:-1;13476:28:0;;;13492:2;13476:28;13533:288;-1:-1:-1;;13565:5:0;-1:-1:-1;;;13702:2:0;13691:14;;13686:30;13565:5;13673:44;13763:2;13754:11;;;-1:-1:-1;13784:21:0;13533:288;13784:21;-1:-1:-1;13842:6:0;13151:716;-1:-1:-1;;;13151:716:0:o;49432:1749::-;49555:20;49578:13;-1:-1:-1;;;;;49606:16:0;;49602:48;;49631:19;;-1:-1:-1;;;49631:19:0;;;;;;;;;;;49602:48;49665:8;49677:1;49665:13;49661:44;;49687:18;;-1:-1:-1;;;49687:18:0;;;;;;;;;;;49661:44;-1:-1:-1;;;;;50056:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;50115:49:0;;-1:-1:-1;;;;;50056:44:0;;;;;;;50115:49;;;;-1:-1:-1;;50056:44:0;;;;;;50115:49;;;;;;;;;;;;;;;;50181:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;50231:66:0;;;-1:-1:-1;;;50281:15:0;50231:66;;;;;;;;;;;;;50181:25;;50378:23;;;;20613:19;:23;50418:631;;50458:313;50489:38;;50514:12;;-1:-1:-1;;;;;50489:38:0;;;50506:1;;50489:38;;50506:1;;50489:38;50555:69;50594:1;50598:2;50602:14;;;;;;50618:5;50555:30;:69::i;:::-;50550:174;;50660:40;;-1:-1:-1;;;50660:40:0;;;;;;;;;;;50550:174;50766:3;50751:12;:18;50458:313;;50852:12;50835:13;;:29;50831:43;;50866:8;;;50831:43;50418:631;;;50915:119;50946:40;;50971:14;;;;;-1:-1:-1;;;;;50946:40:0;;;50963:1;;50946:40;;50963:1;;50946:40;51029:3;51014:12;:18;50915:119;;50418:631;-1:-1:-1;51063:13:0;:28;;;51113:60;;51146:2;51150:12;51164:8;51113:60;:::i;10171:922::-;10224:7;;-1:-1:-1;;;10302:15:0;;10298:102;;-1:-1:-1;;;10338:15:0;;;-1:-1:-1;10382:2:0;10372:12;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;-1:-1:-1;10498:2:0;10488:12;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;-1:-1:-1;10614:2:0;10604:12;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;-1:-1:-1;10728:1:0;10718:11;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;-1:-1:-1;10841:1:0;10831:11;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;-1:-1:-1;10954:1:0;10944:11;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;11079:6;10171:922;-1:-1:-1;;10171:922:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:275;2381:2;2375:9;2446:2;2427:13;;-1:-1:-1;;2423:27:1;2411:40;;-1:-1:-1;;;;;2466:34:1;;2502:22;;;2463:62;2460:88;;;2528:18;;:::i;:::-;2564:2;2557:22;2310:275;;-1:-1:-1;2310:275:1:o;2590:160::-;2655:20;;2711:13;;2704:21;2694:32;;2684:60;;2740:1;2737;2730:12;2755:1022;2845:6;2853;2906:2;2894:9;2885:7;2881:23;2877:32;2874:52;;;2922:1;2919;2912:12;2874:52;2962:9;2949:23;-1:-1:-1;;;;;3032:2:1;3024:6;3021:14;3018:34;;;3048:1;3045;3038:12;3018:34;3086:6;3075:9;3071:22;3061:32;;3131:7;3124:4;3120:2;3116:13;3112:27;3102:55;;3153:1;3150;3143:12;3102:55;3189:2;3176:16;3211:4;3234:2;3230;3227:10;3224:36;;;3240:18;;:::i;:::-;3286:2;3283:1;3279:10;3269:20;;3309:28;3333:2;3329;3325:11;3309:28;:::i;:::-;3371:15;;;3441:11;;;3437:20;;;3402:12;;;;3469:19;;;3466:39;;;3501:1;3498;3491:12;3466:39;3525:11;;;;3545:148;3561:6;3556:3;3553:15;3545:148;;;3627:23;3646:3;3627:23;:::i;:::-;3615:36;;3578:12;;;;3671;;;;3545:148;;;3712:5;-1:-1:-1;3736:35:1;;-1:-1:-1;3752:18:1;;;3736:35;:::i;:::-;3726:45;;;;;;2755:1022;;;;;:::o;3964:328::-;4041:6;4049;4057;4110:2;4098:9;4089:7;4085:23;4081:32;4078:52;;;4126:1;4123;4116:12;4078:52;4149:29;4168:9;4149:29;:::i;:::-;4139:39;;4197:38;4231:2;4220:9;4216:18;4197:38;:::i;:::-;4187:48;;4282:2;4271:9;4267:18;4254:32;4244:42;;3964:328;;;;;:::o;4297:186::-;4356:6;4409:2;4397:9;4388:7;4384:23;4380:32;4377:52;;;4425:1;4422;4415:12;4377:52;4448:29;4467:9;4448:29;:::i;4488:272::-;4546:6;4599:2;4587:9;4578:7;4574:23;4570:32;4567:52;;;4615:1;4612;4605:12;4567:52;4654:9;4641:23;4704:6;4697:5;4693:18;4686:5;4683:29;4673:57;;4726:1;4723;4716:12;4958:254;5023:6;5031;5084:2;5072:9;5063:7;5059:23;5055:32;5052:52;;;5100:1;5097;5090:12;5052:52;5123:29;5142:9;5123:29;:::i;:::-;5113:39;;5171:35;5202:2;5191:9;5187:18;5171:35;:::i;:::-;5161:45;;4958:254;;;;;:::o;5217:407::-;5282:5;-1:-1:-1;;;;;5308:6:1;5305:30;5302:56;;;5338:18;;:::i;:::-;5376:57;5421:2;5400:15;;-1:-1:-1;;5396:29:1;5427:4;5392:40;5376:57;:::i;:::-;5367:66;;5456:6;5449:5;5442:21;5496:3;5487:6;5482:3;5478:16;5475:25;5472:45;;;5513:1;5510;5503:12;5472:45;5562:6;5557:3;5550:4;5543:5;5539:16;5526:43;5616:1;5609:4;5600:6;5593:5;5589:18;5585:29;5578:40;5217:407;;;;;:::o;5629:222::-;5672:5;5725:3;5718:4;5710:6;5706:17;5702:27;5692:55;;5743:1;5740;5733:12;5692:55;5765:80;5841:3;5832:6;5819:20;5812:4;5804:6;5800:17;5765:80;:::i;5856:322::-;5925:6;5978:2;5966:9;5957:7;5953:23;5949:32;5946:52;;;5994:1;5991;5984:12;5946:52;6034:9;6021:23;-1:-1:-1;;;;;6059:6:1;6056:30;6053:50;;;6099:1;6096;6089:12;6053:50;6122;6164:7;6155:6;6144:9;6140:22;6122:50;:::i;6183:390::-;6258:6;6266;6319:2;6307:9;6298:7;6294:23;6290:32;6287:52;;;6335:1;6332;6325:12;6287:52;6375:9;6362:23;-1:-1:-1;;;;;6400:6:1;6397:30;6394:50;;;6440:1;6437;6430:12;6394:50;6463;6505:7;6496:6;6485:9;6481:22;6463:50;:::i;:::-;6453:60;;;6532:35;6563:2;6552:9;6548:18;6532:35;:::i;6578:667::-;6673:6;6681;6689;6697;6750:3;6738:9;6729:7;6725:23;6721:33;6718:53;;;6767:1;6764;6757:12;6718:53;6790:29;6809:9;6790:29;:::i;:::-;6780:39;;6838:38;6872:2;6861:9;6857:18;6838:38;:::i;:::-;6828:48;;6923:2;6912:9;6908:18;6895:32;6885:42;;6978:2;6967:9;6963:18;6950:32;-1:-1:-1;;;;;6997:6:1;6994:30;6991:50;;;7037:1;7034;7027:12;6991:50;7060:22;;7113:4;7105:13;;7101:27;-1:-1:-1;7091:55:1;;7142:1;7139;7132:12;7091:55;7165:74;7231:7;7226:2;7213:16;7208:2;7204;7200:11;7165:74;:::i;:::-;7155:84;;;6578:667;;;;;;;:::o;7250:180::-;7306:6;7359:2;7347:9;7338:7;7334:23;7330:32;7327:52;;;7375:1;7372;7365:12;7327:52;7398:26;7414:9;7398:26;:::i;7435:260::-;7503:6;7511;7564:2;7552:9;7543:7;7539:23;7535:32;7532:52;;;7580:1;7577;7570:12;7532:52;7603:29;7622:9;7603:29;:::i;:::-;7593:39;;7651:38;7685:2;7674:9;7670:18;7651:38;:::i;7700:380::-;7779:1;7775:12;;;;7822;;;7843:61;;7897:4;7889:6;7885:17;7875:27;;7843:61;7950:2;7942:6;7939:14;7919:18;7916:38;7913:161;;7996:10;7991:3;7987:20;7984:1;7977:31;8031:4;8028:1;8021:15;8059:4;8056:1;8049:15;7913:161;;7700:380;;;:::o;8085:127::-;8146:10;8141:3;8137:20;8134:1;8127:31;8177:4;8174:1;8167:15;8201:4;8198:1;8191:15;8217:127;8278:10;8273:3;8269:20;8266:1;8259:31;8309:4;8306:1;8299:15;8333:4;8330:1;8323:15;8349:135;8388:3;8409:17;;;8406:43;;8429:18;;:::i;:::-;-1:-1:-1;8476:1:1;8465:13;;8349:135::o;8962:545::-;9064:2;9059:3;9056:11;9053:448;;;9100:1;9125:5;9121:2;9114:17;9170:4;9166:2;9156:19;9240:2;9228:10;9224:19;9221:1;9217:27;9211:4;9207:38;9276:4;9264:10;9261:20;9258:47;;;-1:-1:-1;9299:4:1;9258:47;9354:2;9349:3;9345:12;9342:1;9338:20;9332:4;9328:31;9318:41;;9409:82;9427:2;9420:5;9417:13;9409:82;;;9472:17;;;9453:1;9442:13;9409:82;;;9413:3;;;8962:545;;;:::o;9683:1352::-;9809:3;9803:10;-1:-1:-1;;;;;9828:6:1;9825:30;9822:56;;;9858:18;;:::i;:::-;9887:97;9977:6;9937:38;9969:4;9963:11;9937:38;:::i;:::-;9931:4;9887:97;:::i;:::-;10039:4;;10103:2;10092:14;;10120:1;10115:663;;;;10822:1;10839:6;10836:89;;;-1:-1:-1;10891:19:1;;;10885:26;10836:89;-1:-1:-1;;9640:1:1;9636:11;;;9632:24;9628:29;9618:40;9664:1;9660:11;;;9615:57;10938:81;;10085:944;;10115:663;8909:1;8902:14;;;8946:4;8933:18;;-1:-1:-1;;10151:20:1;;;10269:236;10283:7;10280:1;10277:14;10269:236;;;10372:19;;;10366:26;10351:42;;10464:27;;;;10432:1;10420:14;;;;10299:19;;10269:236;;;10273:3;10533:6;10524:7;10521:19;10518:201;;;10594:19;;;10588:26;-1:-1:-1;;10677:1:1;10673:14;;;10689:3;10669:24;10665:37;10661:42;10646:58;10631:74;;10518:201;-1:-1:-1;;;;;10765:1:1;10749:14;;;10745:22;10732:36;;-1:-1:-1;9683:1352:1:o;11859:168::-;11932:9;;;11963;;11980:15;;;11974:22;;11960:37;11950:71;;12001:18;;:::i;12783:125::-;12848:9;;;12869:10;;;12866:36;;;12882:18;;:::i;12913:348::-;13115:2;13097:21;;;13154:2;13134:18;;;13127:30;13193:26;13188:2;13173:18;;13166:54;13252:2;13237:18;;12913:348::o;14492:1187::-;14769:3;14798:1;14831:6;14825:13;14861:36;14887:9;14861:36;:::i;:::-;14916:1;14933:18;;;14960:133;;;;15107:1;15102:356;;;;14926:532;;14960:133;-1:-1:-1;;14993:24:1;;14981:37;;15066:14;;15059:22;15047:35;;15038:45;;;-1:-1:-1;14960:133:1;;15102:356;15133:6;15130:1;15123:17;15163:4;15208:2;15205:1;15195:16;15233:1;15247:165;15261:6;15258:1;15255:13;15247:165;;;15339:14;;15326:11;;;15319:35;15382:16;;;;15276:10;;15247:165;;;15251:3;;;15441:6;15436:3;15432:16;15425:23;;14926:532;;;;;15489:6;15483:13;15505:68;15564:8;15559:3;15552:4;15544:6;15540:17;15505:68;:::i;:::-;-1:-1:-1;;;15595:18:1;;15622:22;;;15671:1;15660:13;;14492:1187;-1:-1:-1;;;;14492:1187:1:o;17676:489::-;-1:-1:-1;;;;;17945:15:1;;;17927:34;;17997:15;;17992:2;17977:18;;17970:43;18044:2;18029:18;;18022:34;;;18092:3;18087:2;18072:18;;18065:31;;;17870:4;;18113:46;;18139:19;;18131:6;18113:46;:::i;:::-;18105:54;17676:489;-1:-1:-1;;;;;;17676:489:1:o;18170:249::-;18239:6;18292:2;18280:9;18271:7;18267:23;18263:32;18260:52;;;18308:1;18305;18298:12;18260:52;18340:9;18334:16;18359:30;18383:5;18359:30;:::i

Swarm Source

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