ETH Price: $2,341.87 (-1.85%)

Seed.Photo (SEED)
 

Overview

TokenID

36

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
SeedNFT

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-01
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any (single) token transfer. This includes minting and burning.
     * See {_beforeConsecutiveTokenTransfer}.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any (single) transfer of tokens. This includes minting and burning.
     * See {_afterConsecutiveTokenTransfer}.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called before consecutive token transfers.
     * Calling conditions are similar to {_beforeTokenTransfer}.
     *
     * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform
     * directly.
     */
    function _beforeConsecutiveTokenTransfer(
        address from,
        address to,
        uint256, /*first*/
        uint96 size
    ) internal virtual {
        if (from != address(0)) {
            _balances[from] -= size;
        }
        if (to != address(0)) {
            _balances[to] += size;
        }
    }

    /**
     * @dev Hook that is called after consecutive token transfers.
     * Calling conditions are similar to {_afterTokenTransfer}.
     */
    function _afterConsecutiveTokenTransfer(
        address, /*from*/
        address, /*to*/
        uint256, /*first*/
        uint96 /*size*/
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: Seed/SeedNFT_bybit_2.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;




contract SeedNFT is ERC721URIStorage,Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    constructor(address initialOwner) ERC721("Seed.Photo","SEED"){
        Ownable(initialOwner);
    }

    function mintToken(string memory toeknURI) public onlyOwner returns(uint) {

        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        // passing newItemId
        _mint(msg.sender,newItemId);
        // Set the token URI : id and url
        _setTokenURI(newItemId,toeknURI);
        // mint the token and set it for sale - return id to do so
        return newItemId;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"toeknURI","type":"string"}],"name":"mintToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

608060405234801562000010575f80fd5b506040516200323d3803806200323d83398181016040528101906200003691906200021d565b6040518060400160405280600a81526020017f536565642e50686f746f000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5345454400000000000000000000000000000000000000000000000000000000815250815f9081620000b29190620004b1565b508060019081620000c49190620004b1565b505050620000e7620000db620000ee60201b60201c565b620000f560201b60201c565b5062000595565b5f33905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620001e782620001bc565b9050919050565b620001f981620001db565b811462000204575f80fd5b50565b5f815190506200021781620001ee565b92915050565b5f60208284031215620002355762000234620001b8565b5b5f620002448482850162000207565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002c957607f821691505b602082108103620002df57620002de62000284565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000306565b6200034f868362000306565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000399620003936200038d8462000367565b62000370565b62000367565b9050919050565b5f819050919050565b620003b48362000379565b620003cc620003c382620003a0565b84845462000312565b825550505050565b5f90565b620003e2620003d4565b620003ef818484620003a9565b505050565b5b8181101562000416576200040a5f82620003d8565b600181019050620003f5565b5050565b601f82111562000465576200042f81620002e5565b6200043a84620002f7565b810160208510156200044a578190505b620004626200045985620002f7565b830182620003f4565b50505b505050565b5f82821c905092915050565b5f620004875f19846008026200046a565b1980831691505092915050565b5f620004a1838362000476565b9150826002028217905092915050565b620004bc826200024d565b67ffffffffffffffff811115620004d857620004d762000257565b5b620004e48254620002b1565b620004f18282856200041a565b5f60209050601f83116001811462000527575f841562000512578287015190505b6200051e858262000494565b8655506200058d565b601f1984166200053786620002e5565b5f5b82811015620005605784890151825560018201915060208501945060208101905062000539565b868310156200058057848901516200057c601f89168262000476565b8355505b6001600288020188555050505b505050505050565b612c9a80620005a35f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a0578063a22cb4651161006f578063a22cb465146102b5578063b88d4fde146102d1578063c87b56dd146102ed578063e985e9c51461031d578063f2fde38b1461034d57610109565b806370a082311461023f578063715018a61461026f5780638da5cb5b1461027957806395d89b411461029757610109565b806323b872dd116100dc57806323b872dd146101a757806333eba49a146101c357806342842e0e146101f35780636352211e1461020f57610109565b806301ffc9a71461010d57806306fdde031461013d578063081812fc1461015b578063095ea7b31461018b575b5f80fd5b61012760048036038101906101229190611b30565b610369565b6040516101349190611b75565b60405180910390f35b61014561044a565b6040516101529190611c18565b60405180910390f35b61017560048036038101906101709190611c6b565b6104d9565b6040516101829190611cd5565b60405180910390f35b6101a560048036038101906101a09190611d18565b61051b565b005b6101c160048036038101906101bc9190611d56565b610631565b005b6101dd60048036038101906101d89190611ed2565b610691565b6040516101ea9190611f28565b60405180910390f35b61020d60048036038101906102089190611d56565b6106ce565b005b61022960048036038101906102249190611c6b565b6106ed565b6040516102369190611cd5565b60405180910390f35b61025960048036038101906102549190611f41565b610771565b6040516102669190611f28565b60405180910390f35b610277610825565b005b610281610838565b60405161028e9190611cd5565b60405180910390f35b61029f610860565b6040516102ac9190611c18565b60405180910390f35b6102cf60048036038101906102ca9190611f96565b6108f0565b005b6102eb60048036038101906102e69190612072565b610906565b005b61030760048036038101906103029190611c6b565b610968565b6040516103149190611c18565b60405180910390f35b610337600480360381019061033291906120f2565b610a72565b6040516103449190611b75565b60405180910390f35b61036760048036038101906103629190611f41565b610b00565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610443575061044282610b82565b5b9050919050565b60605f80546104589061215d565b80601f01602080910402602001604051908101604052809291908181526020018280546104849061215d565b80156104cf5780601f106104a6576101008083540402835291602001916104cf565b820191905f5260205f20905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b5f6104e382610beb565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610525826106ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906121fd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105b4610c36565b73ffffffffffffffffffffffffffffffffffffffff1614806105e357506105e2816105dd610c36565b610a72565b5b610622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106199061228b565b60405180910390fd5b61062c8383610c3d565b505050565b61064261063c610c36565b82610cf3565b610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890612319565b60405180910390fd5b61068c838383610d87565b505050565b5f61069a61106f565b6106a460086110ed565b5f6106af6008611101565b90506106bb338261110d565b6106c5818461131c565b80915050919050565b6106e883838360405180602001604052805f815250610906565b505050565b5f806106f883611387565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90612381565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d79061240f565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61082d61106f565b6108365f6113c0565b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461086f9061215d565b80601f016020809104026020016040519081016040528092919081815260200182805461089b9061215d565b80156108e65780601f106108bd576101008083540402835291602001916108e6565b820191905f5260205f20905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b6109026108fb610c36565b8383611483565b5050565b610917610911610c36565b83610cf3565b610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90612319565b60405180910390fd5b610962848484846115ea565b50505050565b606061097382610beb565b5f60065f8481526020019081526020015f2080546109909061215d565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc9061215d565b8015610a075780601f106109de57610100808354040283529160200191610a07565b820191905f5260205f20905b8154815290600101906020018083116109ea57829003601f168201915b505050505090505f610a17611646565b90505f815103610a2b578192505050610a6d565b5f82511115610a5f578082604051602001610a47929190612467565b60405160208183030381529060405292505050610a6d565b610a688461165c565b925050505b919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610b0861106f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906124fa565b60405180910390fd5b610b7f816113c0565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bf4816116c1565b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90612381565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cad836106ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80610cfe836106ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d405750610d3f8185610a72565b5b80610d7e57508373ffffffffffffffffffffffffffffffffffffffff16610d66846104d9565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da7826106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490612588565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612616565b60405180910390fd5b610e76838383611701565b8273ffffffffffffffffffffffffffffffffffffffff16610e96826106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612588565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106a838383611706565b505050565b611077610c36565b73ffffffffffffffffffffffffffffffffffffffff16611095610838565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e29061267e565b60405180910390fd5b565b6001815f015f828254019250508190555050565b5f815f01549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906126e6565b60405180910390fd5b611184816116c1565b156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb9061274e565b60405180910390fd5b6111cf5f8383611701565b6111d8816116c1565b15611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061274e565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113185f8383611706565b5050565b611325826116c1565b611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906127dc565b60405180910390fd5b8060065f8481526020019081526020015f2090816113829190612997565b505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890612ab0565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115dd9190611b75565b60405180910390a3505050565b6115f5848484610d87565b6116018484848461170b565b611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612b3e565b60405180910390fd5b50505050565b606060405180602001604052805f815250905090565b606061166782610beb565b5f611670611646565b90505f81511161168e5760405180602001604052805f8152506116b9565b806116988461188d565b6040516020016116a9929190612467565b6040516020818303038152906040525b915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff166116e283611387565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b5f61172b8473ffffffffffffffffffffffffffffffffffffffff16611957565b15611880578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611754610c36565b8786866040518563ffffffff1660e01b81526004016117769493929190612bae565b6020604051808303815f875af19250505080156117b157506040513d601f19601f820116820180604052508101906117ae9190612c0c565b60015b611830573d805f81146117df576040519150601f19603f3d011682016040523d82523d5f602084013e6117e4565b606091505b505f815103611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90612b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611885565b600190505b949350505050565b60605f600161189b84611979565b0190505f8167ffffffffffffffff8111156118b9576118b8611dae565b5b6040519080825280601f01601f1916602001820160405280156118eb5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561194c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161194157611940612c37565b5b0494505f85036118f8575b819350505050919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106119d5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816119cb576119ca612c37565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611a12576d04ee2d6d415b85acef81000000008381611a0857611a07612c37565b5b0492506020810190505b662386f26fc100008310611a4157662386f26fc100008381611a3757611a36612c37565b5b0492506010810190505b6305f5e1008310611a6a576305f5e1008381611a6057611a5f612c37565b5b0492506008810190505b6127108310611a8f576127108381611a8557611a84612c37565b5b0492506004810190505b60648310611ab25760648381611aa857611aa7612c37565b5b0492506002810190505b600a8310611ac1576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b0f81611adb565b8114611b19575f80fd5b50565b5f81359050611b2a81611b06565b92915050565b5f60208284031215611b4557611b44611ad3565b5b5f611b5284828501611b1c565b91505092915050565b5f8115159050919050565b611b6f81611b5b565b82525050565b5f602082019050611b885f830184611b66565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bc5578082015181840152602081019050611baa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bea82611b8e565b611bf48185611b98565b9350611c04818560208601611ba8565b611c0d81611bd0565b840191505092915050565b5f6020820190508181035f830152611c308184611be0565b905092915050565b5f819050919050565b611c4a81611c38565b8114611c54575f80fd5b50565b5f81359050611c6581611c41565b92915050565b5f60208284031215611c8057611c7f611ad3565b5b5f611c8d84828501611c57565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cbf82611c96565b9050919050565b611ccf81611cb5565b82525050565b5f602082019050611ce85f830184611cc6565b92915050565b611cf781611cb5565b8114611d01575f80fd5b50565b5f81359050611d1281611cee565b92915050565b5f8060408385031215611d2e57611d2d611ad3565b5b5f611d3b85828601611d04565b9250506020611d4c85828601611c57565b9150509250929050565b5f805f60608486031215611d6d57611d6c611ad3565b5b5f611d7a86828701611d04565b9350506020611d8b86828701611d04565b9250506040611d9c86828701611c57565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611de482611bd0565b810181811067ffffffffffffffff82111715611e0357611e02611dae565b5b80604052505050565b5f611e15611aca565b9050611e218282611ddb565b919050565b5f67ffffffffffffffff821115611e4057611e3f611dae565b5b611e4982611bd0565b9050602081019050919050565b828183375f83830152505050565b5f611e76611e7184611e26565b611e0c565b905082815260208101848484011115611e9257611e91611daa565b5b611e9d848285611e56565b509392505050565b5f82601f830112611eb957611eb8611da6565b5b8135611ec9848260208601611e64565b91505092915050565b5f60208284031215611ee757611ee6611ad3565b5b5f82013567ffffffffffffffff811115611f0457611f03611ad7565b5b611f1084828501611ea5565b91505092915050565b611f2281611c38565b82525050565b5f602082019050611f3b5f830184611f19565b92915050565b5f60208284031215611f5657611f55611ad3565b5b5f611f6384828501611d04565b91505092915050565b611f7581611b5b565b8114611f7f575f80fd5b50565b5f81359050611f9081611f6c565b92915050565b5f8060408385031215611fac57611fab611ad3565b5b5f611fb985828601611d04565b9250506020611fca85828601611f82565b9150509250929050565b5f67ffffffffffffffff821115611fee57611fed611dae565b5b611ff782611bd0565b9050602081019050919050565b5f61201661201184611fd4565b611e0c565b90508281526020810184848401111561203257612031611daa565b5b61203d848285611e56565b509392505050565b5f82601f83011261205957612058611da6565b5b8135612069848260208601612004565b91505092915050565b5f805f806080858703121561208a57612089611ad3565b5b5f61209787828801611d04565b94505060206120a887828801611d04565b93505060406120b987828801611c57565b925050606085013567ffffffffffffffff8111156120da576120d9611ad7565b5b6120e687828801612045565b91505092959194509250565b5f806040838503121561210857612107611ad3565b5b5f61211585828601611d04565b925050602061212685828601611d04565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061217457607f821691505b60208210810361218757612186612130565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121e7602183611b98565b91506121f28261218d565b604082019050919050565b5f6020820190508181035f830152612214816121db565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f612275603d83611b98565b91506122808261221b565b604082019050919050565b5f6020820190508181035f8301526122a281612269565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f612303602d83611b98565b915061230e826122a9565b604082019050919050565b5f6020820190508181035f830152612330816122f7565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f61236b601883611b98565b915061237682612337565b602082019050919050565b5f6020820190508181035f8301526123988161235f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6123f9602983611b98565b91506124048261239f565b604082019050919050565b5f6020820190508181035f830152612426816123ed565b9050919050565b5f81905092915050565b5f61244182611b8e565b61244b818561242d565b935061245b818560208601611ba8565b80840191505092915050565b5f6124728285612437565b915061247e8284612437565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124e4602683611b98565b91506124ef8261248a565b604082019050919050565b5f6020820190508181035f830152612511816124d8565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f612572602583611b98565b915061257d82612518565b604082019050919050565b5f6020820190508181035f83015261259f81612566565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612600602483611b98565b915061260b826125a6565b604082019050919050565b5f6020820190508181035f83015261262d816125f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612668602083611b98565b915061267382612634565b602082019050919050565b5f6020820190508181035f8301526126958161265c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6126d0602083611b98565b91506126db8261269c565b602082019050919050565b5f6020820190508181035f8301526126fd816126c4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f612738601c83611b98565b915061274382612704565b602082019050919050565b5f6020820190508181035f8301526127658161272c565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f6127c6602e83611b98565b91506127d18261276c565b604082019050919050565b5f6020820190508181035f8301526127f3816127ba565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261281b565b612860868361281b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61289b61289661289184611c38565b612878565b611c38565b9050919050565b5f819050919050565b6128b483612881565b6128c86128c0826128a2565b848454612827565b825550505050565b5f90565b6128dc6128d0565b6128e78184846128ab565b505050565b5b8181101561290a576128ff5f826128d4565b6001810190506128ed565b5050565b601f82111561294f57612920816127fa565b6129298461280c565b81016020851015612938578190505b61294c6129448561280c565b8301826128ec565b50505b505050565b5f82821c905092915050565b5f61296f5f1984600802612954565b1980831691505092915050565b5f6129878383612960565b9150826002028217905092915050565b6129a082611b8e565b67ffffffffffffffff8111156129b9576129b8611dae565b5b6129c3825461215d565b6129ce82828561290e565b5f60209050601f8311600181146129ff575f84156129ed578287015190505b6129f7858261297c565b865550612a5e565b601f198416612a0d866127fa565b5f5b82811015612a3457848901518255600182019150602085019450602081019050612a0f565b86831015612a515784890151612a4d601f891682612960565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f612a9a601983611b98565b9150612aa582612a66565b602082019050919050565b5f6020820190508181035f830152612ac781612a8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f612b28603283611b98565b9150612b3382612ace565b604082019050919050565b5f6020820190508181035f830152612b5581612b1c565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612b8082612b5c565b612b8a8185612b66565b9350612b9a818560208601611ba8565b612ba381611bd0565b840191505092915050565b5f608082019050612bc15f830187611cc6565b612bce6020830186611cc6565b612bdb6040830185611f19565b8181036060830152612bed8184612b76565b905095945050505050565b5f81519050612c0681611b06565b92915050565b5f60208284031215612c2157612c20611ad3565b5b5f612c2e84828501612bf8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122071f4a5c5aa6cba68261d0f205b035c72530f9fab83fddbaf9d0dff71c034d43464736f6c63430008180033000000000000000000000000462676efa9b1798235572c921fa49d672ad2187f

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c806370a08231116100a0578063a22cb4651161006f578063a22cb465146102b5578063b88d4fde146102d1578063c87b56dd146102ed578063e985e9c51461031d578063f2fde38b1461034d57610109565b806370a082311461023f578063715018a61461026f5780638da5cb5b1461027957806395d89b411461029757610109565b806323b872dd116100dc57806323b872dd146101a757806333eba49a146101c357806342842e0e146101f35780636352211e1461020f57610109565b806301ffc9a71461010d57806306fdde031461013d578063081812fc1461015b578063095ea7b31461018b575b5f80fd5b61012760048036038101906101229190611b30565b610369565b6040516101349190611b75565b60405180910390f35b61014561044a565b6040516101529190611c18565b60405180910390f35b61017560048036038101906101709190611c6b565b6104d9565b6040516101829190611cd5565b60405180910390f35b6101a560048036038101906101a09190611d18565b61051b565b005b6101c160048036038101906101bc9190611d56565b610631565b005b6101dd60048036038101906101d89190611ed2565b610691565b6040516101ea9190611f28565b60405180910390f35b61020d60048036038101906102089190611d56565b6106ce565b005b61022960048036038101906102249190611c6b565b6106ed565b6040516102369190611cd5565b60405180910390f35b61025960048036038101906102549190611f41565b610771565b6040516102669190611f28565b60405180910390f35b610277610825565b005b610281610838565b60405161028e9190611cd5565b60405180910390f35b61029f610860565b6040516102ac9190611c18565b60405180910390f35b6102cf60048036038101906102ca9190611f96565b6108f0565b005b6102eb60048036038101906102e69190612072565b610906565b005b61030760048036038101906103029190611c6b565b610968565b6040516103149190611c18565b60405180910390f35b610337600480360381019061033291906120f2565b610a72565b6040516103449190611b75565b60405180910390f35b61036760048036038101906103629190611f41565b610b00565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610443575061044282610b82565b5b9050919050565b60605f80546104589061215d565b80601f01602080910402602001604051908101604052809291908181526020018280546104849061215d565b80156104cf5780601f106104a6576101008083540402835291602001916104cf565b820191905f5260205f20905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b5f6104e382610beb565b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610525826106ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906121fd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105b4610c36565b73ffffffffffffffffffffffffffffffffffffffff1614806105e357506105e2816105dd610c36565b610a72565b5b610622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106199061228b565b60405180910390fd5b61062c8383610c3d565b505050565b61064261063c610c36565b82610cf3565b610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890612319565b60405180910390fd5b61068c838383610d87565b505050565b5f61069a61106f565b6106a460086110ed565b5f6106af6008611101565b90506106bb338261110d565b6106c5818461131c565b80915050919050565b6106e883838360405180602001604052805f815250610906565b505050565b5f806106f883611387565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90612381565b60405180910390fd5b80915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d79061240f565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61082d61106f565b6108365f6113c0565b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461086f9061215d565b80601f016020809104026020016040519081016040528092919081815260200182805461089b9061215d565b80156108e65780601f106108bd576101008083540402835291602001916108e6565b820191905f5260205f20905b8154815290600101906020018083116108c957829003601f168201915b5050505050905090565b6109026108fb610c36565b8383611483565b5050565b610917610911610c36565b83610cf3565b610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90612319565b60405180910390fd5b610962848484846115ea565b50505050565b606061097382610beb565b5f60065f8481526020019081526020015f2080546109909061215d565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc9061215d565b8015610a075780601f106109de57610100808354040283529160200191610a07565b820191905f5260205f20905b8154815290600101906020018083116109ea57829003601f168201915b505050505090505f610a17611646565b90505f815103610a2b578192505050610a6d565b5f82511115610a5f578082604051602001610a47929190612467565b60405160208183030381529060405292505050610a6d565b610a688461165c565b925050505b919050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b610b0861106f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906124fa565b60405180910390fd5b610b7f816113c0565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610bf4816116c1565b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90612381565b60405180910390fd5b50565b5f33905090565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cad836106ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f80610cfe836106ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d405750610d3f8185610a72565b5b80610d7e57508373ffffffffffffffffffffffffffffffffffffffff16610d66846104d9565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da7826106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490612588565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290612616565b60405180910390fd5b610e76838383611701565b8273ffffffffffffffffffffffffffffffffffffffff16610e96826106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612588565b60405180910390fd5b60045f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540392505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106a838383611706565b505050565b611077610c36565b73ffffffffffffffffffffffffffffffffffffffff16611095610838565b73ffffffffffffffffffffffffffffffffffffffff16146110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e29061267e565b60405180910390fd5b565b6001815f015f828254019250508190555050565b5f815f01549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906126e6565b60405180910390fd5b611184816116c1565b156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb9061274e565b60405180910390fd5b6111cf5f8383611701565b6111d8816116c1565b15611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061274e565b60405180910390fd5b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113185f8383611706565b5050565b611325826116c1565b611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b906127dc565b60405180910390fd5b8060065f8481526020019081526020015f2090816113829190612997565b505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890612ab0565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115dd9190611b75565b60405180910390a3505050565b6115f5848484610d87565b6116018484848461170b565b611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790612b3e565b60405180910390fd5b50505050565b606060405180602001604052805f815250905090565b606061166782610beb565b5f611670611646565b90505f81511161168e5760405180602001604052805f8152506116b9565b806116988461188d565b6040516020016116a9929190612467565b6040516020818303038152906040525b915050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff166116e283611387565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b5f61172b8473ffffffffffffffffffffffffffffffffffffffff16611957565b15611880578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611754610c36565b8786866040518563ffffffff1660e01b81526004016117769493929190612bae565b6020604051808303815f875af19250505080156117b157506040513d601f19601f820116820180604052508101906117ae9190612c0c565b60015b611830573d805f81146117df576040519150601f19603f3d011682016040523d82523d5f602084013e6117e4565b606091505b505f815103611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90612b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611885565b600190505b949350505050565b60605f600161189b84611979565b0190505f8167ffffffffffffffff8111156118b9576118b8611dae565b5b6040519080825280601f01601f1916602001820160405280156118eb5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561194c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161194157611940612c37565b5b0494505f85036118f8575b819350505050919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106119d5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816119cb576119ca612c37565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611a12576d04ee2d6d415b85acef81000000008381611a0857611a07612c37565b5b0492506020810190505b662386f26fc100008310611a4157662386f26fc100008381611a3757611a36612c37565b5b0492506010810190505b6305f5e1008310611a6a576305f5e1008381611a6057611a5f612c37565b5b0492506008810190505b6127108310611a8f576127108381611a8557611a84612c37565b5b0492506004810190505b60648310611ab25760648381611aa857611aa7612c37565b5b0492506002810190505b600a8310611ac1576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b0f81611adb565b8114611b19575f80fd5b50565b5f81359050611b2a81611b06565b92915050565b5f60208284031215611b4557611b44611ad3565b5b5f611b5284828501611b1c565b91505092915050565b5f8115159050919050565b611b6f81611b5b565b82525050565b5f602082019050611b885f830184611b66565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611bc5578082015181840152602081019050611baa565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bea82611b8e565b611bf48185611b98565b9350611c04818560208601611ba8565b611c0d81611bd0565b840191505092915050565b5f6020820190508181035f830152611c308184611be0565b905092915050565b5f819050919050565b611c4a81611c38565b8114611c54575f80fd5b50565b5f81359050611c6581611c41565b92915050565b5f60208284031215611c8057611c7f611ad3565b5b5f611c8d84828501611c57565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cbf82611c96565b9050919050565b611ccf81611cb5565b82525050565b5f602082019050611ce85f830184611cc6565b92915050565b611cf781611cb5565b8114611d01575f80fd5b50565b5f81359050611d1281611cee565b92915050565b5f8060408385031215611d2e57611d2d611ad3565b5b5f611d3b85828601611d04565b9250506020611d4c85828601611c57565b9150509250929050565b5f805f60608486031215611d6d57611d6c611ad3565b5b5f611d7a86828701611d04565b9350506020611d8b86828701611d04565b9250506040611d9c86828701611c57565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611de482611bd0565b810181811067ffffffffffffffff82111715611e0357611e02611dae565b5b80604052505050565b5f611e15611aca565b9050611e218282611ddb565b919050565b5f67ffffffffffffffff821115611e4057611e3f611dae565b5b611e4982611bd0565b9050602081019050919050565b828183375f83830152505050565b5f611e76611e7184611e26565b611e0c565b905082815260208101848484011115611e9257611e91611daa565b5b611e9d848285611e56565b509392505050565b5f82601f830112611eb957611eb8611da6565b5b8135611ec9848260208601611e64565b91505092915050565b5f60208284031215611ee757611ee6611ad3565b5b5f82013567ffffffffffffffff811115611f0457611f03611ad7565b5b611f1084828501611ea5565b91505092915050565b611f2281611c38565b82525050565b5f602082019050611f3b5f830184611f19565b92915050565b5f60208284031215611f5657611f55611ad3565b5b5f611f6384828501611d04565b91505092915050565b611f7581611b5b565b8114611f7f575f80fd5b50565b5f81359050611f9081611f6c565b92915050565b5f8060408385031215611fac57611fab611ad3565b5b5f611fb985828601611d04565b9250506020611fca85828601611f82565b9150509250929050565b5f67ffffffffffffffff821115611fee57611fed611dae565b5b611ff782611bd0565b9050602081019050919050565b5f61201661201184611fd4565b611e0c565b90508281526020810184848401111561203257612031611daa565b5b61203d848285611e56565b509392505050565b5f82601f83011261205957612058611da6565b5b8135612069848260208601612004565b91505092915050565b5f805f806080858703121561208a57612089611ad3565b5b5f61209787828801611d04565b94505060206120a887828801611d04565b93505060406120b987828801611c57565b925050606085013567ffffffffffffffff8111156120da576120d9611ad7565b5b6120e687828801612045565b91505092959194509250565b5f806040838503121561210857612107611ad3565b5b5f61211585828601611d04565b925050602061212685828601611d04565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061217457607f821691505b60208210810361218757612186612130565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121e7602183611b98565b91506121f28261218d565b604082019050919050565b5f6020820190508181035f830152612214816121db565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f5f8201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b5f612275603d83611b98565b91506122808261221b565b604082019050919050565b5f6020820190508181035f8301526122a281612269565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e655f8201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b5f612303602d83611b98565b915061230e826122a9565b604082019050919050565b5f6020820190508181035f830152612330816122f7565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e20494400000000000000005f82015250565b5f61236b601883611b98565b915061237682612337565b602082019050919050565b5f6020820190508181035f8301526123988161235f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f7420612076615f8201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6123f9602983611b98565b91506124048261239f565b604082019050919050565b5f6020820190508181035f830152612426816123ed565b9050919050565b5f81905092915050565b5f61244182611b8e565b61244b818561242d565b935061245b818560208601611ba8565b80840191505092915050565b5f6124728285612437565b915061247e8284612437565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124e4602683611b98565b91506124ef8261248a565b604082019050919050565b5f6020820190508181035f830152612511816124d8565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f7272656374205f8201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b5f612572602583611b98565b915061257d82612518565b604082019050919050565b5f6020820190508181035f83015261259f81612566565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612600602483611b98565b915061260b826125a6565b604082019050919050565b5f6020820190508181035f83015261262d816125f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612668602083611b98565b915061267382612634565b602082019050919050565b5f6020820190508181035f8301526126958161265c565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f6126d0602083611b98565b91506126db8261269c565b602082019050919050565b5f6020820190508181035f8301526126fd816126c4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f612738601c83611b98565b915061274382612704565b602082019050919050565b5f6020820190508181035f8301526127658161272c565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e5f8201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b5f6127c6602e83611b98565b91506127d18261276c565b604082019050919050565b5f6020820190508181035f8301526127f3816127ba565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261281b565b612860868361281b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61289b61289661289184611c38565b612878565b611c38565b9050919050565b5f819050919050565b6128b483612881565b6128c86128c0826128a2565b848454612827565b825550505050565b5f90565b6128dc6128d0565b6128e78184846128ab565b505050565b5b8181101561290a576128ff5f826128d4565b6001810190506128ed565b5050565b601f82111561294f57612920816127fa565b6129298461280c565b81016020851015612938578190505b61294c6129448561280c565b8301826128ec565b50505b505050565b5f82821c905092915050565b5f61296f5f1984600802612954565b1980831691505092915050565b5f6129878383612960565b9150826002028217905092915050565b6129a082611b8e565b67ffffffffffffffff8111156129b9576129b8611dae565b5b6129c3825461215d565b6129ce82828561290e565b5f60209050601f8311600181146129ff575f84156129ed578287015190505b6129f7858261297c565b865550612a5e565b601f198416612a0d866127fa565b5f5b82811015612a3457848901518255600182019150602085019450602081019050612a0f565b86831015612a515784890151612a4d601f891682612960565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f612a9a601983611b98565b9150612aa582612a66565b602082019050919050565b5f6020820190508181035f830152612ac781612a8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f612b28603283611b98565b9150612b3382612ace565b604082019050919050565b5f6020820190508181035f830152612b5581612b1c565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612b8082612b5c565b612b8a8185612b66565b9350612b9a818560208601611ba8565b612ba381611bd0565b840191505092915050565b5f608082019050612bc15f830187611cc6565b612bce6020830186611cc6565b612bdb6040830185611f19565b8181036060830152612bed8184612b76565b905095945050505050565b5f81519050612c0681611b06565b92915050565b5f60208284031215612c2157612c20611ad3565b5b5f612c2e84828501612bf8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122071f4a5c5aa6cba68261d0f205b035c72530f9fab83fddbaf9d0dff71c034d43464736f6c63430008180033

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

000000000000000000000000462676efa9b1798235572c921fa49d672ad2187f

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x462676EFa9b1798235572C921FA49d672Ad2187f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000462676efa9b1798235572c921fa49d672ad2187f


Deployed Bytecode Sourcemap

58833:668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40645:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41573:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43085:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42603:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43785:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59081:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44191:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41283:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41014:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19705:103;;;:::i;:::-;;19057:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41742:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43328:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44447:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57295:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43554:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19963:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40645:305;40747:4;40799:25;40784:40;;;:11;:40;;;;:105;;;;40856:33;40841:48;;;:11;:48;;;;40784:105;:158;;;;40906:36;40930:11;40906:23;:36::i;:::-;40784:158;40764:178;;40645:305;;;:::o;41573:100::-;41627:13;41660:5;41653:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41573:100;:::o;43085:171::-;43161:7;43181:23;43196:7;43181:14;:23::i;:::-;43224:15;:24;43240:7;43224:24;;;;;;;;;;;;;;;;;;;;;43217:31;;43085:171;;;:::o;42603:416::-;42684:13;42700:23;42715:7;42700:14;:23::i;:::-;42684:39;;42748:5;42742:11;;:2;:11;;;42734:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42842:5;42826:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42851:37;42868:5;42875:12;:10;:12::i;:::-;42851:16;:37::i;:::-;42826:62;42804:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;42990:21;42999:2;43003:7;42990:8;:21::i;:::-;42673:346;42603:416;;:::o;43785:335::-;43980:41;43999:12;:10;:12::i;:::-;44013:7;43980:18;:41::i;:::-;43972:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44084:28;44094:4;44100:2;44104:7;44084:9;:28::i;:::-;43785:335;;;:::o;59081:415::-;59149:4;18943:13;:11;:13::i;:::-;59168:21:::1;:9;:19;:21::i;:::-;59200:17;59220:19;:9;:17;:19::i;:::-;59200:39;;59280:27;59286:10;59297:9;59280:5;:27::i;:::-;59361:32;59374:9;59384:8;59361:12;:32::i;:::-;59479:9;59472:16;;;59081:415:::0;;;:::o;44191:185::-;44329:39;44346:4;44352:2;44356:7;44329:39;;;;;;;;;;;;:16;:39::i;:::-;44191:185;;;:::o;41283:223::-;41355:7;41375:13;41391:17;41400:7;41391:8;:17::i;:::-;41375:33;;41444:1;41427:19;;:5;:19;;;41419:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41493:5;41486:12;;;41283:223;;;:::o;41014:207::-;41086:7;41131:1;41114:19;;:5;:19;;;41106:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41197:9;:16;41207:5;41197:16;;;;;;;;;;;;;;;;41190:23;;41014:207;;;:::o;19705:103::-;18943:13;:11;:13::i;:::-;19770:30:::1;19797:1;19770:18;:30::i;:::-;19705:103::o:0;19057:87::-;19103:7;19130:6;;;;;;;;;;;19123:13;;19057:87;:::o;41742:104::-;41798:13;41831:7;41824:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41742:104;:::o;43328:155::-;43423:52;43442:12;:10;:12::i;:::-;43456:8;43466;43423:18;:52::i;:::-;43328:155;;:::o;44447:322::-;44621:41;44640:12;:10;:12::i;:::-;44654:7;44621:18;:41::i;:::-;44613:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44723:38;44737:4;44743:2;44747:7;44756:4;44723:13;:38::i;:::-;44447:322;;;;:::o;57295:624::-;57368:13;57394:23;57409:7;57394:14;:23::i;:::-;57430;57456:10;:19;57467:7;57456:19;;;;;;;;;;;57430:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57486:18;57507:10;:8;:10::i;:::-;57486:31;;57615:1;57599:4;57593:18;:23;57589:72;;57640:9;57633:16;;;;;;57589:72;57791:1;57771:9;57765:23;:27;57761:108;;;57840:4;57846:9;57823:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57809:48;;;;;;57761:108;57888:23;57903:7;57888:14;:23::i;:::-;57881:30;;;;57295:624;;;;:::o;43554:164::-;43651:4;43675:18;:25;43694:5;43675:25;;;;;;;;;;;;;;;:35;43701:8;43675:35;;;;;;;;;;;;;;;;;;;;;;;;;43668:42;;43554:164;;;;:::o;19963:201::-;18943:13;:11;:13::i;:::-;20072:1:::1;20052:22;;:8;:22;;::::0;20044:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20128:28;20147:8;20128:18;:28::i;:::-;19963:201:::0;:::o;32998:157::-;33083:4;33122:25;33107:40;;;:11;:40;;;;33100:47;;32998:157;;;:::o;52886:135::-;52968:16;52976:7;52968;:16::i;:::-;52960:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52886:135;:::o;17555:98::-;17608:7;17635:10;17628:17;;17555:98;:::o;52165:174::-;52267:2;52240:15;:24;52256:7;52240:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52323:7;52319:2;52285:46;;52294:23;52309:7;52294:14;:23::i;:::-;52285:46;;;;;;;;;;;;52165:174;;:::o;46802:264::-;46895:4;46912:13;46928:23;46943:7;46928:14;:23::i;:::-;46912:39;;46981:5;46970:16;;:7;:16;;;:52;;;;46990:32;47007:5;47014:7;46990:16;:32::i;:::-;46970:52;:87;;;;47050:7;47026:31;;:20;47038:7;47026:11;:20::i;:::-;:31;;;46970:87;46962:96;;;46802:264;;;;:::o;50789:1257::-;50948:4;50921:31;;:23;50936:7;50921:14;:23::i;:::-;:31;;;50913:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51027:1;51013:16;;:2;:16;;;51005:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51083:39;51104:4;51110:2;51114:7;51083:20;:39::i;:::-;51252:4;51225:31;;:23;51240:7;51225:14;:23::i;:::-;:31;;;51217:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51370:15;:24;51386:7;51370:24;;;;;;;;;;;;51363:31;;;;;;;;;;;51865:1;51846:9;:15;51856:4;51846:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51898:1;51881:9;:13;51891:2;51881:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51940:2;51921:7;:16;51929:7;51921:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51979:7;51975:2;51960:27;;51969:4;51960:27;;;;;;;;;;;;52000:38;52020:4;52026:2;52030:7;52000:19;:38::i;:::-;50789:1257;;;:::o;19222:132::-;19297:12;:10;:12::i;:::-;19286:23;;:7;:5;:7::i;:::-;:23;;;19278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19222:132::o;1047:127::-;1154:1;1136:7;:14;;;:19;;;;;;;;;;;1047:127;:::o;925:114::-;990:7;1017;:14;;;1010:21;;925:114;;;:::o;48400:936::-;48494:1;48480:16;;:2;:16;;;48472:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48553:16;48561:7;48553;:16::i;:::-;48552:17;48544:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48615:45;48644:1;48648:2;48652:7;48615:20;:45::i;:::-;48759:16;48767:7;48759;:16::i;:::-;48758:17;48750:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49174:1;49157:9;:13;49167:2;49157:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49218:2;49199:7;:16;49207:7;49199:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49263:7;49259:2;49238:33;;49255:1;49238:33;;;;;;;;;;;;49284:44;49312:1;49316:2;49320:7;49284:19;:44::i;:::-;48400:936;;:::o;58075:217::-;58175:16;58183:7;58175;:16::i;:::-;58167:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;58275:9;58253:10;:19;58264:7;58253:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;58075:217;;:::o;46077:117::-;46143:7;46170;:16;46178:7;46170:16;;;;;;;;;;;;;;;;;;;;;46163:23;;46077:117;;;:::o;20324:191::-;20398:16;20417:6;;;;;;;;;;;20398:25;;20443:8;20434:6;;:17;;;;;;;;;;;;;;;;;;20498:8;20467:40;;20488:8;20467:40;;;;;;;;;;;;20387:128;20324:191;:::o;52482:315::-;52637:8;52628:17;;:5;:17;;;52620:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52724:8;52686:18;:25;52705:5;52686:25;;;;;;;;;;;;;;;:35;52712:8;52686:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52770:8;52748:41;;52763:5;52748:41;;;52780:8;52748:41;;;;;;:::i;:::-;;;;;;;;52482:315;;;:::o;45650:313::-;45806:28;45816:4;45822:2;45826:7;45806:9;:28::i;:::-;45853:47;45876:4;45882:2;45886:7;45895:4;45853:22;:47::i;:::-;45845:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45650:313;;;;:::o;42447:94::-;42498:13;42524:9;;;;;;;;;;;;;;42447:94;:::o;41917:281::-;41990:13;42016:23;42031:7;42016:14;:23::i;:::-;42052:21;42076:10;:8;:10::i;:::-;42052:34;;42128:1;42110:7;42104:21;:25;:86;;;;;;;;;;;;;;;;;42156:7;42165:18;:7;:16;:18::i;:::-;42139:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42104:86;42097:93;;;41917:281;;;:::o;46507:128::-;46572:4;46625:1;46596:31;;:17;46605:7;46596:8;:17::i;:::-;:31;;;;46589:38;;46507:128;;;:::o;55058:126::-;;;;:::o;55616:125::-;;;;:::o;53585:853::-;53739:4;53760:15;:2;:13;;;:15::i;:::-;53756:675;;;53812:2;53796:36;;;53833:12;:10;:12::i;:::-;53847:4;53853:7;53862:4;53796:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53792:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54054:1;54037:6;:13;:18;54033:328;;54080:60;;;;;;;;;;:::i;:::-;;;;;;;;54033:328;54311:6;54305:13;54296:6;54292:2;54288:15;54281:38;53792:584;53928:41;;;53918:51;;;:6;:51;;;;53911:58;;;;;53756:675;54415:4;54408:11;;53585:853;;;;;;;:::o;14929:716::-;14985:13;15036:14;15073:1;15053:17;15064:5;15053:10;:17::i;:::-;:21;15036:38;;15089:20;15123:6;15112:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15089:41;;15145:11;15274:6;15270:2;15266:15;15258:6;15254:28;15247:35;;15311:288;15318:4;15311:288;;;15343:5;;;;;;;;15485:8;15480:2;15473:5;15469:14;15464:30;15459:3;15451:44;15541:2;15532:11;;;;;;:::i;:::-;;;;;15575:1;15566:5;:10;15311:288;15562:21;15311:288;15620:6;15613:13;;;;;14929:716;;;:::o;21808:326::-;21868:4;22125:1;22103:7;:19;;;:23;22096:30;;21808:326;;;:::o;11742:922::-;11795:7;11815:14;11832:1;11815:18;;11882:6;11873:5;:15;11869:102;;11918:6;11909:15;;;;;;:::i;:::-;;;;;11953:2;11943:12;;;;11869:102;11998:6;11989:5;:15;11985:102;;12034:6;12025:15;;;;;;:::i;:::-;;;;;12069:2;12059:12;;;;11985:102;12114:6;12105:5;:15;12101:102;;12150:6;12141:15;;;;;;:::i;:::-;;;;;12185:2;12175:12;;;;12101:102;12230:5;12221;:14;12217:99;;12265:5;12256:14;;;;;;:::i;:::-;;;;;12299:1;12289:11;;;;12217:99;12343:5;12334;:14;12330:99;;12378:5;12369:14;;;;;;:::i;:::-;;;;;12412:1;12402:11;;;;12330:99;12456:5;12447;:14;12443:99;;12491:5;12482:14;;;;;;:::i;:::-;;;;;12525:1;12515:11;;;;12443:99;12569:5;12560;:14;12556:66;;12605:1;12595:11;;;;12556:66;12650:6;12643:13;;;11742:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:117::-;5624:1;5621;5614:12;5638:117;5747:1;5744;5737:12;5761:180;5809:77;5806:1;5799:88;5906:4;5903:1;5896:15;5930:4;5927:1;5920:15;5947:281;6030:27;6052:4;6030:27;:::i;:::-;6022:6;6018:40;6160:6;6148:10;6145:22;6124:18;6112:10;6109:34;6106:62;6103:88;;;6171:18;;:::i;:::-;6103:88;6211:10;6207:2;6200:22;5990:238;5947:281;;:::o;6234:129::-;6268:6;6295:20;;:::i;:::-;6285:30;;6324:33;6352:4;6344:6;6324:33;:::i;:::-;6234:129;;;:::o;6369:308::-;6431:4;6521:18;6513:6;6510:30;6507:56;;;6543:18;;:::i;:::-;6507:56;6581:29;6603:6;6581:29;:::i;:::-;6573:37;;6665:4;6659;6655:15;6647:23;;6369:308;;;:::o;6683:146::-;6780:6;6775:3;6770;6757:30;6821:1;6812:6;6807:3;6803:16;6796:27;6683:146;;;:::o;6835:425::-;6913:5;6938:66;6954:49;6996:6;6954:49;:::i;:::-;6938:66;:::i;:::-;6929:75;;7027:6;7020:5;7013:21;7065:4;7058:5;7054:16;7103:3;7094:6;7089:3;7085:16;7082:25;7079:112;;;7110:79;;:::i;:::-;7079:112;7200:54;7247:6;7242:3;7237;7200:54;:::i;:::-;6919:341;6835:425;;;;;:::o;7280:340::-;7336:5;7385:3;7378:4;7370:6;7366:17;7362:27;7352:122;;7393:79;;:::i;:::-;7352:122;7510:6;7497:20;7535:79;7610:3;7602:6;7595:4;7587:6;7583:17;7535:79;:::i;:::-;7526:88;;7342:278;7280:340;;;;:::o;7626:509::-;7695:6;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7898:1;7887:9;7883:17;7870:31;7928:18;7920:6;7917:30;7914:117;;;7950:79;;:::i;:::-;7914:117;8055:63;8110:7;8101:6;8090:9;8086:22;8055:63;:::i;:::-;8045:73;;7841:287;7626:509;;;;:::o;8141:118::-;8228:24;8246:5;8228:24;:::i;:::-;8223:3;8216:37;8141:118;;:::o;8265:222::-;8358:4;8396:2;8385:9;8381:18;8373:26;;8409:71;8477:1;8466:9;8462:17;8453:6;8409:71;:::i;:::-;8265:222;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:248::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:31;13830:2;13822:6;13818:15;13811:56;13626:248;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:232::-;14817:34;14813:1;14805:6;14801:14;14794:58;14886:15;14881:2;14873:6;14869:15;14862:40;14677:232;:::o;14915:366::-;15057:3;15078:67;15142:2;15137:3;15078:67;:::i;:::-;15071:74;;15154:93;15243:3;15154:93;:::i;:::-;15272:2;15267:3;15263:12;15256:19;;14915:366;;;:::o;15287:419::-;15453:4;15491:2;15480:9;15476:18;15468:26;;15540:9;15534:4;15530:20;15526:1;15515:9;15511:17;15504:47;15568:131;15694:4;15568:131;:::i;:::-;15560:139;;15287:419;;;:::o;15712:174::-;15852:26;15848:1;15840:6;15836:14;15829:50;15712:174;:::o;15892:366::-;16034:3;16055:67;16119:2;16114:3;16055:67;:::i;:::-;16048:74;;16131:93;16220:3;16131:93;:::i;:::-;16249:2;16244:3;16240:12;16233:19;;15892:366;;;:::o;16264:419::-;16430:4;16468:2;16457:9;16453:18;16445:26;;16517:9;16511:4;16507:20;16503:1;16492:9;16488:17;16481:47;16545:131;16671:4;16545:131;:::i;:::-;16537:139;;16264:419;;;:::o;16689:228::-;16829:34;16825:1;16817:6;16813:14;16806:58;16898:11;16893:2;16885:6;16881:15;16874:36;16689:228;:::o;16923:366::-;17065:3;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17162:93;17251:3;17162:93;:::i;:::-;17280:2;17275:3;17271:12;17264:19;;16923:366;;;:::o;17295:419::-;17461:4;17499:2;17488:9;17484:18;17476:26;;17548:9;17542:4;17538:20;17534:1;17523:9;17519:17;17512:47;17576:131;17702:4;17576:131;:::i;:::-;17568:139;;17295:419;;;:::o;17720:148::-;17822:11;17859:3;17844:18;;17720:148;;;;:::o;17874:390::-;17980:3;18008:39;18041:5;18008:39;:::i;:::-;18063:89;18145:6;18140:3;18063:89;:::i;:::-;18056:96;;18161:65;18219:6;18214:3;18207:4;18200:5;18196:16;18161:65;:::i;:::-;18251:6;18246:3;18242:16;18235:23;;17984:280;17874:390;;;;:::o;18270:435::-;18450:3;18472:95;18563:3;18554:6;18472:95;:::i;:::-;18465:102;;18584:95;18675:3;18666:6;18584:95;:::i;:::-;18577:102;;18696:3;18689:10;;18270:435;;;;;:::o;18711:225::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:8;18915:2;18907:6;18903:15;18896:33;18711:225;:::o;18942:366::-;19084:3;19105:67;19169:2;19164:3;19105:67;:::i;:::-;19098:74;;19181:93;19270:3;19181:93;:::i;:::-;19299:2;19294:3;19290:12;19283:19;;18942:366;;;:::o;19314:419::-;19480:4;19518:2;19507:9;19503:18;19495:26;;19567:9;19561:4;19557:20;19553:1;19542:9;19538:17;19531:47;19595:131;19721:4;19595:131;:::i;:::-;19587:139;;19314:419;;;:::o;19739:224::-;19879:34;19875:1;19867:6;19863:14;19856:58;19948:7;19943:2;19935:6;19931:15;19924:32;19739:224;:::o;19969:366::-;20111:3;20132:67;20196:2;20191:3;20132:67;:::i;:::-;20125:74;;20208:93;20297:3;20208:93;:::i;:::-;20326:2;20321:3;20317:12;20310:19;;19969:366;;;:::o;20341:419::-;20507:4;20545:2;20534:9;20530:18;20522:26;;20594:9;20588:4;20584:20;20580:1;20569:9;20565:17;20558:47;20622:131;20748:4;20622:131;:::i;:::-;20614:139;;20341:419;;;:::o;20766:223::-;20906:34;20902:1;20894:6;20890:14;20883:58;20975:6;20970:2;20962:6;20958:15;20951:31;20766:223;:::o;20995:366::-;21137:3;21158:67;21222:2;21217:3;21158:67;:::i;:::-;21151:74;;21234:93;21323:3;21234:93;:::i;:::-;21352:2;21347:3;21343:12;21336:19;;20995:366;;;:::o;21367:419::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21620:9;21614:4;21610:20;21606:1;21595:9;21591:17;21584:47;21648:131;21774:4;21648:131;:::i;:::-;21640:139;;21367:419;;;:::o;21792:182::-;21932:34;21928:1;21920:6;21916:14;21909:58;21792:182;:::o;21980:366::-;22122:3;22143:67;22207:2;22202:3;22143:67;:::i;:::-;22136:74;;22219:93;22308:3;22219:93;:::i;:::-;22337:2;22332:3;22328:12;22321:19;;21980:366;;;:::o;22352:419::-;22518:4;22556:2;22545:9;22541:18;22533:26;;22605:9;22599:4;22595:20;22591:1;22580:9;22576:17;22569:47;22633:131;22759:4;22633:131;:::i;:::-;22625:139;;22352:419;;;:::o;22777:182::-;22917:34;22913:1;22905:6;22901:14;22894:58;22777:182;:::o;22965:366::-;23107:3;23128:67;23192:2;23187:3;23128:67;:::i;:::-;23121:74;;23204:93;23293:3;23204:93;:::i;:::-;23322:2;23317:3;23313:12;23306:19;;22965:366;;;:::o;23337:419::-;23503:4;23541:2;23530:9;23526:18;23518:26;;23590:9;23584:4;23580:20;23576:1;23565:9;23561:17;23554:47;23618:131;23744:4;23618:131;:::i;:::-;23610:139;;23337:419;;;:::o;23762:178::-;23902:30;23898:1;23890:6;23886:14;23879:54;23762:178;:::o;23946:366::-;24088:3;24109:67;24173:2;24168:3;24109:67;:::i;:::-;24102:74;;24185:93;24274:3;24185:93;:::i;:::-;24303:2;24298:3;24294:12;24287:19;;23946:366;;;:::o;24318:419::-;24484:4;24522:2;24511:9;24507:18;24499:26;;24571:9;24565:4;24561:20;24557:1;24546:9;24542:17;24535:47;24599:131;24725:4;24599:131;:::i;:::-;24591:139;;24318:419;;;:::o;24743:233::-;24883:34;24879:1;24871:6;24867:14;24860:58;24952:16;24947:2;24939:6;24935:15;24928:41;24743:233;:::o;24982:366::-;25124:3;25145:67;25209:2;25204:3;25145:67;:::i;:::-;25138:74;;25221:93;25310:3;25221:93;:::i;:::-;25339:2;25334:3;25330:12;25323:19;;24982:366;;;:::o;25354:419::-;25520:4;25558:2;25547:9;25543:18;25535:26;;25607:9;25601:4;25597:20;25593:1;25582:9;25578:17;25571:47;25635:131;25761:4;25635:131;:::i;:::-;25627:139;;25354:419;;;:::o;25779:141::-;25828:4;25851:3;25843:11;;25874:3;25871:1;25864:14;25908:4;25905:1;25895:18;25887:26;;25779:141;;;:::o;25926:93::-;25963:6;26010:2;26005;25998:5;25994:14;25990:23;25980:33;;25926:93;;;:::o;26025:107::-;26069:8;26119:5;26113:4;26109:16;26088:37;;26025:107;;;;:::o;26138:393::-;26207:6;26257:1;26245:10;26241:18;26280:97;26310:66;26299:9;26280:97;:::i;:::-;26398:39;26428:8;26417:9;26398:39;:::i;:::-;26386:51;;26470:4;26466:9;26459:5;26455:21;26446:30;;26519:4;26509:8;26505:19;26498:5;26495:30;26485:40;;26214:317;;26138:393;;;;;:::o;26537:60::-;26565:3;26586:5;26579:12;;26537:60;;;:::o;26603:142::-;26653:9;26686:53;26704:34;26713:24;26731:5;26713:24;:::i;:::-;26704:34;:::i;:::-;26686:53;:::i;:::-;26673:66;;26603:142;;;:::o;26751:75::-;26794:3;26815:5;26808:12;;26751:75;;;:::o;26832:269::-;26942:39;26973:7;26942:39;:::i;:::-;27003:91;27052:41;27076:16;27052:41;:::i;:::-;27044:6;27037:4;27031:11;27003:91;:::i;:::-;26997:4;26990:105;26908:193;26832:269;;;:::o;27107:73::-;27152:3;27107:73;:::o;27186:189::-;27263:32;;:::i;:::-;27304:65;27362:6;27354;27348:4;27304:65;:::i;:::-;27239:136;27186:189;;:::o;27381:186::-;27441:120;27458:3;27451:5;27448:14;27441:120;;;27512:39;27549:1;27542:5;27512:39;:::i;:::-;27485:1;27478:5;27474:13;27465:22;;27441:120;;;27381:186;;:::o;27573:543::-;27674:2;27669:3;27666:11;27663:446;;;27708:38;27740:5;27708:38;:::i;:::-;27792:29;27810:10;27792:29;:::i;:::-;27782:8;27778:44;27975:2;27963:10;27960:18;27957:49;;;27996:8;27981:23;;27957:49;28019:80;28075:22;28093:3;28075:22;:::i;:::-;28065:8;28061:37;28048:11;28019:80;:::i;:::-;27678:431;;27663:446;27573:543;;;:::o;28122:117::-;28176:8;28226:5;28220:4;28216:16;28195:37;;28122:117;;;;:::o;28245:169::-;28289:6;28322:51;28370:1;28366:6;28358:5;28355:1;28351:13;28322:51;:::i;:::-;28318:56;28403:4;28397;28393:15;28383:25;;28296:118;28245:169;;;;:::o;28419:295::-;28495:4;28641:29;28666:3;28660:4;28641:29;:::i;:::-;28633:37;;28703:3;28700:1;28696:11;28690:4;28687:21;28679:29;;28419:295;;;;:::o;28719:1395::-;28836:37;28869:3;28836:37;:::i;:::-;28938:18;28930:6;28927:30;28924:56;;;28960:18;;:::i;:::-;28924:56;29004:38;29036:4;29030:11;29004:38;:::i;:::-;29089:67;29149:6;29141;29135:4;29089:67;:::i;:::-;29183:1;29207:4;29194:17;;29239:2;29231:6;29228:14;29256:1;29251:618;;;;29913:1;29930:6;29927:77;;;29979:9;29974:3;29970:19;29964:26;29955:35;;29927:77;30030:67;30090:6;30083:5;30030:67;:::i;:::-;30024:4;30017:81;29886:222;29221:887;;29251:618;29303:4;29299:9;29291:6;29287:22;29337:37;29369:4;29337:37;:::i;:::-;29396:1;29410:208;29424:7;29421:1;29418:14;29410:208;;;29503:9;29498:3;29494:19;29488:26;29480:6;29473:42;29554:1;29546:6;29542:14;29532:24;;29601:2;29590:9;29586:18;29573:31;;29447:4;29444:1;29440:12;29435:17;;29410:208;;;29646:6;29637:7;29634:19;29631:179;;;29704:9;29699:3;29695:19;29689:26;29747:48;29789:4;29781:6;29777:17;29766:9;29747:48;:::i;:::-;29739:6;29732:64;29654:156;29631:179;29856:1;29852;29844:6;29840:14;29836:22;29830:4;29823:36;29258:611;;;29221:887;;28811:1303;;;28719:1395;;:::o;30120:175::-;30260:27;30256:1;30248:6;30244:14;30237:51;30120:175;:::o;30301:366::-;30443:3;30464:67;30528:2;30523:3;30464:67;:::i;:::-;30457:74;;30540:93;30629:3;30540:93;:::i;:::-;30658:2;30653:3;30649:12;30642:19;;30301:366;;;:::o;30673:419::-;30839:4;30877:2;30866:9;30862:18;30854:26;;30926:9;30920:4;30916:20;30912:1;30901:9;30897:17;30890:47;30954:131;31080:4;30954:131;:::i;:::-;30946:139;;30673:419;;;:::o;31098:237::-;31238:34;31234:1;31226:6;31222:14;31215:58;31307:20;31302:2;31294:6;31290:15;31283:45;31098:237;:::o;31341:366::-;31483:3;31504:67;31568:2;31563:3;31504:67;:::i;:::-;31497:74;;31580:93;31669:3;31580:93;:::i;:::-;31698:2;31693:3;31689:12;31682:19;;31341:366;;;:::o;31713:419::-;31879:4;31917:2;31906:9;31902:18;31894:26;;31966:9;31960:4;31956:20;31952:1;31941:9;31937:17;31930:47;31994:131;32120:4;31994:131;:::i;:::-;31986:139;;31713:419;;;:::o;32138:98::-;32189:6;32223:5;32217:12;32207:22;;32138:98;;;:::o;32242:168::-;32325:11;32359:6;32354:3;32347:19;32399:4;32394:3;32390:14;32375:29;;32242:168;;;;:::o;32416:373::-;32502:3;32530:38;32562:5;32530:38;:::i;:::-;32584:70;32647:6;32642:3;32584:70;:::i;:::-;32577:77;;32663:65;32721:6;32716:3;32709:4;32702:5;32698:16;32663:65;:::i;:::-;32753:29;32775:6;32753:29;:::i;:::-;32748:3;32744:39;32737:46;;32506:283;32416:373;;;;:::o;32795:640::-;32990:4;33028:3;33017:9;33013:19;33005:27;;33042:71;33110:1;33099:9;33095:17;33086:6;33042:71;:::i;:::-;33123:72;33191:2;33180:9;33176:18;33167:6;33123:72;:::i;:::-;33205;33273:2;33262:9;33258:18;33249:6;33205:72;:::i;:::-;33324:9;33318:4;33314:20;33309:2;33298:9;33294:18;33287:48;33352:76;33423:4;33414:6;33352:76;:::i;:::-;33344:84;;32795:640;;;;;;;:::o;33441:141::-;33497:5;33528:6;33522:13;33513:22;;33544:32;33570:5;33544:32;:::i;:::-;33441:141;;;;:::o;33588:349::-;33657:6;33706:2;33694:9;33685:7;33681:23;33677:32;33674:119;;;33712:79;;:::i;:::-;33674:119;33832:1;33857:63;33912:7;33903:6;33892:9;33888:22;33857:63;:::i;:::-;33847:73;;33803:127;33588:349;;;;:::o;33943:180::-;33991:77;33988:1;33981:88;34088:4;34085:1;34078:15;34112:4;34109:1;34102:15

Swarm Source

ipfs://71f4a5c5aa6cba68261d0f205b035c72530f9fab83fddbaf9d0dff71c034d434
Loading...
Loading
Loading...
Loading
[ 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.