ETH Price: $3,423.70 (+0.55%)
Gas: 8 Gwei

Token

PunnyPickles (PP)
 

Overview

Max Total Supply

1,858 PP

Holders

485

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 PP
0x97c5c3d13e5b5ff00babd2987a0914566190c39c
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:
PunnyPickles

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-25
*/

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) 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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

// File: PunnyPickles.sol

/*
__________                            __________.__        __   .__                 
\______   \__ __  ____   ____ ___.__. \______   \__| ____ |  | _|  |   ____   ______
 |     ___/  |  \/    \ /    <   |  |  |     ___/  |/ ___\|  |/ /  | _/ __ \ /  ___/
 |    |   |  |  /   |  \   |  \___  |  |    |   |  \  \___|    <|  |_\  ___/ \___ \ 
 |____|   |____/|___|  /___|  / ____|  |____|   |__|\___  >__|_ \____/\___  >____  >
                     \/     \/\/                        \/     \/         \/     \/ 

*/

pragma solidity 0.8.17;





contract PunnyPickles is ERC721, ERC721URIStorage, DefaultOperatorFilterer, Ownable {

    uint256 public _totalSupply = 5555;
    uint256 public _tokenId = 0; 
    bool public PAUSED = true;
    uint public MINT_PRICE = 0 ether;
    uint256 public MAX_MINT = 3;
    string public baseURI = "ipfs://QmQBi7aEackAdxHLooUgKPhqjK52oLS77NMcTgPw6kgFZw/";

    constructor() ERC721("PunnyPickles", "PP") {
        baseURI;
    }

    function togglePause() public onlyOwner {
        PAUSED = !PAUSED;
    }

    function safeMint(address to, uint256 _numTokens) public payable {
        require(PAUSED == false, "Minting is currently paused.");
        require(balanceOf(to) + _numTokens <= MAX_MINT, "The specified address already holds the maximum number of mintable NFTs.");
        require(msg.value >= MINT_PRICE, "Not enough ether sent.");
        require((_tokenId + _numTokens) <= _totalSupply, "Total Supply cannot be exceeded.");
        require(_numTokens <= MAX_MINT, "You cannot mint that many in one transaction.");

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _tokenId++;
            _safeMint(to, _tokenId);
            _setTokenURI(_tokenId, baseURI);
        }       
    }

    function withdrawAll() external payable onlyOwner {
        require(address(this).balance > 0, "Zero Balance");
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 50 / 100;
        uint256 balanceTwo = balance * 50 / 100;
        ( bool transferOne, ) = payable(0xB3Fd26693c5d392D2db1f9cA6ec5e38E76f6447B).call{value: balanceOne}("");
        ( bool transferTwo, ) = payable(0x4Caae36aBddec390a2ccad46d94aac287932d6Ec).call{value: balanceTwo}("");
        require(transferOne && transferTwo, "Transfer failed.");
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setSupply(uint _MAX_SUPPLY) external onlyOwner {
        if (_MAX_SUPPLY <= _totalSupply && _MAX_SUPPLY > _tokenId) {
            _totalSupply = _MAX_SUPPLY;
        }
    }

    function setMaxMint(uint _MAX_MINT) external onlyOwner {
        MAX_MINT = _MAX_MINT;
    }

    function totalSupply() public virtual view returns (uint256) {
        return _totalSupply;
    }
  
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)

        returns (string memory)
    {
        return string.concat(baseURI, Strings.toString(tokenId), ".json");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenId","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":"operator","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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINT","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b360085560006009556001600a60006101000a81548160ff0219169083151502179055506000600b556003600c5560405180606001604052806036815260200162004b2b60369139600d90816200005e91906200067b565b503480156200006c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f50756e6e795069636b6c657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f505000000000000000000000000000000000000000000000000000000000000081525081600090816200010191906200067b565b5080600190816200011391906200067b565b50505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200030b578015620001d1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000197929190620007a7565b600060405180830381600087803b158015620001b257600080fd5b505af1158015620001c7573d6000803e3d6000fd5b505050506200030a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200028b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000251929190620007a7565b600060405180830381600087803b1580156200026c57600080fd5b505af115801562000281573d6000803e3d6000fd5b5050505062000309565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d49190620007d4565b600060405180830381600087803b158015620002ef57600080fd5b505af115801562000304573d6000803e3d6000fd5b505050505b5b5b50506200032d620003216200033360201b60201c565b6200033b60201b60201c565b620007f1565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048357607f821691505b6020821081036200049957620004986200043b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004c4565b6200050f8683620004c4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200055c62000556620005508462000527565b62000531565b62000527565b9050919050565b6000819050919050565b62000578836200053b565b62000590620005878262000563565b848454620004d1565b825550505050565b600090565b620005a762000598565b620005b48184846200056d565b505050565b5b81811015620005dc57620005d06000826200059d565b600181019050620005ba565b5050565b601f8211156200062b57620005f5816200049f565b6200060084620004b4565b8101602085101562000610578190505b620006286200061f85620004b4565b830182620005b9565b50505b505050565b600082821c905092915050565b6000620006506000198460080262000630565b1980831691505092915050565b60006200066b83836200063d565b9150826002028217905092915050565b620006868262000401565b67ffffffffffffffff811115620006a257620006a16200040c565b5b620006ae82546200046a565b620006bb828285620005e0565b600060209050601f831160018114620006f35760008415620006de578287015190505b620006ea85826200065d565b8655506200075a565b601f19841662000703866200049f565b60005b828110156200072d5784890151825560018201915060208501945060208101905062000706565b868310156200074d578489015162000749601f8916826200063d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200078f8262000762565b9050919050565b620007a18162000782565b82525050565b6000604082019050620007be600083018562000796565b620007cd602083018462000796565b9392505050565b6000602082019050620007eb600083018462000796565b92915050565b61432a80620008016000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a9aad58c11610095578063c87b56dd11610064578063c87b56dd14610610578063e985e9c51461064d578063f0292a031461068a578063f2fde38b146106b5576101cd565b8063a9aad58c1461057a578063b88d4fde146105a5578063c002d23d146105ce578063c4ae3168146105f9576101cd565b80638da5cb5b116100d15780638da5cb5b146104df57806395d89b411461050a578063a144819414610535578063a22cb46514610551576101cd565b806370a0823114610481578063715018a6146104be578063853828b6146104d5576101cd565b80633b4c4b251161016f578063547520fe1161013e578063547520fe146103c757806355f804b3146103f05780636352211e146104195780636c0360eb14610456576101cd565b80633b4c4b251461031f5780633eaaf86b1461034857806341f434341461037357806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806324822514146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612a9d565b6106de565b6040516102069190612ae5565b60405180910390f35b34801561021b57600080fd5b506102246107c0565b6040516102319190612b90565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612be8565b610852565b60405161026e9190612c56565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612c9d565b610898565b005b3480156102ac57600080fd5b506102b56109a2565b6040516102c29190612cec565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d07565b6109ac565b005b34801561030057600080fd5b50610309610afc565b6040516103169190612cec565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612be8565b610b02565b005b34801561035457600080fd5b5061035d610b2d565b60405161036a9190612cec565b60405180910390f35b34801561037f57600080fd5b50610388610b33565b6040516103959190612db9565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612d07565b610b45565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612be8565b610c95565b005b3480156103fc57600080fd5b5061041760048036038101906104129190612f09565b610ca7565b005b34801561042557600080fd5b50610440600480360381019061043b9190612be8565b610cc2565b60405161044d9190612c56565b60405180910390f35b34801561046257600080fd5b5061046b610d48565b6040516104789190612b90565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612f52565b610dd6565b6040516104b59190612cec565b60405180910390f35b3480156104ca57600080fd5b506104d3610e8d565b005b6104dd610ea1565b005b3480156104eb57600080fd5b506104f461107b565b6040516105019190612c56565b60405180910390f35b34801561051657600080fd5b5061051f6110a5565b60405161052c9190612b90565b60405180910390f35b61054f600480360381019061054a9190612c9d565b611137565b005b34801561055d57600080fd5b5061057860048036038101906105739190612fab565b61139f565b005b34801561058657600080fd5b5061058f6114a9565b60405161059c9190612ae5565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061308c565b6114bc565b005b3480156105da57600080fd5b506105e361160f565b6040516105f09190612cec565b60405180910390f35b34801561060557600080fd5b5061060e611615565b005b34801561061c57600080fd5b5061063760048036038101906106329190612be8565b611649565b6040516106449190612b90565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061310f565b61167d565b6040516106819190612ae5565b60405180910390f35b34801561069657600080fd5b5061069f611711565b6040516106ac9190612cec565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612f52565b611717565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b957506107b88261179a565b5b9050919050565b6060600080546107cf9061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb9061317e565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061085d82611804565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109109291906131af565b602060405180830381865afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095191906131ed565b61099257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109899190612c56565b60405180910390fd5b5b61099d838361184f565b505050565b6000600854905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aea573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1e57610a19848484611966565b610af6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a679291906131af565b602060405180830381865afa158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa891906131ed565b610ae957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae09190612c56565b60405180910390fd5b5b610af5848484611966565b5b50505050565b60095481565b610b0a6119c6565b6008548111158015610b1d575060095481115b15610b2a57806008819055505b50565b60085481565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c83573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb757610bb2848484611a44565b610c8f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c009291906131af565b602060405180830381865afa158015610c1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4191906131ed565b610c8257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c799190612c56565b60405180910390fd5b5b610c8e848484611a44565b5b50505050565b610c9d6119c6565b80600c8190555050565b610caf6119c6565b80600d9081610cbe91906133bc565b5050565b600080610cce83611a64565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906134da565b60405180910390fd5b80915050919050565b600d8054610d559061317e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d819061317e565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d9061356c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e956119c6565b610e9f6000611aa1565b565b610ea96119c6565b60004711610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906135d8565b60405180910390fd5b600047905060006064603283610f029190613627565b610f0c9190613698565b905060006064603284610f1f9190613627565b610f299190613698565b9050600073b3fd26693c5d392d2db1f9ca6ec5e38e76f6447b73ffffffffffffffffffffffffffffffffffffffff1683604051610f65906136fa565b60006040518083038185875af1925050503d8060008114610fa2576040519150601f19603f3d011682016040523d82523d6000602084013e610fa7565b606091505b505090506000734caae36abddec390a2ccad46d94aac287932d6ec73ffffffffffffffffffffffffffffffffffffffff1683604051610fe5906136fa565b60006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508180156110355750805b611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061375b565b60405180910390fd5b5050505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110b49061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546110e09061317e565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b5050505050905090565b60001515600a60009054906101000a900460ff1615151461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906137c7565b60405180910390fd5b600c548161119a84610dd6565b6111a491906137e7565b11156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906138b3565b60405180910390fd5b600b5434101561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061391f565b60405180910390fd5b6008548160095461123b91906137e7565b111561127c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112739061398b565b60405180910390fd5b600c548111156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613a1d565b60405180910390fd5b6000600190505b81811161139a57600960008154809291906112e290613a3d565b91905055506112f383600954611b67565b611389600954600d80546113069061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546113329061317e565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b5050505050611b85565b8061139390613a3d565b90506112c8565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561149a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114179291906131af565b602060405180830381865afa158015611434573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145891906131ed565b61149957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114909190612c56565b60405180910390fd5b5b6114a48383611bf2565b505050565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115fb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152f5761152a85858585611c08565b611608565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115789291906131af565b602060405180830381865afa158015611595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b991906131ed565b6115fa57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115f19190612c56565b60405180910390fd5b5b61160785858585611c08565b5b5050505050565b600b5481565b61161d6119c6565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600d61165683611c6a565b604051602001611667929190613b6a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61171f6119c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613c0f565b60405180910390fd5b61179781611aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61180d81611d38565b61184c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611843906134da565b60405180910390fd5b50565b600061185a82610cc2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613ca1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166118e9611d79565b73ffffffffffffffffffffffffffffffffffffffff161480611918575061191781611912611d79565b61167d565b5b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613d33565b60405180910390fd5b6119618383611d81565b505050565b611977611971611d79565b82611e3a565b6119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad90613dc5565b60405180910390fd5b6119c1838383611ecf565b505050565b6119ce611d79565b73ffffffffffffffffffffffffffffffffffffffff166119ec61107b565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613e31565b60405180910390fd5b565b611a5f838383604051806020016040528060008152506114bc565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b818282604051806020016040528060008152506121c8565b5050565b611b8e82611d38565b611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613ec3565b60405180910390fd5b80600660008481526020019081526020016000209081611bed91906133bc565b505050565b611c04611bfd611d79565b8383612223565b5050565b611c19611c13611d79565b83611e3a565b611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90613dc5565b60405180910390fd5b611c648484848461238f565b50505050565b606060006001611c79846123eb565b01905060008167ffffffffffffffff811115611c9857611c97612dde565b5b6040519080825280601f01601f191660200182016040528015611cca5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d2157611d20613669565b5b04945060008503611cd8575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611d5a83611a64565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611df483610cc2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e4683610cc2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e885750611e87818561167d565b5b80611ec657508373ffffffffffffffffffffffffffffffffffffffff16611eae84610852565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eef82610cc2565b73ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613f55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613fe7565b60405180910390fd5b611fc1838383600161253e565b8273ffffffffffffffffffffffffffffffffffffffff16611fe182610cc2565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613f55565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c38383836001612664565b505050565b6121d2838361266a565b6121df6000848484612887565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590614079565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906140e5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123829190612ae5565b60405180910390a3505050565b61239a848484611ecf565b6123a684848484612887565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc90614079565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612449577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161243f5761243e613669565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612486576d04ee2d6d415b85acef8100000000838161247c5761247b613669565b5b0492506020810190505b662386f26fc1000083106124b557662386f26fc1000083816124ab576124aa613669565b5b0492506010810190505b6305f5e10083106124de576305f5e10083816124d4576124d3613669565b5b0492506008810190505b61271083106125035761271083816124f9576124f8613669565b5b0492506004810190505b60648310612526576064838161251c5761251b613669565b5b0492506002810190505b600a8310612535576001810190505b80915050919050565b600181111561265e57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125d25780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ca9190614105565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461265d5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265591906137e7565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614185565b60405180910390fd5b6126e281611d38565b15612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906141f1565b60405180910390fd5b61273060008383600161253e565b61273981611d38565b15612779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612770906141f1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612883600083836001612664565b5050565b60006128a88473ffffffffffffffffffffffffffffffffffffffff16612a0e565b15612a01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d1611d79565b8786866040518563ffffffff1660e01b81526004016128f39493929190614266565b6020604051808303816000875af192505050801561292f57506040513d601f19601f8201168201806040525081019061292c91906142c7565b60015b6129b1573d806000811461295f576040519150601f19603f3d011682016040523d82523d6000602084013e612964565b606091505b5060008151036129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a06565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7a81612a45565b8114612a8557600080fd5b50565b600081359050612a9781612a71565b92915050565b600060208284031215612ab357612ab2612a3b565b5b6000612ac184828501612a88565b91505092915050565b60008115159050919050565b612adf81612aca565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3a578082015181840152602081019050612b1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6282612b00565b612b6c8185612b0b565b9350612b7c818560208601612b1c565b612b8581612b46565b840191505092915050565b60006020820190508181036000830152612baa8184612b57565b905092915050565b6000819050919050565b612bc581612bb2565b8114612bd057600080fd5b50565b600081359050612be281612bbc565b92915050565b600060208284031215612bfe57612bfd612a3b565b5b6000612c0c84828501612bd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4082612c15565b9050919050565b612c5081612c35565b82525050565b6000602082019050612c6b6000830184612c47565b92915050565b612c7a81612c35565b8114612c8557600080fd5b50565b600081359050612c9781612c71565b92915050565b60008060408385031215612cb457612cb3612a3b565b5b6000612cc285828601612c88565b9250506020612cd385828601612bd3565b9150509250929050565b612ce681612bb2565b82525050565b6000602082019050612d016000830184612cdd565b92915050565b600080600060608486031215612d2057612d1f612a3b565b5b6000612d2e86828701612c88565b9350506020612d3f86828701612c88565b9250506040612d5086828701612bd3565b9150509250925092565b6000819050919050565b6000612d7f612d7a612d7584612c15565b612d5a565b612c15565b9050919050565b6000612d9182612d64565b9050919050565b6000612da382612d86565b9050919050565b612db381612d98565b82525050565b6000602082019050612dce6000830184612daa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e1682612b46565b810181811067ffffffffffffffff82111715612e3557612e34612dde565b5b80604052505050565b6000612e48612a31565b9050612e548282612e0d565b919050565b600067ffffffffffffffff821115612e7457612e73612dde565b5b612e7d82612b46565b9050602081019050919050565b82818337600083830152505050565b6000612eac612ea784612e59565b612e3e565b905082815260208101848484011115612ec857612ec7612dd9565b5b612ed3848285612e8a565b509392505050565b600082601f830112612ef057612eef612dd4565b5b8135612f00848260208601612e99565b91505092915050565b600060208284031215612f1f57612f1e612a3b565b5b600082013567ffffffffffffffff811115612f3d57612f3c612a40565b5b612f4984828501612edb565b91505092915050565b600060208284031215612f6857612f67612a3b565b5b6000612f7684828501612c88565b91505092915050565b612f8881612aca565b8114612f9357600080fd5b50565b600081359050612fa581612f7f565b92915050565b60008060408385031215612fc257612fc1612a3b565b5b6000612fd085828601612c88565b9250506020612fe185828601612f96565b9150509250929050565b600067ffffffffffffffff82111561300657613005612dde565b5b61300f82612b46565b9050602081019050919050565b600061302f61302a84612feb565b612e3e565b90508281526020810184848401111561304b5761304a612dd9565b5b613056848285612e8a565b509392505050565b600082601f83011261307357613072612dd4565b5b813561308384826020860161301c565b91505092915050565b600080600080608085870312156130a6576130a5612a3b565b5b60006130b487828801612c88565b94505060206130c587828801612c88565b93505060406130d687828801612bd3565b925050606085013567ffffffffffffffff8111156130f7576130f6612a40565b5b6131038782880161305e565b91505092959194509250565b6000806040838503121561312657613125612a3b565b5b600061313485828601612c88565b925050602061314585828601612c88565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319657607f821691505b6020821081036131a9576131a861314f565b5b50919050565b60006040820190506131c46000830185612c47565b6131d16020830184612c47565b9392505050565b6000815190506131e781612f7f565b92915050565b60006020828403121561320357613202612a3b565b5b6000613211848285016131d8565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261327c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261323f565b613286868361323f565b95508019841693508086168417925050509392505050565b60006132b96132b46132af84612bb2565b612d5a565b612bb2565b9050919050565b6000819050919050565b6132d38361329e565b6132e76132df826132c0565b84845461324c565b825550505050565b600090565b6132fc6132ef565b6133078184846132ca565b505050565b5b8181101561332b576133206000826132f4565b60018101905061330d565b5050565b601f821115613370576133418161321a565b61334a8461322f565b81016020851015613359578190505b61336d6133658561322f565b83018261330c565b50505b505050565b600082821c905092915050565b600061339360001984600802613375565b1980831691505092915050565b60006133ac8383613382565b9150826002028217905092915050565b6133c582612b00565b67ffffffffffffffff8111156133de576133dd612dde565b5b6133e8825461317e565b6133f382828561332f565b600060209050601f8311600181146134265760008415613414578287015190505b61341e85826133a0565b865550613486565b601f1984166134348661321a565b60005b8281101561345c57848901518255600182019150602085019450602081019050613437565b868310156134795784890151613475601f891682613382565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006134c4601883612b0b565b91506134cf8261348e565b602082019050919050565b600060208201905081810360008301526134f3816134b7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613556602983612b0b565b9150613561826134fa565b604082019050919050565b6000602082019050818103600083015261358581613549565b9050919050565b7f5a65726f2042616c616e63650000000000000000000000000000000000000000600082015250565b60006135c2600c83612b0b565b91506135cd8261358c565b602082019050919050565b600060208201905081810360008301526135f1816135b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061363282612bb2565b915061363d83612bb2565b925082820261364b81612bb2565b91508282048414831517613662576136616135f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136a382612bb2565b91506136ae83612bb2565b9250826136be576136bd613669565b5b828204905092915050565b600081905092915050565b50565b60006136e46000836136c9565b91506136ef826136d4565b600082019050919050565b6000613705826136d7565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613745601083612b0b565b91506137508261370f565b602082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365642e00000000600082015250565b60006137b1601c83612b0b565b91506137bc8261377b565b602082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b60006137f282612bb2565b91506137fd83612bb2565b9250828201905080821115613815576138146135f8565b5b92915050565b7f54686520737065636966696564206164647265737320616c726561647920686f60008201527f6c647320746865206d6178696d756d206e756d626572206f66206d696e74616260208201527f6c65204e4654732e000000000000000000000000000000000000000000000000604082015250565b600061389d604883612b0b565b91506138a88261381b565b606082019050919050565b600060208201905081810360008301526138cc81613890565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6000613909601683612b0b565b9150613914826138d3565b602082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f546f74616c20537570706c792063616e6e6f742062652065786365656465642e600082015250565b6000613975602083612b0b565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613a07602d83612b0b565b9150613a12826139ab565b604082019050919050565b60006020820190508181036000830152613a36816139fa565b9050919050565b6000613a4882612bb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a7a57613a796135f8565b5b600182019050919050565b600081905092915050565b60008154613a9d8161317e565b613aa78186613a85565b94506001821660008114613ac25760018114613ad757613b0a565b60ff1983168652811515820286019350613b0a565b613ae08561321a565b60005b83811015613b0257815481890152600182019150602081019050613ae3565b838801955050505b50505092915050565b6000613b1e82612b00565b613b288185613a85565b9350613b38818560208601612b1c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613b768285613a90565b9150613b828284613b13565b9150613b8d82613b44565b6005820191508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bf9602683612b0b565b9150613c0482613b9d565b604082019050919050565b60006020820190508181036000830152613c2881613bec565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8b602183612b0b565b9150613c9682613c2f565b604082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613d1d603d83612b0b565b9150613d2882613cc1565b604082019050919050565b60006020820190508181036000830152613d4c81613d10565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613daf602d83612b0b565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e1b602083612b0b565b9150613e2682613de5565b602082019050919050565b60006020820190508181036000830152613e4a81613e0e565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613ead602e83612b0b565b9150613eb882613e51565b604082019050919050565b60006020820190508181036000830152613edc81613ea0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613f3f602583612b0b565b9150613f4a82613ee3565b604082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fd1602483612b0b565b9150613fdc82613f75565b604082019050919050565b6000602082019050818103600083015261400081613fc4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614063603283612b0b565b915061406e82614007565b604082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140cf601983612b0b565b91506140da82614099565b602082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b600061411082612bb2565b915061411b83612bb2565b9250828203905081811115614133576141326135f8565b5b92915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061416f602083612b0b565b915061417a82614139565b602082019050919050565b6000602082019050818103600083015261419e81614162565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141db601c83612b0b565b91506141e6826141a5565b602082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061423882614211565b614242818561421c565b9350614252818560208601612b1c565b61425b81612b46565b840191505092915050565b600060808201905061427b6000830187612c47565b6142886020830186612c47565b6142956040830185612cdd565b81810360608301526142a7818461422d565b905095945050505050565b6000815190506142c181612a71565b92915050565b6000602082840312156142dd576142dc612a3b565b5b60006142eb848285016142b2565b9150509291505056fea26469706673582212208923051ac49c8749f8162abc61210efaf4fb597f5eb2791287be6aeeedb534e164736f6c63430008110033697066733a2f2f516d51426937614561636b416478484c6f6f55674b5068716a4b35326f4c5337374e4d6354675077366b67465a772f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a9aad58c11610095578063c87b56dd11610064578063c87b56dd14610610578063e985e9c51461064d578063f0292a031461068a578063f2fde38b146106b5576101cd565b8063a9aad58c1461057a578063b88d4fde146105a5578063c002d23d146105ce578063c4ae3168146105f9576101cd565b80638da5cb5b116100d15780638da5cb5b146104df57806395d89b411461050a578063a144819414610535578063a22cb46514610551576101cd565b806370a0823114610481578063715018a6146104be578063853828b6146104d5576101cd565b80633b4c4b251161016f578063547520fe1161013e578063547520fe146103c757806355f804b3146103f05780636352211e146104195780636c0360eb14610456576101cd565b80633b4c4b251461031f5780633eaaf86b1461034857806341f434341461037357806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806324822514146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612a9d565b6106de565b6040516102069190612ae5565b60405180910390f35b34801561021b57600080fd5b506102246107c0565b6040516102319190612b90565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612be8565b610852565b60405161026e9190612c56565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612c9d565b610898565b005b3480156102ac57600080fd5b506102b56109a2565b6040516102c29190612cec565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d07565b6109ac565b005b34801561030057600080fd5b50610309610afc565b6040516103169190612cec565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612be8565b610b02565b005b34801561035457600080fd5b5061035d610b2d565b60405161036a9190612cec565b60405180910390f35b34801561037f57600080fd5b50610388610b33565b6040516103959190612db9565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612d07565b610b45565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612be8565b610c95565b005b3480156103fc57600080fd5b5061041760048036038101906104129190612f09565b610ca7565b005b34801561042557600080fd5b50610440600480360381019061043b9190612be8565b610cc2565b60405161044d9190612c56565b60405180910390f35b34801561046257600080fd5b5061046b610d48565b6040516104789190612b90565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612f52565b610dd6565b6040516104b59190612cec565b60405180910390f35b3480156104ca57600080fd5b506104d3610e8d565b005b6104dd610ea1565b005b3480156104eb57600080fd5b506104f461107b565b6040516105019190612c56565b60405180910390f35b34801561051657600080fd5b5061051f6110a5565b60405161052c9190612b90565b60405180910390f35b61054f600480360381019061054a9190612c9d565b611137565b005b34801561055d57600080fd5b5061057860048036038101906105739190612fab565b61139f565b005b34801561058657600080fd5b5061058f6114a9565b60405161059c9190612ae5565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c7919061308c565b6114bc565b005b3480156105da57600080fd5b506105e361160f565b6040516105f09190612cec565b60405180910390f35b34801561060557600080fd5b5061060e611615565b005b34801561061c57600080fd5b5061063760048036038101906106329190612be8565b611649565b6040516106449190612b90565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061310f565b61167d565b6040516106819190612ae5565b60405180910390f35b34801561069657600080fd5b5061069f611711565b6040516106ac9190612cec565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612f52565b611717565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b957506107b88261179a565b5b9050919050565b6060600080546107cf9061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb9061317e565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061085d82611804565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109109291906131af565b602060405180830381865afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095191906131ed565b61099257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109899190612c56565b60405180910390fd5b5b61099d838361184f565b505050565b6000600854905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aea573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1e57610a19848484611966565b610af6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a679291906131af565b602060405180830381865afa158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa891906131ed565b610ae957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ae09190612c56565b60405180910390fd5b5b610af5848484611966565b5b50505050565b60095481565b610b0a6119c6565b6008548111158015610b1d575060095481115b15610b2a57806008819055505b50565b60085481565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c83573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb757610bb2848484611a44565b610c8f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c009291906131af565b602060405180830381865afa158015610c1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4191906131ed565b610c8257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c799190612c56565b60405180910390fd5b5b610c8e848484611a44565b5b50505050565b610c9d6119c6565b80600c8190555050565b610caf6119c6565b80600d9081610cbe91906133bc565b5050565b600080610cce83611a64565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906134da565b60405180910390fd5b80915050919050565b600d8054610d559061317e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d819061317e565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d9061356c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e956119c6565b610e9f6000611aa1565b565b610ea96119c6565b60004711610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906135d8565b60405180910390fd5b600047905060006064603283610f029190613627565b610f0c9190613698565b905060006064603284610f1f9190613627565b610f299190613698565b9050600073b3fd26693c5d392d2db1f9ca6ec5e38e76f6447b73ffffffffffffffffffffffffffffffffffffffff1683604051610f65906136fa565b60006040518083038185875af1925050503d8060008114610fa2576040519150601f19603f3d011682016040523d82523d6000602084013e610fa7565b606091505b505090506000734caae36abddec390a2ccad46d94aac287932d6ec73ffffffffffffffffffffffffffffffffffffffff1683604051610fe5906136fa565b60006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508180156110355750805b611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061375b565b60405180910390fd5b5050505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110b49061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546110e09061317e565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b5050505050905090565b60001515600a60009054906101000a900460ff1615151461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906137c7565b60405180910390fd5b600c548161119a84610dd6565b6111a491906137e7565b11156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906138b3565b60405180910390fd5b600b5434101561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061391f565b60405180910390fd5b6008548160095461123b91906137e7565b111561127c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112739061398b565b60405180910390fd5b600c548111156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613a1d565b60405180910390fd5b6000600190505b81811161139a57600960008154809291906112e290613a3d565b91905055506112f383600954611b67565b611389600954600d80546113069061317e565b80601f01602080910402602001604051908101604052809291908181526020018280546113329061317e565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b5050505050611b85565b8061139390613a3d565b90506112c8565b505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561149a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016114179291906131af565b602060405180830381865afa158015611434573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145891906131ed565b61149957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114909190612c56565b60405180910390fd5b5b6114a48383611bf2565b505050565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156115fb573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152f5761152a85858585611c08565b611608565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016115789291906131af565b602060405180830381865afa158015611595573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b991906131ed565b6115fa57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115f19190612c56565b60405180910390fd5b5b61160785858585611c08565b5b5050505050565b600b5481565b61161d6119c6565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6060600d61165683611c6a565b604051602001611667929190613b6a565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61171f6119c6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613c0f565b60405180910390fd5b61179781611aa1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61180d81611d38565b61184c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611843906134da565b60405180910390fd5b50565b600061185a82610cc2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190613ca1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166118e9611d79565b73ffffffffffffffffffffffffffffffffffffffff161480611918575061191781611912611d79565b61167d565b5b611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613d33565b60405180910390fd5b6119618383611d81565b505050565b611977611971611d79565b82611e3a565b6119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ad90613dc5565b60405180910390fd5b6119c1838383611ecf565b505050565b6119ce611d79565b73ffffffffffffffffffffffffffffffffffffffff166119ec61107b565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613e31565b60405180910390fd5b565b611a5f838383604051806020016040528060008152506114bc565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b818282604051806020016040528060008152506121c8565b5050565b611b8e82611d38565b611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613ec3565b60405180910390fd5b80600660008481526020019081526020016000209081611bed91906133bc565b505050565b611c04611bfd611d79565b8383612223565b5050565b611c19611c13611d79565b83611e3a565b611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90613dc5565b60405180910390fd5b611c648484848461238f565b50505050565b606060006001611c79846123eb565b01905060008167ffffffffffffffff811115611c9857611c97612dde565b5b6040519080825280601f01601f191660200182016040528015611cca5781602001600182028036833780820191505090505b509050600082602001820190505b600115611d2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d2157611d20613669565b5b04945060008503611cd8575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611d5a83611a64565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611df483610cc2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e4683610cc2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e885750611e87818561167d565b5b80611ec657508373ffffffffffffffffffffffffffffffffffffffff16611eae84610852565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eef82610cc2565b73ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613f55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab90613fe7565b60405180910390fd5b611fc1838383600161253e565b8273ffffffffffffffffffffffffffffffffffffffff16611fe182610cc2565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613f55565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c38383836001612664565b505050565b6121d2838361266a565b6121df6000848484612887565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590614079565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906140e5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123829190612ae5565b60405180910390a3505050565b61239a848484611ecf565b6123a684848484612887565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc90614079565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612449577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161243f5761243e613669565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612486576d04ee2d6d415b85acef8100000000838161247c5761247b613669565b5b0492506020810190505b662386f26fc1000083106124b557662386f26fc1000083816124ab576124aa613669565b5b0492506010810190505b6305f5e10083106124de576305f5e10083816124d4576124d3613669565b5b0492506008810190505b61271083106125035761271083816124f9576124f8613669565b5b0492506004810190505b60648310612526576064838161251c5761251b613669565b5b0492506002810190505b600a8310612535576001810190505b80915050919050565b600181111561265e57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125d25780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ca9190614105565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461265d5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265591906137e7565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614185565b60405180910390fd5b6126e281611d38565b15612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906141f1565b60405180910390fd5b61273060008383600161253e565b61273981611d38565b15612779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612770906141f1565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612883600083836001612664565b5050565b60006128a88473ffffffffffffffffffffffffffffffffffffffff16612a0e565b15612a01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d1611d79565b8786866040518563ffffffff1660e01b81526004016128f39493929190614266565b6020604051808303816000875af192505050801561292f57506040513d601f19601f8201168201806040525081019061292c91906142c7565b60015b6129b1573d806000811461295f576040519150601f19603f3d011682016040523d82523d6000602084013e612964565b606091505b5060008151036129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a06565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7a81612a45565b8114612a8557600080fd5b50565b600081359050612a9781612a71565b92915050565b600060208284031215612ab357612ab2612a3b565b5b6000612ac184828501612a88565b91505092915050565b60008115159050919050565b612adf81612aca565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3a578082015181840152602081019050612b1f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6282612b00565b612b6c8185612b0b565b9350612b7c818560208601612b1c565b612b8581612b46565b840191505092915050565b60006020820190508181036000830152612baa8184612b57565b905092915050565b6000819050919050565b612bc581612bb2565b8114612bd057600080fd5b50565b600081359050612be281612bbc565b92915050565b600060208284031215612bfe57612bfd612a3b565b5b6000612c0c84828501612bd3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4082612c15565b9050919050565b612c5081612c35565b82525050565b6000602082019050612c6b6000830184612c47565b92915050565b612c7a81612c35565b8114612c8557600080fd5b50565b600081359050612c9781612c71565b92915050565b60008060408385031215612cb457612cb3612a3b565b5b6000612cc285828601612c88565b9250506020612cd385828601612bd3565b9150509250929050565b612ce681612bb2565b82525050565b6000602082019050612d016000830184612cdd565b92915050565b600080600060608486031215612d2057612d1f612a3b565b5b6000612d2e86828701612c88565b9350506020612d3f86828701612c88565b9250506040612d5086828701612bd3565b9150509250925092565b6000819050919050565b6000612d7f612d7a612d7584612c15565b612d5a565b612c15565b9050919050565b6000612d9182612d64565b9050919050565b6000612da382612d86565b9050919050565b612db381612d98565b82525050565b6000602082019050612dce6000830184612daa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e1682612b46565b810181811067ffffffffffffffff82111715612e3557612e34612dde565b5b80604052505050565b6000612e48612a31565b9050612e548282612e0d565b919050565b600067ffffffffffffffff821115612e7457612e73612dde565b5b612e7d82612b46565b9050602081019050919050565b82818337600083830152505050565b6000612eac612ea784612e59565b612e3e565b905082815260208101848484011115612ec857612ec7612dd9565b5b612ed3848285612e8a565b509392505050565b600082601f830112612ef057612eef612dd4565b5b8135612f00848260208601612e99565b91505092915050565b600060208284031215612f1f57612f1e612a3b565b5b600082013567ffffffffffffffff811115612f3d57612f3c612a40565b5b612f4984828501612edb565b91505092915050565b600060208284031215612f6857612f67612a3b565b5b6000612f7684828501612c88565b91505092915050565b612f8881612aca565b8114612f9357600080fd5b50565b600081359050612fa581612f7f565b92915050565b60008060408385031215612fc257612fc1612a3b565b5b6000612fd085828601612c88565b9250506020612fe185828601612f96565b9150509250929050565b600067ffffffffffffffff82111561300657613005612dde565b5b61300f82612b46565b9050602081019050919050565b600061302f61302a84612feb565b612e3e565b90508281526020810184848401111561304b5761304a612dd9565b5b613056848285612e8a565b509392505050565b600082601f83011261307357613072612dd4565b5b813561308384826020860161301c565b91505092915050565b600080600080608085870312156130a6576130a5612a3b565b5b60006130b487828801612c88565b94505060206130c587828801612c88565b93505060406130d687828801612bd3565b925050606085013567ffffffffffffffff8111156130f7576130f6612a40565b5b6131038782880161305e565b91505092959194509250565b6000806040838503121561312657613125612a3b565b5b600061313485828601612c88565b925050602061314585828601612c88565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061319657607f821691505b6020821081036131a9576131a861314f565b5b50919050565b60006040820190506131c46000830185612c47565b6131d16020830184612c47565b9392505050565b6000815190506131e781612f7f565b92915050565b60006020828403121561320357613202612a3b565b5b6000613211848285016131d8565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261327c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261323f565b613286868361323f565b95508019841693508086168417925050509392505050565b60006132b96132b46132af84612bb2565b612d5a565b612bb2565b9050919050565b6000819050919050565b6132d38361329e565b6132e76132df826132c0565b84845461324c565b825550505050565b600090565b6132fc6132ef565b6133078184846132ca565b505050565b5b8181101561332b576133206000826132f4565b60018101905061330d565b5050565b601f821115613370576133418161321a565b61334a8461322f565b81016020851015613359578190505b61336d6133658561322f565b83018261330c565b50505b505050565b600082821c905092915050565b600061339360001984600802613375565b1980831691505092915050565b60006133ac8383613382565b9150826002028217905092915050565b6133c582612b00565b67ffffffffffffffff8111156133de576133dd612dde565b5b6133e8825461317e565b6133f382828561332f565b600060209050601f8311600181146134265760008415613414578287015190505b61341e85826133a0565b865550613486565b601f1984166134348661321a565b60005b8281101561345c57848901518255600182019150602085019450602081019050613437565b868310156134795784890151613475601f891682613382565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006134c4601883612b0b565b91506134cf8261348e565b602082019050919050565b600060208201905081810360008301526134f3816134b7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613556602983612b0b565b9150613561826134fa565b604082019050919050565b6000602082019050818103600083015261358581613549565b9050919050565b7f5a65726f2042616c616e63650000000000000000000000000000000000000000600082015250565b60006135c2600c83612b0b565b91506135cd8261358c565b602082019050919050565b600060208201905081810360008301526135f1816135b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061363282612bb2565b915061363d83612bb2565b925082820261364b81612bb2565b91508282048414831517613662576136616135f8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136a382612bb2565b91506136ae83612bb2565b9250826136be576136bd613669565b5b828204905092915050565b600081905092915050565b50565b60006136e46000836136c9565b91506136ef826136d4565b600082019050919050565b6000613705826136d7565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613745601083612b0b565b91506137508261370f565b602082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365642e00000000600082015250565b60006137b1601c83612b0b565b91506137bc8261377b565b602082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b60006137f282612bb2565b91506137fd83612bb2565b9250828201905080821115613815576138146135f8565b5b92915050565b7f54686520737065636966696564206164647265737320616c726561647920686f60008201527f6c647320746865206d6178696d756d206e756d626572206f66206d696e74616260208201527f6c65204e4654732e000000000000000000000000000000000000000000000000604082015250565b600061389d604883612b0b565b91506138a88261381b565b606082019050919050565b600060208201905081810360008301526138cc81613890565b9050919050565b7f4e6f7420656e6f7567682065746865722073656e742e00000000000000000000600082015250565b6000613909601683612b0b565b9150613914826138d3565b602082019050919050565b60006020820190508181036000830152613938816138fc565b9050919050565b7f546f74616c20537570706c792063616e6e6f742062652065786365656465642e600082015250565b6000613975602083612b0b565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560008201527f207472616e73616374696f6e2e00000000000000000000000000000000000000602082015250565b6000613a07602d83612b0b565b9150613a12826139ab565b604082019050919050565b60006020820190508181036000830152613a36816139fa565b9050919050565b6000613a4882612bb2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a7a57613a796135f8565b5b600182019050919050565b600081905092915050565b60008154613a9d8161317e565b613aa78186613a85565b94506001821660008114613ac25760018114613ad757613b0a565b60ff1983168652811515820286019350613b0a565b613ae08561321a565b60005b83811015613b0257815481890152600182019150602081019050613ae3565b838801955050505b50505092915050565b6000613b1e82612b00565b613b288185613a85565b9350613b38818560208601612b1c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b6000613b768285613a90565b9150613b828284613b13565b9150613b8d82613b44565b6005820191508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bf9602683612b0b565b9150613c0482613b9d565b604082019050919050565b60006020820190508181036000830152613c2881613bec565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c8b602183612b0b565b9150613c9682613c2f565b604082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613d1d603d83612b0b565b9150613d2882613cc1565b604082019050919050565b60006020820190508181036000830152613d4c81613d10565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613daf602d83612b0b565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e1b602083612b0b565b9150613e2682613de5565b602082019050919050565b60006020820190508181036000830152613e4a81613e0e565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613ead602e83612b0b565b9150613eb882613e51565b604082019050919050565b60006020820190508181036000830152613edc81613ea0565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613f3f602583612b0b565b9150613f4a82613ee3565b604082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fd1602483612b0b565b9150613fdc82613f75565b604082019050919050565b6000602082019050818103600083015261400081613fc4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614063603283612b0b565b915061406e82614007565b604082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140cf601983612b0b565b91506140da82614099565b602082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b600061411082612bb2565b915061411b83612bb2565b9250828203905081811115614133576141326135f8565b5b92915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061416f602083612b0b565b915061417a82614139565b602082019050919050565b6000602082019050818103600083015261419e81614162565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141db601c83612b0b565b91506141e6826141a5565b602082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061423882614211565b614242818561421c565b9350614252818560208601612b1c565b61425b81612b46565b840191505092915050565b600060808201905061427b6000830187612c47565b6142886020830186612c47565b6142956040830185612cdd565b81810360608301526142a7818461422d565b905095945050505050565b6000815190506142c181612a71565b92915050565b6000602082840312156142dd576142dc612a3b565b5b60006142eb848285016142b2565b9150509291505056fea26469706673582212208923051ac49c8749f8162abc61210efaf4fb597f5eb2791287be6aeeedb534e164736f6c63430008110033

Deployed Bytecode Sourcemap

62511:3619:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44118:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45046:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46558:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65020:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64727:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65185:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62645:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64431:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62604:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2869:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65356:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64625:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64323:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44756:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62785:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44487:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23549:103;;;;;;;;;;;;;:::i;:::-;;63752:563;;;:::i;:::-;;22901:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45215:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63034:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64836:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62680:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65535:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62712:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62951:75;;;;;;;;;;;;;:::i;:::-;;65894:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47027:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62751:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23807:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44118:305;44220:4;44272:25;44257:40;;;:11;:40;;;;:105;;;;44329:33;44314:48;;;:11;:48;;;;44257:105;:158;;;;44379:36;44403:11;44379:23;:36::i;:::-;44257:158;44237:178;;44118:305;;;:::o;45046:100::-;45100:13;45133:5;45126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45046:100;:::o;46558:171::-;46634:7;46654:23;46669:7;46654:14;:23::i;:::-;46697:15;:24;46713:7;46697:24;;;;;;;;;;;;;;;;;;;;;46690:31;;46558:171;;;:::o;65020:157::-;65116:8;4911:1;2969:42;4863:45;;;:49;4859:225;;;2969:42;4934;;;4985:4;4992:8;4934:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4929:144;;5048:8;5029:28;;;;;;;;;;;:::i;:::-;;;;;;;;4929:144;4859:225;65137:32:::1;65151:8;65161:7;65137:13;:32::i;:::-;65020:157:::0;;;:::o;64727:99::-;64779:7;64806:12;;64799:19;;64727:99;:::o;65185:163::-;65286:4;4165:1;2969:42;4117:45;;;:49;4113:539;;;4406:10;4398:18;;:4;:18;;;4394:85;;65303:37:::1;65322:4;65328:2;65332:7;65303:18;:37::i;:::-;4457:7:::0;;4394:85;2969:42;4498;;;4549:4;4556:10;4498:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4493:148;;4614:10;4595:30;;;;;;;;;;;:::i;:::-;;;;;;;;4493:148;4113:539;65303:37:::1;65322:4;65328:2;65332:7;65303:18;:37::i;:::-;65185:163:::0;;;;;:::o;62645:27::-;;;;:::o;64431:186::-;22787:13;:11;:13::i;:::-;64517:12:::1;;64502:11;:27;;:53;;;;;64547:8;;64533:11;:22;64502:53;64498:112;;;64587:11;64572:12;:26;;;;64498:112;64431:186:::0;:::o;62604:34::-;;;;:::o;2869:143::-;2969:42;2869:143;:::o;65356:171::-;65461:4;4165:1;2969:42;4117:45;;;:49;4113:539;;;4406:10;4398:18;;:4;:18;;;4394:85;;65478:41:::1;65501:4;65507:2;65511:7;65478:22;:41::i;:::-;4457:7:::0;;4394:85;2969:42;4498;;;4549:4;4556:10;4498:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4493:148;;4614:10;4595:30;;;;;;;;;;;:::i;:::-;;;;;;;;4493:148;4113:539;65478:41:::1;65501:4;65507:2;65511:7;65478:22;:41::i;:::-;65356:171:::0;;;;;:::o;64625:94::-;22787:13;:11;:13::i;:::-;64702:9:::1;64691:8;:20;;;;64625:94:::0;:::o;64323:100::-;22787:13;:11;:13::i;:::-;64407:8:::1;64397:7;:18;;;;;;:::i;:::-;;64323:100:::0;:::o;44756:223::-;44828:7;44848:13;44864:17;44873:7;44864:8;:17::i;:::-;44848:33;;44917:1;44900:19;;:5;:19;;;44892:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;44966:5;44959:12;;;44756:223;;;:::o;62785:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44487:207::-;44559:7;44604:1;44587:19;;:5;:19;;;44579:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44670:9;:16;44680:5;44670:16;;;;;;;;;;;;;;;;44663:23;;44487:207;;;:::o;23549:103::-;22787:13;:11;:13::i;:::-;23614:30:::1;23641:1;23614:18;:30::i;:::-;23549:103::o:0;63752:563::-;22787:13;:11;:13::i;:::-;63845:1:::1;63821:21;:25;63813:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;63874:15;63892:21;63874:39;;63924:18;63960:3;63955:2;63945:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;63924:39;;63974:18;64010:3;64005:2;63995:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;63974:39;;64026:16;64056:42;64048:56;;64112:10;64048:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64024:103;;;64140:16;64170:42;64162:56;;64226:10;64162:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64138:103;;;64260:11;:26;;;;;64275:11;64260:26;64252:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;63802:513;;;;;63752:563::o:0;22901:87::-;22947:7;22974:6;;;;;;;;;;;22967:13;;22901:87;:::o;45215:104::-;45271:13;45304:7;45297:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45215:104;:::o;63034:710::-;63128:5;63118:15;;:6;;;;;;;;;;;:15;;;63110:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;63215:8;;63201:10;63185:13;63195:2;63185:9;:13::i;:::-;:26;;;;:::i;:::-;:38;;63177:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;63332:10;;63319:9;:23;;63311:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63415:12;;63400:10;63389:8;;:21;;;;:::i;:::-;63388:39;;63380:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63497:8;;63483:10;:22;;63475:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;63572:9;63584:1;63572:13;;63568:162;63592:10;63587:1;:15;63568:162;;63624:8;;:10;;;;;;;;;:::i;:::-;;;;;;63649:23;63659:2;63663:8;;63649:9;:23::i;:::-;63687:31;63700:8;;63710:7;63687:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:31::i;:::-;63604:3;;;;:::i;:::-;;;63568:162;;;;63034:710;;:::o;64836:176::-;64940:8;4911:1;2969:42;4863:45;;;:49;4859:225;;;2969:42;4934;;;4985:4;4992:8;4934:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4929:144;;5048:8;5029:28;;;;;;;;;;;:::i;:::-;;;;;;;;4929:144;4859:225;64961:43:::1;64985:8;64995;64961:23;:43::i;:::-;64836:176:::0;;;:::o;62680:25::-;;;;;;;;;;;;;:::o;65535:228::-;65686:4;4165:1;2969:42;4117:45;;;:49;4113:539;;;4406:10;4398:18;;:4;:18;;;4394:85;;65708:47:::1;65731:4;65737:2;65741:7;65750:4;65708:22;:47::i;:::-;4457:7:::0;;4394:85;2969:42;4498;;;4549:4;4556:10;4498:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4493:148;;4614:10;4595:30;;;;;;;;;;;:::i;:::-;;;;;;;;4493:148;4113:539;65708:47:::1;65731:4;65737:2;65741:7;65750:4;65708:22;:47::i;:::-;65535:228:::0;;;;;;:::o;62712:32::-;;;;:::o;62951:75::-;22787:13;:11;:13::i;:::-;63012:6:::1;;;;;;;;;;;63011:7;63002:6;;:16;;;;;;;;;;;;;;;;;;62951:75::o:0;65894:233::-;66023:13;66075:7;66084:25;66101:7;66084:16;:25::i;:::-;66061:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66054:65;;65894:233;;;:::o;47027:164::-;47124:4;47148:18;:25;47167:5;47148:25;;;;;;;;;;;;;;;:35;47174:8;47148:35;;;;;;;;;;;;;;;;;;;;;;;;;47141:42;;47027:164;;;;:::o;62751:27::-;;;;:::o;23807:201::-;22787:13;:11;:13::i;:::-;23916:1:::1;23896:22;;:8;:22;;::::0;23888:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23972:28;23991:8;23972:18;:28::i;:::-;23807:201:::0;:::o;36630:157::-;36715:4;36754:25;36739:40;;;:11;:40;;;;36732:47;;36630:157;;;:::o;56377:135::-;56459:16;56467:7;56459;:16::i;:::-;56451:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56377:135;:::o;46076:416::-;46157:13;46173:23;46188:7;46173:14;:23::i;:::-;46157:39;;46221:5;46215:11;;:2;:11;;;46207:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46315:5;46299:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46324:37;46341:5;46348:12;:10;:12::i;:::-;46324:16;:37::i;:::-;46299:62;46277:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;46463:21;46472:2;46476:7;46463:8;:21::i;:::-;46146:346;46076:416;;:::o;47258:335::-;47453:41;47472:12;:10;:12::i;:::-;47486:7;47453:18;:41::i;:::-;47445:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;47557:28;47567:4;47573:2;47577:7;47557:9;:28::i;:::-;47258:335;;;:::o;23066:132::-;23141:12;:10;:12::i;:::-;23130:23;;:7;:5;:7::i;:::-;:23;;;23122:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23066:132::o;47664:185::-;47802:39;47819:4;47825:2;47829:7;47802:39;;;;;;;;;;;;:16;:39::i;:::-;47664:185;;;:::o;49550:117::-;49616:7;49643;:16;49651:7;49643:16;;;;;;;;;;;;;;;;;;;;;49636:23;;49550:117;;;:::o;24168:191::-;24242:16;24261:6;;;;;;;;;;;24242:25;;24287:8;24278:6;;:17;;;;;;;;;;;;;;;;;;24342:8;24311:40;;24332:8;24311:40;;;;;;;;;;;;24231:128;24168:191;:::o;50881:110::-;50957:26;50967:2;50971:7;50957:26;;;;;;;;;;;;:9;:26::i;:::-;50881:110;;:::o;61264:217::-;61364:16;61372:7;61364;:16::i;:::-;61356:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61464:9;61442:10;:19;61453:7;61442:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;61264:217;;:::o;46801:155::-;46896:52;46915:12;:10;:12::i;:::-;46929:8;46939;46896:18;:52::i;:::-;46801:155;;:::o;47920:322::-;48094:41;48113:12;:10;:12::i;:::-;48127:7;48094:18;:41::i;:::-;48086:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48196:38;48210:4;48216:2;48220:7;48229:4;48196:13;:38::i;:::-;47920:322;;;;:::o;18879:716::-;18935:13;18986:14;19023:1;19003:17;19014:5;19003:10;:17::i;:::-;:21;18986:38;;19039:20;19073:6;19062:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19039:41;;19095:11;19224:6;19220:2;19216:15;19208:6;19204:28;19197:35;;19261:288;19268:4;19261:288;;;19293:5;;;;;;;;19435:8;19430:2;19423:5;19419:14;19414:30;19409:3;19401:44;19491:2;19482:11;;;;;;:::i;:::-;;;;;19525:1;19516:5;:10;19261:288;19512:21;19261:288;19570:6;19563:13;;;;;18879:716;;;:::o;49980:128::-;50045:4;50098:1;50069:31;;:17;50078:7;50069:8;:17::i;:::-;:31;;;;50062:38;;49980:128;;;:::o;21452:98::-;21505:7;21532:10;21525:17;;21452:98;:::o;55656:174::-;55758:2;55731:15;:24;55747:7;55731:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55814:7;55810:2;55776:46;;55785:23;55800:7;55785:14;:23::i;:::-;55776:46;;;;;;;;;;;;55656:174;;:::o;50275:264::-;50368:4;50385:13;50401:23;50416:7;50401:14;:23::i;:::-;50385:39;;50454:5;50443:16;;:7;:16;;;:52;;;;50463:32;50480:5;50487:7;50463:16;:32::i;:::-;50443:52;:87;;;;50523:7;50499:31;;:20;50511:7;50499:11;:20::i;:::-;:31;;;50443:87;50435:96;;;50275:264;;;;:::o;54274:1263::-;54433:4;54406:31;;:23;54421:7;54406:14;:23::i;:::-;:31;;;54398:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54512:1;54498:16;;:2;:16;;;54490:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;54568:42;54589:4;54595:2;54599:7;54608:1;54568:20;:42::i;:::-;54740:4;54713:31;;:23;54728:7;54713:14;:23::i;:::-;:31;;;54705:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54858:15;:24;54874:7;54858:24;;;;;;;;;;;;54851:31;;;;;;;;;;;55353:1;55334:9;:15;55344:4;55334:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;55386:1;55369:9;:13;55379:2;55369:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;55428:2;55409:7;:16;55417:7;55409:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;55467:7;55463:2;55448:27;;55457:4;55448:27;;;;;;;;;;;;55488:41;55508:4;55514:2;55518:7;55527:1;55488:19;:41::i;:::-;54274:1263;;;:::o;51218:319::-;51347:18;51353:2;51357:7;51347:5;:18::i;:::-;51398:53;51429:1;51433:2;51437:7;51446:4;51398:22;:53::i;:::-;51376:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;51218:319;;;:::o;55973:315::-;56128:8;56119:17;;:5;:17;;;56111:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56215:8;56177:18;:25;56196:5;56177:25;;;;;;;;;;;;;;;:35;56203:8;56177:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;56261:8;56239:41;;56254:5;56239:41;;;56271:8;56239:41;;;;;;:::i;:::-;;;;;;;;55973:315;;;:::o;49123:313::-;49279:28;49289:4;49295:2;49299:7;49279:9;:28::i;:::-;49326:47;49349:4;49355:2;49359:7;49368:4;49326:22;:47::i;:::-;49318:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49123:313;;;;:::o;15745:922::-;15798:7;15818:14;15835:1;15818:18;;15885:6;15876:5;:15;15872:102;;15921:6;15912:15;;;;;;:::i;:::-;;;;;15956:2;15946:12;;;;15872:102;16001:6;15992:5;:15;15988:102;;16037:6;16028:15;;;;;;:::i;:::-;;;;;16072:2;16062:12;;;;15988:102;16117:6;16108:5;:15;16104:102;;16153:6;16144:15;;;;;;:::i;:::-;;;;;16188:2;16178:12;;;;16104:102;16233:5;16224;:14;16220:99;;16268:5;16259:14;;;;;;:::i;:::-;;;;;16302:1;16292:11;;;;16220:99;16346:5;16337;:14;16333:99;;16381:5;16372:14;;;;;;:::i;:::-;;;;;16415:1;16405:11;;;;16333:99;16459:5;16450;:14;16446:99;;16494:5;16485:14;;;;;;:::i;:::-;;;;;16528:1;16518:11;;;;16446:99;16572:5;16563;:14;16559:66;;16608:1;16598:11;;;;16559:66;16653:6;16646:13;;;15745:922;;;:::o;58661:410::-;58851:1;58839:9;:13;58835:229;;;58889:1;58873:18;;:4;:18;;;58869:87;;58931:9;58912;:15;58922:4;58912:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;58869:87;58988:1;58974:16;;:2;:16;;;58970:83;;59028:9;59011;:13;59021:2;59011:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;58970:83;58835:229;58661:410;;;;:::o;59793:158::-;;;;;:::o;51873:942::-;51967:1;51953:16;;:2;:16;;;51945:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52026:16;52034:7;52026;:16::i;:::-;52025:17;52017:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52088:48;52117:1;52121:2;52125:7;52134:1;52088:20;:48::i;:::-;52235:16;52243:7;52235;:16::i;:::-;52234:17;52226:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52650:1;52633:9;:13;52643:2;52633:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52694:2;52675:7;:16;52683:7;52675:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52739:7;52735:2;52714:33;;52731:1;52714:33;;;;;;;;;;;;52760:47;52788:1;52792:2;52796:7;52805:1;52760:19;:47::i;:::-;51873:942;;:::o;57076:853::-;57230:4;57251:15;:2;:13;;;:15::i;:::-;57247:675;;;57303:2;57287:36;;;57324:12;:10;:12::i;:::-;57338:4;57344:7;57353:4;57287:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57283:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57545:1;57528:6;:13;:18;57524:328;;57571:60;;;;;;;;;;:::i;:::-;;;;;;;;57524:328;57802:6;57796:13;57787:6;57783:2;57779:15;57772:38;57283:584;57419:41;;;57409:51;;;:6;:51;;;;57402:58;;;;;57247:675;57906:4;57899:11;;57076:853;;;;;;;:::o;25599:326::-;25659:4;25916:1;25894:7;:19;;;:23;25887:30;;25599: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:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:141::-;14482:4;14505:3;14497:11;;14528:3;14525:1;14518:14;14562:4;14559:1;14549:18;14541:26;;14433:141;;;:::o;14580:93::-;14617:6;14664:2;14659;14652:5;14648:14;14644:23;14634:33;;14580:93;;;:::o;14679:107::-;14723:8;14773:5;14767:4;14763:16;14742:37;;14679:107;;;;:::o;14792:393::-;14861:6;14911:1;14899:10;14895:18;14934:97;14964:66;14953:9;14934:97;:::i;:::-;15052:39;15082:8;15071:9;15052:39;:::i;:::-;15040:51;;15124:4;15120:9;15113:5;15109:21;15100:30;;15173:4;15163:8;15159:19;15152:5;15149:30;15139:40;;14868:317;;14792:393;;;;;:::o;15191:142::-;15241:9;15274:53;15292:34;15301:24;15319:5;15301:24;:::i;:::-;15292:34;:::i;:::-;15274:53;:::i;:::-;15261:66;;15191:142;;;:::o;15339:75::-;15382:3;15403:5;15396:12;;15339:75;;;:::o;15420:269::-;15530:39;15561:7;15530:39;:::i;:::-;15591:91;15640:41;15664:16;15640:41;:::i;:::-;15632:6;15625:4;15619:11;15591:91;:::i;:::-;15585:4;15578:105;15496:193;15420:269;;;:::o;15695:73::-;15740:3;15695:73;:::o;15774:189::-;15851:32;;:::i;:::-;15892:65;15950:6;15942;15936:4;15892:65;:::i;:::-;15827:136;15774:189;;:::o;15969:186::-;16029:120;16046:3;16039:5;16036:14;16029:120;;;16100:39;16137:1;16130:5;16100:39;:::i;:::-;16073:1;16066:5;16062:13;16053:22;;16029:120;;;15969:186;;:::o;16161:543::-;16262:2;16257:3;16254:11;16251:446;;;16296:38;16328:5;16296:38;:::i;:::-;16380:29;16398:10;16380:29;:::i;:::-;16370:8;16366:44;16563:2;16551:10;16548:18;16545:49;;;16584:8;16569:23;;16545:49;16607:80;16663:22;16681:3;16663:22;:::i;:::-;16653:8;16649:37;16636:11;16607:80;:::i;:::-;16266:431;;16251:446;16161:543;;;:::o;16710:117::-;16764:8;16814:5;16808:4;16804:16;16783:37;;16710:117;;;;:::o;16833:169::-;16877:6;16910:51;16958:1;16954:6;16946:5;16943:1;16939:13;16910:51;:::i;:::-;16906:56;16991:4;16985;16981:15;16971:25;;16884:118;16833:169;;;;:::o;17007:295::-;17083:4;17229:29;17254:3;17248:4;17229:29;:::i;:::-;17221:37;;17291:3;17288:1;17284:11;17278:4;17275:21;17267:29;;17007:295;;;;:::o;17307:1395::-;17424:37;17457:3;17424:37;:::i;:::-;17526:18;17518:6;17515:30;17512:56;;;17548:18;;:::i;:::-;17512:56;17592:38;17624:4;17618:11;17592:38;:::i;:::-;17677:67;17737:6;17729;17723:4;17677:67;:::i;:::-;17771:1;17795:4;17782:17;;17827:2;17819:6;17816:14;17844:1;17839:618;;;;18501:1;18518:6;18515:77;;;18567:9;18562:3;18558:19;18552:26;18543:35;;18515:77;18618:67;18678:6;18671:5;18618:67;:::i;:::-;18612:4;18605:81;18474:222;17809:887;;17839:618;17891:4;17887:9;17879:6;17875:22;17925:37;17957:4;17925:37;:::i;:::-;17984:1;17998:208;18012:7;18009:1;18006:14;17998:208;;;18091:9;18086:3;18082:19;18076:26;18068:6;18061:42;18142:1;18134:6;18130:14;18120:24;;18189:2;18178:9;18174:18;18161:31;;18035:4;18032:1;18028:12;18023:17;;17998:208;;;18234:6;18225:7;18222:19;18219:179;;;18292:9;18287:3;18283:19;18277:26;18335:48;18377:4;18369:6;18365:17;18354:9;18335:48;:::i;:::-;18327:6;18320:64;18242:156;18219:179;18444:1;18440;18432:6;18428:14;18424:22;18418:4;18411:36;17846:611;;;17809:887;;17399:1303;;;17307:1395;;:::o;18708:174::-;18848:26;18844:1;18836:6;18832:14;18825:50;18708:174;:::o;18888:366::-;19030:3;19051:67;19115:2;19110:3;19051:67;:::i;:::-;19044:74;;19127:93;19216:3;19127:93;:::i;:::-;19245:2;19240:3;19236:12;19229:19;;18888:366;;;:::o;19260:419::-;19426:4;19464:2;19453:9;19449:18;19441:26;;19513:9;19507:4;19503:20;19499:1;19488:9;19484:17;19477:47;19541:131;19667:4;19541:131;:::i;:::-;19533:139;;19260:419;;;:::o;19685:228::-;19825:34;19821:1;19813:6;19809:14;19802:58;19894:11;19889:2;19881:6;19877:15;19870:36;19685:228;:::o;19919:366::-;20061:3;20082:67;20146:2;20141:3;20082:67;:::i;:::-;20075:74;;20158:93;20247:3;20158:93;:::i;:::-;20276:2;20271:3;20267:12;20260:19;;19919:366;;;:::o;20291:419::-;20457:4;20495:2;20484:9;20480:18;20472:26;;20544:9;20538:4;20534:20;20530:1;20519:9;20515:17;20508:47;20572:131;20698:4;20572:131;:::i;:::-;20564:139;;20291:419;;;:::o;20716:162::-;20856:14;20852:1;20844:6;20840:14;20833:38;20716:162;:::o;20884:366::-;21026:3;21047:67;21111:2;21106:3;21047:67;:::i;:::-;21040:74;;21123:93;21212:3;21123:93;:::i;:::-;21241:2;21236:3;21232:12;21225:19;;20884:366;;;:::o;21256:419::-;21422:4;21460:2;21449:9;21445:18;21437:26;;21509:9;21503:4;21499:20;21495:1;21484:9;21480:17;21473:47;21537:131;21663:4;21537:131;:::i;:::-;21529:139;;21256:419;;;:::o;21681:180::-;21729:77;21726:1;21719:88;21826:4;21823:1;21816:15;21850:4;21847:1;21840:15;21867:410;21907:7;21930:20;21948:1;21930:20;:::i;:::-;21925:25;;21964:20;21982:1;21964:20;:::i;:::-;21959:25;;22019:1;22016;22012:9;22041:30;22059:11;22041:30;:::i;:::-;22030:41;;22220:1;22211:7;22207:15;22204:1;22201:22;22181:1;22174:9;22154:83;22131:139;;22250:18;;:::i;:::-;22131:139;21915:362;21867:410;;;;:::o;22283:180::-;22331:77;22328:1;22321:88;22428:4;22425:1;22418:15;22452:4;22449:1;22442:15;22469:185;22509:1;22526:20;22544:1;22526:20;:::i;:::-;22521:25;;22560:20;22578:1;22560:20;:::i;:::-;22555:25;;22599:1;22589:35;;22604:18;;:::i;:::-;22589:35;22646:1;22643;22639:9;22634:14;;22469:185;;;;:::o;22660:147::-;22761:11;22798:3;22783:18;;22660:147;;;;:::o;22813:114::-;;:::o;22933:398::-;23092:3;23113:83;23194:1;23189:3;23113:83;:::i;:::-;23106:90;;23205:93;23294:3;23205:93;:::i;:::-;23323:1;23318:3;23314:11;23307:18;;22933:398;;;:::o;23337:379::-;23521:3;23543:147;23686:3;23543:147;:::i;:::-;23536:154;;23707:3;23700:10;;23337:379;;;:::o;23722:166::-;23862:18;23858:1;23850:6;23846:14;23839:42;23722:166;:::o;23894:366::-;24036:3;24057:67;24121:2;24116:3;24057:67;:::i;:::-;24050:74;;24133:93;24222:3;24133:93;:::i;:::-;24251:2;24246:3;24242:12;24235:19;;23894:366;;;:::o;24266:419::-;24432:4;24470:2;24459:9;24455:18;24447:26;;24519:9;24513:4;24509:20;24505:1;24494:9;24490:17;24483:47;24547:131;24673:4;24547:131;:::i;:::-;24539:139;;24266:419;;;:::o;24691:178::-;24831:30;24827:1;24819:6;24815:14;24808:54;24691:178;:::o;24875:366::-;25017:3;25038:67;25102:2;25097:3;25038:67;:::i;:::-;25031:74;;25114:93;25203:3;25114:93;:::i;:::-;25232:2;25227:3;25223:12;25216:19;;24875:366;;;:::o;25247:419::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:191::-;25712:3;25731:20;25749:1;25731:20;:::i;:::-;25726:25;;25765:20;25783:1;25765:20;:::i;:::-;25760:25;;25808:1;25805;25801:9;25794:16;;25829:3;25826:1;25823:10;25820:36;;;25836:18;;:::i;:::-;25820:36;25672:191;;;;:::o;25869:296::-;26009:34;26005:1;25997:6;25993:14;25986:58;26078:34;26073:2;26065:6;26061:15;26054:59;26147:10;26142:2;26134:6;26130:15;26123:35;25869:296;:::o;26171:366::-;26313:3;26334:67;26398:2;26393:3;26334:67;:::i;:::-;26327:74;;26410:93;26499:3;26410:93;:::i;:::-;26528:2;26523:3;26519:12;26512:19;;26171:366;;;:::o;26543:419::-;26709:4;26747:2;26736:9;26732:18;26724:26;;26796:9;26790:4;26786:20;26782:1;26771:9;26767:17;26760:47;26824:131;26950:4;26824:131;:::i;:::-;26816:139;;26543:419;;;:::o;26968:172::-;27108:24;27104:1;27096:6;27092:14;27085:48;26968:172;:::o;27146:366::-;27288:3;27309:67;27373:2;27368:3;27309:67;:::i;:::-;27302:74;;27385:93;27474:3;27385:93;:::i;:::-;27503:2;27498:3;27494:12;27487:19;;27146:366;;;:::o;27518:419::-;27684:4;27722:2;27711:9;27707:18;27699:26;;27771:9;27765:4;27761:20;27757:1;27746:9;27742:17;27735:47;27799:131;27925:4;27799:131;:::i;:::-;27791:139;;27518:419;;;:::o;27943:182::-;28083:34;28079:1;28071:6;28067:14;28060:58;27943:182;:::o;28131:366::-;28273:3;28294:67;28358:2;28353:3;28294:67;:::i;:::-;28287:74;;28370:93;28459:3;28370:93;:::i;:::-;28488:2;28483:3;28479:12;28472:19;;28131:366;;;:::o;28503:419::-;28669:4;28707:2;28696:9;28692:18;28684:26;;28756:9;28750:4;28746:20;28742:1;28731:9;28727:17;28720:47;28784:131;28910:4;28784:131;:::i;:::-;28776:139;;28503:419;;;:::o;28928:232::-;29068:34;29064:1;29056:6;29052:14;29045:58;29137:15;29132:2;29124:6;29120:15;29113:40;28928:232;:::o;29166:366::-;29308:3;29329:67;29393:2;29388:3;29329:67;:::i;:::-;29322:74;;29405:93;29494:3;29405:93;:::i;:::-;29523:2;29518:3;29514:12;29507:19;;29166:366;;;:::o;29538:419::-;29704:4;29742:2;29731:9;29727:18;29719:26;;29791:9;29785:4;29781:20;29777:1;29766:9;29762:17;29755:47;29819:131;29945:4;29819:131;:::i;:::-;29811:139;;29538:419;;;:::o;29963:233::-;30002:3;30025:24;30043:5;30025:24;:::i;:::-;30016:33;;30071:66;30064:5;30061:77;30058:103;;30141:18;;:::i;:::-;30058:103;30188:1;30181:5;30177:13;30170:20;;29963:233;;;:::o;30202:148::-;30304:11;30341:3;30326:18;;30202:148;;;;:::o;30380:874::-;30483:3;30520:5;30514:12;30549:36;30575:9;30549:36;:::i;:::-;30601:89;30683:6;30678:3;30601:89;:::i;:::-;30594:96;;30721:1;30710:9;30706:17;30737:1;30732:166;;;;30912:1;30907:341;;;;30699:549;;30732:166;30816:4;30812:9;30801;30797:25;30792:3;30785:38;30878:6;30871:14;30864:22;30856:6;30852:35;30847:3;30843:45;30836:52;;30732:166;;30907:341;30974:38;31006:5;30974:38;:::i;:::-;31034:1;31048:154;31062:6;31059:1;31056:13;31048:154;;;31136:7;31130:14;31126:1;31121:3;31117:11;31110:35;31186:1;31177:7;31173:15;31162:26;;31084:4;31081:1;31077:12;31072:17;;31048:154;;;31231:6;31226:3;31222:16;31215:23;;30914:334;;30699:549;;30487:767;;30380:874;;;;:::o;31260:390::-;31366:3;31394:39;31427:5;31394:39;:::i;:::-;31449:89;31531:6;31526:3;31449:89;:::i;:::-;31442:96;;31547:65;31605:6;31600:3;31593:4;31586:5;31582:16;31547:65;:::i;:::-;31637:6;31632:3;31628:16;31621:23;;31370:280;31260:390;;;;:::o;31656:182::-;31824:7;31819:3;31812:20;31656:182;:::o;31844:693::-;32111:3;32133:92;32221:3;32212:6;32133:92;:::i;:::-;32126:99;;32242:95;32333:3;32324:6;32242:95;:::i;:::-;32235:102;;32347:137;32480:3;32347:137;:::i;:::-;32509:1;32504:3;32500:11;32493:18;;32528:3;32521:10;;31844:693;;;;;:::o;32543:225::-;32683:34;32679:1;32671:6;32667:14;32660:58;32752:8;32747:2;32739:6;32735:15;32728:33;32543:225;:::o;32774:366::-;32916:3;32937:67;33001:2;32996:3;32937:67;:::i;:::-;32930:74;;33013:93;33102:3;33013:93;:::i;:::-;33131:2;33126:3;33122:12;33115:19;;32774:366;;;:::o;33146:419::-;33312:4;33350:2;33339:9;33335:18;33327:26;;33399:9;33393:4;33389:20;33385:1;33374:9;33370:17;33363:47;33427:131;33553:4;33427:131;:::i;:::-;33419:139;;33146:419;;;:::o;33571:220::-;33711:34;33707:1;33699:6;33695:14;33688:58;33780:3;33775:2;33767:6;33763:15;33756:28;33571:220;:::o;33797:366::-;33939:3;33960:67;34024:2;34019:3;33960:67;:::i;:::-;33953:74;;34036:93;34125:3;34036:93;:::i;:::-;34154:2;34149:3;34145:12;34138:19;;33797:366;;;:::o;34169:419::-;34335:4;34373:2;34362:9;34358:18;34350:26;;34422:9;34416:4;34412:20;34408:1;34397:9;34393:17;34386:47;34450:131;34576:4;34450:131;:::i;:::-;34442:139;;34169:419;;;:::o;34594:248::-;34734:34;34730:1;34722:6;34718:14;34711:58;34803:31;34798:2;34790:6;34786:15;34779:56;34594:248;:::o;34848:366::-;34990:3;35011:67;35075:2;35070:3;35011:67;:::i;:::-;35004:74;;35087:93;35176:3;35087:93;:::i;:::-;35205:2;35200:3;35196:12;35189:19;;34848:366;;;:::o;35220:419::-;35386:4;35424:2;35413:9;35409:18;35401:26;;35473:9;35467:4;35463:20;35459:1;35448:9;35444:17;35437:47;35501:131;35627:4;35501:131;:::i;:::-;35493:139;;35220:419;;;:::o;35645:232::-;35785:34;35781:1;35773:6;35769:14;35762:58;35854:15;35849:2;35841:6;35837:15;35830:40;35645:232;:::o;35883:366::-;36025:3;36046:67;36110:2;36105:3;36046:67;:::i;:::-;36039:74;;36122:93;36211:3;36122:93;:::i;:::-;36240:2;36235:3;36231:12;36224:19;;35883:366;;;:::o;36255:419::-;36421:4;36459:2;36448:9;36444:18;36436:26;;36508:9;36502:4;36498:20;36494:1;36483:9;36479:17;36472:47;36536:131;36662:4;36536:131;:::i;:::-;36528:139;;36255:419;;;:::o;36680:182::-;36820:34;36816:1;36808:6;36804:14;36797:58;36680:182;:::o;36868:366::-;37010:3;37031:67;37095:2;37090:3;37031:67;:::i;:::-;37024:74;;37107:93;37196:3;37107:93;:::i;:::-;37225:2;37220:3;37216:12;37209:19;;36868:366;;;:::o;37240:419::-;37406:4;37444:2;37433:9;37429:18;37421:26;;37493:9;37487:4;37483:20;37479:1;37468:9;37464:17;37457:47;37521:131;37647:4;37521:131;:::i;:::-;37513:139;;37240:419;;;:::o;37665:233::-;37805:34;37801:1;37793:6;37789:14;37782:58;37874:16;37869:2;37861:6;37857:15;37850:41;37665:233;:::o;37904:366::-;38046:3;38067:67;38131:2;38126:3;38067:67;:::i;:::-;38060:74;;38143:93;38232:3;38143:93;:::i;:::-;38261:2;38256:3;38252:12;38245:19;;37904:366;;;:::o;38276:419::-;38442:4;38480:2;38469:9;38465:18;38457:26;;38529:9;38523:4;38519:20;38515:1;38504:9;38500:17;38493:47;38557:131;38683:4;38557:131;:::i;:::-;38549:139;;38276:419;;;:::o;38701:224::-;38841:34;38837:1;38829:6;38825:14;38818:58;38910:7;38905:2;38897:6;38893:15;38886:32;38701:224;:::o;38931:366::-;39073:3;39094:67;39158:2;39153:3;39094:67;:::i;:::-;39087:74;;39170:93;39259:3;39170:93;:::i;:::-;39288:2;39283:3;39279:12;39272:19;;38931:366;;;:::o;39303:419::-;39469:4;39507:2;39496:9;39492:18;39484:26;;39556:9;39550:4;39546:20;39542:1;39531:9;39527:17;39520:47;39584:131;39710:4;39584:131;:::i;:::-;39576:139;;39303:419;;;:::o;39728:223::-;39868:34;39864:1;39856:6;39852:14;39845:58;39937:6;39932:2;39924:6;39920:15;39913:31;39728:223;:::o;39957:366::-;40099:3;40120:67;40184:2;40179:3;40120:67;:::i;:::-;40113:74;;40196:93;40285:3;40196:93;:::i;:::-;40314:2;40309:3;40305:12;40298:19;;39957:366;;;:::o;40329:419::-;40495:4;40533:2;40522:9;40518:18;40510:26;;40582:9;40576:4;40572:20;40568:1;40557:9;40553:17;40546:47;40610:131;40736:4;40610:131;:::i;:::-;40602:139;;40329:419;;;:::o;40754:237::-;40894:34;40890:1;40882:6;40878:14;40871:58;40963:20;40958:2;40950:6;40946:15;40939:45;40754:237;:::o;40997:366::-;41139:3;41160:67;41224:2;41219:3;41160:67;:::i;:::-;41153:74;;41236:93;41325:3;41236:93;:::i;:::-;41354:2;41349:3;41345:12;41338:19;;40997:366;;;:::o;41369:419::-;41535:4;41573:2;41562:9;41558:18;41550:26;;41622:9;41616:4;41612:20;41608:1;41597:9;41593:17;41586:47;41650:131;41776:4;41650:131;:::i;:::-;41642:139;;41369:419;;;:::o;41794:175::-;41934:27;41930:1;41922:6;41918:14;41911:51;41794:175;:::o;41975:366::-;42117:3;42138:67;42202:2;42197:3;42138:67;:::i;:::-;42131:74;;42214:93;42303:3;42214:93;:::i;:::-;42332:2;42327:3;42323:12;42316:19;;41975:366;;;:::o;42347:419::-;42513:4;42551:2;42540:9;42536:18;42528:26;;42600:9;42594:4;42590:20;42586:1;42575:9;42571:17;42564:47;42628:131;42754:4;42628:131;:::i;:::-;42620:139;;42347:419;;;:::o;42772:194::-;42812:4;42832:20;42850:1;42832:20;:::i;:::-;42827:25;;42866:20;42884:1;42866:20;:::i;:::-;42861:25;;42910:1;42907;42903:9;42895:17;;42934:1;42928:4;42925:11;42922:37;;;42939:18;;:::i;:::-;42922:37;42772:194;;;;:::o;42972:182::-;43112:34;43108:1;43100:6;43096:14;43089:58;42972:182;:::o;43160:366::-;43302:3;43323:67;43387:2;43382:3;43323:67;:::i;:::-;43316:74;;43399:93;43488:3;43399:93;:::i;:::-;43517:2;43512:3;43508:12;43501:19;;43160:366;;;:::o;43532:419::-;43698:4;43736:2;43725:9;43721:18;43713:26;;43785:9;43779:4;43775:20;43771:1;43760:9;43756:17;43749:47;43813:131;43939:4;43813:131;:::i;:::-;43805:139;;43532:419;;;:::o;43957:178::-;44097:30;44093:1;44085:6;44081:14;44074:54;43957:178;:::o;44141:366::-;44283:3;44304:67;44368:2;44363:3;44304:67;:::i;:::-;44297:74;;44380:93;44469:3;44380:93;:::i;:::-;44498:2;44493:3;44489:12;44482:19;;44141:366;;;:::o;44513:419::-;44679:4;44717:2;44706:9;44702:18;44694:26;;44766:9;44760:4;44756:20;44752:1;44741:9;44737:17;44730:47;44794:131;44920:4;44794:131;:::i;:::-;44786:139;;44513:419;;;:::o;44938:98::-;44989:6;45023:5;45017:12;45007:22;;44938:98;;;:::o;45042:168::-;45125:11;45159:6;45154:3;45147:19;45199:4;45194:3;45190:14;45175:29;;45042:168;;;;:::o;45216:373::-;45302:3;45330:38;45362:5;45330:38;:::i;:::-;45384:70;45447:6;45442:3;45384:70;:::i;:::-;45377:77;;45463:65;45521:6;45516:3;45509:4;45502:5;45498:16;45463:65;:::i;:::-;45553:29;45575:6;45553:29;:::i;:::-;45548:3;45544:39;45537:46;;45306:283;45216:373;;;;:::o;45595:640::-;45790:4;45828:3;45817:9;45813:19;45805:27;;45842:71;45910:1;45899:9;45895:17;45886:6;45842:71;:::i;:::-;45923:72;45991:2;45980:9;45976:18;45967:6;45923:72;:::i;:::-;46005;46073:2;46062:9;46058:18;46049:6;46005:72;:::i;:::-;46124:9;46118:4;46114:20;46109:2;46098:9;46094:18;46087:48;46152:76;46223:4;46214:6;46152:76;:::i;:::-;46144:84;;45595:640;;;;;;;:::o;46241:141::-;46297:5;46328:6;46322:13;46313:22;;46344:32;46370:5;46344:32;:::i;:::-;46241:141;;;;:::o;46388:349::-;46457:6;46506:2;46494:9;46485:7;46481:23;46477:32;46474:119;;;46512:79;;:::i;:::-;46474:119;46632:1;46657:63;46712:7;46703:6;46692:9;46688:22;46657:63;:::i;:::-;46647:73;;46603:127;46388:349;;;;:::o

Swarm Source

ipfs://8923051ac49c8749f8162abc61210efaf4fb597f5eb2791287be6aeeedb534e1
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.