ETH Price: $3,468.84 (-1.08%)
Gas: 2 Gwei

Token

Companions by K9icks x Smallbros - Lambros Edition (LAMBROS)
 

Overview

Max Total Supply

228 LAMBROS

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LAMBROS
0x46540c666a5d42ea3c07fdc3ab6e11598b0d905e
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:
Lambros

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-28
*/

/*  ______     ______     __    __     ______   ______     __   __     __     ______     __   __     ______    
   /\  ___\   /\  __ \   /\ "-./  \   /\  == \ /\  __ \   /\ "-.\ \   /\ \   /\  __ \   /\ "-.\ \   /\  ___\   
   \ \ \____  \ \ \/\ \  \ \ \-./\ \  \ \  _-/ \ \  __ \  \ \ \-.  \  \ \ \  \ \ \/\ \  \ \ \-.  \  \ \___  \  
    \ \_____\  \ \_____\  \ \_\ \ \_\  \ \_\    \ \_\ \_\  \ \_\\"\_\  \ \_\  \ \_____\  \ \_\\"\_\  \/\_____\ 
    \/_____/   \/_____/   \/_/  \/_/   \/_/     \/_/\/_/   \/_/ \/_/   \/_/   \/_____/   \/_/ \/_/   \/_____/ 
          _____   __  _  _____ ___ ___ _  _____  __  __  ___ __  __   _   _    _    ___ ___  ___  ___ 
         | _ ) \ / / | |/ / _ \_ _/ __| |/ / __| \ \/ / / __|  \/  | /_\ | |  | |  | _ ) _ \/ _ \/ __|
         | _ \\ V /  | ' <\_, /| | (__| ' <\__ \  >  <  \__ \ |\/| |/ _ \| |__| |__| _ \   / (_) \__ \
         |___/ |_|   |_|\_\/_/|___\___|_|\_\___/ /_/\_\ |___/_|  |_/_/ \_\____|____|___/_|_\\___/|___/
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.2) (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, 1);

        // 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, 1);
    }

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

        // 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, 1);
    }

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

        // 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, 1);
    }

    /**
     * @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 token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: companions.sol

pragma solidity ^0.8.0;

contract Lambros is Context, ERC721, ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 private _tokenIdCounter;
    string private baseURI;
    address private _minter;
    uint256 private _royaltyFee;

    constructor(string memory name, string memory symbol, string memory __baseURI) ERC721(name, symbol) {
        baseURI = __baseURI;
    }

    modifier onlyMinter() {
        require(_msgSender() == _minter, "Caller is not the minter");
        _;
    }
    
    function minter() public view returns (address) {
        return _minter;
    }
    
    function setMinter(address newMinter) public onlyOwner {
        _minter = newMinter;
    }

    function mint(address to) public onlyMinter {
        _tokenIdCounter++;
        _safeMint(to, _tokenIdCounter);
    }

    function batchMint(address[] calldata to) public onlyMinter {
        for(uint256 i; i < to.length; i++){
            _tokenIdCounter++;
            _safeMint(to[i], _tokenIdCounter);
        }
    }

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

    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }
        
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")) : "";
    }

    function setRoyaltyFee(uint256 fee) public onlyOwner {
        require(fee <= 1000);
        _royaltyFee = fee;
    }

    function royaltyInfo(uint256, uint256 salePrice) public view virtual returns (address, uint256) {
        uint256 royaltyAmount = (salePrice * _royaltyFee) / 10000;
        return (owner(), royaltyAmount);
    }
        
    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"__baseURI","type":"string"}],"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":"address[]","name":"to","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setRoyaltyFee","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620027b7380380620027b78339810160408190526200003491620001a3565b82826000620000448382620002c3565b506001620000538282620002c3565b505050620000706200006a6200008860201b60201c565b6200008c565b600c6200007e8282620002c3565b505050506200038f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200010657600080fd5b81516001600160401b0380821115620001235762000123620000de565b604051601f8301601f19908116603f011681019082821181831017156200014e576200014e620000de565b816040528381526020925086838588010111156200016b57600080fd5b600091505b838210156200018f578582018301518183018401529082019062000170565b600093810190920192909252949350505050565b600080600060608486031215620001b957600080fd5b83516001600160401b0380821115620001d157600080fd5b620001df87838801620000f4565b94506020860151915080821115620001f657600080fd5b6200020487838801620000f4565b935060408601519150808211156200021b57600080fd5b506200022a86828701620000f4565b9150509250925092565b600181811c908216806200024957607f821691505b6020821081036200026a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002be57600081815260208120601f850160051c81016020861015620002995750805b601f850160051c820191505b81811015620002ba57828155600101620002a5565b5050505b505050565b81516001600160401b03811115620002df57620002df620000de565b620002f781620002f0845462000234565b8462000270565b602080601f8311600181146200032f5760008415620003165750858301515b600019600386901b1c1916600185901b178555620002ba565b600085815260208120601f198616915b8281101562000360578886015182559484019460019091019084016200033f565b50858210156200037f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612418806200039f6000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636352211e116100ee578063a22cb46511610097578063d67b06c111610071578063d67b06c114610386578063e985e9c514610399578063f2fde38b146103d5578063fca3b5aa146103e857600080fd5b8063a22cb4651461034d578063b88d4fde14610360578063c87b56dd1461037357600080fd5b8063715018a6116100c8578063715018a61461032c5780638da5cb5b1461033457806395d89b411461034557600080fd5b80636352211e146102f35780636a6278421461030657806370a082311461031957600080fd5b806323b872dd1161015b5780633e4086e5116101355780633e4086e5146102a757806342842e0e146102ba5780634f6ccce7146102cd57806355f804b3146102e057600080fd5b806323b872dd1461024f5780632a55205a146102625780632f745c591461029457600080fd5b8063081812fc1161018c578063081812fc14610215578063095ea7b31461022857806318160ddd1461023d57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307546172146101f0575b600080fd5b6101c66101c1366004611cbe565b6103fb565b60405190151581526020015b60405180910390f35b6101e3610457565b6040516101d29190611d50565b600d546001600160a01b03165b6040516001600160a01b0390911681526020016101d2565b6101fd610223366004611d63565b6104e9565b61023b610236366004611d98565b610510565b005b6008545b6040519081526020016101d2565b61023b61025d366004611dc2565b610646565b610275610270366004611dfe565b6106cd565b604080516001600160a01b0390931683526020830191909152016101d2565b6102416102a2366004611d98565b61070b565b61023b6102b5366004611d63565b6107b3565b61023b6102c8366004611dc2565b6107cf565b6102416102db366004611d63565b6107ea565b61023b6102ee366004611ee3565b61088e565b6101fd610301366004611d63565b6108a6565b61023b610314366004611f2c565b61090b565b610241610327366004611f2c565b610992565b61023b610a2c565b600a546001600160a01b03166101fd565b6101e3610a40565b61023b61035b366004611f47565b610a4f565b61023b61036e366004611f83565b610a5a565b6101e3610381366004611d63565b610ae8565b61023b610394366004611fff565b610b55565b6101c66103a7366004612074565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b6103e3366004611f2c565b610c1c565b61023b6103f6366004611f2c565b610ca9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610451575061045182610ceb565b92915050565b606060008054610466906120a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906120a7565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610d41565b506000908152600460205260409020546001600160a01b031690565b600061051b826108a6565b9050806001600160a01b0316836001600160a01b0316036105a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806105c557506105c581336103a7565b6106375760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105a0565b6106418383610da5565b505050565b6106503382610e2b565b6106c25760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105a0565b610641838383610eaa565b6000806000612710600e54856106e39190612129565b6106ed9190612140565b9050610701600a546001600160a01b031690565b9590945092505050565b600061071683610992565b821061078a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105a0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107bb6110f8565b6103e88111156107ca57600080fd5b600e55565b61064183838360405180602001604052806000815250610a5a565b60006107f560085490565b82106108695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105a0565b6008828154811061087c5761087c61217b565b90600052602060002001549050919050565b6108966110f8565b600c6108a282826121f8565b5050565b6000818152600260205260408120546001600160a01b0316806104515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105a0565b600d546001600160a01b0316336001600160a01b03161461096e5760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206d696e746572000000000000000060448201526064016105a0565b600b805490600061097e836122d6565b919050555061098f81600b54611152565b50565b60006001600160a01b038216610a105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016105a0565b506001600160a01b031660009081526003602052604090205490565b610a346110f8565b610a3e600061116c565b565b606060018054610466906120a7565b6108a23383836111d6565b610a643383610e2b565b610ad65760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105a0565b610ae2848484846112c2565b50505050565b6060610af382610d41565b6000600c8054610b02906120a7565b905011610b1e5760405180602001604052806000815250610451565b610b2661134b565b610b2f8361135a565b604051602001610b409291906122f0565b60405160208183030381529060405292915050565b600d546001600160a01b0316336001600160a01b031614610bb85760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206d696e746572000000000000000060448201526064016105a0565b60005b8181101561064157600b8054906000610bd3836122d6565b9190505550610c0a838383818110610bed57610bed61217b565b9050602002016020810190610c029190611f2c565b600b54611152565b80610c14816122d6565b915050610bbb565b610c246110f8565b6001600160a01b038116610ca05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a0565b61098f8161116c565b610cb16110f8565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104515750610451826113fa565b6000818152600260205260409020546001600160a01b031661098f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105a0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610df2826108a6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e37836108a6565b9050806001600160a01b0316846001600160a01b03161480610e7e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ea25750836001600160a01b0316610e97846104e9565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ebd826108a6565b6001600160a01b031614610f395760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105a0565b6001600160a01b038216610fb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a0565b610fc183838360016114dd565b826001600160a01b0316610fd4826108a6565b6001600160a01b0316146110505760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105a0565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610a3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b6108a28282604051806020016040528060008152506114e9565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112cd848484610eaa565b6112d984848484611572565b610ae25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b6060600c8054610466906120a7565b6060600061136783611731565b600101905060008167ffffffffffffffff81111561138757611387611e20565b6040519080825280601f01601f1916602001820160405280156113b1576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846113bb57509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061148d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061045157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610451565b610ae284848484611813565b6114f3838361194f565b6115006000848484611572565b6106415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b60006001600160a01b0384163b15611726576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906115cf903390899088908890600401612347565b6020604051808303816000875af1925050508015611628575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261162591810190612383565b60015b6116db573d808015611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b5080516000036116d35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610ea2565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061177a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106117a6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117c457662386f26fc10000830492506010015b6305f5e10083106117dc576305f5e100830492506008015b61271083106117f057612710830492506004015b60648310611802576064830492506002015b600a83106104515760010192915050565b600181111561188a5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016105a0565b816001600160a01b0385166118e6576118e181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611909565b836001600160a01b0316856001600160a01b031614611909576119098582611b00565b6001600160a01b0384166119255761192081611b9d565b611948565b846001600160a01b0316846001600160a01b031614611948576119488482611c4c565b5050505050565b6001600160a01b0382166119a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a0565b6000818152600260205260409020546001600160a01b031615611a0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b611a186000838360016114dd565b6000818152600260205260409020546001600160a01b031615611a7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b0d84610992565b611b1791906123a0565b600083815260076020526040902054909150808214611b6a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611baf906001906123a0565b60008381526009602052604081205460088054939450909284908110611bd757611bd761217b565b906000526020600020015490508060088381548110611bf857611bf861217b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3057611c306123b3565b6001900381819060005260206000200160009055905550505050565b6000611c5783610992565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461098f57600080fd5b600060208284031215611cd057600080fd5b8135611cdb81611c90565b9392505050565b60005b83811015611cfd578181015183820152602001611ce5565b50506000910152565b60008151808452611d1e816020860160208601611ce2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611cdb6020830184611d06565b600060208284031215611d7557600080fd5b5035919050565b80356001600160a01b0381168114611d9357600080fd5b919050565b60008060408385031215611dab57600080fd5b611db483611d7c565b946020939093013593505050565b600080600060608486031215611dd757600080fd5b611de084611d7c565b9250611dee60208501611d7c565b9150604084013590509250925092565b60008060408385031215611e1157600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611e6a57611e6a611e20565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611eb057611eb0611e20565b81604052809350858152868686011115611ec957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ef557600080fd5b813567ffffffffffffffff811115611f0c57600080fd5b8201601f81018413611f1d57600080fd5b610ea284823560208401611e4f565b600060208284031215611f3e57600080fd5b611cdb82611d7c565b60008060408385031215611f5a57600080fd5b611f6383611d7c565b915060208301358015158114611f7857600080fd5b809150509250929050565b60008060008060808587031215611f9957600080fd5b611fa285611d7c565b9350611fb060208601611d7c565b925060408501359150606085013567ffffffffffffffff811115611fd357600080fd5b8501601f81018713611fe457600080fd5b611ff387823560208401611e4f565b91505092959194509250565b6000806020838503121561201257600080fd5b823567ffffffffffffffff8082111561202a57600080fd5b818501915085601f83011261203e57600080fd5b81358181111561204d57600080fd5b8660208260051b850101111561206257600080fd5b60209290920196919550909350505050565b6000806040838503121561208757600080fd5b61209083611d7c565b915061209e60208401611d7c565b90509250929050565b600181811c908216806120bb57607f821691505b6020821081036120f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610451576104516120fa565b600082612176577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561064157600081815260208120601f850160051c810160208610156121d15750805b601f850160051c820191505b818110156121f0578281556001016121dd565b505050505050565b815167ffffffffffffffff81111561221257612212611e20565b6122268161222084546120a7565b846121aa565b602080601f83116001811461225b57600084156122435750858301515b600019600386901b1c1916600185901b1785556121f0565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156122a857888601518255948401946001909101908401612289565b50858210156122c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060001982036122e9576122e96120fa565b5060010190565b60008351612302818460208801611ce2565b835190830190612316818360208801611ce2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123796080830184611d06565b9695505050505050565b60006020828403121561239557600080fd5b8151611cdb81611c90565b81810381811115610451576104516120fa565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220779c179039865ad9dd084fa67ffc4522320ddda3c46e87f8a103e2c2d983c74964736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000032436f6d70616e696f6e73206279204b3969636b73207820536d616c6c62726f73202d204c616d62726f732045646974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c414d42524f5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6c616d626f732d6d657461646174612e6b3969636b732e696f2f6d657461646174612f000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636352211e116100ee578063a22cb46511610097578063d67b06c111610071578063d67b06c114610386578063e985e9c514610399578063f2fde38b146103d5578063fca3b5aa146103e857600080fd5b8063a22cb4651461034d578063b88d4fde14610360578063c87b56dd1461037357600080fd5b8063715018a6116100c8578063715018a61461032c5780638da5cb5b1461033457806395d89b411461034557600080fd5b80636352211e146102f35780636a6278421461030657806370a082311461031957600080fd5b806323b872dd1161015b5780633e4086e5116101355780633e4086e5146102a757806342842e0e146102ba5780634f6ccce7146102cd57806355f804b3146102e057600080fd5b806323b872dd1461024f5780632a55205a146102625780632f745c591461029457600080fd5b8063081812fc1161018c578063081812fc14610215578063095ea7b31461022857806318160ddd1461023d57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307546172146101f0575b600080fd5b6101c66101c1366004611cbe565b6103fb565b60405190151581526020015b60405180910390f35b6101e3610457565b6040516101d29190611d50565b600d546001600160a01b03165b6040516001600160a01b0390911681526020016101d2565b6101fd610223366004611d63565b6104e9565b61023b610236366004611d98565b610510565b005b6008545b6040519081526020016101d2565b61023b61025d366004611dc2565b610646565b610275610270366004611dfe565b6106cd565b604080516001600160a01b0390931683526020830191909152016101d2565b6102416102a2366004611d98565b61070b565b61023b6102b5366004611d63565b6107b3565b61023b6102c8366004611dc2565b6107cf565b6102416102db366004611d63565b6107ea565b61023b6102ee366004611ee3565b61088e565b6101fd610301366004611d63565b6108a6565b61023b610314366004611f2c565b61090b565b610241610327366004611f2c565b610992565b61023b610a2c565b600a546001600160a01b03166101fd565b6101e3610a40565b61023b61035b366004611f47565b610a4f565b61023b61036e366004611f83565b610a5a565b6101e3610381366004611d63565b610ae8565b61023b610394366004611fff565b610b55565b6101c66103a7366004612074565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b6103e3366004611f2c565b610c1c565b61023b6103f6366004611f2c565b610ca9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610451575061045182610ceb565b92915050565b606060008054610466906120a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906120a7565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610d41565b506000908152600460205260409020546001600160a01b031690565b600061051b826108a6565b9050806001600160a01b0316836001600160a01b0316036105a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b03821614806105c557506105c581336103a7565b6106375760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105a0565b6106418383610da5565b505050565b6106503382610e2b565b6106c25760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105a0565b610641838383610eaa565b6000806000612710600e54856106e39190612129565b6106ed9190612140565b9050610701600a546001600160a01b031690565b9590945092505050565b600061071683610992565b821061078a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105a0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107bb6110f8565b6103e88111156107ca57600080fd5b600e55565b61064183838360405180602001604052806000815250610a5a565b60006107f560085490565b82106108695760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105a0565b6008828154811061087c5761087c61217b565b90600052602060002001549050919050565b6108966110f8565b600c6108a282826121f8565b5050565b6000818152600260205260408120546001600160a01b0316806104515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105a0565b600d546001600160a01b0316336001600160a01b03161461096e5760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206d696e746572000000000000000060448201526064016105a0565b600b805490600061097e836122d6565b919050555061098f81600b54611152565b50565b60006001600160a01b038216610a105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e6572000000000000000000000000000000000000000000000060648201526084016105a0565b506001600160a01b031660009081526003602052604090205490565b610a346110f8565b610a3e600061116c565b565b606060018054610466906120a7565b6108a23383836111d6565b610a643383610e2b565b610ad65760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f7665640000000000000000000000000000000000000060648201526084016105a0565b610ae2848484846112c2565b50505050565b6060610af382610d41565b6000600c8054610b02906120a7565b905011610b1e5760405180602001604052806000815250610451565b610b2661134b565b610b2f8361135a565b604051602001610b409291906122f0565b60405160208183030381529060405292915050565b600d546001600160a01b0316336001600160a01b031614610bb85760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f7420746865206d696e746572000000000000000060448201526064016105a0565b60005b8181101561064157600b8054906000610bd3836122d6565b9190505550610c0a838383818110610bed57610bed61217b565b9050602002016020810190610c029190611f2c565b600b54611152565b80610c14816122d6565b915050610bbb565b610c246110f8565b6001600160a01b038116610ca05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a0565b61098f8161116c565b610cb16110f8565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104515750610451826113fa565b6000818152600260205260409020546001600160a01b031661098f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e204944000000000000000060448201526064016105a0565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610df2826108a6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e37836108a6565b9050806001600160a01b0316846001600160a01b03161480610e7e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ea25750836001600160a01b0316610e97846104e9565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ebd826108a6565b6001600160a01b031614610f395760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105a0565b6001600160a01b038216610fb45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a0565b610fc183838360016114dd565b826001600160a01b0316610fd4826108a6565b6001600160a01b0316146110505760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016105a0565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610a3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a0565b6108a28282604051806020016040528060008152506114e9565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a0565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112cd848484610eaa565b6112d984848484611572565b610ae25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b6060600c8054610466906120a7565b6060600061136783611731565b600101905060008167ffffffffffffffff81111561138757611387611e20565b6040519080825280601f01601f1916602001820160405280156113b1576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846113bb57509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061148d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061045157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610451565b610ae284848484611813565b6114f3838361194f565b6115006000848484611572565b6106415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b60006001600160a01b0384163b15611726576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906115cf903390899088908890600401612347565b6020604051808303816000875af1925050508015611628575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261162591810190612383565b60015b6116db573d808015611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b5080516000036116d35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a0565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610ea2565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061177a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106117a6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117c457662386f26fc10000830492506010015b6305f5e10083106117dc576305f5e100830492506008015b61271083106117f057612710830492506004015b60648310611802576064830492506002015b600a83106104515760010192915050565b600181111561188a5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f72746564000000000000000000000060648201526084016105a0565b816001600160a01b0385166118e6576118e181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611909565b836001600160a01b0316856001600160a01b031614611909576119098582611b00565b6001600160a01b0384166119255761192081611b9d565b611948565b846001600160a01b0316846001600160a01b031614611948576119488482611c4c565b5050505050565b6001600160a01b0382166119a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a0565b6000818152600260205260409020546001600160a01b031615611a0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b611a186000838360016114dd565b6000818152600260205260409020546001600160a01b031615611a7d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b0d84610992565b611b1791906123a0565b600083815260076020526040902054909150808214611b6a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611baf906001906123a0565b60008381526009602052604081205460088054939450909284908110611bd757611bd761217b565b906000526020600020015490508060088381548110611bf857611bf861217b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3057611c306123b3565b6001900381819060005260206000200160009055905550505050565b6000611c5783610992565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461098f57600080fd5b600060208284031215611cd057600080fd5b8135611cdb81611c90565b9392505050565b60005b83811015611cfd578181015183820152602001611ce5565b50506000910152565b60008151808452611d1e816020860160208601611ce2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611cdb6020830184611d06565b600060208284031215611d7557600080fd5b5035919050565b80356001600160a01b0381168114611d9357600080fd5b919050565b60008060408385031215611dab57600080fd5b611db483611d7c565b946020939093013593505050565b600080600060608486031215611dd757600080fd5b611de084611d7c565b9250611dee60208501611d7c565b9150604084013590509250925092565b60008060408385031215611e1157600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611e6a57611e6a611e20565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715611eb057611eb0611e20565b81604052809350858152868686011115611ec957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ef557600080fd5b813567ffffffffffffffff811115611f0c57600080fd5b8201601f81018413611f1d57600080fd5b610ea284823560208401611e4f565b600060208284031215611f3e57600080fd5b611cdb82611d7c565b60008060408385031215611f5a57600080fd5b611f6383611d7c565b915060208301358015158114611f7857600080fd5b809150509250929050565b60008060008060808587031215611f9957600080fd5b611fa285611d7c565b9350611fb060208601611d7c565b925060408501359150606085013567ffffffffffffffff811115611fd357600080fd5b8501601f81018713611fe457600080fd5b611ff387823560208401611e4f565b91505092959194509250565b6000806020838503121561201257600080fd5b823567ffffffffffffffff8082111561202a57600080fd5b818501915085601f83011261203e57600080fd5b81358181111561204d57600080fd5b8660208260051b850101111561206257600080fd5b60209290920196919550909350505050565b6000806040838503121561208757600080fd5b61209083611d7c565b915061209e60208401611d7c565b90509250929050565b600181811c908216806120bb57607f821691505b6020821081036120f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610451576104516120fa565b600082612176577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561064157600081815260208120601f850160051c810160208610156121d15750805b601f850160051c820191505b818110156121f0578281556001016121dd565b505050505050565b815167ffffffffffffffff81111561221257612212611e20565b6122268161222084546120a7565b846121aa565b602080601f83116001811461225b57600084156122435750858301515b600019600386901b1c1916600185901b1785556121f0565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156122a857888601518255948401946001909101908401612289565b50858210156122c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060001982036122e9576122e96120fa565b5060010190565b60008351612302818460208801611ce2565b835190830190612316818360208801611ce2565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123796080830184611d06565b9695505050505050565b60006020828403121561239557600080fd5b8151611cdb81611c90565b81810381811115610451576104516120fa565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220779c179039865ad9dd084fa67ffc4522320ddda3c46e87f8a103e2c2d983c74964736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000032436f6d70616e696f6e73206279204b3969636b73207820536d616c6c62726f73202d204c616d62726f732045646974696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c414d42524f5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6c616d626f732d6d657461646174612e6b3969636b732e696f2f6d657461646174612f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Companions by K9icks x Smallbros - Lambros Edition
Arg [1] : symbol (string): LAMBROS
Arg [2] : __baseURI (string): https://lambos-metadata.k9icks.io/metadata/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 436f6d70616e696f6e73206279204b3969636b73207820536d616c6c62726f73
Arg [5] : 202d204c616d62726f732045646974696f6e0000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4c414d42524f5300000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [9] : 68747470733a2f2f6c616d626f732d6d657461646174612e6b3969636b732e69
Arg [10] : 6f2f6d657461646174612f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64718:2383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66841:257;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;66841:257:0;;;;;;;;42436:100;;;:::i;:::-;;;;;;;:::i;65226:81::-;65292:7;;-1:-1:-1;;;;;65292:7:0;65226:81;;;-1:-1:-1;;;;;1617:55:1;;;1599:74;;1587:2;1572:18;65226:81:0;1453:226:1;43948:171:0;;;;;;:::i;:::-;;:::i;43466:416::-;;;;;;:::i;:::-;;:::i;:::-;;59369:113;59457:10;:17;59369:113;;;2475:25:1;;;2463:2;2448:18;59369:113:0;2329:177:1;44648:335:0;;;;;;:::i;:::-;;:::i;66369:214::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3289:55:1;;;3271:74;;3376:2;3361:18;;3354:34;;;;3244:18;66369:214:0;3097:297:1;59037:256:0;;;;;;:::i;:::-;;:::i;66241:120::-;;;;;;:::i;:::-;;:::i;45054:185::-;;;;;;:::i;:::-;;:::i;59559:233::-;;;;;;:::i;:::-;;:::i;65877:94::-;;;;;;:::i;:::-;;:::i;42146:223::-;;;;;;:::i;:::-;;:::i;65420:121::-;;;;;;:::i;:::-;;:::i;41877:207::-;;;;;;:::i;:::-;;:::i;18961:103::-;;;:::i;18313:87::-;18386:6;;-1:-1:-1;;;;;18386:6:0;18313:87;;42605:104;;;:::i;44191:155::-;;;;;;:::i;:::-;;:::i;45310:322::-;;;;;;:::i;:::-;;:::i;65987:246::-;;;;;;:::i;:::-;;:::i;65549:204::-;;;;;;:::i;:::-;;:::i;44417:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;44538:25:0;;;44514:4;44538:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44417:164;19219:201;;;;;;:::i;:::-;;:::i;65319:93::-;;;;;;:::i;:::-;;:::i;66841:257::-;66980:4;67009:41;;;67024:26;67009:41;;:81;;;67054:36;67078:11;67054:23;:36::i;:::-;67002:88;66841:257;-1:-1:-1;;66841:257:0:o;42436:100::-;42490:13;42523:5;42516:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42436:100;:::o;43948:171::-;44024:7;44044:23;44059:7;44044:14;:23::i;:::-;-1:-1:-1;44087:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44087:24:0;;43948:171::o;43466:416::-;43547:13;43563:23;43578:7;43563:14;:23::i;:::-;43547:39;;43611:5;-1:-1:-1;;;;;43605:11:0;:2;-1:-1:-1;;;;;43605:11:0;;43597:57;;;;-1:-1:-1;;;43597:57:0;;7484:2:1;43597:57:0;;;7466:21:1;7523:2;7503:18;;;7496:30;7562:34;7542:18;;;7535:62;7633:3;7613:18;;;7606:31;7654:19;;43597:57:0;;;;;;;;;16944:10;-1:-1:-1;;;;;43689:21:0;;;;:62;;-1:-1:-1;43714:37:0;43731:5;16944:10;44417:164;:::i;43714:37::-;43667:173;;;;-1:-1:-1;;;43667:173:0;;7886:2:1;43667:173:0;;;7868:21:1;7925:2;7905:18;;;7898:30;7964:34;7944:18;;;7937:62;8035:31;8015:18;;;8008:59;8084:19;;43667:173:0;7684:425:1;43667:173:0;43853:21;43862:2;43866:7;43853:8;:21::i;:::-;43536:346;43466:416;;:::o;44648:335::-;44843:41;16944:10;44876:7;44843:18;:41::i;:::-;44835:99;;;;-1:-1:-1;;;44835:99:0;;8316:2:1;44835:99:0;;;8298:21:1;8355:2;8335:18;;;8328:30;8394:34;8374:18;;;8367:62;8465:15;8445:18;;;8438:43;8498:19;;44835:99:0;8114:409:1;44835:99:0;44947:28;44957:4;44963:2;44967:7;44947:9;:28::i;66369:214::-;66447:7;66456;66476:21;66528:5;66513:11;;66501:9;:23;;;;:::i;:::-;66500:33;;;;:::i;:::-;66476:57;;66552:7;18386:6;;-1:-1:-1;;;;;18386:6:0;;18313:87;66552:7;66544:31;66561:13;;-1:-1:-1;66369:214:0;-1:-1:-1;;;66369:214:0:o;59037:256::-;59134:7;59170:23;59187:5;59170:16;:23::i;:::-;59162:5;:31;59154:87;;;;-1:-1:-1;;;59154:87:0;;9560:2:1;59154:87:0;;;9542:21:1;9599:2;9579:18;;;9572:30;9638:34;9618:18;;;9611:62;9709:13;9689:18;;;9682:41;9740:19;;59154:87:0;9358:407:1;59154:87:0;-1:-1:-1;;;;;;59259:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;59037:256::o;66241:120::-;18199:13;:11;:13::i;:::-;66320:4:::1;66313:3;:11;;66305:20;;;::::0;::::1;;66336:11;:17:::0;66241:120::o;45054:185::-;45192:39;45209:4;45215:2;45219:7;45192:39;;;;;;;;;;;;:16;:39::i;59559:233::-;59634:7;59670:30;59457:10;:17;;59369:113;59670:30;59662:5;:38;59654:95;;;;-1:-1:-1;;;59654:95:0;;9972:2:1;59654:95:0;;;9954:21:1;10011:2;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;10121:14;10101:18;;;10094:42;10153:19;;59654:95:0;9770:408:1;59654:95:0;59767:10;59778:5;59767:17;;;;;;;;:::i;:::-;;;;;;;;;59760:24;;59559:233;;;:::o;65877:94::-;18199:13;:11;:13::i;:::-;65947:7:::1;:16;65957:6:::0;65947:7;:16:::1;:::i;:::-;;65877:94:::0;:::o;42146:223::-;42218:7;47033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47033:16:0;;42282:56;;;;-1:-1:-1;;;42282:56:0;;12957:2:1;42282:56:0;;;12939:21:1;12996:2;12976:18;;;12969:30;13035:26;13015:18;;;13008:54;13079:18;;42282:56:0;12755:348:1;65420:121:0;65158:7;;-1:-1:-1;;;;;65158:7:0;16944:10;-1:-1:-1;;;;;65142:23:0;;65134:60;;;;-1:-1:-1;;;65134:60:0;;13310:2:1;65134:60:0;;;13292:21:1;13349:2;13329:18;;;13322:30;13388:26;13368:18;;;13361:54;13432:18;;65134:60:0;13108:348:1;65134:60:0;65475:15:::1;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;65503:30;65513:2;65517:15;;65503:9;:30::i;:::-;65420:121:::0;:::o;41877:207::-;41949:7;-1:-1:-1;;;;;41977:19:0;;41969:73;;;;-1:-1:-1;;;41969:73:0;;13863:2:1;41969:73:0;;;13845:21:1;13902:2;13882:18;;;13875:30;13941:34;13921:18;;;13914:62;14012:11;13992:18;;;13985:39;14041:19;;41969:73:0;13661:405:1;41969:73:0;-1:-1:-1;;;;;;42060:16:0;;;;;:9;:16;;;;;;;41877:207::o;18961:103::-;18199:13;:11;:13::i;:::-;19026:30:::1;19053:1;19026:18;:30::i;:::-;18961:103::o:0;42605:104::-;42661:13;42694:7;42687:14;;;;;:::i;44191:155::-;44286:52;16944:10;44319:8;44329;44286:18;:52::i;45310:322::-;45484:41;16944:10;45517:7;45484:18;:41::i;:::-;45476:99;;;;-1:-1:-1;;;45476:99:0;;8316:2:1;45476:99:0;;;8298:21:1;8355:2;8335:18;;;8328:30;8394:34;8374:18;;;8367:62;8465:15;8445:18;;;8438:43;8498:19;;45476:99:0;8114:409:1;45476:99:0;45586:38;45600:4;45606:2;45610:7;45619:4;45586:13;:38::i;:::-;45310:322;;;;:::o;65987:246::-;66060:13;66086:23;66101:7;66086:14;:23::i;:::-;66151:1;66133:7;66127:21;;;;;:::i;:::-;;;:25;:98;;;;;;;;;;;;;;;;;66179:10;:8;:10::i;:::-;66191:18;:7;:16;:18::i;:::-;66162:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66120:105;65987:246;-1:-1:-1;;65987:246:0:o;65549:204::-;65158:7;;-1:-1:-1;;;;;65158:7:0;16944:10;-1:-1:-1;;;;;65142:23:0;;65134:60;;;;-1:-1:-1;;;65134:60:0;;13310:2:1;65134:60:0;;;13292:21:1;13349:2;13329:18;;;13322:30;13388:26;13368:18;;;13361:54;13432:18;;65134:60:0;13108:348:1;65134:60:0;65624:9:::1;65620:126;65635:13:::0;;::::1;65620:126;;;65669:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;65701:33;65711:2;;65714:1;65711:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;65718:15;;65701:9;:33::i;:::-;65650:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65620:126;;19219:201:::0;18199:13;:11;:13::i;:::-;-1:-1:-1;;;;;19308:22:0;::::1;19300:73;;;::::0;-1:-1:-1;;;19300:73:0;;14941:2:1;19300:73:0::1;::::0;::::1;14923:21:1::0;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;15090:8;15070:18;;;15063:36;15116:19;;19300:73:0::1;14739:402:1::0;19300:73:0::1;19384:28;19403:8;19384:18;:28::i;65319:93::-:0;18199:13;:11;:13::i;:::-;65385:7:::1;:19:::0;;;::::1;-1:-1:-1::0;;;;;65385:19:0;;;::::1;::::0;;;::::1;::::0;;65319:93::o;58729:224::-;58831:4;58855:50;;;58870:35;58855:50;;:90;;;58909:36;58933:11;58909:23;:36::i;53767:135::-;47435:4;47033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47033:16:0;53841:53;;;;-1:-1:-1;;;53841:53:0;;12957:2:1;53841:53:0;;;12939:21:1;12996:2;12976:18;;;12969:30;13035:26;13015:18;;;13008:54;13079:18;;53841:53:0;12755:348:1;53046:174:0;53121:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;53121:29:0;;;;;;;;:24;;53175:23;53121:24;53175:14;:23::i;:::-;-1:-1:-1;;;;;53166:46:0;;;;;;;;;;;53046:174;;:::o;47665:264::-;47758:4;47775:13;47791:23;47806:7;47791:14;:23::i;:::-;47775:39;;47844:5;-1:-1:-1;;;;;47833:16:0;:7;-1:-1:-1;;;;;47833:16:0;;:52;;;-1:-1:-1;;;;;;44538:25:0;;;44514:4;44538:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47853:32;47833:87;;;;47913:7;-1:-1:-1;;;;;47889:31:0;:20;47901:7;47889:11;:20::i;:::-;-1:-1:-1;;;;;47889:31:0;;47833:87;47825:96;47665:264;-1:-1:-1;;;;47665:264:0:o;51664:1263::-;51823:4;-1:-1:-1;;;;;51796:31:0;:23;51811:7;51796:14;:23::i;:::-;-1:-1:-1;;;;;51796:31:0;;51788:81;;;;-1:-1:-1;;;51788:81:0;;15348:2:1;51788:81:0;;;15330:21:1;15387:2;15367:18;;;15360:30;15426:34;15406:18;;;15399:62;15497:7;15477:18;;;15470:35;15522:19;;51788:81:0;15146:401:1;51788:81:0;-1:-1:-1;;;;;51888:16:0;;51880:65;;;;-1:-1:-1;;;51880:65:0;;15754:2:1;51880:65:0;;;15736:21:1;15793:2;15773:18;;;15766:30;15832:34;15812:18;;;15805:62;15903:6;15883:18;;;15876:34;15927:19;;51880:65:0;15552:400:1;51880:65:0;51958:42;51979:4;51985:2;51989:7;51998:1;51958:20;:42::i;:::-;52130:4;-1:-1:-1;;;;;52103:31:0;:23;52118:7;52103:14;:23::i;:::-;-1:-1:-1;;;;;52103:31:0;;52095:81;;;;-1:-1:-1;;;52095:81:0;;15348:2:1;52095:81:0;;;15330:21:1;15387:2;15367:18;;;15360:30;15426:34;15406:18;;;15399:62;15497:7;15477:18;;;15470:35;15522:19;;52095:81:0;15146:401:1;52095:81:0;52248:24;;;;:15;:24;;;;;;;;52241:31;;;;;;;;;-1:-1:-1;;;;;52724:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;52724:20:0;;;52759:13;;;;;;;;;:18;;52241:31;52759:18;;;52799:16;;;:7;:16;;;;;;:21;;;;;;;;;;52838:27;;52264:7;;52838:27;;;43536:346;43466:416;;:::o;18478:132::-;18386:6;;-1:-1:-1;;;;;18386:6:0;16944:10;18542:23;18534:68;;;;-1:-1:-1;;;18534:68:0;;16159:2:1;18534:68:0;;;16141:21:1;;;16178:18;;;16171:30;16237:34;16217:18;;;16210:62;16289:18;;18534:68:0;15957:356:1;48271:110:0;48347:26;48357:2;48361:7;48347:26;;;;;;;;;;;;:9;:26::i;19580:191::-;19673:6;;;-1:-1:-1;;;;;19690:17:0;;;;;;;;;;;19723:40;;19673:6;;;19690:17;19673:6;;19723:40;;19654:16;;19723:40;19643:128;19580:191;:::o;53363:315::-;53518:8;-1:-1:-1;;;;;53509:17:0;:5;-1:-1:-1;;;;;53509:17:0;;53501:55;;;;-1:-1:-1;;;53501:55:0;;16520:2:1;53501:55:0;;;16502:21:1;16559:2;16539:18;;;16532:30;16598:27;16578:18;;;16571:55;16643:18;;53501:55:0;16318:349:1;53501:55:0;-1:-1:-1;;;;;53567:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;53629:41;;586::1;;;53629::0;;559:18:1;53629:41:0;;;;;;;53363:315;;;:::o;46513:313::-;46669:28;46679:4;46685:2;46689:7;46669:9;:28::i;:::-;46716:47;46739:4;46745:2;46749:7;46758:4;46716:22;:47::i;:::-;46708:110;;;;-1:-1:-1;;;46708:110:0;;16874:2:1;46708:110:0;;;16856:21:1;16913:2;16893:18;;;16886:30;16952:34;16932:18;;;16925:62;17023:20;17003:18;;;16996:48;17061:19;;46708:110:0;16672:414:1;65761:108:0;65821:13;65854:7;65847:14;;;;;:::i;14291:716::-;14347:13;14398:14;14415:17;14426:5;14415:10;:17::i;:::-;14435:1;14415:21;14398:38;;14451:20;14485:6;14474:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14474:18:0;-1:-1:-1;14451:41:0;-1:-1:-1;14616:28:0;;;14632:2;14616:28;14673:288;-1:-1:-1;;14705:5:0;14847:8;14842:2;14831:14;;14826:30;14705:5;14813:44;14903:2;14894:11;;;-1:-1:-1;14924:21:0;14673:288;14924:21;-1:-1:-1;14982:6:0;14291:716;-1:-1:-1;;;14291:716:0:o;41508:305::-;41610:4;41647:40;;;41662:25;41647:40;;:105;;-1:-1:-1;41704:48:0;;;41719:33;41704:48;41647:105;:158;;;-1:-1:-1;33064:25:0;33049:40;;;;41769:36;32940:157;66599:234;66769:56;66796:4;66802:2;66806:7;66815:9;66769:26;:56::i;48608:319::-;48737:18;48743:2;48747:7;48737:5;:18::i;:::-;48788:53;48819:1;48823:2;48827:7;48836:4;48788:22;:53::i;:::-;48766:153;;;;-1:-1:-1;;;48766:153:0;;16874:2:1;48766:153:0;;;16856:21:1;16913:2;16893:18;;;16886:30;16952:34;16932:18;;;16925:62;17023:20;17003:18;;;16996:48;17061:19;;48766:153:0;16672:414:1;54466:853:0;54620:4;-1:-1:-1;;;;;54641:13:0;;21306:19;:23;54637:675;;54677:71;;;;;-1:-1:-1;;;;;54677:36:0;;;;;:71;;16944:10;;54728:4;;54734:7;;54743:4;;54677:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54677:71:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54673:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54918:6;:13;54935:1;54918:18;54914:328;;54961:60;;-1:-1:-1;;;54961:60:0;;16874:2:1;54961:60:0;;;16856:21:1;16913:2;16893:18;;;16886:30;16952:34;16932:18;;;16925:62;17023:20;17003:18;;;16996:48;17061:19;;54961:60:0;16672:414:1;54914:328:0;55192:6;55186:13;55177:6;55173:2;55169:15;55162:38;54673:584;54799:51;;54809:41;54799:51;;-1:-1:-1;54792:58:0;;54637:675;-1:-1:-1;55296:4:0;54466:853;;;;;;:::o;11157:922::-;11210:7;;11297:6;11288:15;;11284:102;;11333:6;11324:15;;;-1:-1:-1;11368:2:0;11358:12;11284:102;11413:6;11404:5;:15;11400:102;;11449:6;11440:15;;;-1:-1:-1;11484:2:0;11474:12;11400:102;11529:6;11520:5;:15;11516:102;;11565:6;11556:15;;;-1:-1:-1;11600:2:0;11590:12;11516:102;11645:5;11636;:14;11632:99;;11680:5;11671:14;;;-1:-1:-1;11714:1:0;11704:11;11632:99;11758:5;11749;:14;11745:99;;11793:5;11784:14;;;-1:-1:-1;11827:1:0;11817:11;11745:99;11871:5;11862;:14;11858:99;;11906:5;11897:14;;;-1:-1:-1;11940:1:0;11930:11;11858:99;11984:5;11975;:14;11971:66;;12020:1;12010:11;12065:6;11157:922;-1:-1:-1;;11157:922:0:o;59866:915::-;60133:1;60121:9;:13;60117:222;;;60264:63;;-1:-1:-1;;;60264:63:0;;18064:2:1;60264:63:0;;;18046:21:1;18103:2;18083:18;;;18076:30;18142:34;18122:18;;;18115:62;18213:23;18193:18;;;18186:51;18254:19;;60264:63:0;17862:417:1;60117:222:0;60369:12;-1:-1:-1;;;;;60398:18:0;;60394:187;;60433:40;60465:7;61608:10;:17;;61581:24;;;;:15;:24;;;;;:44;;;61636:24;;;;;;;;;;;;61504:164;60433:40;60394:187;;;60503:2;-1:-1:-1;;;;;60495:10:0;:4;-1:-1:-1;;;;;60495:10:0;;60491:90;;60522:47;60555:4;60561:7;60522:32;:47::i;:::-;-1:-1:-1;;;;;60595:16:0;;60591:183;;60628:45;60665:7;60628:36;:45::i;:::-;60591:183;;;60701:4;-1:-1:-1;;;;;60695:10:0;:2;-1:-1:-1;;;;;60695:10:0;;60691:83;;60722:40;60750:2;60754:7;60722:27;:40::i;:::-;60032:749;59866:915;;;;:::o;49263:942::-;-1:-1:-1;;;;;49343:16:0;;49335:61;;;;-1:-1:-1;;;49335:61:0;;18486:2:1;49335:61:0;;;18468:21:1;;;18505:18;;;18498:30;18564:34;18544:18;;;18537:62;18616:18;;49335:61:0;18284:356:1;49335:61:0;47435:4;47033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47033:16:0;47459:31;49407:58;;;;-1:-1:-1;;;49407:58:0;;18847:2:1;49407:58:0;;;18829:21:1;18886:2;18866:18;;;18859:30;18925;18905:18;;;18898:58;18973:18;;49407:58:0;18645:352:1;49407:58:0;49478:48;49507:1;49511:2;49515:7;49524:1;49478:20;:48::i;:::-;47435:4;47033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47033:16:0;47459:31;49616:58;;;;-1:-1:-1;;;49616:58:0;;18847:2:1;49616:58:0;;;18829:21:1;18886:2;18866:18;;;18859:30;18925;18905:18;;;18898:58;18973:18;;49616:58:0;18645:352:1;49616:58:0;-1:-1:-1;;;;;50023:13:0;;;;;;:9;:13;;;;;;;;:18;;50040:1;50023:18;;;50065:16;;;:7;:16;;;;;;:21;;;;;;;;50104:33;50073:7;;50023:13;;50104:33;;50023:13;;50104:33;65947:16:::1;65877:94:::0;:::o;62295:988::-;62561:22;62611:1;62586:22;62603:4;62586:16;:22::i;:::-;:26;;;;:::i;:::-;62623:18;62644:26;;;:17;:26;;;;;;62561:51;;-1:-1:-1;62777:28:0;;;62773:328;;-1:-1:-1;;;;;62844:18:0;;62822:19;62844:18;;;:12;:18;;;;;;;;:34;;;;;;;;;62895:30;;;;;;:44;;;63012:30;;:17;:30;;;;;:43;;;62773:328;-1:-1:-1;63197:26:0;;;;:17;:26;;;;;;;;63190:33;;;-1:-1:-1;;;;;63241:18:0;;;;;:12;:18;;;;;:34;;;;;;;63234:41;62295:988::o;63578:1079::-;63856:10;:17;63831:22;;63856:21;;63876:1;;63856:21;:::i;:::-;63888:18;63909:24;;;:15;:24;;;;;;64282:10;:26;;63831:46;;-1:-1:-1;63909:24:0;;63831:46;;64282:26;;;;;;:::i;:::-;;;;;;;;;64260:48;;64346:11;64321:10;64332;64321:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;64426:28;;;:15;:28;;;;;;;:41;;;64598:24;;;;;64591:31;64633:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;63649:1008;;;63578:1079;:::o;61082:221::-;61167:14;61184:20;61201:2;61184:16;:20::i;:::-;-1:-1:-1;;;;;61215:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;61260:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;61082:221:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;1142:66;1121:88;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1684:180::-;1743:6;1796:2;1784:9;1775:7;1771:23;1767:32;1764:52;;;1812:1;1809;1802:12;1764:52;-1:-1:-1;1835:23:1;;1684:180;-1:-1:-1;1684:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:328::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;2696:29;2715:9;2696:29;:::i;:::-;2686:39;;2744:38;2778:2;2767:9;2763:18;2744:38;:::i;:::-;2734:48;;2829:2;2818:9;2814:18;2801:32;2791:42;;2511:328;;;;;:::o;2844:248::-;2912:6;2920;2973:2;2961:9;2952:7;2948:23;2944:32;2941:52;;;2989:1;2986;2979:12;2941:52;-1:-1:-1;;3012:23:1;;;3082:2;3067:18;;;3054:32;;-1:-1:-1;2844:248:1:o;3399:184::-;3451:77;3448:1;3441:88;3548:4;3545:1;3538:15;3572:4;3569:1;3562:15;3588:691;3653:5;3683:18;3724:2;3716:6;3713:14;3710:40;;;3730:18;;:::i;:::-;3864:2;3858:9;3930:2;3918:15;;3769:66;3914:24;;;3940:2;3910:33;3906:42;3894:55;;;3964:18;;;3984:22;;;3961:46;3958:72;;;4010:18;;:::i;:::-;4050:10;4046:2;4039:22;4079:6;4070:15;;4109:6;4101;4094:22;4149:3;4140:6;4135:3;4131:16;4128:25;4125:45;;;4166:1;4163;4156:12;4125:45;4216:6;4211:3;4204:4;4196:6;4192:17;4179:44;4271:1;4264:4;4255:6;4247;4243:19;4239:30;4232:41;;;;3588:691;;;;;:::o;4284:451::-;4353:6;4406:2;4394:9;4385:7;4381:23;4377:32;4374:52;;;4422:1;4419;4412:12;4374:52;4462:9;4449:23;4495:18;4487:6;4484:30;4481:50;;;4527:1;4524;4517:12;4481:50;4550:22;;4603:4;4595:13;;4591:27;-1:-1:-1;4581:55:1;;4632:1;4629;4622:12;4581:55;4655:74;4721:7;4716:2;4703:16;4698:2;4694;4690:11;4655:74;:::i;4740:186::-;4799:6;4852:2;4840:9;4831:7;4827:23;4823:32;4820:52;;;4868:1;4865;4858:12;4820:52;4891:29;4910:9;4891:29;:::i;4931:347::-;4996:6;5004;5057:2;5045:9;5036:7;5032:23;5028:32;5025:52;;;5073:1;5070;5063:12;5025:52;5096:29;5115:9;5096:29;:::i;:::-;5086:39;;5175:2;5164:9;5160:18;5147:32;5222:5;5215:13;5208:21;5201:5;5198:32;5188:60;;5244:1;5241;5234:12;5188:60;5267:5;5257:15;;;4931:347;;;;;:::o;5283:667::-;5378:6;5386;5394;5402;5455:3;5443:9;5434:7;5430:23;5426:33;5423:53;;;5472:1;5469;5462:12;5423:53;5495:29;5514:9;5495:29;:::i;:::-;5485:39;;5543:38;5577:2;5566:9;5562:18;5543:38;:::i;:::-;5533:48;;5628:2;5617:9;5613:18;5600:32;5590:42;;5683:2;5672:9;5668:18;5655:32;5710:18;5702:6;5699:30;5696:50;;;5742:1;5739;5732:12;5696:50;5765:22;;5818:4;5810:13;;5806:27;-1:-1:-1;5796:55:1;;5847:1;5844;5837:12;5796:55;5870:74;5936:7;5931:2;5918:16;5913:2;5909;5905:11;5870:74;:::i;:::-;5860:84;;;5283:667;;;;;;;:::o;5955:615::-;6041:6;6049;6102:2;6090:9;6081:7;6077:23;6073:32;6070:52;;;6118:1;6115;6108:12;6070:52;6158:9;6145:23;6187:18;6228:2;6220:6;6217:14;6214:34;;;6244:1;6241;6234:12;6214:34;6282:6;6271:9;6267:22;6257:32;;6327:7;6320:4;6316:2;6312:13;6308:27;6298:55;;6349:1;6346;6339:12;6298:55;6389:2;6376:16;6415:2;6407:6;6404:14;6401:34;;;6431:1;6428;6421:12;6401:34;6484:7;6479:2;6469:6;6466:1;6462:14;6458:2;6454:23;6450:32;6447:45;6444:65;;;6505:1;6502;6495:12;6444:65;6536:2;6528:11;;;;;6558:6;;-1:-1:-1;5955:615:1;;-1:-1:-1;;;;5955:615:1:o;6575:260::-;6643:6;6651;6704:2;6692:9;6683:7;6679:23;6675:32;6672:52;;;6720:1;6717;6710:12;6672:52;6743:29;6762:9;6743:29;:::i;:::-;6733:39;;6791:38;6825:2;6814:9;6810:18;6791:38;:::i;:::-;6781:48;;6575:260;;;;;:::o;6840:437::-;6919:1;6915:12;;;;6962;;;6983:61;;7037:4;7029:6;7025:17;7015:27;;6983:61;7090:2;7082:6;7079:14;7059:18;7056:38;7053:218;;7127:77;7124:1;7117:88;7228:4;7225:1;7218:15;7256:4;7253:1;7246:15;7053:218;;6840:437;;;:::o;8528:184::-;8580:77;8577:1;8570:88;8677:4;8674:1;8667:15;8701:4;8698:1;8691:15;8717:168;8790:9;;;8821;;8838:15;;;8832:22;;8818:37;8808:71;;8859:18;;:::i;9079:274::-;9119:1;9145;9135:189;;9180:77;9177:1;9170:88;9281:4;9278:1;9271:15;9309:4;9306:1;9299:15;9135:189;-1:-1:-1;9338:9:1;;9079:274::o;10183:184::-;10235:77;10232:1;10225:88;10332:4;10329:1;10322:15;10356:4;10353:1;10346:15;10498:545;10600:2;10595:3;10592:11;10589:448;;;10636:1;10661:5;10657:2;10650:17;10706:4;10702:2;10692:19;10776:2;10764:10;10760:19;10757:1;10753:27;10747:4;10743:38;10812:4;10800:10;10797:20;10794:47;;;-1:-1:-1;10835:4:1;10794:47;10890:2;10885:3;10881:12;10878:1;10874:20;10868:4;10864:31;10854:41;;10945:82;10963:2;10956:5;10953:13;10945:82;;;11008:17;;;10989:1;10978:13;10945:82;;;10949:3;;;10498:545;;;:::o;11279:1471::-;11405:3;11399:10;11432:18;11424:6;11421:30;11418:56;;;11454:18;;:::i;:::-;11483:97;11573:6;11533:38;11565:4;11559:11;11533:38;:::i;:::-;11527:4;11483:97;:::i;:::-;11635:4;;11699:2;11688:14;;11716:1;11711:782;;;;12537:1;12554:6;12551:89;;;-1:-1:-1;12606:19:1;;;12600:26;12551:89;-1:-1:-1;;11176:1:1;11172:11;;;11168:84;11164:89;11154:100;11260:1;11256:11;;;11151:117;12653:81;;11681:1063;;11711:782;10445:1;10438:14;;;10482:4;10469:18;;11759:66;11747:79;;;11924:236;11938:7;11935:1;11932:14;11924:236;;;12027:19;;;12021:26;12006:42;;12119:27;;;;12087:1;12075:14;;;;11954:19;;11924:236;;;11928:3;12188:6;12179:7;12176:19;12173:261;;;12249:19;;;12243:26;-1:-1:-1;;12332:1:1;12328:14;;;12344:3;12324:24;12320:97;12316:102;12301:118;12286:134;;12173:261;-1:-1:-1;;;;;12480:1:1;12464:14;;;12460:22;12447:36;;-1:-1:-1;11279:1471:1:o;13461:195::-;13500:3;-1:-1:-1;;13524:5:1;13521:77;13518:103;;13601:18;;:::i;:::-;-1:-1:-1;13648:1:1;13637:13;;13461:195::o;14071:663::-;14351:3;14389:6;14383:13;14405:66;14464:6;14459:3;14452:4;14444:6;14440:17;14405:66;:::i;:::-;14534:13;;14493:16;;;;14556:70;14534:13;14493:16;14603:4;14591:17;;14556:70;:::i;:::-;14691:7;14648:20;;14677:22;;;14726:1;14715:13;;14071:663;-1:-1:-1;;;;14071:663:1:o;17091:512::-;17285:4;-1:-1:-1;;;;;17395:2:1;17387:6;17383:15;17372:9;17365:34;17447:2;17439:6;17435:15;17430:2;17419:9;17415:18;17408:43;;17487:6;17482:2;17471:9;17467:18;17460:34;17530:3;17525:2;17514:9;17510:18;17503:31;17551:46;17592:3;17581:9;17577:19;17569:6;17551:46;:::i;:::-;17543:54;17091:512;-1:-1:-1;;;;;;17091:512:1:o;17608:249::-;17677:6;17730:2;17718:9;17709:7;17705:23;17701:32;17698:52;;;17746:1;17743;17736:12;17698:52;17778:9;17772:16;17797:30;17821:5;17797:30;:::i;19002:128::-;19069:9;;;19090:11;;;19087:37;;;19104:18;;:::i;19135:184::-;19187:77;19184:1;19177:88;19284:4;19281:1;19274:15;19308:4;19305:1;19298:15

Swarm Source

ipfs://779c179039865ad9dd084fa67ffc4522320ddda3c46e87f8a103e2c2d983c749
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.