ETH Price: $2,579.71 (-2.52%)

Token

Elmofos (ELMF)
 

Overview

Max Total Supply

136 ELMF

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ELMF
0x8364e59631d012ead8a4db965df4f174da05a260
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:
ElmoNFTContract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// 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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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.9.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.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/elmo_nft.sol



pragma solidity ^0.8.4;




contract ElmoNFTContract is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI;
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant MAX_MINT_PER_TXN = 10;
    uint256 public constant MAX_MINT_PER_WALLET = 20;
    uint256 public constant NFT_PRICE = 0.3 ether;
    mapping(address => uint256) public walletNFTCount;
    mapping(uint256 => bool) private _mintedTokens;

    event Minted(address indexed to, uint256 indexed tokenId, uint256 amount);
    event Withdrawn(address indexed to, uint256 amount);

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {}

    function setBaseURI(string memory _newBaseURI) public onlyOwner() {
        baseURI = _newBaseURI;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : '';
    }

    function mint(uint256 num) public payable nonReentrant {
        uint256 supply = totalSupply();
        require(num <= MAX_MINT_PER_TXN, "You cannot mint more than 10 NFTs at once");
        require(supply + num <= MAX_SUPPLY, "Exceeds maximum NFT supply");
        require(NFT_PRICE * num <= msg.value, "Ether value sent is not correct");
        require(walletNFTCount[msg.sender] + num <= MAX_MINT_PER_WALLET, "Exceeds maximum NFT per wallet");

        for(uint256 i; i < num; i++) {
            uint256 newId = _generateRandomTokenId();
            require(_mintedTokens[newId] == false, "Token already minted");
            _mintedTokens[newId] = true;
            _safeMint(msg.sender, newId);
            emit Minted(msg.sender, newId, msg.value);
        }

        walletNFTCount[msg.sender] += num;

        // Refund excess Ether sent
        uint256 price = NFT_PRICE * num;
        if(msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function _generateRandomTokenId() internal view returns (uint256) {
        uint256 randomNum = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, totalSupply()))) % MAX_SUPPLY;
        while(_mintedTokens[randomNum]) {
            randomNum = (randomNum + 1) % MAX_SUPPLY;
        }
        return randomNum;
    }

    function walletNftBalance(address _walletAddress) public view returns(uint256) {
        return walletNFTCount[_walletAddress];
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for(uint256 i; i < tokenCount; i++){
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
        emit Withdrawn(msg.sender, balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletNFTCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"}],"name":"walletNftBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004cd338038062004cd38339818101604052810190620000379190620002f0565b818181600090816200004a9190620005c0565b5080600190816200005c9190620005c0565b5050506200007f620000736200008f60201b60201c565b6200009760201b60201c565b6001600b819055505050620006a7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001c6826200017b565b810181811067ffffffffffffffff82111715620001e857620001e76200018c565b5b80604052505050565b6000620001fd6200015d565b90506200020b8282620001bb565b919050565b600067ffffffffffffffff8211156200022e576200022d6200018c565b5b62000239826200017b565b9050602081019050919050565b60005b838110156200026657808201518184015260208101905062000249565b60008484015250505050565b600062000289620002838462000210565b620001f1565b905082815260208101848484011115620002a857620002a762000176565b5b620002b584828562000246565b509392505050565b600082601f830112620002d557620002d462000171565b5b8151620002e784826020860162000272565b91505092915050565b600080604083850312156200030a576200030962000167565b5b600083015167ffffffffffffffff8111156200032b576200032a6200016c565b5b6200033985828601620002bd565b925050602083015167ffffffffffffffff8111156200035d576200035c6200016c565b5b6200036b85828601620002bd565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c857607f821691505b602082108103620003de57620003dd62000380565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000409565b62000454868362000409565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004a16200049b62000495846200046c565b62000476565b6200046c565b9050919050565b6000819050919050565b620004bd8362000480565b620004d5620004cc82620004a8565b84845462000416565b825550505050565b600090565b620004ec620004dd565b620004f9818484620004b2565b505050565b5b81811015620005215762000515600082620004e2565b600181019050620004ff565b5050565b601f82111562000570576200053a81620003e4565b6200054584620003f9565b8101602085101562000555578190505b6200056d6200056485620003f9565b830182620004fe565b50505b505050565b600082821c905092915050565b6000620005956000198460080262000575565b1980831691505092915050565b6000620005b0838362000582565b9150826002028217905092915050565b620005cb8262000375565b67ffffffffffffffff811115620005e757620005e66200018c565b5b620005f38254620003af565b6200060082828562000525565b600060209050601f83116001811462000638576000841562000623578287015190505b6200062f8582620005a2565b8655506200069f565b601f1984166200064886620003e4565b60005b8281101562000672578489015182556001820191506020850194506020810190506200064b565b868310156200069257848901516200068e601f89168262000582565b8355505b6001600288020188555050505b505050505050565b61461c80620006b76000396000f3fe6080604052600436106101cd5760003560e01c8063676dd563116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461067d578063e8d652ce146106ba578063e985e9c5146106f7578063f2fde38b14610734576101cd565b8063a0712d68146105e4578063a22cb46514610600578063b19960e614610629578063b88d4fde14610654576101cd565b8063715018a6116100d1578063715018a61461053a5780638462151c146105515780638da5cb5b1461058e57806395d89b41146105b9576101cd565b8063676dd563146104a75780636c0360eb146104d257806370a08231146104fd576101cd565b806332cb6b0c1161016f5780634bc44f621161013e5780634bc44f62146103d95780634f6ccce71461040457806355f804b3146104415780636352211e1461046a576101cd565b806332cb6b0c146103315780633ccfd60b1461035c5780633ce416361461037357806342842e0e146103b0576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c2f565b61075d565b6040516102069190612c77565b60405180910390f35b34801561021b57600080fd5b506102246107d7565b6040516102319190612d22565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d7a565b610869565b60405161026e9190612de8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e2f565b6108af565b005b3480156102ac57600080fd5b506102b56109c6565b6040516102c29190612e7e565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612e99565b6109d3565b005b34801561030057600080fd5b5061031b60048036038101906103169190612e2f565b610a33565b6040516103289190612e7e565b60405180910390f35b34801561033d57600080fd5b50610346610ad8565b6040516103539190612e7e565b60405180910390f35b34801561036857600080fd5b50610371610ade565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612eec565b610b83565b6040516103a79190612e7e565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612e99565b610b9b565b005b3480156103e557600080fd5b506103ee610bbb565b6040516103fb9190612e7e565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612d7a565b610bc0565b6040516104389190612e7e565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061304e565b610c31565b005b34801561047657600080fd5b50610491600480360381019061048c9190612d7a565b610c4c565b60405161049e9190612de8565b60405180910390f35b3480156104b357600080fd5b506104bc610cd2565b6040516104c99190612e7e565b60405180910390f35b3480156104de57600080fd5b506104e7610cde565b6040516104f49190612d22565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612eec565b610d6c565b6040516105319190612e7e565b60405180910390f35b34801561054657600080fd5b5061054f610e23565b005b34801561055d57600080fd5b5061057860048036038101906105739190612eec565b610e37565b6040516105859190613155565b60405180910390f35b34801561059a57600080fd5b506105a3610f40565b6040516105b09190612de8565b60405180910390f35b3480156105c557600080fd5b506105ce610f6a565b6040516105db9190612d22565b60405180910390f35b6105fe60048036038101906105f99190612d7a565b610ffc565b005b34801561060c57600080fd5b50610627600480360381019061062291906131a3565b611376565b005b34801561063557600080fd5b5061063e61138c565b60405161064b9190612e7e565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613284565b611391565b005b34801561068957600080fd5b506106a4600480360381019061069f9190612d7a565b6113f3565b6040516106b19190612d22565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612eec565b6114a1565b6040516106ee9190612e7e565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613307565b6114ea565b60405161072b9190612c77565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612eec565b61157e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d057506107cf82611601565b5b9050919050565b6060600080546107e690613376565b80601f016020809104026020016040519081016040528092919081815260200182805461081290613376565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610874826116e3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ba82610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190613419565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094961172e565b73ffffffffffffffffffffffffffffffffffffffff16148061097857506109778161097261172e565b6114ea565b5b6109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906134ab565b60405180910390fd5b6109c18383611736565b505050565b6000600880549050905090565b6109e46109de61172e565b826117ef565b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061353d565b60405180910390fd5b610a2e838383611884565b505050565b6000610a3e83610d6c565b8210610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a76906135cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610ae6611b7d565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b31573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d582604051610b789190612e7e565b60405180910390a250565b600d6020528060005260406000206000915090505481565b610bb683838360405180602001604052806000815250611391565b505050565b600a81565b6000610bca6109c6565b8210610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290613661565b60405180910390fd5b60088281548110610c1f57610c1e613681565b5b90600052602060002001549050919050565b610c39611b7d565b80600c9081610c48919061385c565b5050565b600080610c5883611bfb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc09061397a565b60405180910390fd5b80915050919050565b670429d069189e000081565b600c8054610ceb90613376565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790613376565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613a0c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2b611b7d565b610e356000611c38565b565b60606000610e4483610d6c565b905060008103610ea057600067ffffffffffffffff811115610e6957610e68612f23565b5b604051908082528060200260200182016040528015610e975781602001602082028036833780820191505090505b50915050610f3b565b60008167ffffffffffffffff811115610ebc57610ebb612f23565b5b604051908082528060200260200182016040528015610eea5781602001602082028036833780820191505090505b50905060005b82811015610f3457610f028582610a33565b828281518110610f1557610f14613681565b5b6020026020010181815250508080610f2c90613a5b565b915050610ef0565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f7990613376565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa590613376565b8015610ff25780601f10610fc757610100808354040283529160200191610ff2565b820191906000526020600020905b815481529060010190602001808311610fd557829003601f168201915b5050505050905090565b611004611cfe565b600061100e6109c6565b9050600a821115611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613b15565b60405180910390fd5b6103e882826110639190613b35565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613bb5565b60405180910390fd5b3482670429d069189e00006110b99190613bd5565b11156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613c63565b60405180910390fd5b601482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111479190613b35565b1115611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613ccf565b60405180910390fd5b60005b8281101561129f57600061119d611d4d565b905060001515600e600083815260200190815260200160002060009054906101000a900460ff16151514611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613d3b565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061123c3382611de3565b803373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff346040516112839190612e7e565b60405180910390a350808061129790613a5b565b91505061118b565b5081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ef9190613b35565b92505081905550600082670429d069189e000061130c9190613bd5565b905080341115611369573373ffffffffffffffffffffffffffffffffffffffff166108fc823461133c9190613d5b565b9081150290604051600060405180830381858888f19350505050158015611367573d6000803e3d6000fd5b505b5050611373611e01565b50565b61138861138161172e565b8383611e0b565b5050565b601481565b6113a261139c61172e565b836117ef565b6113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d89061353d565b60405180910390fd5b6113ed84848484611f77565b50505050565b60606113fe82611fd3565b61143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490613e01565b60405180910390fd5b6000600c805461144c90613376565b905011611468576040518060200160405280600081525061149a565b611470612014565b611479836120a6565b60405160200161148a929190613ea9565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611586611b7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613f4a565b60405180910390fd5b6115fe81611c38565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116dc57506116db82612174565b5b9050919050565b6116ec81611fd3565b61172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117229061397a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117a983610c4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117fb83610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183d575061183c81856114ea565b5b8061187b57508373ffffffffffffffffffffffffffffffffffffffff1661186384610869565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a482610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613fdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061406e565b60405180910390fd5b61197683838360016121de565b8273ffffffffffffffffffffffffffffffffffffffff1661199682610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613fdc565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b78838383600161233c565b505050565b611b8561172e565b73ffffffffffffffffffffffffffffffffffffffff16611ba3610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906140da565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b5403611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90614146565b60405180910390fd5b6002600b81905550565b6000806103e84233611d5d6109c6565b604051602001611d6f939291906141cf565b6040516020818303038152906040528051906020012060001c611d92919061423b565b90505b600e600082815260200190815260200160002060009054906101000a900460ff1615611ddc576103e8600182611dcb9190613b35565b611dd5919061423b565b9050611d95565b8091505090565b611dfd828260405180602001604052806000815250612342565b5050565b6001600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e70906142b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6a9190612c77565b60405180910390a3505050565b611f82848484611884565b611f8e8484848461239d565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061434a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611ff583611bfb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461202390613376565b80601f016020809104026020016040519081016040528092919081815260200182805461204f90613376565b801561209c5780601f106120715761010080835404028352916020019161209c565b820191906000526020600020905b81548152906001019060200180831161207f57829003601f168201915b5050505050905090565b6060600060016120b584612524565b01905060008167ffffffffffffffff8111156120d4576120d3612f23565b5b6040519080825280601f01601f1916602001820160405280156121065781602001600182028036833780820191505090505b509050600082602001820190505b600115612169578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161215d5761215c61420c565b5b04945060008503612114575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ea84848484612677565b600181111561222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906143dc565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612275576122708161267d565b6122b4565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146122b3576122b285826126c6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122f6576122f181612833565b612335565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612334576123338482612904565b5b5b5050505050565b50505050565b61234c8383612983565b612359600084848461239d565b612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f9061434a565b60405180910390fd5b505050565b60006123be8473ffffffffffffffffffffffffffffffffffffffff16612ba0565b15612517578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e761172e565b8786866040518563ffffffff1660e01b81526004016124099493929190614451565b6020604051808303816000875af192505050801561244557506040513d601f19601f8201168201806040525081019061244291906144b2565b60015b6124c7573d8060008114612475576040519150601f19603f3d011682016040523d82523d6000602084013e61247a565b606091505b5060008151036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061434a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061251c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612582577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125785761257761420c565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106125bf576d04ee2d6d415b85acef810000000083816125b5576125b461420c565b5b0492506020810190505b662386f26fc1000083106125ee57662386f26fc1000083816125e4576125e361420c565b5b0492506010810190505b6305f5e1008310612617576305f5e100838161260d5761260c61420c565b5b0492506008810190505b612710831061263c5761271083816126325761263161420c565b5b0492506004810190505b6064831061265f57606483816126555761265461420c565b5b0492506002810190505b600a831061266e576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126d384610d6c565b6126dd9190613d5b565b90506000600760008481526020019081526020016000205490508181146127c2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128479190613d5b565b905060006009600084815260200190815260200160002054905060006008838154811061287757612876613681565b5b90600052602060002001549050806008838154811061289957612898613681565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128e8576128e76144df565b5b6001900381819060005260206000200160009055905550505050565b600061290f83610d6c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e99061455a565b60405180910390fd5b6129fb81611fd3565b15612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a32906145c6565b60405180910390fd5b612a496000838360016121de565b612a5281611fd3565b15612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a89906145c6565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b9c60008383600161233c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0c81612bd7565b8114612c1757600080fd5b50565b600081359050612c2981612c03565b92915050565b600060208284031215612c4557612c44612bcd565b5b6000612c5384828501612c1a565b91505092915050565b60008115159050919050565b612c7181612c5c565b82525050565b6000602082019050612c8c6000830184612c68565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ccc578082015181840152602081019050612cb1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cf482612c92565b612cfe8185612c9d565b9350612d0e818560208601612cae565b612d1781612cd8565b840191505092915050565b60006020820190508181036000830152612d3c8184612ce9565b905092915050565b6000819050919050565b612d5781612d44565b8114612d6257600080fd5b50565b600081359050612d7481612d4e565b92915050565b600060208284031215612d9057612d8f612bcd565b5b6000612d9e84828501612d65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dd282612da7565b9050919050565b612de281612dc7565b82525050565b6000602082019050612dfd6000830184612dd9565b92915050565b612e0c81612dc7565b8114612e1757600080fd5b50565b600081359050612e2981612e03565b92915050565b60008060408385031215612e4657612e45612bcd565b5b6000612e5485828601612e1a565b9250506020612e6585828601612d65565b9150509250929050565b612e7881612d44565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b600080600060608486031215612eb257612eb1612bcd565b5b6000612ec086828701612e1a565b9350506020612ed186828701612e1a565b9250506040612ee286828701612d65565b9150509250925092565b600060208284031215612f0257612f01612bcd565b5b6000612f1084828501612e1a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f5b82612cd8565b810181811067ffffffffffffffff82111715612f7a57612f79612f23565b5b80604052505050565b6000612f8d612bc3565b9050612f998282612f52565b919050565b600067ffffffffffffffff821115612fb957612fb8612f23565b5b612fc282612cd8565b9050602081019050919050565b82818337600083830152505050565b6000612ff1612fec84612f9e565b612f83565b90508281526020810184848401111561300d5761300c612f1e565b5b613018848285612fcf565b509392505050565b600082601f83011261303557613034612f19565b5b8135613045848260208601612fde565b91505092915050565b60006020828403121561306457613063612bcd565b5b600082013567ffffffffffffffff81111561308257613081612bd2565b5b61308e84828501613020565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130cc81612d44565b82525050565b60006130de83836130c3565b60208301905092915050565b6000602082019050919050565b600061310282613097565b61310c81856130a2565b9350613117836130b3565b8060005b8381101561314857815161312f88826130d2565b975061313a836130ea565b92505060018101905061311b565b5085935050505092915050565b6000602082019050818103600083015261316f81846130f7565b905092915050565b61318081612c5c565b811461318b57600080fd5b50565b60008135905061319d81613177565b92915050565b600080604083850312156131ba576131b9612bcd565b5b60006131c885828601612e1a565b92505060206131d98582860161318e565b9150509250929050565b600067ffffffffffffffff8211156131fe576131fd612f23565b5b61320782612cd8565b9050602081019050919050565b6000613227613222846131e3565b612f83565b90508281526020810184848401111561324357613242612f1e565b5b61324e848285612fcf565b509392505050565b600082601f83011261326b5761326a612f19565b5b813561327b848260208601613214565b91505092915050565b6000806000806080858703121561329e5761329d612bcd565b5b60006132ac87828801612e1a565b94505060206132bd87828801612e1a565b93505060406132ce87828801612d65565b925050606085013567ffffffffffffffff8111156132ef576132ee612bd2565b5b6132fb87828801613256565b91505092959194509250565b6000806040838503121561331e5761331d612bcd565b5b600061332c85828601612e1a565b925050602061333d85828601612e1a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338e57607f821691505b6020821081036133a1576133a0613347565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613403602183612c9d565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613495603d83612c9d565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613527602d83612c9d565b9150613532826134cb565b604082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006135b9602b83612c9d565b91506135c48261355d565b604082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061364b602c83612c9d565b9150613656826135ef565b604082019050919050565b6000602082019050818103600083015261367a8161363e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136d5565b61371c86836136d5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061375961375461374f84612d44565b613734565b612d44565b9050919050565b6000819050919050565b6137738361373e565b61378761377f82613760565b8484546136e2565b825550505050565b600090565b61379c61378f565b6137a781848461376a565b505050565b5b818110156137cb576137c0600082613794565b6001810190506137ad565b5050565b601f821115613810576137e1816136b0565b6137ea846136c5565b810160208510156137f9578190505b61380d613805856136c5565b8301826137ac565b50505b505050565b600082821c905092915050565b600061383360001984600802613815565b1980831691505092915050565b600061384c8383613822565b9150826002028217905092915050565b61386582612c92565b67ffffffffffffffff81111561387e5761387d612f23565b5b6138888254613376565b6138938282856137cf565b600060209050601f8311600181146138c657600084156138b4578287015190505b6138be8582613840565b865550613926565b601f1984166138d4866136b0565b60005b828110156138fc578489015182556001820191506020850194506020810190506138d7565b868310156139195784890151613915601f891682613822565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613964601883612c9d565b915061396f8261392e565b602082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006139f6602983612c9d565b9150613a018261399a565b604082019050919050565b60006020820190508181036000830152613a25816139e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6682612d44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9857613a97613a2c565b5b600182019050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203130204e465460008201527f73206174206f6e63650000000000000000000000000000000000000000000000602082015250565b6000613aff602983612c9d565b9150613b0a82613aa3565b604082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b6000613b4082612d44565b9150613b4b83612d44565b9250828201905080821115613b6357613b62613a2c565b5b92915050565b7f45786365656473206d6178696d756d204e465420737570706c79000000000000600082015250565b6000613b9f601a83612c9d565b9150613baa82613b69565b602082019050919050565b60006020820190508181036000830152613bce81613b92565b9050919050565b6000613be082612d44565b9150613beb83612d44565b9250828202613bf981612d44565b91508282048414831517613c1057613c0f613a2c565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613c4d601f83612c9d565b9150613c5882613c17565b602082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f45786365656473206d6178696d756d204e4654207065722077616c6c65740000600082015250565b6000613cb9601e83612c9d565b9150613cc482613c83565b602082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b6000613d25601483612c9d565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b6000613d6682612d44565b9150613d7183612d44565b9250828203905081811115613d8957613d88613a2c565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613deb602f83612c9d565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b600081905092915050565b6000613e3782612c92565b613e418185613e21565b9350613e51818560208601612cae565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613e93600583613e21565b9150613e9e82613e5d565b600582019050919050565b6000613eb58285613e2c565b9150613ec18284613e2c565b9150613ecc82613e86565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f34602683612c9d565b9150613f3f82613ed8565b604082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613fc6602583612c9d565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614058602483612c9d565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c4602083612c9d565b91506140cf8261408e565b602082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614130601f83612c9d565b915061413b826140fa565b602082019050919050565b6000602082019050818103600083015261415f81614123565b9050919050565b6000819050919050565b61418161417c82612d44565b614166565b82525050565b60008160601b9050919050565b600061419f82614187565b9050919050565b60006141b182614194565b9050919050565b6141c96141c482612dc7565b6141a6565b82525050565b60006141db8286614170565b6020820191506141eb82856141b8565b6014820191506141fb8284614170565b602082019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061424682612d44565b915061425183612d44565b9250826142615761426061420c565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a2601983612c9d565b91506142ad8261426c565b602082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614334603283612c9d565b915061433f826142d8565b604082019050919050565b6000602082019050818103600083015261436381614327565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006143c6603583612c9d565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614423826143fc565b61442d8185614407565b935061443d818560208601612cae565b61444681612cd8565b840191505092915050565b60006080820190506144666000830187612dd9565b6144736020830186612dd9565b6144806040830185612e6f565b81810360608301526144928184614418565b905095945050505050565b6000815190506144ac81612c03565b92915050565b6000602082840312156144c8576144c7612bcd565b5b60006144d68482850161449d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614544602083612c9d565b915061454f8261450e565b602082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006145b0601c83612c9d565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b905091905056fea26469706673582212204702058d939f1a737959509d20ab686833736025eb3aae6c7bcafa47eedb8d6764736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007456c6d6f666f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c4d4600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063676dd563116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461067d578063e8d652ce146106ba578063e985e9c5146106f7578063f2fde38b14610734576101cd565b8063a0712d68146105e4578063a22cb46514610600578063b19960e614610629578063b88d4fde14610654576101cd565b8063715018a6116100d1578063715018a61461053a5780638462151c146105515780638da5cb5b1461058e57806395d89b41146105b9576101cd565b8063676dd563146104a75780636c0360eb146104d257806370a08231146104fd576101cd565b806332cb6b0c1161016f5780634bc44f621161013e5780634bc44f62146103d95780634f6ccce71461040457806355f804b3146104415780636352211e1461046a576101cd565b806332cb6b0c146103315780633ccfd60b1461035c5780633ce416361461037357806342842e0e146103b0576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c2f565b61075d565b6040516102069190612c77565b60405180910390f35b34801561021b57600080fd5b506102246107d7565b6040516102319190612d22565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d7a565b610869565b60405161026e9190612de8565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e2f565b6108af565b005b3480156102ac57600080fd5b506102b56109c6565b6040516102c29190612e7e565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612e99565b6109d3565b005b34801561030057600080fd5b5061031b60048036038101906103169190612e2f565b610a33565b6040516103289190612e7e565b60405180910390f35b34801561033d57600080fd5b50610346610ad8565b6040516103539190612e7e565b60405180910390f35b34801561036857600080fd5b50610371610ade565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612eec565b610b83565b6040516103a79190612e7e565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612e99565b610b9b565b005b3480156103e557600080fd5b506103ee610bbb565b6040516103fb9190612e7e565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612d7a565b610bc0565b6040516104389190612e7e565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061304e565b610c31565b005b34801561047657600080fd5b50610491600480360381019061048c9190612d7a565b610c4c565b60405161049e9190612de8565b60405180910390f35b3480156104b357600080fd5b506104bc610cd2565b6040516104c99190612e7e565b60405180910390f35b3480156104de57600080fd5b506104e7610cde565b6040516104f49190612d22565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612eec565b610d6c565b6040516105319190612e7e565b60405180910390f35b34801561054657600080fd5b5061054f610e23565b005b34801561055d57600080fd5b5061057860048036038101906105739190612eec565b610e37565b6040516105859190613155565b60405180910390f35b34801561059a57600080fd5b506105a3610f40565b6040516105b09190612de8565b60405180910390f35b3480156105c557600080fd5b506105ce610f6a565b6040516105db9190612d22565b60405180910390f35b6105fe60048036038101906105f99190612d7a565b610ffc565b005b34801561060c57600080fd5b50610627600480360381019061062291906131a3565b611376565b005b34801561063557600080fd5b5061063e61138c565b60405161064b9190612e7e565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613284565b611391565b005b34801561068957600080fd5b506106a4600480360381019061069f9190612d7a565b6113f3565b6040516106b19190612d22565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612eec565b6114a1565b6040516106ee9190612e7e565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613307565b6114ea565b60405161072b9190612c77565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612eec565b61157e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d057506107cf82611601565b5b9050919050565b6060600080546107e690613376565b80601f016020809104026020016040519081016040528092919081815260200182805461081290613376565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b6000610874826116e3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ba82610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190613419565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094961172e565b73ffffffffffffffffffffffffffffffffffffffff16148061097857506109778161097261172e565b6114ea565b5b6109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906134ab565b60405180910390fd5b6109c18383611736565b505050565b6000600880549050905090565b6109e46109de61172e565b826117ef565b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061353d565b60405180910390fd5b610a2e838383611884565b505050565b6000610a3e83610d6c565b8210610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a76906135cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610ae6611b7d565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b31573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d582604051610b789190612e7e565b60405180910390a250565b600d6020528060005260406000206000915090505481565b610bb683838360405180602001604052806000815250611391565b505050565b600a81565b6000610bca6109c6565b8210610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290613661565b60405180910390fd5b60088281548110610c1f57610c1e613681565b5b90600052602060002001549050919050565b610c39611b7d565b80600c9081610c48919061385c565b5050565b600080610c5883611bfb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc09061397a565b60405180910390fd5b80915050919050565b670429d069189e000081565b600c8054610ceb90613376565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790613376565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613a0c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2b611b7d565b610e356000611c38565b565b60606000610e4483610d6c565b905060008103610ea057600067ffffffffffffffff811115610e6957610e68612f23565b5b604051908082528060200260200182016040528015610e975781602001602082028036833780820191505090505b50915050610f3b565b60008167ffffffffffffffff811115610ebc57610ebb612f23565b5b604051908082528060200260200182016040528015610eea5781602001602082028036833780820191505090505b50905060005b82811015610f3457610f028582610a33565b828281518110610f1557610f14613681565b5b6020026020010181815250508080610f2c90613a5b565b915050610ef0565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f7990613376565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa590613376565b8015610ff25780601f10610fc757610100808354040283529160200191610ff2565b820191906000526020600020905b815481529060010190602001808311610fd557829003601f168201915b5050505050905090565b611004611cfe565b600061100e6109c6565b9050600a821115611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613b15565b60405180910390fd5b6103e882826110639190613b35565b11156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613bb5565b60405180910390fd5b3482670429d069189e00006110b99190613bd5565b11156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613c63565b60405180910390fd5b601482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111479190613b35565b1115611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613ccf565b60405180910390fd5b60005b8281101561129f57600061119d611d4d565b905060001515600e600083815260200190815260200160002060009054906101000a900460ff16151514611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613d3b565b60405180910390fd5b6001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061123c3382611de3565b803373ffffffffffffffffffffffffffffffffffffffff167f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff346040516112839190612e7e565b60405180910390a350808061129790613a5b565b91505061118b565b5081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ef9190613b35565b92505081905550600082670429d069189e000061130c9190613bd5565b905080341115611369573373ffffffffffffffffffffffffffffffffffffffff166108fc823461133c9190613d5b565b9081150290604051600060405180830381858888f19350505050158015611367573d6000803e3d6000fd5b505b5050611373611e01565b50565b61138861138161172e565b8383611e0b565b5050565b601481565b6113a261139c61172e565b836117ef565b6113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d89061353d565b60405180910390fd5b6113ed84848484611f77565b50505050565b60606113fe82611fd3565b61143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490613e01565b60405180910390fd5b6000600c805461144c90613376565b905011611468576040518060200160405280600081525061149a565b611470612014565b611479836120a6565b60405160200161148a929190613ea9565b6040516020818303038152906040525b9050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611586611b7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613f4a565b60405180910390fd5b6115fe81611c38565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116dc57506116db82612174565b5b9050919050565b6116ec81611fd3565b61172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117229061397a565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117a983610c4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117fb83610c4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183d575061183c81856114ea565b5b8061187b57508373ffffffffffffffffffffffffffffffffffffffff1661186384610869565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a482610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613fdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119609061406e565b60405180910390fd5b61197683838360016121de565b8273ffffffffffffffffffffffffffffffffffffffff1661199682610c4c565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390613fdc565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b78838383600161233c565b505050565b611b8561172e565b73ffffffffffffffffffffffffffffffffffffffff16611ba3610f40565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906140da565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b5403611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90614146565b60405180910390fd5b6002600b81905550565b6000806103e84233611d5d6109c6565b604051602001611d6f939291906141cf565b6040516020818303038152906040528051906020012060001c611d92919061423b565b90505b600e600082815260200190815260200160002060009054906101000a900460ff1615611ddc576103e8600182611dcb9190613b35565b611dd5919061423b565b9050611d95565b8091505090565b611dfd828260405180602001604052806000815250612342565b5050565b6001600b81905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e70906142b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6a9190612c77565b60405180910390a3505050565b611f82848484611884565b611f8e8484848461239d565b611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc49061434a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611ff583611bfb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c805461202390613376565b80601f016020809104026020016040519081016040528092919081815260200182805461204f90613376565b801561209c5780601f106120715761010080835404028352916020019161209c565b820191906000526020600020905b81548152906001019060200180831161207f57829003601f168201915b5050505050905090565b6060600060016120b584612524565b01905060008167ffffffffffffffff8111156120d4576120d3612f23565b5b6040519080825280601f01601f1916602001820160405280156121065781602001600182028036833780820191505090505b509050600082602001820190505b600115612169578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161215d5761215c61420c565b5b04945060008503612114575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ea84848484612677565b600181111561222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906143dc565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612275576122708161267d565b6122b4565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146122b3576122b285826126c6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122f6576122f181612833565b612335565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612334576123338482612904565b5b5b5050505050565b50505050565b61234c8383612983565b612359600084848461239d565b612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f9061434a565b60405180910390fd5b505050565b60006123be8473ffffffffffffffffffffffffffffffffffffffff16612ba0565b15612517578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e761172e565b8786866040518563ffffffff1660e01b81526004016124099493929190614451565b6020604051808303816000875af192505050801561244557506040513d601f19601f8201168201806040525081019061244291906144b2565b60015b6124c7573d8060008114612475576040519150601f19603f3d011682016040523d82523d6000602084013e61247a565b606091505b5060008151036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061434a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061251c565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612582577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816125785761257761420c565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106125bf576d04ee2d6d415b85acef810000000083816125b5576125b461420c565b5b0492506020810190505b662386f26fc1000083106125ee57662386f26fc1000083816125e4576125e361420c565b5b0492506010810190505b6305f5e1008310612617576305f5e100838161260d5761260c61420c565b5b0492506008810190505b612710831061263c5761271083816126325761263161420c565b5b0492506004810190505b6064831061265f57606483816126555761265461420c565b5b0492506002810190505b600a831061266e576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126d384610d6c565b6126dd9190613d5b565b90506000600760008481526020019081526020016000205490508181146127c2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128479190613d5b565b905060006009600084815260200190815260200160002054905060006008838154811061287757612876613681565b5b90600052602060002001549050806008838154811061289957612898613681565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128e8576128e76144df565b5b6001900381819060005260206000200160009055905550505050565b600061290f83610d6c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e99061455a565b60405180910390fd5b6129fb81611fd3565b15612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a32906145c6565b60405180910390fd5b612a496000838360016121de565b612a5281611fd3565b15612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a89906145c6565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b9c60008383600161233c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0c81612bd7565b8114612c1757600080fd5b50565b600081359050612c2981612c03565b92915050565b600060208284031215612c4557612c44612bcd565b5b6000612c5384828501612c1a565b91505092915050565b60008115159050919050565b612c7181612c5c565b82525050565b6000602082019050612c8c6000830184612c68565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ccc578082015181840152602081019050612cb1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cf482612c92565b612cfe8185612c9d565b9350612d0e818560208601612cae565b612d1781612cd8565b840191505092915050565b60006020820190508181036000830152612d3c8184612ce9565b905092915050565b6000819050919050565b612d5781612d44565b8114612d6257600080fd5b50565b600081359050612d7481612d4e565b92915050565b600060208284031215612d9057612d8f612bcd565b5b6000612d9e84828501612d65565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dd282612da7565b9050919050565b612de281612dc7565b82525050565b6000602082019050612dfd6000830184612dd9565b92915050565b612e0c81612dc7565b8114612e1757600080fd5b50565b600081359050612e2981612e03565b92915050565b60008060408385031215612e4657612e45612bcd565b5b6000612e5485828601612e1a565b9250506020612e6585828601612d65565b9150509250929050565b612e7881612d44565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b600080600060608486031215612eb257612eb1612bcd565b5b6000612ec086828701612e1a565b9350506020612ed186828701612e1a565b9250506040612ee286828701612d65565b9150509250925092565b600060208284031215612f0257612f01612bcd565b5b6000612f1084828501612e1a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f5b82612cd8565b810181811067ffffffffffffffff82111715612f7a57612f79612f23565b5b80604052505050565b6000612f8d612bc3565b9050612f998282612f52565b919050565b600067ffffffffffffffff821115612fb957612fb8612f23565b5b612fc282612cd8565b9050602081019050919050565b82818337600083830152505050565b6000612ff1612fec84612f9e565b612f83565b90508281526020810184848401111561300d5761300c612f1e565b5b613018848285612fcf565b509392505050565b600082601f83011261303557613034612f19565b5b8135613045848260208601612fde565b91505092915050565b60006020828403121561306457613063612bcd565b5b600082013567ffffffffffffffff81111561308257613081612bd2565b5b61308e84828501613020565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130cc81612d44565b82525050565b60006130de83836130c3565b60208301905092915050565b6000602082019050919050565b600061310282613097565b61310c81856130a2565b9350613117836130b3565b8060005b8381101561314857815161312f88826130d2565b975061313a836130ea565b92505060018101905061311b565b5085935050505092915050565b6000602082019050818103600083015261316f81846130f7565b905092915050565b61318081612c5c565b811461318b57600080fd5b50565b60008135905061319d81613177565b92915050565b600080604083850312156131ba576131b9612bcd565b5b60006131c885828601612e1a565b92505060206131d98582860161318e565b9150509250929050565b600067ffffffffffffffff8211156131fe576131fd612f23565b5b61320782612cd8565b9050602081019050919050565b6000613227613222846131e3565b612f83565b90508281526020810184848401111561324357613242612f1e565b5b61324e848285612fcf565b509392505050565b600082601f83011261326b5761326a612f19565b5b813561327b848260208601613214565b91505092915050565b6000806000806080858703121561329e5761329d612bcd565b5b60006132ac87828801612e1a565b94505060206132bd87828801612e1a565b93505060406132ce87828801612d65565b925050606085013567ffffffffffffffff8111156132ef576132ee612bd2565b5b6132fb87828801613256565b91505092959194509250565b6000806040838503121561331e5761331d612bcd565b5b600061332c85828601612e1a565b925050602061333d85828601612e1a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338e57607f821691505b6020821081036133a1576133a0613347565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613403602183612c9d565b915061340e826133a7565b604082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613495603d83612c9d565b91506134a082613439565b604082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613527602d83612c9d565b9150613532826134cb565b604082019050919050565b600060208201905081810360008301526135568161351a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006135b9602b83612c9d565b91506135c48261355d565b604082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061364b602c83612c9d565b9150613656826135ef565b604082019050919050565b6000602082019050818103600083015261367a8161363e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136d5565b61371c86836136d5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061375961375461374f84612d44565b613734565b612d44565b9050919050565b6000819050919050565b6137738361373e565b61378761377f82613760565b8484546136e2565b825550505050565b600090565b61379c61378f565b6137a781848461376a565b505050565b5b818110156137cb576137c0600082613794565b6001810190506137ad565b5050565b601f821115613810576137e1816136b0565b6137ea846136c5565b810160208510156137f9578190505b61380d613805856136c5565b8301826137ac565b50505b505050565b600082821c905092915050565b600061383360001984600802613815565b1980831691505092915050565b600061384c8383613822565b9150826002028217905092915050565b61386582612c92565b67ffffffffffffffff81111561387e5761387d612f23565b5b6138888254613376565b6138938282856137cf565b600060209050601f8311600181146138c657600084156138b4578287015190505b6138be8582613840565b865550613926565b601f1984166138d4866136b0565b60005b828110156138fc578489015182556001820191506020850194506020810190506138d7565b868310156139195784890151613915601f891682613822565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613964601883612c9d565b915061396f8261392e565b602082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006139f6602983612c9d565b9150613a018261399a565b604082019050919050565b60006020820190508181036000830152613a25816139e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6682612d44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a9857613a97613a2c565b5b600182019050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e203130204e465460008201527f73206174206f6e63650000000000000000000000000000000000000000000000602082015250565b6000613aff602983612c9d565b9150613b0a82613aa3565b604082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b6000613b4082612d44565b9150613b4b83612d44565b9250828201905080821115613b6357613b62613a2c565b5b92915050565b7f45786365656473206d6178696d756d204e465420737570706c79000000000000600082015250565b6000613b9f601a83612c9d565b9150613baa82613b69565b602082019050919050565b60006020820190508181036000830152613bce81613b92565b9050919050565b6000613be082612d44565b9150613beb83612d44565b9250828202613bf981612d44565b91508282048414831517613c1057613c0f613a2c565b5b5092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613c4d601f83612c9d565b9150613c5882613c17565b602082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f45786365656473206d6178696d756d204e4654207065722077616c6c65740000600082015250565b6000613cb9601e83612c9d565b9150613cc482613c83565b602082019050919050565b60006020820190508181036000830152613ce881613cac565b9050919050565b7f546f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b6000613d25601483612c9d565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b6000613d6682612d44565b9150613d7183612d44565b9250828203905081811115613d8957613d88613a2c565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613deb602f83612c9d565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b600081905092915050565b6000613e3782612c92565b613e418185613e21565b9350613e51818560208601612cae565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613e93600583613e21565b9150613e9e82613e5d565b600582019050919050565b6000613eb58285613e2c565b9150613ec18284613e2c565b9150613ecc82613e86565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f34602683612c9d565b9150613f3f82613ed8565b604082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613fc6602583612c9d565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614058602483612c9d565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c4602083612c9d565b91506140cf8261408e565b602082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614130601f83612c9d565b915061413b826140fa565b602082019050919050565b6000602082019050818103600083015261415f81614123565b9050919050565b6000819050919050565b61418161417c82612d44565b614166565b82525050565b60008160601b9050919050565b600061419f82614187565b9050919050565b60006141b182614194565b9050919050565b6141c96141c482612dc7565b6141a6565b82525050565b60006141db8286614170565b6020820191506141eb82856141b8565b6014820191506141fb8284614170565b602082019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061424682612d44565b915061425183612d44565b9250826142615761426061420c565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142a2601983612c9d565b91506142ad8261426c565b602082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614334603283612c9d565b915061433f826142d8565b604082019050919050565b6000602082019050818103600083015261436381614327565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006143c6603583612c9d565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614423826143fc565b61442d8185614407565b935061443d818560208601612cae565b61444681612cd8565b840191505092915050565b60006080820190506144666000830187612dd9565b6144736020830186612dd9565b6144806040830185612e6f565b81810360608301526144928184614418565b905095945050505050565b6000815190506144ac81612c03565b92915050565b6000602082840312156144c8576144c7612bcd565b5b60006144d68482850161449d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614544602083612c9d565b915061454f8261450e565b602082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006145b0601c83612c9d565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b905091905056fea26469706673582212204702058d939f1a737959509d20ab686833736025eb3aae6c7bcafa47eedb8d6764736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007456c6d6f666f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454c4d4600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Elmofos
Arg [1] : symbol (string): ELMF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 456c6d6f666f7300000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 454c4d4600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67959:3413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61952:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47513:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47031:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62592:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48213:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62260:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68099:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71183:186;;;;;;;;;;;;;:::i;:::-;;68306:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48585:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68147:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62782:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68642:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45711:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68254:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68071:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45442:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:103;;;;;;;;;;;;;:::i;:::-;;70719:456;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46170:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69207:1019;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47756:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68199:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48807:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68872:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70576:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47982:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61952:224;62054:4;62093:35;62078:50;;;:11;:50;;;;:90;;;;62132:36;62156:11;62132:23;:36::i;:::-;62078:90;62071:97;;61952:224;;;:::o;46001:100::-;46055:13;46088:5;46081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46001:100;:::o;47513:171::-;47589:7;47609:23;47624:7;47609:14;:23::i;:::-;47652:15;:24;47668:7;47652:24;;;;;;;;;;;;;;;;;;;;;47645:31;;47513:171;;;:::o;47031:416::-;47112:13;47128:23;47143:7;47128:14;:23::i;:::-;47112:39;;47176:5;47170:11;;:2;:11;;;47162:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47270:5;47254:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47279:37;47296:5;47303:12;:10;:12::i;:::-;47279:16;:37::i;:::-;47254:62;47232:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;47418:21;47427:2;47431:7;47418:8;:21::i;:::-;47101:346;47031:416;;:::o;62592:113::-;62653:7;62680:10;:17;;;;62673:24;;62592:113;:::o;48213:301::-;48374:41;48393:12;:10;:12::i;:::-;48407:7;48374:18;:41::i;:::-;48366:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48478:28;48488:4;48494:2;48498:7;48478:9;:28::i;:::-;48213:301;;;:::o;62260:256::-;62357:7;62393:23;62410:5;62393:16;:23::i;:::-;62385:5;:31;62377:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62482:12;:19;62495:5;62482:19;;;;;;;;;;;;;;;:26;62502:5;62482:26;;;;;;;;;;;;62475:33;;62260:256;;;;:::o;68099:41::-;68136:4;68099:41;:::o;71183:186::-;22576:13;:11;:13::i;:::-;71231:12:::1;71246:21;71231:36;;71286:10;71278:28;;:37;71307:7;71278:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71341:10;71331:30;;;71353:7;71331:30;;;;;;:::i;:::-;;;;;;;;71220:149;71183:186::o:0;68306:49::-;;;;;;;;;;;;;;;;;:::o;48585:151::-;48689:39;48706:4;48712:2;48716:7;48689:39;;;;;;;;;;;;:16;:39::i;:::-;48585:151;;;:::o;68147:45::-;68190:2;68147:45;:::o;62782:233::-;62857:7;62893:30;:28;:30::i;:::-;62885:5;:38;62877:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62990:10;63001:5;62990:17;;;;;;;;:::i;:::-;;;;;;;;;;62983:24;;62782:233;;;:::o;68642:106::-;22576:13;:11;:13::i;:::-;68729:11:::1;68719:7;:21;;;;;;:::i;:::-;;68642:106:::0;:::o;45711:223::-;45783:7;45803:13;45819:17;45828:7;45819:8;:17::i;:::-;45803:33;;45872:1;45855:19;;:5;:19;;;45847:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45921:5;45914:12;;;45711:223;;;:::o;68254:45::-;68290:9;68254:45;:::o;68071:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45442:207::-;45514:7;45559:1;45542:19;;:5;:19;;;45534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45625:9;:16;45635:5;45625:16;;;;;;;;;;;;;;;;45618:23;;45442:207;;;:::o;23331:103::-;22576:13;:11;:13::i;:::-;23396:30:::1;23423:1;23396:18;:30::i;:::-;23331:103::o:0;70719:456::-;70780:16;70810:18;70831:17;70841:6;70831:9;:17::i;:::-;70810:38;;70877:1;70863:10;:15;70859:309;;70916:1;70902:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70895:23;;;;;70859:309;70951:23;70991:10;70977:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70951:51;;71021:9;71017:112;71036:10;71032:1;:14;71017:112;;;71083:30;71103:6;71111:1;71083:19;:30::i;:::-;71071:6;71078:1;71071:9;;;;;;;;:::i;:::-;;;;;;;:42;;;;;71048:3;;;;;:::i;:::-;;;;71017:112;;;;71150:6;71143:13;;;;70719:456;;;;:::o;22690:87::-;22736:7;22763:6;;;;;;;;;;;22756:13;;22690:87;:::o;46170:104::-;46226:13;46259:7;46252:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46170:104;:::o;69207:1019::-;2345:21;:19;:21::i;:::-;69273:14:::1;69290:13;:11;:13::i;:::-;69273:30;;68190:2;69322:3;:23;;69314:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;68136:4;69419:3;69410:6;:12;;;;:::i;:::-;:26;;69402:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;69505:9;69498:3;68290:9;69486:15;;;;:::i;:::-;:28;;69478:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68245:2;69598:3;69569:14;:26;69584:10;69569:26;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:55;;69561:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;69676:9;69672:314;69691:3;69687:1;:7;69672:314;;;69716:13;69732:24;:22;:24::i;:::-;69716:40;;69803:5;69779:29;;:13;:20;69793:5;69779:20;;;;;;;;;;;;;;;;;;;;;:29;;;69771:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;69871:4;69848:13;:20;69862:5;69848:20;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;69890:28;69900:10;69912:5;69890:9;:28::i;:::-;69957:5;69945:10;69938:36;;;69964:9;69938:36;;;;;;:::i;:::-;;;;;;;;69701:285;69696:3;;;;;:::i;:::-;;;;69672:314;;;;70028:3;69998:14;:26;70013:10;69998:26;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;70081:13;70109:3;68290:9;70097:15;;;;:::i;:::-;70081:31;;70138:5;70126:9;:17;70123:96;;;70168:10;70160:28;;:47;70201:5;70189:9;:17;;;;:::i;:::-;70160:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;70123:96;69262:964;;2389:20:::0;:18;:20::i;:::-;69207:1019;:::o;47756:155::-;47851:52;47870:12;:10;:12::i;:::-;47884:8;47894;47851:18;:52::i;:::-;47756:155;;:::o;68199:48::-;68245:2;68199:48;:::o;48807:279::-;48938:41;48957:12;:10;:12::i;:::-;48971:7;48938:18;:41::i;:::-;48930:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;49040:38;49054:4;49060:2;49064:7;49073:4;49040:13;:38::i;:::-;48807:279;;;;:::o;68872:327::-;68945:13;68979:16;68987:7;68979;:16::i;:::-;68971:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;69091:1;69073:7;69067:21;;;;;:::i;:::-;;;:25;:124;;;;;;;;;;;;;;;;;69132:10;:8;:10::i;:::-;69144:18;:7;:16;:18::i;:::-;69115:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69067:124;69060:131;;68872:327;;;:::o;70576:135::-;70646:7;70673:14;:30;70688:14;70673:30;;;;;;;;;;;;;;;;70666:37;;70576:135;;;:::o;47982:164::-;48079:4;48103:18;:25;48122:5;48103:25;;;;;;;;;;;;;;;:35;48129:8;48103:35;;;;;;;;;;;;;;;;;;;;;;;;;48096:42;;47982:164;;;;:::o;23589:201::-;22576:13;:11;:13::i;:::-;23698:1:::1;23678:22;;:8;:22;;::::0;23670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23754:28;23773:8;23754:18;:28::i;:::-;23589:201:::0;:::o;45073:305::-;45175:4;45227:25;45212:40;;;:11;:40;;;;:105;;;;45284:33;45269:48;;;:11;:48;;;;45212:105;:158;;;;45334:36;45358:11;45334:23;:36::i;:::-;45212:158;45192:178;;45073:305;;;:::o;57076:135::-;57158:16;57166:7;57158;:16::i;:::-;57150:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;57076:135;:::o;21241:98::-;21294:7;21321:10;21314:17;;21241:98;:::o;56389:174::-;56491:2;56464:15;:24;56480:7;56464:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56547:7;56543:2;56509:46;;56518:23;56533:7;56518:14;:23::i;:::-;56509:46;;;;;;;;;;;;56389:174;;:::o;51076:264::-;51169:4;51186:13;51202:23;51217:7;51202:14;:23::i;:::-;51186:39;;51255:5;51244:16;;:7;:16;;;:52;;;;51264:32;51281:5;51288:7;51264:16;:32::i;:::-;51244:52;:87;;;;51324:7;51300:31;;:20;51312:7;51300:11;:20::i;:::-;:31;;;51244:87;51236:96;;;51076:264;;;;:::o;55041:1229::-;55166:4;55139:31;;:23;55154:7;55139:14;:23::i;:::-;:31;;;55131:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55245:1;55231:16;;:2;:16;;;55223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55301:42;55322:4;55328:2;55332:7;55341:1;55301:20;:42::i;:::-;55473:4;55446:31;;:23;55461:7;55446:14;:23::i;:::-;:31;;;55438:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55591:15;:24;55607:7;55591:24;;;;;;;;;;;;55584:31;;;;;;;;;;;56086:1;56067:9;:15;56077:4;56067:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;56119:1;56102:9;:13;56112:2;56102:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;56161:2;56142:7;:16;56150:7;56142:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56200:7;56196:2;56181:27;;56190:4;56181:27;;;;;;;;;;;;56221:41;56241:4;56247:2;56251:7;56260:1;56221:19;:41::i;:::-;55041:1229;;;:::o;22855:132::-;22930:12;:10;:12::i;:::-;22919:23;;:7;:5;:7::i;:::-;:23;;;22911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22855:132::o;50351:117::-;50417:7;50444;:16;50452:7;50444:16;;;;;;;;;;;;;;;;;;;;;50437:23;;50351:117;;;:::o;23950:191::-;24024:16;24043:6;;;;;;;;;;;24024:25;;24069:8;24060:6;;:17;;;;;;;;;;;;;;;;;;24124:8;24093:40;;24114:8;24093:40;;;;;;;;;;;;24013:128;23950:191;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;70234:334::-;70291:7;70311:17;68136:4;70366:15;70383:10;70395:13;:11;:13::i;:::-;70349:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70339:71;;;;;;70331:80;;:93;;;;:::i;:::-;70311:113;;70435:99;70441:13;:24;70455:9;70441:24;;;;;;;;;;;;;;;;;;;;;70435:99;;;68136:4;70507:1;70495:9;:13;;;;:::i;:::-;70494:28;;;;:::i;:::-;70482:40;;70435:99;;;70551:9;70544:16;;;70234:334;:::o;51682:110::-;51758:26;51768:2;51772:7;51758:26;;;;;;;;;;;;:9;:26::i;:::-;51682:110;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;56706:281::-;56827:8;56818:17;;:5;:17;;;56810:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56914:8;56876:18;:25;56895:5;56876:25;;;;;;;;;;;;;;;:35;56902:8;56876:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;56960:8;56938:41;;56953:5;56938:41;;;56970:8;56938:41;;;;;;:::i;:::-;;;;;;;;56706:281;;;:::o;49967:270::-;50080:28;50090:4;50096:2;50100:7;50080:9;:28::i;:::-;50127:47;50150:4;50156:2;50160:7;50169:4;50127:22;:47::i;:::-;50119:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49967:270;;;;:::o;50781:128::-;50846:4;50899:1;50870:31;;:17;50879:7;50870:8;:17::i;:::-;:31;;;;50863:38;;50781:128;;;:::o;68756:108::-;68816:13;68849:7;68842:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68756:108;:::o;18160:716::-;18216:13;18267:14;18304:1;18284:17;18295:5;18284:10;:17::i;:::-;:21;18267:38;;18320:20;18354:6;18343:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:41;;18376:11;18505:6;18501:2;18497:15;18489:6;18485:28;18478:35;;18542:288;18549:4;18542:288;;;18574:5;;;;;;;;18716:8;18711:2;18704:5;18700:14;18695:30;18690:3;18682:44;18772:2;18763:11;;;;;;:::i;:::-;;;;;18806:1;18797:5;:10;18542:288;18793:21;18542:288;18851:6;18844:13;;;;;18160:716;;;:::o;36617:157::-;36702:4;36741:25;36726:40;;;:11;:40;;;;36719:47;;36617:157;;;:::o;63089:915::-;63266:61;63293:4;63299:2;63303:12;63317:9;63266:26;:61::i;:::-;63356:1;63344:9;:13;63340:222;;;63487:63;;;;;;;;;;:::i;:::-;;;;;;;;63340:222;63574:15;63592:12;63574:30;;63637:1;63621:18;;:4;:18;;;63617:187;;63656:40;63688:7;63656:31;:40::i;:::-;63617:187;;;63726:2;63718:10;;:4;:10;;;63714:90;;63745:47;63778:4;63784:7;63745:32;:47::i;:::-;63714:90;63617:187;63832:1;63818:16;;:2;:16;;;63814:183;;63851:45;63888:7;63851:36;:45::i;:::-;63814:183;;;63924:4;63918:10;;:2;:10;;;63914:83;;63945:40;63973:2;63977:7;63945:27;:40::i;:::-;63914:83;63814:183;63255:749;63089:915;;;;:::o;60198:115::-;;;;;:::o;52019:285::-;52114:18;52120:2;52124:7;52114:5;:18::i;:::-;52165:53;52196:1;52200:2;52204:7;52213:4;52165:22;:53::i;:::-;52143:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;52019:285;;;:::o;57775:853::-;57929:4;57950:15;:2;:13;;;:15::i;:::-;57946:675;;;58002:2;57986:36;;;58023:12;:10;:12::i;:::-;58037:4;58043:7;58052:4;57986:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57982:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58244:1;58227:6;:13;:18;58223:328;;58270:60;;;;;;;;;;:::i;:::-;;;;;;;;58223:328;58501:6;58495:13;58486:6;58482:2;58478:15;58471:38;57982:584;58118:41;;;58108:51;;;:6;:51;;;;58101:58;;;;;57946:675;58605:4;58598:11;;57775:853;;;;;;;:::o;14994:948::-;15047:7;15067:14;15084:1;15067:18;;15134:8;15125:5;:17;15121:106;;15172:8;15163:17;;;;;;:::i;:::-;;;;;15209:2;15199:12;;;;15121:106;15254:8;15245:5;:17;15241:106;;15292:8;15283:17;;;;;;:::i;:::-;;;;;15329:2;15319:12;;;;15241:106;15374:8;15365:5;:17;15361:106;;15412:8;15403:17;;;;;;:::i;:::-;;;;;15449:2;15439:12;;;;15361:106;15494:7;15485:5;:16;15481:103;;15531:7;15522:16;;;;;;:::i;:::-;;;;;15567:1;15557:11;;;;15481:103;15611:7;15602:5;:16;15598:103;;15648:7;15639:16;;;;;;:::i;:::-;;;;;15684:1;15674:11;;;;15598:103;15728:7;15719:5;:16;15715:103;;15765:7;15756:16;;;;;;:::i;:::-;;;;;15801:1;15791:11;;;;15715:103;15845:7;15836:5;:16;15832:68;;15883:1;15873:11;;;;15832:68;15928:6;15921:13;;;14994:948;;;:::o;59360:116::-;;;;;:::o;64727:164::-;64831:10;:17;;;;64804:15;:24;64820:7;64804:24;;;;;;;;;;;:44;;;;64859:10;64875:7;64859:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64727:164;:::o;65518:988::-;65784:22;65834:1;65809:22;65826:4;65809:16;:22::i;:::-;:26;;;;:::i;:::-;65784:51;;65846:18;65867:17;:26;65885:7;65867:26;;;;;;;;;;;;65846:47;;66014:14;66000:10;:28;65996:328;;66045:19;66067:12;:18;66080:4;66067:18;;;;;;;;;;;;;;;:34;66086:14;66067:34;;;;;;;;;;;;66045:56;;66151:11;66118:12;:18;66131:4;66118:18;;;;;;;;;;;;;;;:30;66137:10;66118:30;;;;;;;;;;;:44;;;;66268:10;66235:17;:30;66253:11;66235:30;;;;;;;;;;;:43;;;;66030:294;65996:328;66420:17;:26;66438:7;66420:26;;;;;;;;;;;66413:33;;;66464:12;:18;66477:4;66464:18;;;;;;;;;;;;;;;:34;66483:14;66464:34;;;;;;;;;;;66457:41;;;65599:907;;65518:988;;:::o;66801:1079::-;67054:22;67099:1;67079:10;:17;;;;:21;;;;:::i;:::-;67054:46;;67111:18;67132:15;:24;67148:7;67132:24;;;;;;;;;;;;67111:45;;67483:19;67505:10;67516:14;67505:26;;;;;;;;:::i;:::-;;;;;;;;;;67483:48;;67569:11;67544:10;67555;67544:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;67680:10;67649:15;:28;67665:11;67649:28;;;;;;;;;;;:41;;;;67821:15;:24;67837:7;67821:24;;;;;;;;;;;67814:31;;;67856:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66872:1008;;;66801:1079;:::o;64305:221::-;64390:14;64407:20;64424:2;64407:16;:20::i;:::-;64390:37;;64465:7;64438:12;:16;64451:2;64438:16;;;;;;;;;;;;;;;:24;64455:6;64438:24;;;;;;;;;;;:34;;;;64512:6;64483:17;:26;64501:7;64483:26;;;;;;;;;;;:35;;;;64379:147;64305:221;;:::o;52640:942::-;52734:1;52720:16;;:2;:16;;;52712:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52793:16;52801:7;52793;:16::i;:::-;52792:17;52784:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:48;52884:1;52888:2;52892:7;52901:1;52855:20;:48::i;:::-;53002:16;53010:7;53002;:16::i;:::-;53001:17;52993:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53417:1;53400:9;:13;53410:2;53400:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53461:2;53442:7;:16;53450:7;53442:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53506:7;53502:2;53481:33;;53498:1;53481:33;;;;;;;;;;;;53527:47;53555:1;53559:2;53563:7;53572:1;53527:19;:47::i;:::-;52640:942;;:::o;25622:326::-;25682:4;25939:1;25917:7;:19;;;:23;25910:30;;25622:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:114::-;8895:6;8929:5;8923:12;8913:22;;8828:114;;;:::o;8948:184::-;9047:11;9081:6;9076:3;9069:19;9121:4;9116:3;9112:14;9097:29;;8948:184;;;;:::o;9138:132::-;9205:4;9228:3;9220:11;;9258:4;9253:3;9249:14;9241:22;;9138:132;;;:::o;9276:108::-;9353:24;9371:5;9353:24;:::i;:::-;9348:3;9341:37;9276:108;;:::o;9390:179::-;9459:10;9480:46;9522:3;9514:6;9480:46;:::i;:::-;9558:4;9553:3;9549:14;9535:28;;9390:179;;;;:::o;9575:113::-;9645:4;9677;9672:3;9668:14;9660:22;;9575:113;;;:::o;9724:732::-;9843:3;9872:54;9920:5;9872:54;:::i;:::-;9942:86;10021:6;10016:3;9942:86;:::i;:::-;9935:93;;10052:56;10102:5;10052:56;:::i;:::-;10131:7;10162:1;10147:284;10172:6;10169:1;10166:13;10147:284;;;10248:6;10242:13;10275:63;10334:3;10319:13;10275:63;:::i;:::-;10268:70;;10361:60;10414:6;10361:60;:::i;:::-;10351:70;;10207:224;10194:1;10191;10187:9;10182:14;;10147:284;;;10151:14;10447:3;10440:10;;9848:608;;;9724:732;;;;:::o;10462:373::-;10605:4;10643:2;10632:9;10628:18;10620:26;;10692:9;10686:4;10682:20;10678:1;10667:9;10663:17;10656:47;10720:108;10823:4;10814:6;10720:108;:::i;:::-;10712:116;;10462:373;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:307::-;11637:4;11727:18;11719:6;11716:30;11713:56;;;11749:18;;:::i;:::-;11713:56;11787:29;11809:6;11787:29;:::i;:::-;11779:37;;11871:4;11865;11861:15;11853:23;;11576:307;;;:::o;11889:423::-;11966:5;11991:65;12007:48;12048:6;12007:48;:::i;:::-;11991:65;:::i;:::-;11982:74;;12079:6;12072:5;12065:21;12117:4;12110:5;12106:16;12155:3;12146:6;12141:3;12137:16;12134:25;12131:112;;;12162:79;;:::i;:::-;12131:112;12252:54;12299:6;12294:3;12289;12252:54;:::i;:::-;11972:340;11889:423;;;;;:::o;12331:338::-;12386:5;12435:3;12428:4;12420:6;12416:17;12412:27;12402:122;;12443:79;;:::i;:::-;12402:122;12560:6;12547:20;12585:78;12659:3;12651:6;12644:4;12636:6;12632:17;12585:78;:::i;:::-;12576:87;;12392:277;12331:338;;;;:::o;12675:943::-;12770:6;12778;12786;12794;12843:3;12831:9;12822:7;12818:23;12814:33;12811:120;;;12850:79;;:::i;:::-;12811:120;12970:1;12995:53;13040:7;13031:6;13020:9;13016:22;12995:53;:::i;:::-;12985:63;;12941:117;13097:2;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13068:118;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13381:2;13370:9;13366:18;13353:32;13412:18;13404:6;13401:30;13398:117;;;13434:79;;:::i;:::-;13398:117;13539:62;13593:7;13584:6;13573:9;13569:22;13539:62;:::i;:::-;13529:72;;13324:287;12675:943;;;;;;;:::o;13624:474::-;13692:6;13700;13749:2;13737:9;13728:7;13724:23;13720:32;13717:119;;;13755:79;;:::i;:::-;13717:119;13875:1;13900:53;13945:7;13936:6;13925:9;13921:22;13900:53;:::i;:::-;13890:63;;13846:117;14002:2;14028:53;14073:7;14064:6;14053:9;14049:22;14028:53;:::i;:::-;14018:63;;13973:118;13624:474;;;;;:::o;14104:180::-;14152:77;14149:1;14142:88;14249:4;14246:1;14239:15;14273:4;14270:1;14263:15;14290:320;14334:6;14371:1;14365:4;14361:12;14351:22;;14418:1;14412:4;14408:12;14439:18;14429:81;;14495:4;14487:6;14483:17;14473:27;;14429:81;14557:2;14549:6;14546:14;14526:18;14523:38;14520:84;;14576:18;;:::i;:::-;14520:84;14341:269;14290:320;;;:::o;14616:220::-;14756:34;14752:1;14744:6;14740:14;14733:58;14825:3;14820:2;14812:6;14808:15;14801:28;14616:220;:::o;14842:366::-;14984:3;15005:67;15069:2;15064:3;15005:67;:::i;:::-;14998:74;;15081:93;15170:3;15081:93;:::i;:::-;15199:2;15194:3;15190:12;15183:19;;14842:366;;;:::o;15214:419::-;15380:4;15418:2;15407:9;15403:18;15395:26;;15467:9;15461:4;15457:20;15453:1;15442:9;15438:17;15431:47;15495:131;15621:4;15495:131;:::i;:::-;15487:139;;15214:419;;;:::o;15639:248::-;15779:34;15775:1;15767:6;15763:14;15756:58;15848:31;15843:2;15835:6;15831:15;15824:56;15639:248;:::o;15893:366::-;16035:3;16056:67;16120:2;16115:3;16056:67;:::i;:::-;16049:74;;16132:93;16221:3;16132:93;:::i;:::-;16250:2;16245:3;16241:12;16234:19;;15893:366;;;:::o;16265:419::-;16431:4;16469:2;16458:9;16454:18;16446:26;;16518:9;16512:4;16508:20;16504:1;16493:9;16489:17;16482:47;16546:131;16672:4;16546:131;:::i;:::-;16538:139;;16265:419;;;:::o;16690:232::-;16830:34;16826:1;16818:6;16814:14;16807:58;16899:15;16894:2;16886:6;16882:15;16875:40;16690:232;:::o;16928:366::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:419::-;17466:4;17504:2;17493:9;17489:18;17481:26;;17553:9;17547:4;17543:20;17539:1;17528:9;17524:17;17517:47;17581:131;17707:4;17581:131;:::i;:::-;17573:139;;17300:419;;;:::o;17725:230::-;17865:34;17861:1;17853:6;17849:14;17842:58;17934:13;17929:2;17921:6;17917:15;17910:38;17725:230;:::o;17961:366::-;18103:3;18124:67;18188:2;18183:3;18124:67;:::i;:::-;18117:74;;18200:93;18289:3;18200:93;:::i;:::-;18318:2;18313:3;18309:12;18302:19;;17961:366;;;:::o;18333:419::-;18499:4;18537:2;18526:9;18522:18;18514:26;;18586:9;18580:4;18576:20;18572:1;18561:9;18557:17;18550:47;18614:131;18740:4;18614:131;:::i;:::-;18606:139;;18333:419;;;:::o;18758:231::-;18898:34;18894:1;18886:6;18882:14;18875:58;18967:14;18962:2;18954:6;18950:15;18943:39;18758:231;:::o;18995:366::-;19137:3;19158:67;19222:2;19217:3;19158:67;:::i;:::-;19151:74;;19234:93;19323:3;19234:93;:::i;:::-;19352:2;19347:3;19343:12;19336:19;;18995:366;;;:::o;19367:419::-;19533:4;19571:2;19560:9;19556:18;19548:26;;19620:9;19614:4;19610:20;19606:1;19595:9;19591:17;19584:47;19648:131;19774:4;19648:131;:::i;:::-;19640:139;;19367:419;;;:::o;19792:180::-;19840:77;19837:1;19830:88;19937:4;19934:1;19927:15;19961:4;19958:1;19951:15;19978:141;20027:4;20050:3;20042:11;;20073:3;20070:1;20063:14;20107:4;20104:1;20094:18;20086:26;;19978:141;;;:::o;20125:93::-;20162:6;20209:2;20204;20197:5;20193:14;20189:23;20179:33;;20125:93;;;:::o;20224:107::-;20268:8;20318:5;20312:4;20308:16;20287:37;;20224:107;;;;:::o;20337:393::-;20406:6;20456:1;20444:10;20440:18;20479:97;20509:66;20498:9;20479:97;:::i;:::-;20597:39;20627:8;20616:9;20597:39;:::i;:::-;20585:51;;20669:4;20665:9;20658:5;20654:21;20645:30;;20718:4;20708:8;20704:19;20697:5;20694:30;20684:40;;20413:317;;20337:393;;;;;:::o;20736:60::-;20764:3;20785:5;20778:12;;20736:60;;;:::o;20802:142::-;20852:9;20885:53;20903:34;20912:24;20930:5;20912:24;:::i;:::-;20903:34;:::i;:::-;20885:53;:::i;:::-;20872:66;;20802:142;;;:::o;20950:75::-;20993:3;21014:5;21007:12;;20950:75;;;:::o;21031:269::-;21141:39;21172:7;21141:39;:::i;:::-;21202:91;21251:41;21275:16;21251:41;:::i;:::-;21243:6;21236:4;21230:11;21202:91;:::i;:::-;21196:4;21189:105;21107:193;21031:269;;;:::o;21306:73::-;21351:3;21306:73;:::o;21385:189::-;21462:32;;:::i;:::-;21503:65;21561:6;21553;21547:4;21503:65;:::i;:::-;21438:136;21385:189;;:::o;21580:186::-;21640:120;21657:3;21650:5;21647:14;21640:120;;;21711:39;21748:1;21741:5;21711:39;:::i;:::-;21684:1;21677:5;21673:13;21664:22;;21640:120;;;21580:186;;:::o;21772:543::-;21873:2;21868:3;21865:11;21862:446;;;21907:38;21939:5;21907:38;:::i;:::-;21991:29;22009:10;21991:29;:::i;:::-;21981:8;21977:44;22174:2;22162:10;22159:18;22156:49;;;22195:8;22180:23;;22156:49;22218:80;22274:22;22292:3;22274:22;:::i;:::-;22264:8;22260:37;22247:11;22218:80;:::i;:::-;21877:431;;21862:446;21772:543;;;:::o;22321:117::-;22375:8;22425:5;22419:4;22415:16;22394:37;;22321:117;;;;:::o;22444:169::-;22488:6;22521:51;22569:1;22565:6;22557:5;22554:1;22550:13;22521:51;:::i;:::-;22517:56;22602:4;22596;22592:15;22582:25;;22495:118;22444:169;;;;:::o;22618:295::-;22694:4;22840:29;22865:3;22859:4;22840:29;:::i;:::-;22832:37;;22902:3;22899:1;22895:11;22889:4;22886:21;22878:29;;22618:295;;;;:::o;22918:1395::-;23035:37;23068:3;23035:37;:::i;:::-;23137:18;23129:6;23126:30;23123:56;;;23159:18;;:::i;:::-;23123:56;23203:38;23235:4;23229:11;23203:38;:::i;:::-;23288:67;23348:6;23340;23334:4;23288:67;:::i;:::-;23382:1;23406:4;23393:17;;23438:2;23430:6;23427:14;23455:1;23450:618;;;;24112:1;24129:6;24126:77;;;24178:9;24173:3;24169:19;24163:26;24154:35;;24126:77;24229:67;24289:6;24282:5;24229:67;:::i;:::-;24223:4;24216:81;24085:222;23420:887;;23450:618;23502:4;23498:9;23490:6;23486:22;23536:37;23568:4;23536:37;:::i;:::-;23595:1;23609:208;23623:7;23620:1;23617:14;23609:208;;;23702:9;23697:3;23693:19;23687:26;23679:6;23672:42;23753:1;23745:6;23741:14;23731:24;;23800:2;23789:9;23785:18;23772:31;;23646:4;23643:1;23639:12;23634:17;;23609:208;;;23845:6;23836:7;23833:19;23830:179;;;23903:9;23898:3;23894:19;23888:26;23946:48;23988:4;23980:6;23976:17;23965:9;23946:48;:::i;:::-;23938:6;23931:64;23853:156;23830:179;24055:1;24051;24043:6;24039:14;24035:22;24029:4;24022:36;23457:611;;;23420:887;;23010:1303;;;22918:1395;;:::o;24319:174::-;24459:26;24455:1;24447:6;24443:14;24436:50;24319:174;:::o;24499:366::-;24641:3;24662:67;24726:2;24721:3;24662:67;:::i;:::-;24655:74;;24738:93;24827:3;24738:93;:::i;:::-;24856:2;24851:3;24847:12;24840:19;;24499:366;;;:::o;24871:419::-;25037:4;25075:2;25064:9;25060:18;25052:26;;25124:9;25118:4;25114:20;25110:1;25099:9;25095:17;25088:47;25152:131;25278:4;25152:131;:::i;:::-;25144:139;;24871:419;;;:::o;25296:228::-;25436:34;25432:1;25424:6;25420:14;25413:58;25505:11;25500:2;25492:6;25488:15;25481:36;25296:228;:::o;25530:366::-;25672:3;25693:67;25757:2;25752:3;25693:67;:::i;:::-;25686:74;;25769:93;25858:3;25769:93;:::i;:::-;25887:2;25882:3;25878:12;25871:19;;25530:366;;;:::o;25902:419::-;26068:4;26106:2;26095:9;26091:18;26083:26;;26155:9;26149:4;26145:20;26141:1;26130:9;26126:17;26119:47;26183:131;26309:4;26183:131;:::i;:::-;26175:139;;25902:419;;;:::o;26327:180::-;26375:77;26372:1;26365:88;26472:4;26469:1;26462:15;26496:4;26493:1;26486:15;26513:233;26552:3;26575:24;26593:5;26575:24;:::i;:::-;26566:33;;26621:66;26614:5;26611:77;26608:103;;26691:18;;:::i;:::-;26608:103;26738:1;26731:5;26727:13;26720:20;;26513:233;;;:::o;26752:228::-;26892:34;26888:1;26880:6;26876:14;26869:58;26961:11;26956:2;26948:6;26944:15;26937:36;26752:228;:::o;26986:366::-;27128:3;27149:67;27213:2;27208:3;27149:67;:::i;:::-;27142:74;;27225:93;27314:3;27225:93;:::i;:::-;27343:2;27338:3;27334:12;27327:19;;26986:366;;;:::o;27358:419::-;27524:4;27562:2;27551:9;27547:18;27539:26;;27611:9;27605:4;27601:20;27597:1;27586:9;27582:17;27575:47;27639:131;27765:4;27639:131;:::i;:::-;27631:139;;27358:419;;;:::o;27783:191::-;27823:3;27842:20;27860:1;27842:20;:::i;:::-;27837:25;;27876:20;27894:1;27876:20;:::i;:::-;27871:25;;27919:1;27916;27912:9;27905:16;;27940:3;27937:1;27934:10;27931:36;;;27947:18;;:::i;:::-;27931:36;27783:191;;;;:::o;27980:176::-;28120:28;28116:1;28108:6;28104:14;28097:52;27980:176;:::o;28162:366::-;28304:3;28325:67;28389:2;28384:3;28325:67;:::i;:::-;28318:74;;28401:93;28490:3;28401:93;:::i;:::-;28519:2;28514:3;28510:12;28503:19;;28162:366;;;:::o;28534:419::-;28700:4;28738:2;28727:9;28723:18;28715:26;;28787:9;28781:4;28777:20;28773:1;28762:9;28758:17;28751:47;28815:131;28941:4;28815:131;:::i;:::-;28807:139;;28534:419;;;:::o;28959:410::-;28999:7;29022:20;29040:1;29022:20;:::i;:::-;29017:25;;29056:20;29074:1;29056:20;:::i;:::-;29051:25;;29111:1;29108;29104:9;29133:30;29151:11;29133:30;:::i;:::-;29122:41;;29312:1;29303:7;29299:15;29296:1;29293:22;29273:1;29266:9;29246:83;29223:139;;29342:18;;:::i;:::-;29223:139;29007:362;28959:410;;;;:::o;29375:181::-;29515:33;29511:1;29503:6;29499:14;29492:57;29375:181;:::o;29562:366::-;29704:3;29725:67;29789:2;29784:3;29725:67;:::i;:::-;29718:74;;29801:93;29890:3;29801:93;:::i;:::-;29919:2;29914:3;29910:12;29903:19;;29562:366;;;:::o;29934:419::-;30100:4;30138:2;30127:9;30123:18;30115:26;;30187:9;30181:4;30177:20;30173:1;30162:9;30158:17;30151:47;30215:131;30341:4;30215:131;:::i;:::-;30207:139;;29934:419;;;:::o;30359:180::-;30499:32;30495:1;30487:6;30483:14;30476:56;30359:180;:::o;30545:366::-;30687:3;30708:67;30772:2;30767:3;30708:67;:::i;:::-;30701:74;;30784:93;30873:3;30784:93;:::i;:::-;30902:2;30897:3;30893:12;30886:19;;30545:366;;;:::o;30917:419::-;31083:4;31121:2;31110:9;31106:18;31098:26;;31170:9;31164:4;31160:20;31156:1;31145:9;31141:17;31134:47;31198:131;31324:4;31198:131;:::i;:::-;31190:139;;30917:419;;;:::o;31342:170::-;31482:22;31478:1;31470:6;31466:14;31459:46;31342:170;:::o;31518:366::-;31660:3;31681:67;31745:2;31740:3;31681:67;:::i;:::-;31674:74;;31757:93;31846:3;31757:93;:::i;:::-;31875:2;31870:3;31866:12;31859:19;;31518:366;;;:::o;31890:419::-;32056:4;32094:2;32083:9;32079:18;32071:26;;32143:9;32137:4;32133:20;32129:1;32118:9;32114:17;32107:47;32171:131;32297:4;32171:131;:::i;:::-;32163:139;;31890:419;;;:::o;32315:194::-;32355:4;32375:20;32393:1;32375:20;:::i;:::-;32370:25;;32409:20;32427:1;32409:20;:::i;:::-;32404:25;;32453:1;32450;32446:9;32438:17;;32477:1;32471:4;32468:11;32465:37;;;32482:18;;:::i;:::-;32465:37;32315:194;;;;:::o;32515:234::-;32655:34;32651:1;32643:6;32639:14;32632:58;32724:17;32719:2;32711:6;32707:15;32700:42;32515:234;:::o;32755:366::-;32897:3;32918:67;32982:2;32977:3;32918:67;:::i;:::-;32911:74;;32994:93;33083:3;32994:93;:::i;:::-;33112:2;33107:3;33103:12;33096:19;;32755:366;;;:::o;33127:419::-;33293:4;33331:2;33320:9;33316:18;33308:26;;33380:9;33374:4;33370:20;33366:1;33355:9;33351:17;33344:47;33408:131;33534:4;33408:131;:::i;:::-;33400:139;;33127:419;;;:::o;33552:148::-;33654:11;33691:3;33676:18;;33552:148;;;;:::o;33706:390::-;33812:3;33840:39;33873:5;33840:39;:::i;:::-;33895:89;33977:6;33972:3;33895:89;:::i;:::-;33888:96;;33993:65;34051:6;34046:3;34039:4;34032:5;34028:16;33993:65;:::i;:::-;34083:6;34078:3;34074:16;34067:23;;33816:280;33706:390;;;;:::o;34102:155::-;34242:7;34238:1;34230:6;34226:14;34219:31;34102:155;:::o;34263:400::-;34423:3;34444:84;34526:1;34521:3;34444:84;:::i;:::-;34437:91;;34537:93;34626:3;34537:93;:::i;:::-;34655:1;34650:3;34646:11;34639:18;;34263:400;;;:::o;34669:701::-;34950:3;34972:95;35063:3;35054:6;34972:95;:::i;:::-;34965:102;;35084:95;35175:3;35166:6;35084:95;:::i;:::-;35077:102;;35196:148;35340:3;35196:148;:::i;:::-;35189:155;;35361:3;35354:10;;34669:701;;;;;:::o;35376:225::-;35516:34;35512:1;35504:6;35500:14;35493:58;35585:8;35580:2;35572:6;35568:15;35561:33;35376:225;:::o;35607:366::-;35749:3;35770:67;35834:2;35829:3;35770:67;:::i;:::-;35763:74;;35846:93;35935:3;35846:93;:::i;:::-;35964:2;35959:3;35955:12;35948:19;;35607:366;;;:::o;35979:419::-;36145:4;36183:2;36172:9;36168:18;36160:26;;36232:9;36226:4;36222:20;36218:1;36207:9;36203:17;36196:47;36260:131;36386:4;36260:131;:::i;:::-;36252:139;;35979:419;;;:::o;36404:224::-;36544:34;36540:1;36532:6;36528:14;36521:58;36613:7;36608:2;36600:6;36596:15;36589:32;36404:224;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:223::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:6;37635:2;37627:6;37623:15;37616:31;37431:223;:::o;37660:366::-;37802:3;37823:67;37887:2;37882:3;37823:67;:::i;:::-;37816:74;;37899:93;37988:3;37899:93;:::i;:::-;38017:2;38012:3;38008:12;38001:19;;37660:366;;;:::o;38032:419::-;38198:4;38236:2;38225:9;38221:18;38213:26;;38285:9;38279:4;38275:20;38271:1;38260:9;38256:17;38249:47;38313:131;38439:4;38313:131;:::i;:::-;38305:139;;38032:419;;;:::o;38457:182::-;38597:34;38593:1;38585:6;38581:14;38574:58;38457:182;:::o;38645:366::-;38787:3;38808:67;38872:2;38867:3;38808:67;:::i;:::-;38801:74;;38884:93;38973:3;38884:93;:::i;:::-;39002:2;38997:3;38993:12;38986:19;;38645:366;;;:::o;39017:419::-;39183:4;39221:2;39210:9;39206:18;39198:26;;39270:9;39264:4;39260:20;39256:1;39245:9;39241:17;39234:47;39298:131;39424:4;39298:131;:::i;:::-;39290:139;;39017:419;;;:::o;39442:181::-;39582:33;39578:1;39570:6;39566:14;39559:57;39442:181;:::o;39629:366::-;39771:3;39792:67;39856:2;39851:3;39792:67;:::i;:::-;39785:74;;39868:93;39957:3;39868:93;:::i;:::-;39986:2;39981:3;39977:12;39970:19;;39629:366;;;:::o;40001:419::-;40167:4;40205:2;40194:9;40190:18;40182:26;;40254:9;40248:4;40244:20;40240:1;40229:9;40225:17;40218:47;40282:131;40408:4;40282:131;:::i;:::-;40274:139;;40001:419;;;:::o;40426:79::-;40465:7;40494:5;40483:16;;40426:79;;;:::o;40511:157::-;40616:45;40636:24;40654:5;40636:24;:::i;:::-;40616:45;:::i;:::-;40611:3;40604:58;40511:157;;:::o;40674:94::-;40707:8;40755:5;40751:2;40747:14;40726:35;;40674:94;;;:::o;40774:::-;40813:7;40842:20;40856:5;40842:20;:::i;:::-;40831:31;;40774:94;;;:::o;40874:100::-;40913:7;40942:26;40962:5;40942:26;:::i;:::-;40931:37;;40874:100;;;:::o;40980:157::-;41085:45;41105:24;41123:5;41105:24;:::i;:::-;41085:45;:::i;:::-;41080:3;41073:58;40980:157;;:::o;41143:538::-;41311:3;41326:75;41397:3;41388:6;41326:75;:::i;:::-;41426:2;41421:3;41417:12;41410:19;;41439:75;41510:3;41501:6;41439:75;:::i;:::-;41539:2;41534:3;41530:12;41523:19;;41552:75;41623:3;41614:6;41552:75;:::i;:::-;41652:2;41647:3;41643:12;41636:19;;41672:3;41665:10;;41143:538;;;;;;:::o;41687:180::-;41735:77;41732:1;41725:88;41832:4;41829:1;41822:15;41856:4;41853:1;41846:15;41873:176;41905:1;41922:20;41940:1;41922:20;:::i;:::-;41917:25;;41956:20;41974:1;41956:20;:::i;:::-;41951:25;;41995:1;41985:35;;42000:18;;:::i;:::-;41985:35;42041:1;42038;42034:9;42029:14;;41873:176;;;;:::o;42055:175::-;42195:27;42191:1;42183:6;42179:14;42172:51;42055:175;:::o;42236:366::-;42378:3;42399:67;42463:2;42458:3;42399:67;:::i;:::-;42392:74;;42475:93;42564:3;42475:93;:::i;:::-;42593:2;42588:3;42584:12;42577:19;;42236:366;;;:::o;42608:419::-;42774:4;42812:2;42801:9;42797:18;42789:26;;42861:9;42855:4;42851:20;42847:1;42836:9;42832:17;42825:47;42889:131;43015:4;42889:131;:::i;:::-;42881:139;;42608:419;;;:::o;43033:237::-;43173:34;43169:1;43161:6;43157:14;43150:58;43242:20;43237:2;43229:6;43225:15;43218:45;43033:237;:::o;43276:366::-;43418:3;43439:67;43503:2;43498:3;43439:67;:::i;:::-;43432:74;;43515:93;43604:3;43515:93;:::i;:::-;43633:2;43628:3;43624:12;43617:19;;43276:366;;;:::o;43648:419::-;43814:4;43852:2;43841:9;43837:18;43829:26;;43901:9;43895:4;43891:20;43887:1;43876:9;43872:17;43865:47;43929:131;44055:4;43929:131;:::i;:::-;43921:139;;43648:419;;;:::o;44073:240::-;44213:34;44209:1;44201:6;44197:14;44190:58;44282:23;44277:2;44269:6;44265:15;44258:48;44073:240;:::o;44319:366::-;44461:3;44482:67;44546:2;44541:3;44482:67;:::i;:::-;44475:74;;44558:93;44647:3;44558:93;:::i;:::-;44676:2;44671:3;44667:12;44660:19;;44319:366;;;:::o;44691:419::-;44857:4;44895:2;44884:9;44880:18;44872:26;;44944:9;44938:4;44934:20;44930:1;44919:9;44915:17;44908:47;44972:131;45098:4;44972:131;:::i;:::-;44964:139;;44691:419;;;:::o;45116:98::-;45167:6;45201:5;45195:12;45185:22;;45116:98;;;:::o;45220:168::-;45303:11;45337:6;45332:3;45325:19;45377:4;45372:3;45368:14;45353:29;;45220:168;;;;:::o;45394:373::-;45480:3;45508:38;45540:5;45508:38;:::i;:::-;45562:70;45625:6;45620:3;45562:70;:::i;:::-;45555:77;;45641:65;45699:6;45694:3;45687:4;45680:5;45676:16;45641:65;:::i;:::-;45731:29;45753:6;45731:29;:::i;:::-;45726:3;45722:39;45715:46;;45484:283;45394:373;;;;:::o;45773:640::-;45968:4;46006:3;45995:9;45991:19;45983:27;;46020:71;46088:1;46077:9;46073:17;46064:6;46020:71;:::i;:::-;46101:72;46169:2;46158:9;46154:18;46145:6;46101:72;:::i;:::-;46183;46251:2;46240:9;46236:18;46227:6;46183:72;:::i;:::-;46302:9;46296:4;46292:20;46287:2;46276:9;46272:18;46265:48;46330:76;46401:4;46392:6;46330:76;:::i;:::-;46322:84;;45773:640;;;;;;;:::o;46419:141::-;46475:5;46506:6;46500:13;46491:22;;46522:32;46548:5;46522:32;:::i;:::-;46419:141;;;;:::o;46566:349::-;46635:6;46684:2;46672:9;46663:7;46659:23;46655:32;46652:119;;;46690:79;;:::i;:::-;46652:119;46810:1;46835:63;46890:7;46881:6;46870:9;46866:22;46835:63;:::i;:::-;46825:73;;46781:127;46566:349;;;;:::o;46921:180::-;46969:77;46966:1;46959:88;47066:4;47063:1;47056:15;47090:4;47087:1;47080:15;47107:182;47247:34;47243:1;47235:6;47231:14;47224:58;47107:182;:::o;47295:366::-;47437:3;47458:67;47522:2;47517:3;47458:67;:::i;:::-;47451:74;;47534:93;47623:3;47534:93;:::i;:::-;47652:2;47647:3;47643:12;47636:19;;47295:366;;;:::o;47667:419::-;47833:4;47871:2;47860:9;47856:18;47848:26;;47920:9;47914:4;47910:20;47906:1;47895:9;47891:17;47884:47;47948:131;48074:4;47948:131;:::i;:::-;47940:139;;47667:419;;;:::o;48092:178::-;48232:30;48228:1;48220:6;48216:14;48209:54;48092:178;:::o;48276:366::-;48418:3;48439:67;48503:2;48498:3;48439:67;:::i;:::-;48432:74;;48515:93;48604:3;48515:93;:::i;:::-;48633:2;48628:3;48624:12;48617:19;;48276:366;;;:::o;48648:419::-;48814:4;48852:2;48841:9;48837:18;48829:26;;48901:9;48895:4;48891:20;48887:1;48876:9;48872:17;48865:47;48929:131;49055:4;48929:131;:::i;:::-;48921:139;;48648:419;;;:::o

Swarm Source

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