ETH Price: $3,340.47 (+0.43%)
 

Overview

Max Total Supply

87 BOAUD

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BOAUD
0xe7EF9D81ca2a6A0Ae90067Ddd05c3C5DF3648E20
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:
MusicVial

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-09
*/

// SPDX-License-Identifier: MIT
// File: Interfaces/IERC721Burn.sol


pragma solidity ^0.8.4;

interface IERC721Burn{
    function burn(uint256 tokenId) external;
}
// File: opensea-enforcement/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: opensea-enforcement/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: opensea-enforcement/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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/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.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) public _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(), ".json")) : "";
    }

    /**
     * @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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// 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: phase3.sol

pragma solidity ^0.8.13;

///@title Bang and Olufsen Music Vial contract
///@author Dastageer Sayed
///@notice This is the 5th contract is B&O DNA Collection
///dev All function calls are currently implemented without side effects
contract MusicVial is ERC721, ERC721Burnable,DefaultOperatorFilterer, ERC721Enumerable, Ownable{
    using Counters for Counters.Counter;

    Counters.Counter private _nonce;

    bool public toggle;
    uint16[] private _randomNumbers;
    address public phase2Address;
    string private URI;
    uint256 public revealTime;
    mapping(address => uint256[]) public userNftId;
    mapping(uint256 => bool) public alreadyClaimed;

    event revealTimer(uint256 revealTime);

    constructor(string memory _name, string memory _symbol, address _phase2Address) ERC721(_name,_symbol) {
        phase2Address = _phase2Address;
        for(uint16 i = 0; i < 1925; i++){
            _randomNumbers.push(i);
        }
    }


    ///@notice This function will return a random number using block values
    ///@dev This function will generated random number 
    function _generateRandomNumber() internal returns(uint256 randomNumber){
        uint256 salt = _nonce.current();
        randomNumber = uint256(
            keccak256(
                abi.encode(
                    msg.sender,
                    tx.gasprice,
                    block.number,
                    block.timestamp,
                    block.difficulty,
                    blockhash(block.number - 1),
                    address(this),
                    salt
                )
            )
        );
        _nonce.increment();
    }

    /* 
    @dev This function takes the random number generated and cut it down between the range of 
        0-1924, the selected number will be then popped out of the array and will be given as tokenID while
        minting NFT
    */
    function randomTokenId() internal returns(uint256 resultNumber){
        uint256 randomIndex = _generateRandomNumber() % _randomNumbers.length;
        resultNumber = _randomNumbers[randomIndex];
        _randomNumbers[randomIndex] = _randomNumbers[_randomNumbers.length - 1];
        _randomNumbers.pop();
        return resultNumber;
    }

    /* 
    @dev This function will burn the ticket, and mint a new NFT with random tokenID, before calling this function
        make sure you have taken the allowance of tokenId from the ticket contract that needs to be burned.
    @params ticketId: Ticket tokenId that gets burn.
    */
    function claim(uint256 phase2NFTId) external {
        require(toggle == true, "MusicVial: Toggle is off");
        require(revealTime !=0, "MusicVial: Set revel Timer");
        require(block.timestamp > revealTime, "MusicVial: Redeem has not started yet");
        require(IERC721(phase2Address).ownerOf(phase2NFTId) == msg.sender, "MusicVial: You are not the owner of Phase2 NFT");
        require(alreadyClaimed[phase2NFTId] == false, "MusicVial: NFT already claimed for this token");
        require(_randomNumbers.length != 0, "MusicVial: All NFT has been already minted");
        uint256 randomId = randomTokenId();
        alreadyClaimed[phase2NFTId] = true;
        userNftId[msg.sender].push(randomId);
        _safeMint(msg.sender, randomId);
    }

    ///@dev Function will freeze the claim for everyone, can be toggle only by owner
    function setToggle(bool toggle_) external onlyOwner{
        toggle = toggle_;
    }

    ///@dev Emergency function to change B&O Phase2 Contract address
    function updatePhase2Address(address phase2Address_) external onlyOwner{
        require(phase2Address_ != address(0), "MusicVial: Phase3 address cannot be zero Address");
        phase2Address = phase2Address_;
    }

    ///@dev Owner can set the Reveal time to start claim
    function setRevelTimer(uint256 revealTime_) external onlyOwner{
        revealTime = revealTime_;
        emit revealTimer(revealTime);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        require(_isApprovedOrOwner(_msgSender(), tokenId),"MusicVial: transfer caller is not owner nor approved");
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from,address to,uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from)  {
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from,address to,uint256 tokenId,bytes memory _data) public override(ERC721, IERC721) onlyAllowedOperator(from)  {
        require(_isApprovedOrOwner(_msgSender(), tokenId),"MusicVial: transfer caller is not owner nor approved");
        for (uint256 i; i < userNftId[from].length; i++) {
            if (userNftId[from][i] == tokenId) {
                userNftId[from][i] = userNftId[from][userNftId[from].length - 1];
                userNftId[from].pop();
                userNftId[to].push(tokenId);
                break;
            }
        }
        _safeTransfer(from, to, tokenId, _data);
    }

    ///@dev Keep's the mapping users token holding
    function nftOfUser(address user)public view returns(uint256[] memory){
        return userNftId[user];
    }

    function burn(uint256 tokenId) public virtual override{
        //solhint-disable-next-line max-line-length
        _burn(tokenId);
    }

    function _burn(uint256 _tokenId) internal override(ERC721) {
        require(_isApprovedOrOwner(_msgSender(), _tokenId), "MusicVial: caller is not token owner nor approved");
        address tokenOwner = ownerOf(_tokenId);
         for (uint256 i; i < userNftId[tokenOwner].length; i++) {
            if (userNftId[tokenOwner][i] == _tokenId) {
                userNftId[tokenOwner][i] = userNftId[tokenOwner][userNftId[tokenOwner].length - 1];
                userNftId[tokenOwner].pop();
                break;
            }
        }
        super._burn(_tokenId);
    }

    ///@dev Owner can update baseURI anytime
    function updateURI(string memory newURI_) external onlyOwner{
        URI = newURI_;
    }

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

    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 super.supportsInterface(interfaceId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_phase2Address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"revealTime","type":"uint256"}],"name":"revealTimer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_owners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"alreadyClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase2NFTId","type":"uint256"}],"name":"claim","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"nftOfUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTime","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":"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":"uint256","name":"revealTime_","type":"uint256"}],"name":"setRevelTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle_","type":"bool"}],"name":"setToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"phase2Address_","type":"address"}],"name":"updatePhase2Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userNftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200387c3803806200387c83398101604081905262000034916200043a565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018484816000908051906020019062000065929190620002c7565b5080516200007b906001906020840190620002c7565b5050506daaeb6d7670e522a718067333cd4e3b15620001c35780156200011157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000f257600080fd5b505af115801562000107573d6000803e3d6000fd5b50505050620001c3565b6001600160a01b03821615620001625760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001a957600080fd5b505af1158015620001be573d6000803e3d6000fd5b505050505b50620001d190503362000275565b600e80546001600160a01b0319166001600160a01b03831617905560005b6107858161ffff1610156200026b57600d80546001810182556000919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560108204018054600f9092166002026101000a61ffff8181021990931692841602919091179055806200026281620004c7565b915050620001ef565b5050505062000533565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002d590620004f7565b90600052602060002090601f016020900481019282620002f9576000855562000344565b82601f106200031457805160ff191683800117855562000344565b8280016001018555821562000344579182015b828111156200034457825182559160200191906001019062000327565b506200035292915062000356565b5090565b5b8082111562000352576000815560010162000357565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200039557600080fd5b81516001600160401b0380821115620003b257620003b26200036d565b604051601f8301601f19908116603f01168101908282118183101715620003dd57620003dd6200036d565b81604052838152602092508683858801011115620003fa57600080fd5b600091505b838210156200041e5785820183015181830184015290820190620003ff565b83821115620004305760008385830101525b9695505050505050565b6000806000606084860312156200045057600080fd5b83516001600160401b03808211156200046857600080fd5b620004768783880162000383565b945060208601519150808211156200048d57600080fd5b506200049c8682870162000383565b604086015190935090506001600160a01b0381168114620004bc57600080fd5b809150509250925092565b600061ffff808316818103620004ed57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b600181811c908216806200050c57607f821691505b6020821081036200052d57634e487b7160e01b600052602260045260246000fd5b50919050565b61333980620005436000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80636352211e1161010f578063a22cb465116100a2578063c30f4a5a11610071578063c30f4a5a14610444578063c87b56dd14610457578063e985e9c51461046a578063f2fde38b146104a657600080fd5b8063a22cb46514610402578063b668908f14610415578063b88d4fde14610428578063ba829d711461043b57600080fd5b80638da5cb5b116100de5780638da5cb5b146103a057806390cd38ba146103b157806395d89b41146103d1578063992924a6146103d957600080fd5b80636352211e1461035f5780636f596eab1461037257806370a0823114610385578063715018a61461039857600080fd5b80632f745c591161018757806342842e0e1161015657806342842e0e1461031357806342966c68146103265780634f6ccce71461033957806360d03d4f1461034c57600080fd5b80632f745c59146102cd578063379607f5146102e05780633ef0410f146102f357806340a3d2461461030657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806329da5077146102975780632e203e6d146102ba57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612cf4565b6104b9565b60405190151581526020015b60405180910390f35b6102256104ca565b6040516102149190612d69565b610245610240366004612d7c565b61055c565b6040516001600160a01b039091168152602001610214565b61027061026b366004612daa565b610583565b005b6008545b604051908152602001610214565b610270610292366004612dd6565b61069d565b6102086102a5366004612d7c565b60126020526000908152604090205460ff1681565b6102706102c8366004612e25565b610b0d565b6102766102db366004612daa565b610b28565b6102706102ee366004612d7c565b610bbe565b610276610301366004612daa565b610ed0565b600c546102089060ff1681565b610270610321366004612dd6565b610f01565b610270610334366004612d7c565b61133a565b610276610347366004612d7c565b611346565b600e54610245906001600160a01b031681565b61024561036d366004612d7c565b6113d9565b610270610380366004612e42565b611439565b610276610393366004612e42565b6114d2565b610270611558565b600a546001600160a01b0316610245565b6103c46103bf366004612e42565b61156c565b6040516102149190612e5f565b6102256115d8565b6102456103e7366004612d7c565b6002602052600090815260409020546001600160a01b031681565b610270610410366004612ea3565b6115e7565b610270610423366004612d7c565b6115f2565b610270610436366004612f68565b611635565b61027660105481565b610270610452366004612fe8565b611aa8565b610225610465366004612d7c565b611ac3565b610208610478366004613031565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104b4366004612e42565b611b2a565b60006104c482611ba0565b92915050565b6060600080546104d99061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546105059061305f565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611bc5565b506000908152600460205260409020546001600160a01b031690565b600061058e826113d9565b9050806001600160a01b0316836001600160a01b0316036106005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061061c575061061c8133610478565b61068e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105f7565b6106988383611c24565b505050565b826daaeb6d7670e522a718067333cd4e3b1561097357336001600160a01b0382160361085e576106ce335b83611c92565b6106ea5760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b03851660009081526011602052604090205481101561084d576001600160a01b038516600090815260116020526040902080548491908390811061073a5761073a6130ed565b90600052602060002001540361083b576001600160a01b0385166000908152601160205260409020805461077090600190613119565b81548110610780576107806130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107c1576107c16130ed565b60009182526020808320909101929092556001600160a01b03871681526011909152604090208054806107f6576107f6613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561084d565b8061084581613146565b9150506106ed565b50610859848484611d11565b610b07565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d1919061315f565b80156109545750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610954919061315f565b61097357604051633b79c77360e21b81523360048201526024016105f7565b61097c336106c8565b6109985760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b038516600090815260116020526040902054811015610afb576001600160a01b03851660009081526011602052604090208054849190839081106109e8576109e86130ed565b906000526020600020015403610ae9576001600160a01b03851660009081526011602052604090208054610a1e90600190613119565b81548110610a2e57610a2e6130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6f57610a6f6130ed565b60009182526020808320909101929092556001600160a01b0387168152601190915260409020805480610aa457610aa4613130565b6000828152602080822083016000199081018390559092019092556001600160a01b038616825260118152604082208054600181018255908352912001839055610afb565b80610af381613146565b91505061099b565b50610b07848484611d11565b50505050565b610b15611e82565b600c805460ff1916911515919091179055565b6000610b33836114d2565b8210610b955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff161515600114610c155760405162461bcd60e51b815260206004820152601860248201527f4d757369635669616c3a20546f67676c65206973206f6666000000000000000060448201526064016105f7565b601054600003610c675760405162461bcd60e51b815260206004820152601a60248201527f4d757369635669616c3a2053657420726576656c2054696d657200000000000060448201526064016105f7565b6010544211610cc65760405162461bcd60e51b815260206004820152602560248201527f4d757369635669616c3a2052656465656d20686173206e6f742073746172746560448201526419081e595d60da1b60648201526084016105f7565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d33919061317c565b6001600160a01b031614610da05760405162461bcd60e51b815260206004820152602e60248201527f4d757369635669616c3a20596f7520617265206e6f7420746865206f776e657260448201526d081bd988141a185cd94c8813919560921b60648201526084016105f7565b60008181526012602052604090205460ff1615610e155760405162461bcd60e51b815260206004820152602d60248201527f4d757369635669616c3a204e465420616c726561647920636c61696d6564206660448201526c37b9103a3434b9903a37b5b2b760991b60648201526084016105f7565b600d54600003610e7a5760405162461bcd60e51b815260206004820152602a60248201527f4d757369635669616c3a20416c6c204e465420686173206265656e20616c726560448201526918591e481b5a5b9d195960b21b60648201526084016105f7565b6000610e84611edc565b6000838152601260209081526040808320805460ff1916600190811790915533808552601184529184208054918201815584529190922001829055909150610ecc9082612000565b5050565b60116020528160005260406000208181548110610eec57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b156111bb57336001600160a01b038216036110a65760005b6001600160a01b03851660009081526011602052604090205481101561108a576001600160a01b0385166000908152601160205260409020805484919083908110610f7757610f776130ed565b906000526020600020015403611078576001600160a01b03851660009081526011602052604090208054610fad90600190613119565b81548110610fbd57610fbd6130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610ffe57610ffe6130ed565b60009182526020808320909101929092556001600160a01b038716815260119091526040902080548061103357611033613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561108a565b8061108281613146565b915050610f2a565b5061085984848460405180602001604052806000815250611635565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061315f565b801561119c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119c919061315f565b6111bb57604051633b79c77360e21b81523360048201526024016105f7565b60005b6001600160a01b03851660009081526011602052604090205481101561131e576001600160a01b038516600090815260116020526040902080548491908390811061120b5761120b6130ed565b90600052602060002001540361130c576001600160a01b0385166000908152601160205260409020805461124190600190613119565b81548110611251576112516130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110611292576112926130ed565b60009182526020808320909101929092556001600160a01b03871681526011909152604090208054806112c7576112c7613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561131e565b8061131681613146565b9150506111be565b50610b0784848460405180602001604052806000815250611635565b6113438161201a565b50565b600061135160085490565b82106113b45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f7565b600882815481106113c7576113c76130ed565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104c45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b611441611e82565b6001600160a01b0381166114b05760405162461bcd60e51b815260206004820152603060248201527f4d757369635669616c3a2050686173653320616464726573732063616e6e6f7460448201526f206265207a65726f204164647265737360801b60648201526084016105f7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661153c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105f7565b506001600160a01b031660009081526003602052604090205490565b611560611e82565b61156a60006121da565b565b6001600160a01b0381166000908152601160209081526040918290208054835181840281018401909452808452606093928301828280156115cc57602002820191906000526020600020905b8154815260200190600101908083116115b8575b50505050509050919050565b6060600180546104d99061305f565b610ecc33838361222c565b6115fa611e82565b60108190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561190c57336001600160a01b038216036117f757611666335b84611c92565b6116825760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b0386166000908152601160205260409020548110156117e5576001600160a01b03861660009081526011602052604090208054859190839081106116d2576116d26130ed565b9060005260206000200154036117d3576001600160a01b0386166000908152601160205260409020805461170890600190613119565b81548110611718576117186130ed565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611759576117596130ed565b60009182526020808320909101929092556001600160a01b038816815260119091526040902080548061178e5761178e613130565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556117e5565b806117dd81613146565b915050611685565b506117f2858585856122fa565b611aa1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186a919061315f565b80156118ed5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed919061315f565b61190c57604051633b79c77360e21b81523360048201526024016105f7565b61191533611660565b6119315760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b038616600090815260116020526040902054811015611a94576001600160a01b0386166000908152601160205260409020805485919083908110611981576119816130ed565b906000526020600020015403611a82576001600160a01b038616600090815260116020526040902080546119b790600190613119565b815481106119c7576119c76130ed565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611a0857611a086130ed565b60009182526020808320909101929092556001600160a01b0388168152601190915260409020805480611a3d57611a3d613130565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055611a94565b80611a8c81613146565b915050611934565b50611aa1858585856122fa565b5050505050565b611ab0611e82565b8051610ecc90600f906020840190612c4e565b6060611ace82611bc5565b6000611ad861232d565b90506000815111611af85760405180602001604052806000815250611b23565b80611b028461233c565b604051602001611b13929190613199565b6040516020818303038152906040525b9392505050565b611b32611e82565b6001600160a01b038116611b975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b611343816121da565b60006001600160e01b0319821663780e9d6360e01b14806104c457506104c4826123cf565b6000818152600260205260409020546001600160a01b03166113435760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c59826113d9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c9e836113d9565b9050806001600160a01b0316846001600160a01b03161480611ce557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611d095750836001600160a01b0316611cfe8461055c565b6001600160a01b0316145b949350505050565b826001600160a01b0316611d24826113d9565b6001600160a01b031614611d4a5760405162461bcd60e51b81526004016105f7906131d8565b6001600160a01b038216611dac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b611db9838383600161241f565b826001600160a01b0316611dcc826113d9565b6001600160a01b031614611df25760405162461bcd60e51b81526004016105f7906131d8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b0316331461156a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600d546000908190611eec61242b565b611ef6919061321d565b9050600d8181548110611f0b57611f0b6130ed565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169150600d6001600d80549050611f499190613119565b81548110611f5957611f596130ed565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600d8281548110611f9057611f906130ed565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600d805480611fd057611fd0613130565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555090565b610ecc8282604051806020016040528060008152506124ba565b6120243382611c92565b61208a5760405162461bcd60e51b815260206004820152603160248201527f4d757369635669616c3a2063616c6c6572206973206e6f7420746f6b656e206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105f7565b6000612095826113d9565b905060005b6001600160a01b0382166000908152601160205260409020548110156121d0576001600160a01b03821660009081526011602052604090208054849190839081106120e7576120e76130ed565b9060005260206000200154036121be576001600160a01b0382166000908152601160205260409020805461211d90600190613119565b8154811061212d5761212d6130ed565b906000526020600020015460116000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061216e5761216e6130ed565b60009182526020808320909101929092556001600160a01b03841681526011909152604090208054806121a3576121a3613130565b600190038181906000526020600020016000905590556121d0565b806121c881613146565b91505061209a565b50610ecc826124ed565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361228d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612305848484611d11565b61231184848484612590565b610b075760405162461bcd60e51b81526004016105f79061323f565b6060600f80546104d99061305f565b6060600061234983612691565b600101905060008167ffffffffffffffff81111561236957612369612edc565b6040519080825280601f01601f191660200182016040528015612393576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461239d57509392505050565b60006001600160e01b031982166380ac58cd60e01b148061240057506001600160e01b03198216635b5e139f60e01b145b806104c457506301ffc9a760e01b6001600160e01b03198316146104c4565b610b0784848484612769565b600080612437600b5490565b9050333a434244612449600184613119565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e08201526101008101829052610120016040516020818303038152906040528051906020012060001c91506124b6600b80546001019055565b5090565b6124c4838361289d565b6124d16000848484612590565b6106985760405162461bcd60e51b81526004016105f79061323f565b60006124f8826113d9565b905061250881600084600161241f565b612511826113d9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b1561268657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125d4903390899088908890600401613291565b6020604051808303816000875af192505050801561260f575060408051601f3d908101601f1916820190925261260c918101906132ce565b60015b61266c573d80801561263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b5080516000036126645760405162461bcd60e51b81526004016105f79061323f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d09565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106126d05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106126fc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061271a57662386f26fc10000830492506010015b6305f5e1008310612732576305f5e100830492506008015b612710831061274657612710830492506004015b60648310612758576064830492506002015b600a83106104c45760010192915050565b61277584848484612a36565b60018111156127e45760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105f7565b816001600160a01b0385166128405761283b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612863565b836001600160a01b0316856001600160a01b031614612863576128638582612abe565b6001600160a01b03841661287a576117f281612b5b565b846001600160a01b0316846001600160a01b031614611aa157611aa18482612c0a565b6001600160a01b0382166128f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f7565b6000818152600260205260409020546001600160a01b0316156129585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b61296660008383600161241f565b6000818152600260205260409020546001600160a01b0316156129cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610b07576001600160a01b03841615612a7c576001600160a01b03841660009081526003602052604081208054839290612a76908490613119565b90915550505b6001600160a01b03831615610b07576001600160a01b03831660009081526003602052604081208054839290612ab39084906132eb565b909155505050505050565b60006001612acb846114d2565b612ad59190613119565b600083815260076020526040902054909150808214612b28576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b6d90600190613119565b60008381526009602052604081205460088054939450909284908110612b9557612b956130ed565b906000526020600020015490508060088381548110612bb657612bb66130ed565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bee57612bee613130565b6001900381819060005260206000200160009055905550505050565b6000612c15836114d2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c5a9061305f565b90600052602060002090601f016020900481019282612c7c5760008555612cc2565b82601f10612c9557805160ff1916838001178555612cc2565b82800160010185558215612cc2579182015b82811115612cc2578251825591602001919060010190612ca7565b506124b69291505b808211156124b65760008155600101612cca565b6001600160e01b03198116811461134357600080fd5b600060208284031215612d0657600080fd5b8135611b2381612cde565b60005b83811015612d2c578181015183820152602001612d14565b83811115610b075750506000910152565b60008151808452612d55816020860160208601612d11565b601f01601f19169290920160200192915050565b602081526000611b236020830184612d3d565b600060208284031215612d8e57600080fd5b5035919050565b6001600160a01b038116811461134357600080fd5b60008060408385031215612dbd57600080fd5b8235612dc881612d95565b946020939093013593505050565b600080600060608486031215612deb57600080fd5b8335612df681612d95565b92506020840135612e0681612d95565b929592945050506040919091013590565b801515811461134357600080fd5b600060208284031215612e3757600080fd5b8135611b2381612e17565b600060208284031215612e5457600080fd5b8135611b2381612d95565b6020808252825182820181905260009190848201906040850190845b81811015612e9757835183529284019291840191600101612e7b565b50909695505050505050565b60008060408385031215612eb657600080fd5b8235612ec181612d95565b91506020830135612ed181612e17565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612f0d57612f0d612edc565b604051601f8501601f19908116603f01168101908282118183101715612f3557612f35612edc565b81604052809350858152868686011115612f4e57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612f7e57600080fd5b8435612f8981612d95565b93506020850135612f9981612d95565b925060408501359150606085013567ffffffffffffffff811115612fbc57600080fd5b8501601f81018713612fcd57600080fd5b612fdc87823560208401612ef2565b91505092959194509250565b600060208284031215612ffa57600080fd5b813567ffffffffffffffff81111561301157600080fd5b8201601f8101841361302257600080fd5b611d0984823560208401612ef2565b6000806040838503121561304457600080fd5b823561304f81612d95565b91506020830135612ed181612d95565b600181811c9082168061307357607f821691505b60208210810361309357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526034908201527f4d757369635669616c3a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561312b5761312b613103565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161315857613158613103565b5060010190565b60006020828403121561317157600080fd5b8151611b2381612e17565b60006020828403121561318e57600080fd5b8151611b2381612d95565b600083516131ab818460208801612d11565b8351908301906131bf818360208801612d11565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60008261323a57634e487b7160e01b600052601260045260246000fd5b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132c490830184612d3d565b9695505050505050565b6000602082840312156132e057600080fd5b8151611b2381612cde565b600082198211156132fe576132fe613103565b50019056fea26469706673582212201f05388359ee221ef1e6b06d77230ad88b5ecc20e1214d50c84ecabc1a0e383e64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b000000000000000000000000000000000000000000000000000000000000001e42264f20444e4120436f6c6c656374696f6e3a20417564696f205669616c00000000000000000000000000000000000000000000000000000000000000000005424f415544000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80636352211e1161010f578063a22cb465116100a2578063c30f4a5a11610071578063c30f4a5a14610444578063c87b56dd14610457578063e985e9c51461046a578063f2fde38b146104a657600080fd5b8063a22cb46514610402578063b668908f14610415578063b88d4fde14610428578063ba829d711461043b57600080fd5b80638da5cb5b116100de5780638da5cb5b146103a057806390cd38ba146103b157806395d89b41146103d1578063992924a6146103d957600080fd5b80636352211e1461035f5780636f596eab1461037257806370a0823114610385578063715018a61461039857600080fd5b80632f745c591161018757806342842e0e1161015657806342842e0e1461031357806342966c68146103265780634f6ccce71461033957806360d03d4f1461034c57600080fd5b80632f745c59146102cd578063379607f5146102e05780633ef0410f146102f357806340a3d2461461030657600080fd5b806318160ddd116101c357806318160ddd1461027257806323b872dd1461028457806329da5077146102975780632e203e6d146102ba57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612cf4565b6104b9565b60405190151581526020015b60405180910390f35b6102256104ca565b6040516102149190612d69565b610245610240366004612d7c565b61055c565b6040516001600160a01b039091168152602001610214565b61027061026b366004612daa565b610583565b005b6008545b604051908152602001610214565b610270610292366004612dd6565b61069d565b6102086102a5366004612d7c565b60126020526000908152604090205460ff1681565b6102706102c8366004612e25565b610b0d565b6102766102db366004612daa565b610b28565b6102706102ee366004612d7c565b610bbe565b610276610301366004612daa565b610ed0565b600c546102089060ff1681565b610270610321366004612dd6565b610f01565b610270610334366004612d7c565b61133a565b610276610347366004612d7c565b611346565b600e54610245906001600160a01b031681565b61024561036d366004612d7c565b6113d9565b610270610380366004612e42565b611439565b610276610393366004612e42565b6114d2565b610270611558565b600a546001600160a01b0316610245565b6103c46103bf366004612e42565b61156c565b6040516102149190612e5f565b6102256115d8565b6102456103e7366004612d7c565b6002602052600090815260409020546001600160a01b031681565b610270610410366004612ea3565b6115e7565b610270610423366004612d7c565b6115f2565b610270610436366004612f68565b611635565b61027660105481565b610270610452366004612fe8565b611aa8565b610225610465366004612d7c565b611ac3565b610208610478366004613031565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102706104b4366004612e42565b611b2a565b60006104c482611ba0565b92915050565b6060600080546104d99061305f565b80601f01602080910402602001604051908101604052809291908181526020018280546105059061305f565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b600061056782611bc5565b506000908152600460205260409020546001600160a01b031690565b600061058e826113d9565b9050806001600160a01b0316836001600160a01b0316036106005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061061c575061061c8133610478565b61068e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105f7565b6106988383611c24565b505050565b826daaeb6d7670e522a718067333cd4e3b1561097357336001600160a01b0382160361085e576106ce335b83611c92565b6106ea5760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b03851660009081526011602052604090205481101561084d576001600160a01b038516600090815260116020526040902080548491908390811061073a5761073a6130ed565b90600052602060002001540361083b576001600160a01b0385166000908152601160205260409020805461077090600190613119565b81548110610780576107806130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106107c1576107c16130ed565b60009182526020808320909101929092556001600160a01b03871681526011909152604090208054806107f6576107f6613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561084d565b8061084581613146565b9150506106ed565b50610859848484611d11565b610b07565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d1919061315f565b80156109545750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610954919061315f565b61097357604051633b79c77360e21b81523360048201526024016105f7565b61097c336106c8565b6109985760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b038516600090815260116020526040902054811015610afb576001600160a01b03851660009081526011602052604090208054849190839081106109e8576109e86130ed565b906000526020600020015403610ae9576001600160a01b03851660009081526011602052604090208054610a1e90600190613119565b81548110610a2e57610a2e6130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610a6f57610a6f6130ed565b60009182526020808320909101929092556001600160a01b0387168152601190915260409020805480610aa457610aa4613130565b6000828152602080822083016000199081018390559092019092556001600160a01b038616825260118152604082208054600181018255908352912001839055610afb565b80610af381613146565b91505061099b565b50610b07848484611d11565b50505050565b610b15611e82565b600c805460ff1916911515919091179055565b6000610b33836114d2565b8210610b955760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460ff161515600114610c155760405162461bcd60e51b815260206004820152601860248201527f4d757369635669616c3a20546f67676c65206973206f6666000000000000000060448201526064016105f7565b601054600003610c675760405162461bcd60e51b815260206004820152601a60248201527f4d757369635669616c3a2053657420726576656c2054696d657200000000000060448201526064016105f7565b6010544211610cc65760405162461bcd60e51b815260206004820152602560248201527f4d757369635669616c3a2052656465656d20686173206e6f742073746172746560448201526419081e595d60da1b60648201526084016105f7565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d33919061317c565b6001600160a01b031614610da05760405162461bcd60e51b815260206004820152602e60248201527f4d757369635669616c3a20596f7520617265206e6f7420746865206f776e657260448201526d081bd988141a185cd94c8813919560921b60648201526084016105f7565b60008181526012602052604090205460ff1615610e155760405162461bcd60e51b815260206004820152602d60248201527f4d757369635669616c3a204e465420616c726561647920636c61696d6564206660448201526c37b9103a3434b9903a37b5b2b760991b60648201526084016105f7565b600d54600003610e7a5760405162461bcd60e51b815260206004820152602a60248201527f4d757369635669616c3a20416c6c204e465420686173206265656e20616c726560448201526918591e481b5a5b9d195960b21b60648201526084016105f7565b6000610e84611edc565b6000838152601260209081526040808320805460ff1916600190811790915533808552601184529184208054918201815584529190922001829055909150610ecc9082612000565b5050565b60116020528160005260406000208181548110610eec57600080fd5b90600052602060002001600091509150505481565b826daaeb6d7670e522a718067333cd4e3b156111bb57336001600160a01b038216036110a65760005b6001600160a01b03851660009081526011602052604090205481101561108a576001600160a01b0385166000908152601160205260409020805484919083908110610f7757610f776130ed565b906000526020600020015403611078576001600160a01b03851660009081526011602052604090208054610fad90600190613119565b81548110610fbd57610fbd6130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110610ffe57610ffe6130ed565b60009182526020808320909101929092556001600160a01b038716815260119091526040902080548061103357611033613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561108a565b8061108281613146565b915050610f2a565b5061085984848460405180602001604052806000815250611635565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611119919061315f565b801561119c5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119c919061315f565b6111bb57604051633b79c77360e21b81523360048201526024016105f7565b60005b6001600160a01b03851660009081526011602052604090205481101561131e576001600160a01b038516600090815260116020526040902080548491908390811061120b5761120b6130ed565b90600052602060002001540361130c576001600160a01b0385166000908152601160205260409020805461124190600190613119565b81548110611251576112516130ed565b906000526020600020015460116000876001600160a01b03166001600160a01b031681526020019081526020016000208281548110611292576112926130ed565b60009182526020808320909101929092556001600160a01b03871681526011909152604090208054806112c7576112c7613130565b6000828152602080822083016000199081018390559092019092556001600160a01b03861682526011815260408220805460018101825590835291200183905561131e565b8061131681613146565b9150506111be565b50610b0784848460405180602001604052806000815250611635565b6113438161201a565b50565b600061135160085490565b82106113b45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f7565b600882815481106113c7576113c76130ed565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104c45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b611441611e82565b6001600160a01b0381166114b05760405162461bcd60e51b815260206004820152603060248201527f4d757369635669616c3a2050686173653320616464726573732063616e6e6f7460448201526f206265207a65726f204164647265737360801b60648201526084016105f7565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661153c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105f7565b506001600160a01b031660009081526003602052604090205490565b611560611e82565b61156a60006121da565b565b6001600160a01b0381166000908152601160209081526040918290208054835181840281018401909452808452606093928301828280156115cc57602002820191906000526020600020905b8154815260200190600101908083116115b8575b50505050509050919050565b6060600180546104d99061305f565b610ecc33838361222c565b6115fa611e82565b60108190556040518181527fbf2117473c528eb1701446fd671b6677cba6760cf865c5f1e65ed0db6f318a889060200160405180910390a150565b836daaeb6d7670e522a718067333cd4e3b1561190c57336001600160a01b038216036117f757611666335b84611c92565b6116825760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b0386166000908152601160205260409020548110156117e5576001600160a01b03861660009081526011602052604090208054859190839081106116d2576116d26130ed565b9060005260206000200154036117d3576001600160a01b0386166000908152601160205260409020805461170890600190613119565b81548110611718576117186130ed565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611759576117596130ed565b60009182526020808320909101929092556001600160a01b038816815260119091526040902080548061178e5761178e613130565b6000828152602080822083016000199081018390559092019092556001600160a01b0387168252601181526040822080546001810182559083529120018490556117e5565b806117dd81613146565b915050611685565b506117f2858585856122fa565b611aa1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611846573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186a919061315f565b80156118ed5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed919061315f565b61190c57604051633b79c77360e21b81523360048201526024016105f7565b61191533611660565b6119315760405162461bcd60e51b81526004016105f790613099565b60005b6001600160a01b038616600090815260116020526040902054811015611a94576001600160a01b0386166000908152601160205260409020805485919083908110611981576119816130ed565b906000526020600020015403611a82576001600160a01b038616600090815260116020526040902080546119b790600190613119565b815481106119c7576119c76130ed565b906000526020600020015460116000886001600160a01b03166001600160a01b031681526020019081526020016000208281548110611a0857611a086130ed565b60009182526020808320909101929092556001600160a01b0388168152601190915260409020805480611a3d57611a3d613130565b6000828152602080822083016000199081018390559092019092556001600160a01b038716825260118152604082208054600181018255908352912001849055611a94565b80611a8c81613146565b915050611934565b50611aa1858585856122fa565b5050505050565b611ab0611e82565b8051610ecc90600f906020840190612c4e565b6060611ace82611bc5565b6000611ad861232d565b90506000815111611af85760405180602001604052806000815250611b23565b80611b028461233c565b604051602001611b13929190613199565b6040516020818303038152906040525b9392505050565b611b32611e82565b6001600160a01b038116611b975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b611343816121da565b60006001600160e01b0319821663780e9d6360e01b14806104c457506104c4826123cf565b6000818152600260205260409020546001600160a01b03166113435760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105f7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c59826113d9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c9e836113d9565b9050806001600160a01b0316846001600160a01b03161480611ce557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611d095750836001600160a01b0316611cfe8461055c565b6001600160a01b0316145b949350505050565b826001600160a01b0316611d24826113d9565b6001600160a01b031614611d4a5760405162461bcd60e51b81526004016105f7906131d8565b6001600160a01b038216611dac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b611db9838383600161241f565b826001600160a01b0316611dcc826113d9565b6001600160a01b031614611df25760405162461bcd60e51b81526004016105f7906131d8565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b0316331461156a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600d546000908190611eec61242b565b611ef6919061321d565b9050600d8181548110611f0b57611f0b6130ed565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169150600d6001600d80549050611f499190613119565b81548110611f5957611f596130ed565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600d8281548110611f9057611f906130ed565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600d805480611fd057611fd0613130565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a021916905590555090565b610ecc8282604051806020016040528060008152506124ba565b6120243382611c92565b61208a5760405162461bcd60e51b815260206004820152603160248201527f4d757369635669616c3a2063616c6c6572206973206e6f7420746f6b656e206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016105f7565b6000612095826113d9565b905060005b6001600160a01b0382166000908152601160205260409020548110156121d0576001600160a01b03821660009081526011602052604090208054849190839081106120e7576120e76130ed565b9060005260206000200154036121be576001600160a01b0382166000908152601160205260409020805461211d90600190613119565b8154811061212d5761212d6130ed565b906000526020600020015460116000846001600160a01b03166001600160a01b03168152602001908152602001600020828154811061216e5761216e6130ed565b60009182526020808320909101929092556001600160a01b03841681526011909152604090208054806121a3576121a3613130565b600190038181906000526020600020016000905590556121d0565b806121c881613146565b91505061209a565b50610ecc826124ed565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361228d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612305848484611d11565b61231184848484612590565b610b075760405162461bcd60e51b81526004016105f79061323f565b6060600f80546104d99061305f565b6060600061234983612691565b600101905060008167ffffffffffffffff81111561236957612369612edc565b6040519080825280601f01601f191660200182016040528015612393576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461239d57509392505050565b60006001600160e01b031982166380ac58cd60e01b148061240057506001600160e01b03198216635b5e139f60e01b145b806104c457506301ffc9a760e01b6001600160e01b03198316146104c4565b610b0784848484612769565b600080612437600b5490565b9050333a434244612449600184613119565b604080516001600160a01b0390971660208801528601949094526060850192909252608084015260a08301524060c08201523060e08201526101008101829052610120016040516020818303038152906040528051906020012060001c91506124b6600b80546001019055565b5090565b6124c4838361289d565b6124d16000848484612590565b6106985760405162461bcd60e51b81526004016105f79061323f565b60006124f8826113d9565b905061250881600084600161241f565b612511826113d9565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b1561268657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125d4903390899088908890600401613291565b6020604051808303816000875af192505050801561260f575060408051601f3d908101601f1916820190925261260c918101906132ce565b60015b61266c573d80801561263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b5080516000036126645760405162461bcd60e51b81526004016105f79061323f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d09565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106126d05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106126fc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061271a57662386f26fc10000830492506010015b6305f5e1008310612732576305f5e100830492506008015b612710831061274657612710830492506004015b60648310612758576064830492506002015b600a83106104c45760010192915050565b61277584848484612a36565b60018111156127e45760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016105f7565b816001600160a01b0385166128405761283b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612863565b836001600160a01b0316856001600160a01b031614612863576128638582612abe565b6001600160a01b03841661287a576117f281612b5b565b846001600160a01b0316846001600160a01b031614611aa157611aa18482612c0a565b6001600160a01b0382166128f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f7565b6000818152600260205260409020546001600160a01b0316156129585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b61296660008383600161241f565b6000818152600260205260409020546001600160a01b0316156129cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f7565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001811115610b07576001600160a01b03841615612a7c576001600160a01b03841660009081526003602052604081208054839290612a76908490613119565b90915550505b6001600160a01b03831615610b07576001600160a01b03831660009081526003602052604081208054839290612ab39084906132eb565b909155505050505050565b60006001612acb846114d2565b612ad59190613119565b600083815260076020526040902054909150808214612b28576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b6d90600190613119565b60008381526009602052604081205460088054939450909284908110612b9557612b956130ed565b906000526020600020015490508060088381548110612bb657612bb66130ed565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bee57612bee613130565b6001900381819060005260206000200160009055905550505050565b6000612c15836114d2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612c5a9061305f565b90600052602060002090601f016020900481019282612c7c5760008555612cc2565b82601f10612c9557805160ff1916838001178555612cc2565b82800160010185558215612cc2579182015b82811115612cc2578251825591602001919060010190612ca7565b506124b69291505b808211156124b65760008155600101612cca565b6001600160e01b03198116811461134357600080fd5b600060208284031215612d0657600080fd5b8135611b2381612cde565b60005b83811015612d2c578181015183820152602001612d14565b83811115610b075750506000910152565b60008151808452612d55816020860160208601612d11565b601f01601f19169290920160200192915050565b602081526000611b236020830184612d3d565b600060208284031215612d8e57600080fd5b5035919050565b6001600160a01b038116811461134357600080fd5b60008060408385031215612dbd57600080fd5b8235612dc881612d95565b946020939093013593505050565b600080600060608486031215612deb57600080fd5b8335612df681612d95565b92506020840135612e0681612d95565b929592945050506040919091013590565b801515811461134357600080fd5b600060208284031215612e3757600080fd5b8135611b2381612e17565b600060208284031215612e5457600080fd5b8135611b2381612d95565b6020808252825182820181905260009190848201906040850190845b81811015612e9757835183529284019291840191600101612e7b565b50909695505050505050565b60008060408385031215612eb657600080fd5b8235612ec181612d95565b91506020830135612ed181612e17565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612f0d57612f0d612edc565b604051601f8501601f19908116603f01168101908282118183101715612f3557612f35612edc565b81604052809350858152868686011115612f4e57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612f7e57600080fd5b8435612f8981612d95565b93506020850135612f9981612d95565b925060408501359150606085013567ffffffffffffffff811115612fbc57600080fd5b8501601f81018713612fcd57600080fd5b612fdc87823560208401612ef2565b91505092959194509250565b600060208284031215612ffa57600080fd5b813567ffffffffffffffff81111561301157600080fd5b8201601f8101841361302257600080fd5b611d0984823560208401612ef2565b6000806040838503121561304457600080fd5b823561304f81612d95565b91506020830135612ed181612d95565b600181811c9082168061307357607f821691505b60208210810361309357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526034908201527f4d757369635669616c3a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561312b5761312b613103565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161315857613158613103565b5060010190565b60006020828403121561317157600080fd5b8151611b2381612e17565b60006020828403121561318e57600080fd5b8151611b2381612d95565b600083516131ab818460208801612d11565b8351908301906131bf818360208801612d11565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60008261323a57634e487b7160e01b600052601260045260246000fd5b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132c490830184612d3d565b9695505050505050565b6000602082840312156132e057600080fd5b8151611b2381612cde565b600082198211156132fe576132fe613103565b50019056fea26469706673582212201f05388359ee221ef1e6b06d77230ad88b5ecc20e1214d50c84ecabc1a0e383e64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b000000000000000000000000000000000000000000000000000000000000001e42264f20444e4120436f6c6c656374696f6e3a20417564696f205669616c00000000000000000000000000000000000000000000000000000000000000000005424f415544000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): B&O DNA Collection: Audio Vial
Arg [1] : _symbol (string): BOAUD
Arg [2] : _phase2Address (address): 0xDDA28e7812d2b9C837cDD86109d4261631651d9B

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000dda28e7812d2b9c837cdd86109d4261631651d9b
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [4] : 42264f20444e4120436f6c6c656374696f6e3a20417564696f205669616c0000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 424f415544000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69735:7244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76762:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;76762:212:0;;;;;;;;46806:100;;;:::i;:::-;;;;;;;:::i;48327:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;48327:171:0;1528:203:1;47845:416:0;;;;;;:::i;:::-;;:::i;:::-;;64180:113;64268:10;:17;64180:113;;;2338:25:1;;;2326:2;2311:18;64180:113:0;2192:177:1;73557:616:0;;;;;;:::i;:::-;;:::i;70129:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;72955:86;;;;;;:::i;:::-;;:::i;63848:256::-;;;;;;:::i;:::-;;:::i;72090:771::-;;;;;;:::i;:::-;;:::i;70076:46::-;;;;;;:::i;:::-;;:::i;69921:18::-;;;;;;;;;74181:514;;;;;;:::i;:::-;;:::i;75530:140::-;;;;;;:::i;:::-;;:::i;64370:233::-;;;;;;:::i;:::-;;:::i;69984:28::-;;;;;-1:-1:-1;;;;;69984:28:0;;;46516:223;;;;;;:::i;:::-;;:::i;73119:220::-;;;;;;:::i;:::-;;:::i;46247:207::-;;;;;;:::i;:::-;;:::i;24230:103::-;;;:::i;23582:87::-;23655:6;;-1:-1:-1;;;;;23655:6:0;23582:87;;75412:110;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46975:104::-;;;:::i;45185:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;45185:42:0;;;48570:155;;;;;;:::i;:::-;;:::i;73405:144::-;;;;;;:::i;:::-;;:::i;74703:649::-;;;;;;:::i;:::-;;:::i;70044:25::-;;;;;;76316:92;;;;;;:::i;:::-;;:::i;47150:290::-;;;;;;:::i;:::-;;:::i;48796:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;48917:25:0;;;48893:4;48917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48796:164;24488:201;;;;;;:::i;:::-;;:::i;76762:212::-;76901:4;76930:36;76954:11;76930:23;:36::i;:::-;76923:43;76762:212;-1:-1:-1;;76762:212:0:o;46806:100::-;46860:13;46893:5;46886:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46806:100;:::o;48327:171::-;48403:7;48423:23;48438:7;48423:14;:23::i;:::-;-1:-1:-1;48466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48466:24:0;;48327:171::o;47845:416::-;47926:13;47942:23;47957:7;47942:14;:23::i;:::-;47926:39;;47990:5;-1:-1:-1;;;;;47984:11:0;:2;-1:-1:-1;;;;;47984:11:0;;47976:57;;;;-1:-1:-1;;;47976:57:0;;7482:2:1;47976:57:0;;;7464:21:1;7521:2;7501:18;;;7494:30;7560:34;7540:18;;;7533:62;-1:-1:-1;;;7611:18:1;;;7604:31;7652:19;;47976:57:0;;;;;;;;;22213:10;-1:-1:-1;;;;;48068:21:0;;;;:62;;-1:-1:-1;48093:37:0;48110:5;22213:10;48796:164;:::i;48093:37::-;48046:173;;;;-1:-1:-1;;;48046:173:0;;7884:2:1;48046:173:0;;;7866:21:1;7923:2;7903:18;;;7896:30;7962:34;7942:18;;;7935:62;8033:31;8013:18;;;8006:59;8082:19;;48046:173:0;7682:425:1;48046:173:0;48232:21;48241:2;48245:7;48232:8;:21::i;:::-;47915:346;47845:416;;:::o;73557:616::-;73675:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;73700:41:::1;22213:10:::0;73719:12:::1;73733:7;73700:18;:41::i;:::-;73692:105;;;;-1:-1:-1::0;;;73692:105:0::1;;;;;;;:::i;:::-;73813:9;73808:319;-1:-1:-1::0;;;;;73828:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;73824:26;::::1;73808:319;;;-1:-1:-1::0;;;;;73876:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;73898:7;;73876:15;73892:1;;73876:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;73872:244:::1;;-1:-1:-1::0;;;;;73947:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;73963:22;;:26:::1;::::0;73988:1:::1;::::0;73963:26:::1;:::i;:::-;73947:43;;;;;;;;:::i;:::-;;;;;;;;;73926:9;:15;73936:4;-1:-1:-1::0;;;;;73926:15:0::1;-1:-1:-1::0;;;;;73926:15:0::1;;;;;;;;;;;;73942:1;73926:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74009:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74009:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74049:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74009:21:::1;74049:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74095:5:::1;;73872:244;73852:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73808:319;;;;74137:28;74147:4;74153:2;74157:7;74137:9;:28::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9411:34:1;4216:10:0;9461:18:1;;;9454:43;2600:42:0;;4160:40;;9346:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9411:34:1;-1:-1:-1;;;;;9481:15:1;;9461:18;;;9454:43;2600:42:0;;4256:40;;9346:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;73700:41:::1;22213:10:::0;73719:12:::1;22133:98:::0;73700:41:::1;73692:105;;;;-1:-1:-1::0;;;73692:105:0::1;;;;;;;:::i;:::-;73813:9;73808:319;-1:-1:-1::0;;;;;73828:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;73824:26;::::1;73808:319;;;-1:-1:-1::0;;;;;73876:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;73898:7;;73876:15;73892:1;;73876:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;73872:244:::1;;-1:-1:-1::0;;;;;73947:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;73963:22;;:26:::1;::::0;73988:1:::1;::::0;73963:26:::1;:::i;:::-;73947:43;;;;;;;;:::i;:::-;;;;;;;;;73926:9;:15;73936:4;-1:-1:-1::0;;;;;73926:15:0::1;-1:-1:-1::0;;;;;73926:15:0::1;;;;;;;;;;;;73942:1;73926:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74009:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74009:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74049:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74009:21:::1;74049:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74095:5:::1;;73872:244;73852:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73808:319;;;;74137:28;74147:4;74153:2;74157:7;74137:9;:28::i;:::-;73557:616:::0;;;;:::o;72955:86::-;23468:13;:11;:13::i;:::-;73017:6:::1;:16:::0;;-1:-1:-1;;73017:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;72955:86::o;63848:256::-;63945:7;63981:23;63998:5;63981:16;:23::i;:::-;63973:5;:31;63965:87;;;;-1:-1:-1;;;63965:87:0;;9960:2:1;63965:87:0;;;9942:21:1;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:1;;;10082:41;10140:19;;63965:87:0;9758:407:1;63965:87:0;-1:-1:-1;;;;;;64070:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;63848:256::o;72090:771::-;72154:6;;;;:14;;:6;:14;72146:51;;;;-1:-1:-1;;;72146:51:0;;10372:2:1;72146:51:0;;;10354:21:1;10411:2;10391:18;;;10384:30;10450:26;10430:18;;;10423:54;10494:18;;72146:51:0;10170:348:1;72146:51:0;72216:10;;72229:1;72216:14;72208:53;;;;-1:-1:-1;;;72208:53:0;;10725:2:1;72208:53:0;;;10707:21:1;10764:2;10744:18;;;10737:30;10803:28;10783:18;;;10776:56;10849:18;;72208:53:0;10523:350:1;72208:53:0;72298:10;;72280:15;:28;72272:78;;;;-1:-1:-1;;;72272:78:0;;11080:2:1;72272:78:0;;;11062:21:1;11119:2;11099:18;;;11092:30;11158:34;11138:18;;;11131:62;-1:-1:-1;;;11209:18:1;;;11202:35;11254:19;;72272:78:0;10878:401:1;72272:78:0;72377:13;;72369:43;;-1:-1:-1;;;72369:43:0;;;;;2338:25:1;;;72416:10:0;;-1:-1:-1;;;;;72377:13:0;;72369:30;;2311:18:1;;72369:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;72369:57:0;;72361:116;;;;-1:-1:-1;;;72361:116:0;;11742:2:1;72361:116:0;;;11724:21:1;11781:2;11761:18;;;11754:30;11820:34;11800:18;;;11793:62;-1:-1:-1;;;11871:18:1;;;11864:44;11925:19;;72361:116:0;11540:410:1;72361:116:0;72496:27;;;;:14;:27;;;;;;;;:36;72488:94;;;;-1:-1:-1;;;72488:94:0;;12157:2:1;72488:94:0;;;12139:21:1;12196:2;12176:18;;;12169:30;12235:34;12215:18;;;12208:62;-1:-1:-1;;;12286:18:1;;;12279:43;12339:19;;72488:94:0;11955:409:1;72488:94:0;72601:14;:21;72626:1;72601:26;72593:81;;;;-1:-1:-1;;;72593:81:0;;12571:2:1;72593:81:0;;;12553:21:1;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;-1:-1:-1;;;12700:18:1;;;12693:40;12750:19;;72593:81:0;12369:406:1;72593:81:0;72685:16;72704:15;:13;:15::i;:::-;72730:27;;;;:14;:27;;;;;;;;:34;;-1:-1:-1;;72730:34:0;72760:4;72730:34;;;;;;72785:10;72775:21;;;:9;:21;;;;;:36;;;;;;;;;;;;;;;;;72685:34;;-1:-1:-1;72822:31:0;;72685:34;72822:9;:31::i;:::-;72135:726;72090:771;:::o;70076:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74181:514::-;74301:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;74324:9:::1;74319:319;-1:-1:-1::0;;;;;74339:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74335:26;::::1;74319:319;;;-1:-1:-1::0;;;;;74387:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;74409:7;;74387:15;74403:1;;74387:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74383:244:::1;;-1:-1:-1::0;;;;;74458:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;74474:22;;:26:::1;::::0;74499:1:::1;::::0;74474:26:::1;:::i;:::-;74458:43;;;;;;;;:::i;:::-;;;;;;;;;74437:9;:15;74447:4;-1:-1:-1::0;;;;;74437:15:0::1;-1:-1:-1::0;;;;;74437:15:0::1;;;;;;;;;;;;74453:1;74437:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74520:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74520:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74560:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74520:21:::1;74560:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74606:5:::1;;74383:244;74363:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74319:319;;;;74648:39;74665:4;74671:2;74675:7;74648:39;;;;;;;;;;;::::0;:16:::1;:39::i;4015:85::-:0;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9411:34:1;4216:10:0;9461:18:1;;;9454:43;2600:42:0;;4160:40;;9346:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9411:34:1;-1:-1:-1;;;;;9481:15:1;;9461:18;;;9454:43;2600:42:0;;4256:40;;9346:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;74324:9:::1;74319:319;-1:-1:-1::0;;;;;74339:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74335:26;::::1;74319:319;;;-1:-1:-1::0;;;;;74387:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;74409:7;;74387:15;74403:1;;74387:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;74383:244:::1;;-1:-1:-1::0;;;;;74458:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;74474:22;;:26:::1;::::0;74499:1:::1;::::0;74474:26:::1;:::i;:::-;74458:43;;;;;;;;:::i;:::-;;;;;;;;;74437:9;:15;74447:4;-1:-1:-1::0;;;;;74437:15:0::1;-1:-1:-1::0;;;;;74437:15:0::1;;;;;;;;;;;;74453:1;74437:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;74520:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;74520:21:0;;;;;;;;;;;;-1:-1:-1;;;;;74560:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;74520:21:::1;74560:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;74606:5:::1;;74383:244;74363:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74319:319;;;;74648:39;74665:4;74671:2;74675:7;74648:39;;;;;;;;;;;::::0;:16:::1;:39::i;75530:140::-:0;75648:14;75654:7;75648:5;:14::i;:::-;75530:140;:::o;64370:233::-;64445:7;64481:30;64268:10;:17;;64180:113;64481:30;64473:5;:38;64465:95;;;;-1:-1:-1;;;64465:95:0;;12982:2:1;64465:95:0;;;12964:21:1;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:1;;;13104:42;13163:19;;64465:95:0;12780:408:1;64465:95:0;64578:10;64589:5;64578:17;;;;;;;;:::i;:::-;;;;;;;;;64571:24;;64370:233;;;:::o;46516:223::-;46588:7;51412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51412:16:0;;46652:56;;;;-1:-1:-1;;;46652:56:0;;13395:2:1;46652:56:0;;;13377:21:1;13434:2;13414:18;;;13407:30;-1:-1:-1;;;13453:18:1;;;13446:54;13517:18;;46652:56:0;13193:348:1;73119:220:0;23468:13;:11;:13::i;:::-;-1:-1:-1;;;;;73209:28:0;::::1;73201:89;;;::::0;-1:-1:-1;;;73201:89:0;;13748:2:1;73201:89:0::1;::::0;::::1;13730:21:1::0;13787:2;13767:18;;;13760:30;13826:34;13806:18;;;13799:62;-1:-1:-1;;;13877:18:1;;;13870:46;13933:19;;73201:89:0::1;13546:412:1::0;73201:89:0::1;73301:13;:30:::0;;-1:-1:-1;;;;;;73301:30:0::1;-1:-1:-1::0;;;;;73301:30:0;;;::::1;::::0;;;::::1;::::0;;73119:220::o;46247:207::-;46319:7;-1:-1:-1;;;;;46347:19:0;;46339:73;;;;-1:-1:-1;;;46339:73:0;;14165:2:1;46339:73:0;;;14147:21:1;14204:2;14184:18;;;14177:30;14243:34;14223:18;;;14216:62;-1:-1:-1;;;14294:18:1;;;14287:39;14343:19;;46339:73:0;13963:405:1;46339:73:0;-1:-1:-1;;;;;;46430:16:0;;;;;:9;:16;;;;;;;46247:207::o;24230:103::-;23468:13;:11;:13::i;:::-;24295:30:::1;24322:1;24295:18;:30::i;:::-;24230:103::o:0;75412:110::-;-1:-1:-1;;;;;75499:15:0;;;;;;:9;:15;;;;;;;;;75492:22;;;;;;;;;;;;;;;;;75464:16;;75492:22;;;75499:15;75492:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75412:110;;;:::o;46975:104::-;47031:13;47064:7;47057:14;;;;;:::i;48570:155::-;48665:52;22213:10;48698:8;48708;48665:18;:52::i;73405:144::-;23468:13;:11;:13::i;:::-;73478:10:::1;:24:::0;;;73518:23:::1;::::0;2338:25:1;;;73518:23:0::1;::::0;2326:2:1;2311:18;73518:23:0::1;;;;;;;73405:144:::0;:::o;74703:649::-;74842:4;2600:42;3740:43;:47;3736:699;;4027:10;-1:-1:-1;;;;;4019:18:0;;;4015:85;;74868:41:::1;22213:10:::0;74887:12:::1;74901:7;74868:18;:41::i;:::-;74860:105;;;;-1:-1:-1::0;;;74860:105:0::1;;;;;;;:::i;:::-;74981:9;74976:319;-1:-1:-1::0;;;;;74996:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74992:26;::::1;74976:319;;;-1:-1:-1::0;;;;;75044:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75066:7;;75044:15;75060:1;;75044:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;75040:244:::1;;-1:-1:-1::0;;;;;75115:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75131:22;;:26:::1;::::0;75156:1:::1;::::0;75131:26:::1;:::i;:::-;75115:43;;;;;;;;:::i;:::-;;;;;;;;;75094:9;:15;75104:4;-1:-1:-1::0;;;;;75094:15:0::1;-1:-1:-1::0;;;;;75094:15:0::1;;;;;;;;;;;;75110:1;75094:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75177:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75177:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75217:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75177:21:::1;75217:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75263:5:::1;;75040:244;75020:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74976:319;;;;75305:39;75319:4;75325:2;75329:7;75338:5;75305:13;:39::i;:::-;4078:7:::0;;4015:85;4160:67;;-1:-1:-1;;;4160:67:0;;4209:4;4160:67;;;9411:34:1;4216:10:0;9461:18:1;;;9454:43;2600:42:0;;4160:40;;9346:18:1;;4160:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4256:61:0;;-1:-1:-1;;;4256:61:0;;4305:4;4256:61;;;9411:34:1;-1:-1:-1;;;;;9481:15:1;;9461:18;;;9454:43;2600:42:0;;4256:40;;9346:18:1;;4256:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4114:310;;4378:30;;-1:-1:-1;;;4378:30:0;;4397:10;4378:30;;;1674:51:1;1647:18;;4378:30:0;1528:203:1;4114:310:0;74868:41:::1;22213:10:::0;74887:12:::1;22133:98:::0;74868:41:::1;74860:105;;;;-1:-1:-1::0;;;74860:105:0::1;;;;;;;:::i;:::-;74981:9;74976:319;-1:-1:-1::0;;;;;74996:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;74992:26;::::1;74976:319;;;-1:-1:-1::0;;;;;75044:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:18;;75066:7;;75044:15;75060:1;;75044:18;::::1;;;;;:::i;:::-;;;;;;;;;:29:::0;75040:244:::1;;-1:-1:-1::0;;;;;75115:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;75131:22;;:26:::1;::::0;75156:1:::1;::::0;75131:26:::1;:::i;:::-;75115:43;;;;;;;;:::i;:::-;;;;;;;;;75094:9;:15;75104:4;-1:-1:-1::0;;;;;75094:15:0::1;-1:-1:-1::0;;;;;75094:15:0::1;;;;;;;;;;;;75110:1;75094:18;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;:64:::0;;;;-1:-1:-1;;;;;75177:15:0;::::1;::::0;;:9:::1;:15:::0;;;;;;:21;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;75177:21:0;;;;;;;;;;;;-1:-1:-1;;;;;75217:13:0;::::1;::::0;;:9:::1;:13:::0;;;;;:27;;75177:21:::1;75217:27:::0;::::1;::::0;;;;;;;::::1;::::0;;;75263:5:::1;;75040:244;75020:3:::0;::::1;::::0;::::1;:::i;:::-;;;;74976:319;;;;75305:39;75319:4;75325:2;75329:7;75338:5;75305:13;:39::i;:::-;74703:649:::0;;;;;:::o;76316:92::-;23468:13;:11;:13::i;:::-;76387;;::::1;::::0;:3:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;47150:290::-:0;47223:13;47249:23;47264:7;47249:14;:23::i;:::-;47285:21;47309:10;:8;:10::i;:::-;47285:34;;47361:1;47343:7;47337:21;:25;:95;;;;;;;;;;;;;;;;;47389:7;47398:18;:7;:16;:18::i;:::-;47372:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47337:95;47330:102;47150:290;-1:-1:-1;;;47150:290:0:o;24488:201::-;23468:13;:11;:13::i;:::-;-1:-1:-1;;;;;24577:22:0;::::1;24569:73;;;::::0;-1:-1:-1;;;24569:73:0;;15217:2:1;24569:73:0::1;::::0;::::1;15199:21:1::0;15256:2;15236:18;;;15229:30;15295:34;15275:18;;;15268:62;-1:-1:-1;;;15346:18:1;;;15339:36;15392:19;;24569:73:0::1;15015:402:1::0;24569:73:0::1;24653:28;24672:8;24653:18;:28::i;63540:224::-:0;63642:4;-1:-1:-1;;;;;;63666:50:0;;-1:-1:-1;;;63666:50:0;;:90;;;63720:36;63744:11;63720:23;:36::i;58146:135::-;51814:4;51412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51412:16:0;58220:53;;;;-1:-1:-1;;;58220:53:0;;13395:2:1;58220:53:0;;;13377:21:1;13434:2;13414:18;;;13407:30;-1:-1:-1;;;13453:18:1;;;13446:54;13517:18;;58220:53:0;13193:348:1;57425:174:0;57500:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;57500:29:0;-1:-1:-1;;;;;57500:29:0;;;;;;;;:24;;57554:23;57500:24;57554:14;:23::i;:::-;-1:-1:-1;;;;;57545:46:0;;;;;;;;;;;57425:174;;:::o;52044:264::-;52137:4;52154:13;52170:23;52185:7;52170:14;:23::i;:::-;52154:39;;52223:5;-1:-1:-1;;;;;52212:16:0;:7;-1:-1:-1;;;;;52212:16:0;;:52;;;-1:-1:-1;;;;;;48917:25:0;;;48893:4;48917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52232:32;52212:87;;;;52292:7;-1:-1:-1;;;;;52268:31:0;:20;52280:7;52268:11;:20::i;:::-;-1:-1:-1;;;;;52268:31:0;;52212:87;52204:96;52044:264;-1:-1:-1;;;;52044:264:0:o;56043:1263::-;56202:4;-1:-1:-1;;;;;56175:31:0;:23;56190:7;56175:14;:23::i;:::-;-1:-1:-1;;;;;56175:31:0;;56167:81;;;;-1:-1:-1;;;56167:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56267:16:0;;56259:65;;;;-1:-1:-1;;;56259:65:0;;16030:2:1;56259:65:0;;;16012:21:1;16069:2;16049:18;;;16042:30;16108:34;16088:18;;;16081:62;-1:-1:-1;;;16159:18:1;;;16152:34;16203:19;;56259:65:0;15828:400:1;56259:65:0;56337:42;56358:4;56364:2;56368:7;56377:1;56337:20;:42::i;:::-;56509:4;-1:-1:-1;;;;;56482:31:0;:23;56497:7;56482:14;:23::i;:::-;-1:-1:-1;;;;;56482:31:0;;56474:81;;;;-1:-1:-1;;;56474:81:0;;;;;;;:::i;:::-;56627:24;;;;:15;:24;;;;;;;;56620:31;;-1:-1:-1;;;;;;56620:31:0;;;;;;-1:-1:-1;;;;;57103:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;57103:20:0;;;57138:13;;;;;;;;;:18;;56620:31;57138:18;;;57178:16;;;:7;:16;;;;;;:21;;;;;;;;;;57217:27;;56643:7;;57217:27;;;47915:346;47845:416;;:::o;23747:132::-;23655:6;;-1:-1:-1;;;;;23655:6:0;22213:10;23811:23;23803:68;;;;-1:-1:-1;;;23803:68:0;;16435:2:1;23803:68:0;;;16417:21:1;;;16454:18;;;16447:30;16513:34;16493:18;;;16486:62;16565:18;;23803:68:0;16233:356:1;71440:347:0;71562:14;:21;71482:20;;;;71536:23;:21;:23::i;:::-;:47;;;;:::i;:::-;71514:69;;71609:14;71624:11;71609:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;71594:42;;;;71677:14;71716:1;71692:14;:21;;;;:25;;;;:::i;:::-;71677:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;71647:14;71662:11;71647:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;71729:14;:20;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;71729:20:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71440:347:0;:::o;52650:110::-;52726:26;52736:2;52740:7;52726:26;;;;;;;;;;;;:9;:26::i;75678:584::-;75756:42;22213:10;75789:8;75756:18;:42::i;:::-;75748:104;;;;-1:-1:-1;;;75748:104:0;;17142:2:1;75748:104:0;;;17124:21:1;17181:2;17161:18;;;17154:30;17220:34;17200:18;;;17193:62;-1:-1:-1;;;17271:18:1;;;17264:47;17328:19;;75748:104:0;16940:413:1;75748:104:0;75863:18;75884:17;75892:8;75884:7;:17::i;:::-;75863:38;;75918:9;75913:310;-1:-1:-1;;;;;75933:21:0;;;;;;:9;:21;;;;;:28;75929:32;;75913:310;;;-1:-1:-1;;;;;75987:21:0;;;;;;:9;:21;;;;;:24;;76015:8;;75987:21;76009:1;;75987:24;;;;;;:::i;:::-;;;;;;;;;:36;75983:229;;-1:-1:-1;;;;;76071:21:0;;;;;;:9;:21;;;;;76093:28;;:32;;76124:1;;76093:32;:::i;:::-;76071:55;;;;;;;;:::i;:::-;;;;;;;;;76044:9;:21;76054:10;-1:-1:-1;;;;;76044:21:0;-1:-1:-1;;;;;76044:21:0;;;;;;;;;;;;76066:1;76044:24;;;;;;;;:::i;:::-;;;;;;;;;;;;:82;;;;-1:-1:-1;;;;;76145:21:0;;;;:9;:21;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;76191:5;;75983:229;75963:3;;;;:::i;:::-;;;;75913:310;;;;76233:21;76245:8;76233:11;:21::i;24849:191::-;24942:6;;;-1:-1:-1;;;;;24959:17:0;;;-1:-1:-1;;;;;;24959:17:0;;;;;;;24992:40;;24942:6;;;24959:17;24942:6;;24992:40;;24923:16;;24992:40;24912:128;24849:191;:::o;57742:315::-;57897:8;-1:-1:-1;;;;;57888:17:0;:5;-1:-1:-1;;;;;57888:17:0;;57880:55;;;;-1:-1:-1;;;57880:55:0;;17560:2:1;57880:55:0;;;17542:21:1;17599:2;17579:18;;;17572:30;17638:27;17618:18;;;17611:55;17683:18;;57880:55:0;17358:349:1;57880:55:0;-1:-1:-1;;;;;57946:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57946:46:0;;;;;;;;;;58008:41;;540::1;;;58008::0;;513:18:1;58008:41:0;;;;;;;57742:315;;;:::o;50892:313::-;51048:28;51058:4;51064:2;51068:7;51048:9;:28::i;:::-;51095:47;51118:4;51124:2;51128:7;51137:4;51095:22;:47::i;:::-;51087:110;;;;-1:-1:-1;;;51087:110:0;;;;;;;:::i;76416:96::-;76468:13;76501:3;76494:10;;;;;:::i;19560:716::-;19616:13;19667:14;19684:17;19695:5;19684:10;:17::i;:::-;19704:1;19684:21;19667:38;;19720:20;19754:6;19743:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19743:18:0;-1:-1:-1;19720:41:0;-1:-1:-1;19885:28:0;;;19901:2;19885:28;19942:288;-1:-1:-1;;19974:5:0;-1:-1:-1;;;20111:2:0;20100:14;;20095:30;19974:5;20082:44;20172:2;20163:11;;;-1:-1:-1;20193:21:0;19942:288;20193:21;-1:-1:-1;20251:6:0;19560:716;-1:-1:-1;;;19560:716:0:o;45878:305::-;45980:4;-1:-1:-1;;;;;;46017:40:0;;-1:-1:-1;;;46017:40:0;;:105;;-1:-1:-1;;;;;;;46074:48:0;;-1:-1:-1;;;46074:48:0;46017:105;:158;;;-1:-1:-1;;;;;;;;;;37420:40:0;;;46139:36;37311:157;76520:234;76690:56;76717:4;76723:2;76727:7;76736:9;76690:26;:56::i;70616:573::-;70666:20;70698:12;70713:16;:6;5754:14;;5662:114;70713:16;70698:31;-1:-1:-1;70838:10:0;70871:11;70905:12;70940:15;70978:16;71027;71042:1;70905:12;71027:16;:::i;:::-;70805:321;;;-1:-1:-1;;;;;18530:15:1;;;70805:321:0;;;18512:34:1;18562:18;;18555:34;;;;18605:18;;;18598:34;;;;18648:18;;;18641:34;18691:19;;;18684:35;71017:27:0;18735:19:1;;;18728:35;71075:4:0;18779:19:1;;;18772:44;18832:19;;;18825:35;;;18446:19;;70805:321:0;;;;;;;;;;;;70777:364;;;;;;70755:397;;70740:412;;71163:18;:6;5873:19;;5891:1;5873:19;;;5784:127;71163:18;70687:502;70616:573;:::o;52987:319::-;53116:18;53122:2;53126:7;53116:5;:18::i;:::-;53167:53;53198:1;53202:2;53206:7;53215:4;53167:22;:53::i;:::-;53145:153;;;;-1:-1:-1;;;53145:153:0;;;;;;;:::i;54923:783::-;54983:13;54999:23;55014:7;54999:14;:23::i;:::-;54983:39;;55035:51;55056:5;55071:1;55075:7;55084:1;55035:20;:51::i;:::-;55199:23;55214:7;55199:14;:23::i;:::-;55270:24;;;;:15;:24;;;;;;;;55263:31;;-1:-1:-1;;;;;;55263:31:0;;;;;;-1:-1:-1;;;;;55515:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;55515:21:0;;;55565:16;;;:7;:16;;;;;;55558:23;;;;;;;55599:36;55191:31;;-1:-1:-1;55286:7:0;;55599:36;;55270:24;;55599:36;72135:726;72090:771;:::o;58845:853::-;58999:4;-1:-1:-1;;;;;59020:13:0;;26575:19;:23;59016:675;;59056:71;;-1:-1:-1;;;59056:71:0;;-1:-1:-1;;;;;59056:36:0;;;;;:71;;22213:10;;59107:4;;59113:7;;59122:4;;59056:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59056:71:0;;;;;;;;-1:-1:-1;;59056:71:0;;;;;;;;;;;;:::i;:::-;;;59052:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59297:6;:13;59314:1;59297:18;59293:328;;59340:60;;-1:-1:-1;;;59340:60:0;;;;;;;:::i;59293:328::-;59571:6;59565:13;59556:6;59552:2;59548:15;59541:38;59052:584;-1:-1:-1;;;;;;59178:51:0;-1:-1:-1;;;59178:51:0;;-1:-1:-1;59171:58:0;;59016:675;-1:-1:-1;59675:4:0;58845:853;;;;;;:::o;16426:922::-;16479:7;;-1:-1:-1;;;16557:15:0;;16553:102;;-1:-1:-1;;;16593:15:0;;;-1:-1:-1;16637:2:0;16627:12;16553:102;16682:6;16673:5;:15;16669:102;;16718:6;16709:15;;;-1:-1:-1;16753:2:0;16743:12;16669:102;16798:6;16789:5;:15;16785:102;;16834:6;16825:15;;;-1:-1:-1;16869:2:0;16859:12;16785:102;16914:5;16905;:14;16901:99;;16949:5;16940:14;;;-1:-1:-1;16983:1:0;16973:11;16901:99;17027:5;17018;:14;17014:99;;17062:5;17053:14;;;-1:-1:-1;17096:1:0;17086:11;17014:99;17140:5;17131;:14;17127:99;;17175:5;17166:14;;;-1:-1:-1;17209:1:0;17199:11;17127:99;17253:5;17244;:14;17240:66;;17289:1;17279:11;17334:6;16426:922;-1:-1:-1;;16426:922:0:o;64677:915::-;64854:61;64881:4;64887:2;64891:12;64905:9;64854:26;:61::i;:::-;64944:1;64932:9;:13;64928:222;;;65075:63;;-1:-1:-1;;;65075:63:0;;19821:2:1;65075:63:0;;;19803:21:1;19860:2;19840:18;;;19833:30;19899:34;19879:18;;;19872:62;-1:-1:-1;;;19950:18:1;;;19943:51;20011:19;;65075:63:0;19619:417:1;64928:222:0;65180:12;-1:-1:-1;;;;;65209:18:0;;65205:187;;65244:40;65276:7;66419:10;:17;;66392:24;;;;:15;:24;;;;;:44;;;66447:24;;;;;;;;;;;;66315:164;65244:40;65205:187;;;65314:2;-1:-1:-1;;;;;65306:10:0;:4;-1:-1:-1;;;;;65306:10:0;;65302:90;;65333:47;65366:4;65372:7;65333:32;:47::i;:::-;-1:-1:-1;;;;;65406:16:0;;65402:183;;65439:45;65476:7;65439:36;:45::i;65402:183::-;65512:4;-1:-1:-1;;;;;65506:10:0;:2;-1:-1:-1;;;;;65506:10:0;;65502:83;;65533:40;65561:2;65565:7;65533:27;:40::i;53642:942::-;-1:-1:-1;;;;;53722:16:0;;53714:61;;;;-1:-1:-1;;;53714:61:0;;20243:2:1;53714:61:0;;;20225:21:1;;;20262:18;;;20255:30;20321:34;20301:18;;;20294:62;20373:18;;53714:61:0;20041:356:1;53714:61:0;51814:4;51412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51412:16:0;51838:31;53786:58;;;;-1:-1:-1;;;53786:58:0;;20604:2:1;53786:58:0;;;20586:21:1;20643:2;20623:18;;;20616:30;20682;20662:18;;;20655:58;20730:18;;53786:58:0;20402:352:1;53786:58:0;53857:48;53886:1;53890:2;53894:7;53903:1;53857:20;:48::i;:::-;51814:4;51412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51412:16:0;51838:31;53995:58;;;;-1:-1:-1;;;53995:58:0;;20604:2:1;53995:58:0;;;20586:21:1;20643:2;20623:18;;;20616:30;20682;20662:18;;;20655:58;20730:18;;53995:58:0;20402:352:1;53995:58:0;-1:-1:-1;;;;;54402:13:0;;;;;;:9;:13;;;;;;;;:18;;54419:1;54402:18;;;54444:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;54444:21:0;;;;;54483:33;54452:7;;54402:13;;54483:33;;54402:13;;54483:33;72135:726;72090:771;:::o;60430:410::-;60620:1;60608:9;:13;60604:229;;;-1:-1:-1;;;;;60642:18:0;;;60638:87;;-1:-1:-1;;;;;60681:15:0;;;;;;:9;:15;;;;;:28;;60700:9;;60681:15;:28;;60700:9;;60681:28;:::i;:::-;;;;-1:-1:-1;;60638:87:0;-1:-1:-1;;;;;60743:16:0;;;60739:83;;-1:-1:-1;;;;;60780:13:0;;;;;;:9;:13;;;;;:26;;60797:9;;60780:13;:26;;60797:9;;60780:26;:::i;:::-;;;;-1:-1:-1;;60430:410:0;;;;:::o;67106:988::-;67372:22;67422:1;67397:22;67414:4;67397:16;:22::i;:::-;:26;;;;:::i;:::-;67434:18;67455:26;;;:17;:26;;;;;;67372:51;;-1:-1:-1;67588:28:0;;;67584:328;;-1:-1:-1;;;;;67655:18:0;;67633:19;67655:18;;;:12;:18;;;;;;;;:34;;;;;;;;;67706:30;;;;;;:44;;;67823:30;;:17;:30;;;;;:43;;;67584:328;-1:-1:-1;68008:26:0;;;;:17;:26;;;;;;;;68001:33;;;-1:-1:-1;;;;;68052:18:0;;;;;:12;:18;;;;;:34;;;;;;;68045:41;67106:988::o;68389:1079::-;68667:10;:17;68642:22;;68667:21;;68687:1;;68667:21;:::i;:::-;68699:18;68720:24;;;:15;:24;;;;;;69093:10;:26;;68642:46;;-1:-1:-1;68720:24:0;;68642:46;;69093:26;;;;;;:::i;:::-;;;;;;;;;69071:48;;69157:11;69132:10;69143;69132:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;69237:28;;;:15;:28;;;;;;;:41;;;69409:24;;;;;69402:31;69444:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;68460:1008;;;68389:1079;:::o;65893:221::-;65978:14;65995:20;66012:2;65995:16;:20::i;:::-;-1:-1:-1;;;;;66026:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;66071:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;65893:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:118::-;2921:5;2914:13;2907:21;2900:5;2897:32;2887:60;;2943:1;2940;2933:12;2958:241;3014:6;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3122:9;3109:23;3141:28;3163:5;3141:28;:::i;3204:247::-;3263:6;3316:2;3304:9;3295:7;3291:23;3287:32;3284:52;;;3332:1;3329;3322:12;3284:52;3371:9;3358:23;3390:31;3415:5;3390:31;:::i;3456:632::-;3627:2;3679:21;;;3749:13;;3652:18;;;3771:22;;;3598:4;;3627:2;3850:15;;;;3824:2;3809:18;;;3598:4;3893:169;3907:6;3904:1;3901:13;3893:169;;;3968:13;;3956:26;;4037:15;;;;4002:12;;;;3929:1;3922:9;3893:169;;;-1:-1:-1;4079:3:1;;3456:632;-1:-1:-1;;;;;;3456:632:1:o;4093:382::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:31;4318:5;4293:31;:::i;:::-;4343:5;-1:-1:-1;4400:2:1;4385:18;;4372:32;4413:30;4372:32;4413:30;:::i;:::-;4462:7;4452:17;;;4093:382;;;;;:::o;4480:127::-;4541:10;4536:3;4532:20;4529:1;4522:31;4572:4;4569:1;4562:15;4596:4;4593:1;4586:15;4612:631;4676:5;4706:18;4747:2;4739:6;4736:14;4733:40;;;4753:18;;:::i;:::-;4828:2;4822:9;4796:2;4882:15;;-1:-1:-1;;4878:24:1;;;4904:2;4874:33;4870:42;4858:55;;;4928:18;;;4948:22;;;4925:46;4922:72;;;4974:18;;:::i;:::-;5014:10;5010:2;5003:22;5043:6;5034:15;;5073:6;5065;5058:22;5113:3;5104:6;5099:3;5095:16;5092:25;5089:45;;;5130:1;5127;5120:12;5089:45;5180:6;5175:3;5168:4;5160:6;5156:17;5143:44;5235:1;5228:4;5219:6;5211;5207:19;5203:30;5196:41;;;;4612:631;;;;;:::o;5248:794::-;5343:6;5351;5359;5367;5420:3;5408:9;5399:7;5395:23;5391:33;5388:53;;;5437:1;5434;5427:12;5388:53;5476:9;5463:23;5495:31;5520:5;5495:31;:::i;:::-;5545:5;-1:-1:-1;5602:2:1;5587:18;;5574:32;5615:33;5574:32;5615:33;:::i;:::-;5667:7;-1:-1:-1;5721:2:1;5706:18;;5693:32;;-1:-1:-1;5776:2:1;5761:18;;5748:32;5803:18;5792:30;;5789:50;;;5835:1;5832;5825:12;5789:50;5858:22;;5911:4;5903:13;;5899:27;-1:-1:-1;5889:55:1;;5940:1;5937;5930:12;5889:55;5963:73;6028:7;6023:2;6010:16;6005:2;6001;5997:11;5963:73;:::i;:::-;5953:83;;;5248:794;;;;;;;:::o;6047:450::-;6116:6;6169:2;6157:9;6148:7;6144:23;6140:32;6137:52;;;6185:1;6182;6175:12;6137:52;6225:9;6212:23;6258:18;6250:6;6247:30;6244:50;;;6290:1;6287;6280:12;6244:50;6313:22;;6366:4;6358:13;;6354:27;-1:-1:-1;6344:55:1;;6395:1;6392;6385:12;6344:55;6418:73;6483:7;6478:2;6465:16;6460:2;6456;6452:11;6418:73;:::i;6502:388::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;6686:9;6673:23;6705:31;6730:5;6705:31;:::i;:::-;6755:5;-1:-1:-1;6812:2:1;6797:18;;6784:32;6825:33;6784:32;6825:33;:::i;6895:380::-;6974:1;6970:12;;;;7017;;;7038:61;;7092:4;7084:6;7080:17;7070:27;;7038:61;7145:2;7137:6;7134:14;7114:18;7111:38;7108:161;;7191:10;7186:3;7182:20;7179:1;7172:31;7226:4;7223:1;7216:15;7254:4;7251:1;7244:15;7108:161;;6895:380;;;:::o;8112:416::-;8314:2;8296:21;;;8353:2;8333:18;;;8326:30;8392:34;8387:2;8372:18;;8365:62;-1:-1:-1;;;8458:2:1;8443:18;;8436:50;8518:3;8503:19;;8112:416::o;8533:127::-;8594:10;8589:3;8585:20;8582:1;8575:31;8625:4;8622:1;8615:15;8649:4;8646:1;8639:15;8665:127;8726:10;8721:3;8717:20;8714:1;8707:31;8757:4;8754:1;8747:15;8781:4;8778:1;8771:15;8797:125;8837:4;8865:1;8862;8859:8;8856:34;;;8870:18;;:::i;:::-;-1:-1:-1;8907:9:1;;8797:125::o;8927:127::-;8988:10;8983:3;8979:20;8976:1;8969:31;9019:4;9016:1;9009:15;9043:4;9040:1;9033:15;9059:135;9098:3;9119:17;;;9116:43;;9139:18;;:::i;:::-;-1:-1:-1;9186:1:1;9175:13;;9059:135::o;9508:245::-;9575:6;9628:2;9616:9;9607:7;9603:23;9599:32;9596:52;;;9644:1;9641;9634:12;9596:52;9676:9;9670:16;9695:28;9717:5;9695:28;:::i;11284:251::-;11354:6;11407:2;11395:9;11386:7;11382:23;11378:32;11375:52;;;11423:1;11420;11413:12;11375:52;11455:9;11449:16;11474:31;11499:5;11474:31;:::i;14373:637::-;14653:3;14691:6;14685:13;14707:53;14753:6;14748:3;14741:4;14733:6;14729:17;14707:53;:::i;:::-;14823:13;;14782:16;;;;14845:57;14823:13;14782:16;14879:4;14867:17;;14845:57;:::i;:::-;-1:-1:-1;;;14924:20:1;;14953:22;;;15002:1;14991:13;;14373:637;-1:-1:-1;;;;14373:637:1:o;15422:401::-;15624:2;15606:21;;;15663:2;15643:18;;;15636:30;15702:34;15697:2;15682:18;;15675:62;-1:-1:-1;;;15768:2:1;15753:18;;15746:35;15813:3;15798:19;;15422:401::o;16726:209::-;16758:1;16784;16774:132;;16828:10;16823:3;16819:20;16816:1;16809:31;16863:4;16860:1;16853:15;16891:4;16888:1;16881:15;16774:132;-1:-1:-1;16920:9:1;;16726:209::o;17712:414::-;17914:2;17896:21;;;17953:2;17933:18;;;17926:30;17992:34;17987:2;17972:18;;17965:62;-1:-1:-1;;;18058:2:1;18043:18;;18036:48;18116:3;18101:19;;17712:414::o;18871:489::-;-1:-1:-1;;;;;19140:15:1;;;19122:34;;19192:15;;19187:2;19172:18;;19165:43;19239:2;19224:18;;19217:34;;;19287:3;19282:2;19267:18;;19260:31;;;19065:4;;19308:46;;19334:19;;19326:6;19308:46;:::i;:::-;19300:54;18871:489;-1:-1:-1;;;;;;18871:489:1:o;19365:249::-;19434:6;19487:2;19475:9;19466:7;19462:23;19458:32;19455:52;;;19503:1;19500;19493:12;19455:52;19535:9;19529:16;19554:30;19578:5;19554:30;:::i;20759:128::-;20799:3;20830:1;20826:6;20823:1;20820:13;20817:39;;;20836:18;;:::i;:::-;-1:-1:-1;20872:9:1;;20759:128::o

Swarm Source

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