ETH Price: $2,431.10 (+3.11%)

Token

Pinballer2 (PIN2)
 

Overview

Max Total Supply

0 PIN2

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nullable.eth
Balance
41 PIN2
0x5b60117255df27fdd885629c0210d9dd975ff975
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Join Pinballer on his adventures as he meets Voola, who leads him into madness and a universe of trouble.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PinballerComic2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

// SPDX-License-Identifier: GPL-3.0
// File: SupplyTrackers.sol



pragma solidity ^0.8.0;

library SupplyTrackers 
{
    struct Tracker 
    {
        uint256 value;
        uint256 limit;
    }
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (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-rc.1) (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-rc.1) (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/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// 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-rc.1) (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-rc.1) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

// File: PinballerComic2.sol



pragma solidity ^0.8.17;






/*     .__      ___.          .__  .__               ________  
______ |__| ____\_ |__ _____  |  | |  |   ___________\_____  \ 
\____ \|  |/    \| __ \\__  \ |  | |  | _/ __ \_  __ \/  ____/ 
|  |_> >  |   |  \ \_\ \/ __ \|  |_|  |_\  ___/|  | \/       \ 
|   __/|__|___|  /___  (____  /____/____/\___  >__|  \_______ \
|__|           \/    \/     \/               \/              \/  */
contract PinballerComic2 is ERC721Burnable, Ownable, PaymentSplitter, ReentrancyGuard
{
    // []============[]====[]===============[]================[]================================[]
    // ||   Token    || ID || Chance to Hit || Max. Available || Reserved (Burning Pinballer 1) ||
    // |]============[]====[]===============[]================[]================================[|
    // || Pinballer  ||  0 ||         60 %  ||           1680 ||                            200 ||
    // || Peppermint ||  1 ||         15 %  ||            420 ||                            200 ||
    // || Nullable   ||  2 ||         15 %  ||            420 ||                            200 ||
    // || Voola      ||  3 ||         10 %  ||            280 ||                            200 ||
    // []============[]====[]===============[]================[]================================[]

    enum TokenType{ Pinballer, Peppermint, Nullable, Voola, None }

    using Strings for uint256;
    using SupplyTrackers for SupplyTrackers.Tracker;
    //todo whitelisted addresses

    /* this quantity applies to each individual token type, multiply this by 4 */
    uint16 public _reservedQuantityForBurns = 200;
    uint16 public _mintedByOwnerCount;
    uint16 private _renounceOwnershipAttemptCount;
    bool public _isPaused;
    bool public _isWhitelistMintEnabled;

    mapping(TokenType => string) private _metadataUriStore;

    mapping(uint256 => TokenType) public _mintedTokenTypes;
    mapping(TokenType => uint256) public _tokenTypeRarity;

    SupplyTrackers.Tracker public _supplyCombined;
    mapping(TokenType => SupplyTrackers.Tracker) public _supplyByTokenType;

    uint256 public _tokenCost = 0.016 ether;
    uint256 public _maxMintAmountPerTx = 11;
    
    address public _pinballer1ContractAddress;
    mapping(address => bool) _whitelistedWallets;

    constructor(address _pinballer1Contract,
        address[] memory payees, 
        uint256[] memory shares,
        string[] memory tokenUris) 
        ERC721("Pinballer2", "PIN2") 
        PaymentSplitter(payees, shares)
    {
        _tokenTypeRarity[TokenType.Pinballer] = 60;
        _tokenTypeRarity[TokenType.Peppermint] = 15;
        _tokenTypeRarity[TokenType.Nullable] = 15;
        _tokenTypeRarity[TokenType.Voola] = 10;

        _supplyCombined.limit = 2800;
        _supplyByTokenType[TokenType.Pinballer].limit = 1680;
        _supplyByTokenType[TokenType.Peppermint].limit = 420;
        _supplyByTokenType[TokenType.Nullable].limit = 420;
        _supplyByTokenType[TokenType.Voola].limit = 280;

        _metadataUriStore[TokenType.Pinballer] = tokenUris[0];
        _metadataUriStore[TokenType.Peppermint] = tokenUris[1];
        _metadataUriStore[TokenType.Nullable] = tokenUris[2];
        _metadataUriStore[TokenType.Voola] = tokenUris[3];

        _pinballer1ContractAddress = _pinballer1Contract;

        _isPaused = true;
    }

    modifier mintCompliance(uint256 amount) {
        require(amount <= _maxMintAmountPerTx, "Invalid mint amount");
        require(_supplyCombined.value + amount <= _supplyCombined.limit, "Max supply exceeded");
        _;
    }

    function getIsPremintAddress(address account) external view returns (bool) {
        return _whitelistedWallets[account];
    }

    function addPremintAddresses(address[] memory accounts) external onlyOwner {
       for (uint256 i = 0; i < accounts.length; i++) {
            _whitelistedWallets[accounts[i]] = true;
        }
    }

    function deletePremintAddresses(address[] memory accounts) external onlyOwner {
       for (uint256 i = 0; i < accounts.length; i++) {
            delete _whitelistedWallets[accounts[i]];
        }
    }

    function mint(uint256 amount) external payable mintCompliance(amount) nonReentrant {
        require(msg.sender == tx.origin, "Contracts cannot mint");
        require(msg.value >= _tokenCost * amount, "Insufficient funds");
        require(_isPaused == false, "Minting paused");

        mintLoop(msg.sender, amount);
    }

    function preMint(uint256 amount) external payable mintCompliance(amount) nonReentrant {
        require(_isWhitelistMintEnabled == true, "Whitelist minting disabled");
        require(_whitelistedWallets[msg.sender] == true, "Not whitelisted");
        
        require(msg.sender == tx.origin, "Contracts cannot mint");
        require(msg.value >= _tokenCost * amount, "Insufficient funds");

        mintLoop(msg.sender, amount);
    }
  
    function mintForAddress(address to, uint16 amount) public mintCompliance(amount) onlyOwner {
        require(_mintedByOwnerCount + amount <= 400);

        _mintedByOwnerCount += amount;

        mintLoop(to, amount);
    }

    function mintLoop(address to, uint256 amount) private {
        TokenType tokenType; //todo: move it into the for loop?

        for (uint256 i = 0; i < amount; i++) 
        {
            tokenType = getRandomTokenType(i, amount);

            /* this should never happen */
            require(tokenType != TokenType.None);

            safeMintTokenType(to, tokenType);
        }
    }

    function safeMintTokenType(address to, TokenType tokenType) private {
        unchecked {
            /* we increase the total token supply to get the next token ID */
            _supplyCombined.value += 1;

            /* we also increase the supply counter of the specific token 
            type to keep track of what we have minted so far */ 
            _supplyByTokenType[tokenType].value += 1;
        }

        _mintedTokenTypes[_supplyCombined.value] = tokenType;
        _safeMint(to, _supplyCombined.value);
    }

    /* This code doesn't look pretty, but it doesn't consume too much gas this way */
    function getRandomTokenType(uint256 index, uint256 amount) private view returns (TokenType) {
        /* this long number is the maximum of uint256 divided by 100 */
        uint256 randomNumber = uint256(keccak256(abi.encode(
            msg.sender,
            tx.gasprice,
            block.number,
            block.timestamp,
            blockhash(block.number - 1),
            amount,
            index))) / 1157920892373161954235709850086879078532699846656405640394575840079131296399;

        TokenType tokenType = TokenType.None;

        uint256 sum = 0;
        for (int i; i < 4; i++) //todo: check supply here to save gas?
        {
            if (randomNumber <= (sum += _tokenTypeRarity[TokenType(i)]))
            {
                tokenType = TokenType(i);
                break;
            }
        }

        if (_supplyByTokenType[tokenType].value < _supplyByTokenType[tokenType].limit - _reservedQuantityForBurns)
            return tokenType;

        TokenType originalTokenType = tokenType;
        /* choose another token type if the randomly selected one is sold out */
        /* walk down until we find another token that is not sold out */
        while (uint(tokenType) < 3) 
        {
            tokenType = TokenType(uint(tokenType) + 1);

            if (_supplyByTokenType[tokenType].value < _supplyByTokenType[tokenType].limit - _reservedQuantityForBurns)
                return tokenType;
        }

        /* walk back, beginning from where we started */
        while (uint(originalTokenType) >= 0)
        {
            originalTokenType = TokenType(uint(originalTokenType) - 1);
            if (_supplyByTokenType[originalTokenType].value < _supplyByTokenType[originalTokenType].limit - _reservedQuantityForBurns)
                return originalTokenType;
        }

       /* this should never happen */
        revert();
    }

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

        return _metadataUriStore[_mintedTokenTypes[tokenId]];
    }

    function setMaxMintAmountPerTx(uint256 maxMintAmountPerTx) external onlyOwner {
        _maxMintAmountPerTx = maxMintAmountPerTx;
    }

    function setTokenURI(TokenType tokenType, string memory uri) external onlyOwner {
        _metadataUriStore[tokenType] = uri;
    }

    function setWhitelistMintEnabled(bool enabled) external onlyOwner {
        _isWhitelistMintEnabled = enabled;
    }

    function burnAndMint(uint256 tokenId1, uint256 tokenId2) external nonReentrant {
        require(_isPaused == false, "Minting paused");
        require(tokenId1 != tokenId2, "Token IDs must be different");

        require(IERC721(_pinballer1ContractAddress).ownerOf(tokenId1) == msg.sender, "Token 1 is not yours");
        require(IERC721(_pinballer1ContractAddress).ownerOf(tokenId2) == msg.sender, "Token 2 is not yours");

        require(_supplyByTokenType[TokenType.Voola].value < _supplyByTokenType[TokenType.Voola].limit, "Voola supply limit reached");
        require(_supplyByTokenType[TokenType.Nullable].value < _supplyByTokenType[TokenType.Nullable].limit, "Nullable supply limit reached");
        require(_supplyByTokenType[TokenType.Peppermint].value < _supplyByTokenType[TokenType.Peppermint].limit, "Peppermint supply limit reached");
        require(_supplyByTokenType[TokenType.Pinballer].value < _supplyByTokenType[TokenType.Pinballer].limit, "Pinballer supply limit reached");

        ERC721Burnable(_pinballer1ContractAddress).burn(tokenId1);
        ERC721Burnable(_pinballer1ContractAddress).burn(tokenId2);

        if (_reservedQuantityForBurns > 0) {
            unchecked {
                _reservedQuantityForBurns -= 1;
            }
        }
        
        safeMintTokenType(msg.sender, TokenType.Pinballer);
        safeMintTokenType(msg.sender, TokenType.Peppermint);
        safeMintTokenType(msg.sender, TokenType.Nullable);
        safeMintTokenType(msg.sender, TokenType.Voola);
    }

    function setCost(uint256 cost) external onlyOwner {
        _tokenCost = cost;
    }

    function reduceMaxSupplyBy(uint256 value) external onlyOwner {
        require(value % 20 == 0, "Must be a multiple of 20");
        
        uint256 newMaxSupply = _supplyCombined.limit - value;
        require(_supplyCombined.value <= newMaxSupply, "New max supply too small");
        
        _supplyCombined.limit = newMaxSupply;

        _supplyByTokenType[TokenType.Pinballer].limit -= ((value*10) * 60) / 1000;
        _supplyByTokenType[TokenType.Peppermint].limit -= ((value*10) * 15) / 1000;
        _supplyByTokenType[TokenType.Nullable].limit -= ((value*10) * 15) / 1000;
        _supplyByTokenType[TokenType.Voola].limit -= ((value*10) * 10) / 1000;
    }

    function setMintPaused(bool shouldPause) external onlyOwner {
        _isPaused = shouldPause;
    }

    function walletOfOwner(address owner) external view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(owner);
        uint256[] memory tempOwnedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= _supplyCombined.limit) //todo
        {
            if (_exists(currentTokenId) == true)
            {
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == owner)
                {
                    tempOwnedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            
            currentTokenId++;
        }

        uint256[] memory ownedTokenIds = new uint256[](ownedTokenIndex);
        for (uint256 i = 0; i < ownedTokenIndex; i++) 
        {
            ownedTokenIds[i] = tempOwnedTokenIds[i];
        }

        return ownedTokenIds;
    }

    function renounceOwnership() public override onlyOwner {
        _renounceOwnershipAttemptCount += 1;

        /* to protect Riley from losing access to this contract 
           if he accidentally presses the wrong button */
        require(_renounceOwnershipAttemptCount >= 3, "Lose ownership on 3rd attempt");

        _transferOwnership(address(0));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_pinballer1Contract","type":"address"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"string[]","name":"tokenUris","type":"string[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"_isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isWhitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintedByOwnerCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_mintedTokenTypes","outputs":[{"internalType":"enum PinballerComic2.TokenType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pinballer1ContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reservedQuantityForBurns","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum PinballerComic2.TokenType","name":"","type":"uint8"}],"name":"_supplyByTokenType","outputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supplyCombined","outputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum PinballerComic2.TokenType","name":"","type":"uint8"}],"name":"_tokenTypeRarity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addPremintAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"burnAndMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"deletePremintAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getIsPremintAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"reduceMaxSupplyBy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldPause","type":"bool"}],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PinballerComic2.TokenType","name":"tokenType","type":"uint8"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f805461ffff191660c81790556638d7ea4c680000601655600b6017553480156200002f57600080fd5b50604051620051683803806200516883398101604081905262000052916200096f565b82826040518060400160405280600a8152602001692834b73130b63632b91960b11b815250604051806040016040528060048152602001632824a71960e11b8152508160009081620000a5919062000b0a565b506001620000b4828262000b0a565b505050620000d1620000cb6200052160201b60201c565b62000525565b8051825114620001435760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001965760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200013a565b60005b82518110156200020257620001ed838281518110620001bc57620001bc62000bd6565b6020026020010151838381518110620001d957620001d962000bd6565b60200260200101516200057760201b60201c565b80620001f98162000c02565b91505062000199565b50506001600e5550603c7f7e7fa33969761a458e04f477e039a608702b4f924981d6653935a8319a08ad7b55600f7f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a38190557f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b255600a7f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976a55610af060145560156020526106907fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aee556101a47f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818e8190557f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0c55600360009081526101187fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c2855815182919062000353576200035362000bd6565b60200260200101516010600080600481111562000374576200037462000c1e565b600481111562000388576200038862000c1e565b81526020019081526020016000209081620003a4919062000b0a565b5080600181518110620003bb57620003bb62000bd6565b60200260200101516010600060016004811115620003dd57620003dd62000c1e565b6004811115620003f157620003f162000c1e565b815260200190815260200160002090816200040d919062000b0a565b508060028151811062000424576200042462000bd6565b6020026020010151601060006002600481111562000446576200044662000c1e565b60048111156200045a576200045a62000c1e565b8152602001908152602001600020908162000476919062000b0a565b50806003815181106200048d576200048d62000bd6565b60200260200101516010600060036004811115620004af57620004af62000c1e565b6004811115620004c357620004c362000c1e565b81526020019081526020016000209081620004df919062000b0a565b5050601880546001600160a01b039094166001600160a01b0319909416939093179092555050600f805460ff60301b1916660100000000000017905562000c50565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005e45760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200013a565b60008111620006365760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200013a565b6001600160a01b03821660009081526009602052604090205415620006b25760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200013a565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560009081526009602052604090208190556007546200071c90829062000c34565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b80516001600160a01b03811681146200077d57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620007c357620007c362000782565b604052919050565b60006001600160401b03821115620007e757620007e762000782565b5060051b60200190565b600082601f8301126200080357600080fd5b815160206200081c6200081683620007cb565b62000798565b82815260059290921b840181019181810190868411156200083c57600080fd5b8286015b8481101562000859578051835291830191830162000840565b509695505050505050565b6000601f83818401126200087757600080fd5b825160206200088a6200081683620007cb565b82815260059290921b85018101918181019087841115620008aa57600080fd5b8287015b84811015620009635780516001600160401b0380821115620008d05760008081fd5b818a0191508a603f830112620008e65760008081fd5b8582015181811115620008fd57620008fd62000782565b62000910818a01601f1916880162000798565b915080825260408c818386010111156200092a5760008081fd5b60005b828110156200094a578481018201518482018a015288016200092d565b50506000908201870152845250918301918301620008ae565b50979650505050505050565b600080600080608085870312156200098657600080fd5b620009918562000765565b602086810151919550906001600160401b0380821115620009b157600080fd5b818801915088601f830112620009c657600080fd5b8151620009d76200081682620007cb565b81815260059190911b8301840190848101908b831115620009f757600080fd5b938501935b8285101562000a205762000a108562000765565b82529385019390850190620009fc565b60408b0151909850945050508083111562000a3a57600080fd5b62000a4889848a01620007f1565b9450606088015192508083111562000a5f57600080fd5b505062000a6f8782880162000864565b91505092959194509250565b600181811c9082168062000a9057607f821691505b60208210810362000ab157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b0557600081815260208120601f850160051c8101602086101562000ae05750805b601f850160051c820191505b8181101562000b015782815560010162000aec565b5050505b505050565b81516001600160401b0381111562000b265762000b2662000782565b62000b3e8162000b37845462000a7b565b8462000ab7565b602080601f83116001811462000b76576000841562000b5d5750858301515b600019600386901b1c1916600185901b17855562000b01565b600085815260208120601f198616915b8281101562000ba75788860151825594840194600190910190840162000b86565b508582101562000bc65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000c175762000c1762000bec565b5060010190565b634e487b7160e01b600052602160045260246000fd5b8082018082111562000c4a5762000c4a62000bec565b92915050565b6145088062000c606000396000f3fe60806040526004361061034e5760003560e01c806399b0afdc116101bb578063cb872a17116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610a8c578063f80db07214610aac578063f8ef56d714610ae5578063fa2ad4d814610afb57600080fd5b8063e985e9c514610a03578063eb046e4514610a4c578063ecf3439914610a6c57600080fd5b8063d79779b2116100d1578063d79779b214610974578063e2684f08146109aa578063e33b7de3146109ce578063e821693e146109e357600080fd5b8063cb872a17146108fb578063ce7c2ac214610928578063d755a17e1461095e57600080fd5b8063b071401b11610164578063b88d4fde1161013e578063b88d4fde1461087b578063c45ac0501461089b578063c73437d1146108bb578063c87b56dd146108db57600080fd5b8063b071401b1461081b578063b69355011461083b578063b767a0981461085b57600080fd5b8063a22cb46511610195578063a22cb465146107bb578063a3f8eace146107db578063a571adef146107fb57600080fd5b806399b0afdc1461076d5780639c83aecc14610788578063a0712d68146107a857600080fd5b806344a0d68a1161028a5780637b1709d0116102335780638b83209b1161020d5780638b83209b146106e45780638da5cb5b1461070457806395d89b41146107225780639852595c1461073757600080fd5b80637b1709d01461066d578063822597581461069d5780638ad433ac146106d157600080fd5b80636352211e116102645780636352211e1461061857806370a0823114610638578063715018a61461065857600080fd5b806344a0d68a146105b857806348b75044146105d85780635a91a93a146105f857600080fd5b806323b872dd116102f757806342842e0e116102d157806342842e0e1461051757806342966c68146105375780634342728e14610557578063438b63001461058b57600080fd5b806323b872dd146104925780633a98ef39146104b2578063406072a9146104d157600080fd5b8063095ea7b311610328578063095ea7b31461042b578063191655871461044d5780631f3712851461046d57600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f357600080fd5b36610397577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004613ca9565b610b38565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610c1d565b6040516103c89190613d16565b3480156103ff57600080fd5b5061041361040e366004613d29565b610caf565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004613d57565b610cd6565b005b34801561045957600080fd5b5061044b610468366004613d83565b610e0c565b34801561047957600080fd5b50600f546103bc90670100000000000000900460ff1681565b34801561049e57600080fd5b5061044b6104ad366004613da0565b610f9f565b3480156104be57600080fd5b506007545b6040519081526020016103c8565b3480156104dd57600080fd5b506104c36104ec366004613de1565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561052357600080fd5b5061044b610532366004613da0565b611027565b34801561054357600080fd5b5061044b610552366004613d29565b611042565b34801561056357600080fd5b50600f546105789062010000900461ffff1681565b60405161ffff90911681526020016103c8565b34801561059757600080fd5b506105ab6105a6366004613d83565b6110c9565b6040516103c89190613e1a565b3480156105c457600080fd5b5061044b6105d3366004613d29565b611267565b3480156105e457600080fd5b5061044b6105f3366004613de1565b611274565b34801561060457600080fd5b5061044b610613366004613e5e565b611431565b34801561062457600080fd5b50610413610633366004613d29565b611a76565b34801561064457600080fd5b506104c3610653366004613d83565b611adb565b34801561066457600080fd5b5061044b611b75565b34801561067957600080fd5b50601354601454610688919082565b604080519283526020830191909152016103c8565b3480156106a957600080fd5b506106886106b8366004613e94565b6015602052600090815260409020805460019091015482565b61044b6106df366004613d29565b611c28565b3480156106f057600080fd5b506104136106ff366004613d29565b611e5e565b34801561071057600080fd5b506006546001600160a01b0316610413565b34801561072e57600080fd5b506103e6611e8e565b34801561074357600080fd5b506104c3610752366004613d83565b6001600160a01b03166000908152600a602052604090205490565b34801561077957600080fd5b50600f546105789061ffff1681565b34801561079457600080fd5b5061044b6107a3366004613f4e565b611e9d565b61044b6107b6366004613d29565b611ee7565b3480156107c757600080fd5b5061044b6107d6366004613fbe565b6120aa565b3480156107e757600080fd5b506104c36107f6366004613d83565b6120b5565b34801561080757600080fd5b5061044b610816366004613fec565b6120fd565b34801561082757600080fd5b5061044b610836366004613d29565b61222d565b34801561084757600080fd5b5061044b610856366004614021565b61223a565b34801561086757600080fd5b5061044b610876366004614021565b61227e565b34801561088757600080fd5b5061044b61089636600461403e565b6122c3565b3480156108a757600080fd5b506104c36108b6366004613de1565b612351565b3480156108c757600080fd5b5061044b6108d63660046140be565b612435565b3480156108e757600080fd5b506103e66108f6366004613d29565b6124a5565b34801561090757600080fd5b506104c3610916366004613e94565b60126020526000908152604090205481565b34801561093457600080fd5b506104c3610943366004613d83565b6001600160a01b031660009081526009602052604090205490565b34801561096a57600080fd5b506104c360165481565b34801561098057600080fd5b506104c361098f366004613d83565b6001600160a01b03166000908152600c602052604090205490565b3480156109b657600080fd5b50600f546103bc906601000000000000900460ff1681565b3480156109da57600080fd5b506008546104c3565b3480156109ef57600080fd5b5061044b6109fe366004613d29565b6125e2565b348015610a0f57600080fd5b506103bc610a1e366004613de1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5857600080fd5b50601854610413906001600160a01b031681565b348015610a7857600080fd5b5061044b610a873660046140be565b612848565b348015610a9857600080fd5b5061044b610aa7366004613d83565b6128af565b348015610ab857600080fd5b506103bc610ac7366004613d83565b6001600160a01b031660009081526019602052604090205460ff1690565b348015610af157600080fd5b506104c360175481565b348015610b0757600080fd5b50610b2b610b16366004613d29565b60116020526000908152604090205460ff1681565b6040516103c89190614186565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bcb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c1757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610c2c906141ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610c58906141ae565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261293c565b506000908152600460205260409020546001600160a01b031690565b6000610ce182611a76565b9050806001600160a01b0316836001600160a01b031603610d6f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610d8b5750610d8b8133610a1e565b610dfd5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d66565b610e0783836129a0565b505050565b6001600160a01b038116600090815260096020526040902054610e975760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d66565b6000610ea2826120b5565b905080600003610f1a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d66565b8060086000828254610f2c91906141fe565b90915550506001600160a01b0382166000908152600a60205260409020805482019055610f598282612a1b565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b610faa335b82612b34565b61101c5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b610e07838383612bb2565b610e07838383604051806020016040528060008152506122c3565b61104b33610fa4565b6110bd5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b6110c681612de8565b50565b606060006110d683611adb565b905060008167ffffffffffffffff8111156110f3576110f3613eaf565b60405190808252806020026020018201604052801561111c578160200160208202803683370190505b509050600160005b838110801561113557506014548211155b156111c1576000828152600260205260409020546001600160a01b031615156001036111af57600061116683611a76565b9050866001600160a01b0316816001600160a01b0316036111ad578284838151811061119457611194614211565b6020908102919091010152816111a981614227565b9250505b505b816111b981614227565b925050611124565b60008167ffffffffffffffff8111156111dc576111dc613eaf565b604051908082528060200260200182016040528015611205578160200160208202803683370190505b50905060005b8281101561125c5784818151811061122557611225614211565b602002602001015182828151811061123f5761123f614211565b60209081029190910101528061125481614227565b91505061120b565b509695505050505050565b61126f612e8a565b601655565b6001600160a01b0381166000908152600960205260409020546112ff5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d66565b600061130b8383612351565b9050806000036113835760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d66565b6001600160a01b0383166000908152600c6020526040812080548392906113ab9084906141fe565b90915550506001600160a01b038084166000908152600d602090815260408083209386168352929052208054820190556113e6838383612ee4565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b611439612f64565b600f546601000000000000900460ff16156114965760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610d66565b8082036114e55760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e20494473206d75737420626520646966666572656e7400000000006044820152606401610d66565b6018546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190614241565b6001600160a01b0316146115c15760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2031206973206e6f7420796f7572730000000000000000000000006044820152606401610d66565b6018546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116479190614241565b6001600160a01b03161461169d5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2032206973206e6f7420796f7572730000000000000000000000006044820152606401610d66565b600360005260156020527fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c28547fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c2754106117385760405162461bcd60e51b815260206004820152601a60248201527f566f6f6c6120737570706c79206c696d697420726561636865640000000000006044820152606401610d66565b600260005260156020527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0c547f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b54106117d35760405162461bcd60e51b815260206004820152601d60248201527f4e756c6c61626c6520737570706c79206c696d697420726561636865640000006044820152606401610d66565b600160005260156020527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818e547f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d541061186e5760405162461bcd60e51b815260206004820152601f60248201527f5065707065726d696e7420737570706c79206c696d69742072656163686564006044820152606401610d66565b6000805260156020527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aee547fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed54106119085760405162461bcd60e51b815260206004820152601e60248201527f50696e62616c6c657220737570706c79206c696d6974207265616368656400006044820152606401610d66565b6018546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b15801561196757600080fd5b505af115801561197b573d6000803e3d6000fd5b50506018546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b1580156119de57600080fd5b505af11580156119f2573d6000803e3d6000fd5b5050600f5461ffff16159150611a3c905057600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000811661ffff918216600019019091161790555b611a47336000612fbd565b611a52336001612fbd565b611a5d336002612fbd565b611a68336003612fbd565b611a726001600e55565b5050565b6000818152600260205260408120546001600160a01b031680610c175760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d66565b60006001600160a01b038216611b595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d66565b506001600160a01b031660009081526003602052604090205490565b611b7d612e8a565b6001600f60048282829054906101000a900461ffff16611b9d919061425e565b92506101000a81548161ffff021916908361ffff1602179055506003600f60049054906101000a900461ffff1661ffff161015611c1c5760405162461bcd60e51b815260206004820152601d60248201527f4c6f7365206f776e657273686970206f6e2033726420617474656d70740000006044820152606401610d66565b611c26600061304a565b565b80601754811115611c7b5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b601454601354611c8c9083906141fe565b1115611cda5760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b611ce2612f64565b600f54670100000000000000900460ff161515600114611d445760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e672064697361626c65640000000000006044820152606401610d66565b3360009081526019602052604090205460ff161515600114611da85760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610d66565b333214611df75760405162461bcd60e51b815260206004820152601560248201527f436f6e7472616374732063616e6e6f74206d696e7400000000000000000000006044820152606401610d66565b81601654611e059190614280565b341015611e545760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d66565b611a6833836130a9565b6000600b8281548110611e7357611e73614211565b6000918252602090912001546001600160a01b031692915050565b606060018054610c2c906141ae565b611ea5612e8a565b8060106000846004811115611ebc57611ebc614170565b6004811115611ecd57611ecd614170565b81526020019081526020016000209081610e0791906142e5565b80601754811115611f3a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b601454601354611f4b9083906141fe565b1115611f995760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b611fa1612f64565b333214611ff05760405162461bcd60e51b815260206004820152601560248201527f436f6e7472616374732063616e6e6f74206d696e7400000000000000000000006044820152606401610d66565b81601654611ffe9190614280565b34101561204d5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d66565b600f546601000000000000900460ff1615611e545760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610d66565b611a723383836130fb565b6000806120c160085490565b6120cb90476141fe565b90506120f683826120f1866001600160a01b03166000908152600a602052604090205490565b6131c9565b9392505050565b8061ffff166017548111156121545760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b6014546013546121659083906141fe565b11156121b35760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b6121bb612e8a565b600f54610190906121d790849062010000900461ffff1661425e565b61ffff1611156121e657600080fd5b81600f60028282829054906101000a900461ffff16612205919061425e565b92506101000a81548161ffff021916908361ffff160217905550610e07838361ffff166130a9565b612235612e8a565b601755565b612242612e8a565b600f80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b612286612e8a565b600f8054911515670100000000000000027fffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffff909216919091179055565b6122cd3383612b34565b61233f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b61234b84848484613207565b50505050565b6001600160a01b0382166000908152600c602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156123c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ed91906143a5565b6123f791906141fe565b6001600160a01b038086166000908152600d602090815260408083209388168352929052205490915061242d90849083906131c9565b949350505050565b61243d612e8a565b60005b8151811015611a725760016019600084848151811061246157612461614211565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061249d81614227565b915050612440565b6000818152600260205260409020546060906001600160a01b031661250c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610d66565b6000828152601160205260408120546010919060ff16600481111561253357612533614170565b600481111561254457612544614170565b8152602001908152602001600020805461255d906141ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612589906141ae565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b50505050509050919050565b6125ea612e8a565b6125f56014826143d4565b156126425760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652061206d756c7469706c65206f6620323000000000000000006044820152606401610d66565b6014546000906126539083906143e8565b90508060136000015411156126aa5760405162461bcd60e51b815260206004820152601860248201527f4e6577206d617820737570706c7920746f6f20736d616c6c00000000000000006044820152606401610d66565b60148190556103e86126bd83600a614280565b6126c890603c614280565b6126d291906143fb565b600080805260156020527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aee805490919061270d9084906143e8565b909155506103e8905061272183600a614280565b61272c90600f614280565b61273691906143fb565b6001600090815260156020527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818e80549091906127739084906143e8565b909155506103e8905061278783600a614280565b61279290600f614280565b61279c91906143fb565b6002600090815260156020527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0c80549091906127d99084906143e8565b909155506103e890506127ed83600a614280565b6127f890600a614280565b61280291906143fb565b6003600090815260156020527fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c28805490919061283f9084906143e8565b90915550505050565b612850612e8a565b60005b8151811015611a72576019600083838151811061287257612872614211565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169055806128a781614227565b915050612853565b6128b7612e8a565b6001600160a01b0381166129335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d66565b6110c68161304a565b6000818152600260205260409020546001600160a01b03166110c65760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d66565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906129e282611a76565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612a6b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d66565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612ab8576040519150601f19603f3d011682016040523d82523d6000602084013e612abd565b606091505b5050905080610e075760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d66565b600080612b4083611a76565b9050806001600160a01b0316846001600160a01b03161480612b8757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061242d5750836001600160a01b0316612ba084610caf565b6001600160a01b031614949350505050565b826001600160a01b0316612bc582611a76565b6001600160a01b031614612c415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d66565b6001600160a01b038216612cbc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d66565b826001600160a01b0316612ccf82611a76565b6001600160a01b031614612d4b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d66565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612df382611a76565b9050612dfe82611a76565b6000838152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6006546001600160a01b03163314611c265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e07908490613290565b6002600e5403612fb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d66565b6002600e55565b60138054600190810190915560156000836004811115612fdf57612fdf614170565b6004811115612ff057612ff0614170565b8152602080820192909252604090810160009081208054909401909355601354835260119091529020805482919060ff1916600183600481111561303657613036614170565b0217905550611a7282601360000154613375565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805b8281101561234b576130bf818461338f565b915060048260048111156130d5576130d5614170565b036130df57600080fd5b6130e98483612fbd565b806130f381614227565b9150506130ad565b816001600160a01b0316836001600160a01b03160361315c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6007546001600160a01b038416600090815260096020526040812054909183916131f39086614280565b6131fd91906143fb565b61242d91906143e8565b613212848484612bb2565b61321e8484848461371a565b61234b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b60006132e5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138bb9092919063ffffffff16565b805190915015610e075780806020019051810190613303919061440f565b610e075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d66565b611a728282604051806020016040528060008152506138ca565b6000807f028f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f333a43426133c26001836143e8565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810185905260e08101869052610100016040516020818303038152906040528051906020012060001c61342491906143fb565b905060046000805b60048112156134bb576012600082600481111561344b5761344b614170565b600481111561345c5761345c614170565b600481111561346d5761346d614170565b8152602001908152602001600020548261348791906141fe565b91508184116134a9578060048111156134a2576134a2614170565b92506134bb565b806134b38161442c565b91505061342c565b50600f5461ffff16601560008460048111156134d9576134d9614170565b60048111156134ea576134ea614170565b81526020019081526020016000206001015461350691906143e8565b6015600084600481111561351c5761351c614170565b600481111561352d5761352d614170565b815260200190815260200160002060000154101561354f57509150610c179050565b815b600383600481111561356557613565614170565b10156136365782600481111561357d5761357d614170565b6135889060016141fe565b600481111561359957613599614170565b600f5490935061ffff16601560008560048111156135b9576135b9614170565b60048111156135ca576135ca614170565b8152602001908152602001600020600101546135e691906143e8565b601560008560048111156135fc576135fc614170565b600481111561360d5761360d614170565b81526020019081526020016000206000015410156136315782945050505050610c17565b613551565b600081600481111561364a5761364a614170565b1061039757600181600481111561366357613663614170565b61366d91906143e8565b600481111561367e5761367e614170565b600f5490915061ffff166015600083600481111561369e5761369e614170565b60048111156136af576136af614170565b8152602001908152602001600020600101546136cb91906143e8565b601560008360048111156136e1576136e1614170565b60048111156136f2576136f2614170565b8152602001908152602001600020600001541015613715579350610c1792505050565b613636565b60006001600160a01b0384163b156138b0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061377790339089908890889060040161445d565b6020604051808303816000875af19250505080156137b2575060408051601f3d908101601f191682019092526137af91810190614499565b60015b613865573d8080156137e0576040519150601f19603f3d011682016040523d82523d6000602084013e6137e5565b606091505b50805160000361385d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061242d565b506001949350505050565b606061242d8484600085613953565b6138d48383613a45565b6138e1600084848461371a565b610e075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b6060824710156139cb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d66565b600080866001600160a01b031685876040516139e791906144b6565b60006040518083038185875af1925050503d8060008114613a24576040519150601f19603f3d011682016040523d82523d6000602084013e613a29565b606091505b5091509150613a3a87838387613bdd565b979650505050505050565b6001600160a01b038216613a9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d66565b6000818152600260205260409020546001600160a01b031615613b005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d66565b6000818152600260205260409020546001600160a01b031615613b655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d66565b6001600160a01b0382166000818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315613c4c578251600003613c45576001600160a01b0385163b613c455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d66565b508161242d565b61242d8383815115613c615781518083602001fd5b8060405162461bcd60e51b8152600401610d669190613d16565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110c657600080fd5b600060208284031215613cbb57600080fd5b81356120f681613c7b565b60005b83811015613ce1578181015183820152602001613cc9565b50506000910152565b60008151808452613d02816020860160208601613cc6565b601f01601f19169290920160200192915050565b6020815260006120f66020830184613cea565b600060208284031215613d3b57600080fd5b5035919050565b6001600160a01b03811681146110c657600080fd5b60008060408385031215613d6a57600080fd5b8235613d7581613d42565b946020939093013593505050565b600060208284031215613d9557600080fd5b81356120f681613d42565b600080600060608486031215613db557600080fd5b8335613dc081613d42565b92506020840135613dd081613d42565b929592945050506040919091013590565b60008060408385031215613df457600080fd5b8235613dff81613d42565b91506020830135613e0f81613d42565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613e5257835183529284019291840191600101613e36565b50909695505050505050565b60008060408385031215613e7157600080fd5b50508035926020909101359150565b803560058110613e8f57600080fd5b919050565b600060208284031215613ea657600080fd5b6120f682613e80565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613eee57613eee613eaf565b604052919050565b600067ffffffffffffffff831115613f1057613f10613eaf565b613f236020601f19601f86011601613ec5565b9050828152838383011115613f3757600080fd5b828260208301376000602084830101529392505050565b60008060408385031215613f6157600080fd5b613f6a83613e80565b9150602083013567ffffffffffffffff811115613f8657600080fd5b8301601f81018513613f9757600080fd5b613fa685823560208401613ef6565b9150509250929050565b80151581146110c657600080fd5b60008060408385031215613fd157600080fd5b8235613fdc81613d42565b91506020830135613e0f81613fb0565b60008060408385031215613fff57600080fd5b823561400a81613d42565b9150602083013561ffff81168114613e0f57600080fd5b60006020828403121561403357600080fd5b81356120f681613fb0565b6000806000806080858703121561405457600080fd5b843561405f81613d42565b9350602085013561406f81613d42565b925060408501359150606085013567ffffffffffffffff81111561409257600080fd5b8501601f810187136140a357600080fd5b6140b287823560208401613ef6565b91505092959194509250565b600060208083850312156140d157600080fd5b823567ffffffffffffffff808211156140e957600080fd5b818501915085601f8301126140fd57600080fd5b81358181111561410f5761410f613eaf565b8060051b9150614120848301613ec5565b818152918301840191848101908884111561413a57600080fd5b938501935b83851015614164578435925061415483613d42565b828252938501939085019061413f565b98975050505050505050565b634e487b7160e01b600052602160045260246000fd5b60208101600583106141a857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c908216806141c257607f821691505b6020821081036141e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c1757610c176141e8565b634e487b7160e01b600052603260045260246000fd5b6000600019820361423a5761423a6141e8565b5060010190565b60006020828403121561425357600080fd5b81516120f681613d42565b61ffff818116838216019080821115614279576142796141e8565b5092915050565b8082028115828204841417610c1757610c176141e8565b601f821115610e0757600081815260208120601f850160051c810160208610156142be5750805b601f850160051c820191505b818110156142dd578281556001016142ca565b505050505050565b815167ffffffffffffffff8111156142ff576142ff613eaf565b6143138161430d84546141ae565b84614297565b602080601f83116001811461434857600084156143305750858301515b600019600386901b1c1916600185901b1785556142dd565b600085815260208120601f198616915b8281101561437757888601518255948401946001909101908401614358565b50858210156143955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156143b757600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b6000826143e3576143e36143be565b500690565b81810381811115610c1757610c176141e8565b60008261440a5761440a6143be565b500490565b60006020828403121561442157600080fd5b81516120f681613fb0565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361423a5761423a6141e8565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261448f6080830184613cea565b9695505050505050565b6000602082840312156144ab57600080fd5b81516120f681613c7b565b600082516144c8818460208701613cc6565b919091019291505056fea2646970667358221220dda1d85ea32201a9ef21e10a1c484d8d1b0f4e795974f4f673ae70b963c9169c64736f6c63430008110033000000000000000000000000b0f9cd11cf373d816c62a5ddde2984b39e22fca2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000600000000000000000000000074682c44a3be1e3d5d2fdcb1d30e067281239b2b0000000000000000000000000312d0cafdcfb9a89fc0fa2aac64ebfaf4838c1800000000000000000000000009dfde2d907996a7b4028d1691ae27bbfdb5af6c0000000000000000000000006ff599fe8c0256634b47d498d964caf120e04df40000000000000000000000005b60117255df27fdd885629c0210d9dd975ff975000000000000000000000000c0cd8ce02c69c92d5132038eea4b152f5b4e9c1700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d535476695a50594a4e4b3150723469317735734834787a5365427a4764463248616d426f633147754e74783400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544d584b78464446656a58637570475846544833647164376b586e784a4d767a316a6a75466a6f446943483500000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5467685656727a48475374444e4535325747513375354845706f5a4a54533233445a577663735868514c587400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5961717746336374754562377578637a4367436778693141524767425931486f4e364e6e384475504e5948770000000000000000000000

Deployed Bytecode

0x60806040526004361061034e5760003560e01c806399b0afdc116101bb578063cb872a17116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610a8c578063f80db07214610aac578063f8ef56d714610ae5578063fa2ad4d814610afb57600080fd5b8063e985e9c514610a03578063eb046e4514610a4c578063ecf3439914610a6c57600080fd5b8063d79779b2116100d1578063d79779b214610974578063e2684f08146109aa578063e33b7de3146109ce578063e821693e146109e357600080fd5b8063cb872a17146108fb578063ce7c2ac214610928578063d755a17e1461095e57600080fd5b8063b071401b11610164578063b88d4fde1161013e578063b88d4fde1461087b578063c45ac0501461089b578063c73437d1146108bb578063c87b56dd146108db57600080fd5b8063b071401b1461081b578063b69355011461083b578063b767a0981461085b57600080fd5b8063a22cb46511610195578063a22cb465146107bb578063a3f8eace146107db578063a571adef146107fb57600080fd5b806399b0afdc1461076d5780639c83aecc14610788578063a0712d68146107a857600080fd5b806344a0d68a1161028a5780637b1709d0116102335780638b83209b1161020d5780638b83209b146106e45780638da5cb5b1461070457806395d89b41146107225780639852595c1461073757600080fd5b80637b1709d01461066d578063822597581461069d5780638ad433ac146106d157600080fd5b80636352211e116102645780636352211e1461061857806370a0823114610638578063715018a61461065857600080fd5b806344a0d68a146105b857806348b75044146105d85780635a91a93a146105f857600080fd5b806323b872dd116102f757806342842e0e116102d157806342842e0e1461051757806342966c68146105375780634342728e14610557578063438b63001461058b57600080fd5b806323b872dd146104925780633a98ef39146104b2578063406072a9146104d157600080fd5b8063095ea7b311610328578063095ea7b31461042b578063191655871461044d5780631f3712851461046d57600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f357600080fd5b36610397577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103a857600080fd5b506103bc6103b7366004613ca9565b610b38565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610c1d565b6040516103c89190613d16565b3480156103ff57600080fd5b5061041361040e366004613d29565b610caf565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004613d57565b610cd6565b005b34801561045957600080fd5b5061044b610468366004613d83565b610e0c565b34801561047957600080fd5b50600f546103bc90670100000000000000900460ff1681565b34801561049e57600080fd5b5061044b6104ad366004613da0565b610f9f565b3480156104be57600080fd5b506007545b6040519081526020016103c8565b3480156104dd57600080fd5b506104c36104ec366004613de1565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561052357600080fd5b5061044b610532366004613da0565b611027565b34801561054357600080fd5b5061044b610552366004613d29565b611042565b34801561056357600080fd5b50600f546105789062010000900461ffff1681565b60405161ffff90911681526020016103c8565b34801561059757600080fd5b506105ab6105a6366004613d83565b6110c9565b6040516103c89190613e1a565b3480156105c457600080fd5b5061044b6105d3366004613d29565b611267565b3480156105e457600080fd5b5061044b6105f3366004613de1565b611274565b34801561060457600080fd5b5061044b610613366004613e5e565b611431565b34801561062457600080fd5b50610413610633366004613d29565b611a76565b34801561064457600080fd5b506104c3610653366004613d83565b611adb565b34801561066457600080fd5b5061044b611b75565b34801561067957600080fd5b50601354601454610688919082565b604080519283526020830191909152016103c8565b3480156106a957600080fd5b506106886106b8366004613e94565b6015602052600090815260409020805460019091015482565b61044b6106df366004613d29565b611c28565b3480156106f057600080fd5b506104136106ff366004613d29565b611e5e565b34801561071057600080fd5b506006546001600160a01b0316610413565b34801561072e57600080fd5b506103e6611e8e565b34801561074357600080fd5b506104c3610752366004613d83565b6001600160a01b03166000908152600a602052604090205490565b34801561077957600080fd5b50600f546105789061ffff1681565b34801561079457600080fd5b5061044b6107a3366004613f4e565b611e9d565b61044b6107b6366004613d29565b611ee7565b3480156107c757600080fd5b5061044b6107d6366004613fbe565b6120aa565b3480156107e757600080fd5b506104c36107f6366004613d83565b6120b5565b34801561080757600080fd5b5061044b610816366004613fec565b6120fd565b34801561082757600080fd5b5061044b610836366004613d29565b61222d565b34801561084757600080fd5b5061044b610856366004614021565b61223a565b34801561086757600080fd5b5061044b610876366004614021565b61227e565b34801561088757600080fd5b5061044b61089636600461403e565b6122c3565b3480156108a757600080fd5b506104c36108b6366004613de1565b612351565b3480156108c757600080fd5b5061044b6108d63660046140be565b612435565b3480156108e757600080fd5b506103e66108f6366004613d29565b6124a5565b34801561090757600080fd5b506104c3610916366004613e94565b60126020526000908152604090205481565b34801561093457600080fd5b506104c3610943366004613d83565b6001600160a01b031660009081526009602052604090205490565b34801561096a57600080fd5b506104c360165481565b34801561098057600080fd5b506104c361098f366004613d83565b6001600160a01b03166000908152600c602052604090205490565b3480156109b657600080fd5b50600f546103bc906601000000000000900460ff1681565b3480156109da57600080fd5b506008546104c3565b3480156109ef57600080fd5b5061044b6109fe366004613d29565b6125e2565b348015610a0f57600080fd5b506103bc610a1e366004613de1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5857600080fd5b50601854610413906001600160a01b031681565b348015610a7857600080fd5b5061044b610a873660046140be565b612848565b348015610a9857600080fd5b5061044b610aa7366004613d83565b6128af565b348015610ab857600080fd5b506103bc610ac7366004613d83565b6001600160a01b031660009081526019602052604090205460ff1690565b348015610af157600080fd5b506104c360175481565b348015610b0757600080fd5b50610b2b610b16366004613d29565b60116020526000908152604090205460ff1681565b6040516103c89190614186565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610bcb57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c1757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610c2c906141ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610c58906141ae565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261293c565b506000908152600460205260409020546001600160a01b031690565b6000610ce182611a76565b9050806001600160a01b0316836001600160a01b031603610d6f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610d8b5750610d8b8133610a1e565b610dfd5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d66565b610e0783836129a0565b505050565b6001600160a01b038116600090815260096020526040902054610e975760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d66565b6000610ea2826120b5565b905080600003610f1a5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d66565b8060086000828254610f2c91906141fe565b90915550506001600160a01b0382166000908152600a60205260409020805482019055610f598282612a1b565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b610faa335b82612b34565b61101c5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b610e07838383612bb2565b610e07838383604051806020016040528060008152506122c3565b61104b33610fa4565b6110bd5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b6110c681612de8565b50565b606060006110d683611adb565b905060008167ffffffffffffffff8111156110f3576110f3613eaf565b60405190808252806020026020018201604052801561111c578160200160208202803683370190505b509050600160005b838110801561113557506014548211155b156111c1576000828152600260205260409020546001600160a01b031615156001036111af57600061116683611a76565b9050866001600160a01b0316816001600160a01b0316036111ad578284838151811061119457611194614211565b6020908102919091010152816111a981614227565b9250505b505b816111b981614227565b925050611124565b60008167ffffffffffffffff8111156111dc576111dc613eaf565b604051908082528060200260200182016040528015611205578160200160208202803683370190505b50905060005b8281101561125c5784818151811061122557611225614211565b602002602001015182828151811061123f5761123f614211565b60209081029190910101528061125481614227565b91505061120b565b509695505050505050565b61126f612e8a565b601655565b6001600160a01b0381166000908152600960205260409020546112ff5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d66565b600061130b8383612351565b9050806000036113835760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d66565b6001600160a01b0383166000908152600c6020526040812080548392906113ab9084906141fe565b90915550506001600160a01b038084166000908152600d602090815260408083209386168352929052208054820190556113e6838383612ee4565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b611439612f64565b600f546601000000000000900460ff16156114965760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610d66565b8082036114e55760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e20494473206d75737420626520646966666572656e7400000000006044820152606401610d66565b6018546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190614241565b6001600160a01b0316146115c15760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2031206973206e6f7420796f7572730000000000000000000000006044820152606401610d66565b6018546040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116479190614241565b6001600160a01b03161461169d5760405162461bcd60e51b815260206004820152601460248201527f546f6b656e2032206973206e6f7420796f7572730000000000000000000000006044820152606401610d66565b600360005260156020527fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c28547fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c2754106117385760405162461bcd60e51b815260206004820152601a60248201527f566f6f6c6120737570706c79206c696d697420726561636865640000000000006044820152606401610d66565b600260005260156020527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0c547f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b54106117d35760405162461bcd60e51b815260206004820152601d60248201527f4e756c6c61626c6520737570706c79206c696d697420726561636865640000006044820152606401610d66565b600160005260156020527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818e547f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d541061186e5760405162461bcd60e51b815260206004820152601f60248201527f5065707065726d696e7420737570706c79206c696d69742072656163686564006044820152606401610d66565b6000805260156020527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aee547fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed54106119085760405162461bcd60e51b815260206004820152601e60248201527f50696e62616c6c657220737570706c79206c696d6974207265616368656400006044820152606401610d66565b6018546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b03909116906342966c6890602401600060405180830381600087803b15801561196757600080fd5b505af115801561197b573d6000803e3d6000fd5b50506018546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018590526001600160a01b0390911692506342966c689150602401600060405180830381600087803b1580156119de57600080fd5b505af11580156119f2573d6000803e3d6000fd5b5050600f5461ffff16159150611a3c905057600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000811661ffff918216600019019091161790555b611a47336000612fbd565b611a52336001612fbd565b611a5d336002612fbd565b611a68336003612fbd565b611a726001600e55565b5050565b6000818152600260205260408120546001600160a01b031680610c175760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d66565b60006001600160a01b038216611b595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d66565b506001600160a01b031660009081526003602052604090205490565b611b7d612e8a565b6001600f60048282829054906101000a900461ffff16611b9d919061425e565b92506101000a81548161ffff021916908361ffff1602179055506003600f60049054906101000a900461ffff1661ffff161015611c1c5760405162461bcd60e51b815260206004820152601d60248201527f4c6f7365206f776e657273686970206f6e2033726420617474656d70740000006044820152606401610d66565b611c26600061304a565b565b80601754811115611c7b5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b601454601354611c8c9083906141fe565b1115611cda5760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b611ce2612f64565b600f54670100000000000000900460ff161515600114611d445760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e672064697361626c65640000000000006044820152606401610d66565b3360009081526019602052604090205460ff161515600114611da85760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610d66565b333214611df75760405162461bcd60e51b815260206004820152601560248201527f436f6e7472616374732063616e6e6f74206d696e7400000000000000000000006044820152606401610d66565b81601654611e059190614280565b341015611e545760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d66565b611a6833836130a9565b6000600b8281548110611e7357611e73614211565b6000918252602090912001546001600160a01b031692915050565b606060018054610c2c906141ae565b611ea5612e8a565b8060106000846004811115611ebc57611ebc614170565b6004811115611ecd57611ecd614170565b81526020019081526020016000209081610e0791906142e5565b80601754811115611f3a5760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b601454601354611f4b9083906141fe565b1115611f995760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b611fa1612f64565b333214611ff05760405162461bcd60e51b815260206004820152601560248201527f436f6e7472616374732063616e6e6f74206d696e7400000000000000000000006044820152606401610d66565b81601654611ffe9190614280565b34101561204d5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610d66565b600f546601000000000000900460ff1615611e545760405162461bcd60e51b815260206004820152600e60248201527f4d696e74696e67207061757365640000000000000000000000000000000000006044820152606401610d66565b611a723383836130fb565b6000806120c160085490565b6120cb90476141fe565b90506120f683826120f1866001600160a01b03166000908152600a602052604090205490565b6131c9565b9392505050565b8061ffff166017548111156121545760405162461bcd60e51b815260206004820152601360248201527f496e76616c6964206d696e7420616d6f756e74000000000000000000000000006044820152606401610d66565b6014546013546121659083906141fe565b11156121b35760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610d66565b6121bb612e8a565b600f54610190906121d790849062010000900461ffff1661425e565b61ffff1611156121e657600080fd5b81600f60028282829054906101000a900461ffff16612205919061425e565b92506101000a81548161ffff021916908361ffff160217905550610e07838361ffff166130a9565b612235612e8a565b601755565b612242612e8a565b600f80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b612286612e8a565b600f8054911515670100000000000000027fffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffff909216919091179055565b6122cd3383612b34565b61233f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d66565b61234b84848484613207565b50505050565b6001600160a01b0382166000908152600c602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156123c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ed91906143a5565b6123f791906141fe565b6001600160a01b038086166000908152600d602090815260408083209388168352929052205490915061242d90849083906131c9565b949350505050565b61243d612e8a565b60005b8151811015611a725760016019600084848151811061246157612461614211565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061249d81614227565b915050612440565b6000818152600260205260409020546060906001600160a01b031661250c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610d66565b6000828152601160205260408120546010919060ff16600481111561253357612533614170565b600481111561254457612544614170565b8152602001908152602001600020805461255d906141ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612589906141ae565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b50505050509050919050565b6125ea612e8a565b6125f56014826143d4565b156126425760405162461bcd60e51b815260206004820152601860248201527f4d7573742062652061206d756c7469706c65206f6620323000000000000000006044820152606401610d66565b6014546000906126539083906143e8565b90508060136000015411156126aa5760405162461bcd60e51b815260206004820152601860248201527f4e6577206d617820737570706c7920746f6f20736d616c6c00000000000000006044820152606401610d66565b60148190556103e86126bd83600a614280565b6126c890603c614280565b6126d291906143fb565b600080805260156020527fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aee805490919061270d9084906143e8565b909155506103e8905061272183600a614280565b61272c90600f614280565b61273691906143fb565b6001600090815260156020527f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818e80549091906127739084906143e8565b909155506103e8905061278783600a614280565b61279290600f614280565b61279c91906143fb565b6002600090815260156020527f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0c80549091906127d99084906143e8565b909155506103e890506127ed83600a614280565b6127f890600a614280565b61280291906143fb565b6003600090815260156020527fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c28805490919061283f9084906143e8565b90915550505050565b612850612e8a565b60005b8151811015611a72576019600083838151811061287257612872614211565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169055806128a781614227565b915050612853565b6128b7612e8a565b6001600160a01b0381166129335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d66565b6110c68161304a565b6000818152600260205260409020546001600160a01b03166110c65760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d66565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906129e282611a76565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612a6b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d66565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612ab8576040519150601f19603f3d011682016040523d82523d6000602084013e612abd565b606091505b5050905080610e075760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d66565b600080612b4083611a76565b9050806001600160a01b0316846001600160a01b03161480612b8757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061242d5750836001600160a01b0316612ba084610caf565b6001600160a01b031614949350505050565b826001600160a01b0316612bc582611a76565b6001600160a01b031614612c415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d66565b6001600160a01b038216612cbc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d66565b826001600160a01b0316612ccf82611a76565b6001600160a01b031614612d4b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d66565b6000818152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000612df382611a76565b9050612dfe82611a76565b6000838152600460209081526040808320805473ffffffffffffffffffffffffffffffffffffffff199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6006546001600160a01b03163314611c265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e07908490613290565b6002600e5403612fb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d66565b6002600e55565b60138054600190810190915560156000836004811115612fdf57612fdf614170565b6004811115612ff057612ff0614170565b8152602080820192909252604090810160009081208054909401909355601354835260119091529020805482919060ff1916600183600481111561303657613036614170565b0217905550611a7282601360000154613375565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805b8281101561234b576130bf818461338f565b915060048260048111156130d5576130d5614170565b036130df57600080fd5b6130e98483612fbd565b806130f381614227565b9150506130ad565b816001600160a01b0316836001600160a01b03160361315c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d66565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6007546001600160a01b038416600090815260096020526040812054909183916131f39086614280565b6131fd91906143fb565b61242d91906143e8565b613212848484612bb2565b61321e8484848461371a565b61234b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b60006132e5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138bb9092919063ffffffff16565b805190915015610e075780806020019051810190613303919061440f565b610e075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d66565b611a728282604051806020016040528060008152506138ca565b6000807f028f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f333a43426133c26001836143e8565b604080516001600160a01b039096166020870152850193909352606084019190915260808301524060a082015260c0810185905260e08101869052610100016040516020818303038152906040528051906020012060001c61342491906143fb565b905060046000805b60048112156134bb576012600082600481111561344b5761344b614170565b600481111561345c5761345c614170565b600481111561346d5761346d614170565b8152602001908152602001600020548261348791906141fe565b91508184116134a9578060048111156134a2576134a2614170565b92506134bb565b806134b38161442c565b91505061342c565b50600f5461ffff16601560008460048111156134d9576134d9614170565b60048111156134ea576134ea614170565b81526020019081526020016000206001015461350691906143e8565b6015600084600481111561351c5761351c614170565b600481111561352d5761352d614170565b815260200190815260200160002060000154101561354f57509150610c179050565b815b600383600481111561356557613565614170565b10156136365782600481111561357d5761357d614170565b6135889060016141fe565b600481111561359957613599614170565b600f5490935061ffff16601560008560048111156135b9576135b9614170565b60048111156135ca576135ca614170565b8152602001908152602001600020600101546135e691906143e8565b601560008560048111156135fc576135fc614170565b600481111561360d5761360d614170565b81526020019081526020016000206000015410156136315782945050505050610c17565b613551565b600081600481111561364a5761364a614170565b1061039757600181600481111561366357613663614170565b61366d91906143e8565b600481111561367e5761367e614170565b600f5490915061ffff166015600083600481111561369e5761369e614170565b60048111156136af576136af614170565b8152602001908152602001600020600101546136cb91906143e8565b601560008360048111156136e1576136e1614170565b60048111156136f2576136f2614170565b8152602001908152602001600020600001541015613715579350610c1792505050565b613636565b60006001600160a01b0384163b156138b0576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061377790339089908890889060040161445d565b6020604051808303816000875af19250505080156137b2575060408051601f3d908101601f191682019092526137af91810190614499565b60015b613865573d8080156137e0576040519150601f19603f3d011682016040523d82523d6000602084013e6137e5565b606091505b50805160000361385d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061242d565b506001949350505050565b606061242d8484600085613953565b6138d48383613a45565b6138e1600084848461371a565b610e075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d66565b6060824710156139cb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d66565b600080866001600160a01b031685876040516139e791906144b6565b60006040518083038185875af1925050503d8060008114613a24576040519150601f19603f3d011682016040523d82523d6000602084013e613a29565b606091505b5091509150613a3a87838387613bdd565b979650505050505050565b6001600160a01b038216613a9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d66565b6000818152600260205260409020546001600160a01b031615613b005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d66565b6000818152600260205260409020546001600160a01b031615613b655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d66565b6001600160a01b0382166000818152600360209081526040808320805460010190558483526002909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608315613c4c578251600003613c45576001600160a01b0385163b613c455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d66565b508161242d565b61242d8383815115613c615781518083602001fd5b8060405162461bcd60e51b8152600401610d669190613d16565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110c657600080fd5b600060208284031215613cbb57600080fd5b81356120f681613c7b565b60005b83811015613ce1578181015183820152602001613cc9565b50506000910152565b60008151808452613d02816020860160208601613cc6565b601f01601f19169290920160200192915050565b6020815260006120f66020830184613cea565b600060208284031215613d3b57600080fd5b5035919050565b6001600160a01b03811681146110c657600080fd5b60008060408385031215613d6a57600080fd5b8235613d7581613d42565b946020939093013593505050565b600060208284031215613d9557600080fd5b81356120f681613d42565b600080600060608486031215613db557600080fd5b8335613dc081613d42565b92506020840135613dd081613d42565b929592945050506040919091013590565b60008060408385031215613df457600080fd5b8235613dff81613d42565b91506020830135613e0f81613d42565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613e5257835183529284019291840191600101613e36565b50909695505050505050565b60008060408385031215613e7157600080fd5b50508035926020909101359150565b803560058110613e8f57600080fd5b919050565b600060208284031215613ea657600080fd5b6120f682613e80565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613eee57613eee613eaf565b604052919050565b600067ffffffffffffffff831115613f1057613f10613eaf565b613f236020601f19601f86011601613ec5565b9050828152838383011115613f3757600080fd5b828260208301376000602084830101529392505050565b60008060408385031215613f6157600080fd5b613f6a83613e80565b9150602083013567ffffffffffffffff811115613f8657600080fd5b8301601f81018513613f9757600080fd5b613fa685823560208401613ef6565b9150509250929050565b80151581146110c657600080fd5b60008060408385031215613fd157600080fd5b8235613fdc81613d42565b91506020830135613e0f81613fb0565b60008060408385031215613fff57600080fd5b823561400a81613d42565b9150602083013561ffff81168114613e0f57600080fd5b60006020828403121561403357600080fd5b81356120f681613fb0565b6000806000806080858703121561405457600080fd5b843561405f81613d42565b9350602085013561406f81613d42565b925060408501359150606085013567ffffffffffffffff81111561409257600080fd5b8501601f810187136140a357600080fd5b6140b287823560208401613ef6565b91505092959194509250565b600060208083850312156140d157600080fd5b823567ffffffffffffffff808211156140e957600080fd5b818501915085601f8301126140fd57600080fd5b81358181111561410f5761410f613eaf565b8060051b9150614120848301613ec5565b818152918301840191848101908884111561413a57600080fd5b938501935b83851015614164578435925061415483613d42565b828252938501939085019061413f565b98975050505050505050565b634e487b7160e01b600052602160045260246000fd5b60208101600583106141a857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c908216806141c257607f821691505b6020821081036141e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c1757610c176141e8565b634e487b7160e01b600052603260045260246000fd5b6000600019820361423a5761423a6141e8565b5060010190565b60006020828403121561425357600080fd5b81516120f681613d42565b61ffff818116838216019080821115614279576142796141e8565b5092915050565b8082028115828204841417610c1757610c176141e8565b601f821115610e0757600081815260208120601f850160051c810160208610156142be5750805b601f850160051c820191505b818110156142dd578281556001016142ca565b505050505050565b815167ffffffffffffffff8111156142ff576142ff613eaf565b6143138161430d84546141ae565b84614297565b602080601f83116001811461434857600084156143305750858301515b600019600386901b1c1916600185901b1785556142dd565b600085815260208120601f198616915b8281101561437757888601518255948401946001909101908401614358565b50858210156143955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156143b757600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b6000826143e3576143e36143be565b500690565b81810381811115610c1757610c176141e8565b60008261440a5761440a6143be565b500490565b60006020828403121561442157600080fd5b81516120f681613fb0565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361423a5761423a6141e8565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261448f6080830184613cea565b9695505050505050565b6000602082840312156144ab57600080fd5b81516120f681613c7b565b600082516144c8818460208701613cc6565b919091019291505056fea2646970667358221220dda1d85ea32201a9ef21e10a1c484d8d1b0f4e795974f4f673ae70b963c9169c64736f6c63430008110033

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

000000000000000000000000b0f9cd11cf373d816c62a5ddde2984b39e22fca2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000600000000000000000000000074682c44a3be1e3d5d2fdcb1d30e067281239b2b0000000000000000000000000312d0cafdcfb9a89fc0fa2aac64ebfaf4838c1800000000000000000000000009dfde2d907996a7b4028d1691ae27bbfdb5af6c0000000000000000000000006ff599fe8c0256634b47d498d964caf120e04df40000000000000000000000005b60117255df27fdd885629c0210d9dd975ff975000000000000000000000000c0cd8ce02c69c92d5132038eea4b152f5b4e9c1700000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d535476695a50594a4e4b3150723469317735734834787a5365427a4764463248616d426f633147754e74783400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d544d584b78464446656a58637570475846544833647164376b586e784a4d767a316a6a75466a6f446943483500000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5467685656727a48475374444e4535325747513375354845706f5a4a54533233445a577663735868514c587400000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5961717746336374754562377578637a4367436778693141524767425931486f4e364e6e384475504e5948770000000000000000000000

-----Decoded View---------------
Arg [0] : _pinballer1Contract (address): 0xb0F9Cd11CF373d816C62A5dDDE2984B39e22fCA2
Arg [1] : payees (address[]): 0x74682C44A3be1E3D5d2fdcB1d30e067281239b2B,0x0312D0CaFdCFb9a89fc0Fa2aAC64EbFaF4838C18,0x09DFDe2D907996a7b4028D1691aE27BbFdb5aF6C,0x6fF599fe8c0256634b47d498D964caF120E04DF4,0x5B60117255df27FDD885629c0210D9DD975fF975,0xc0CD8cE02c69c92d5132038Eea4B152F5b4E9C17
Arg [2] : shares (uint256[]): 20,20,20,20,10,10
Arg [3] : tokenUris (string[]): ipfs://QmSTviZPYJNK1Pr4i1w5sH4xzSeBzGdF2HamBoc1GuNtx4,ipfs://QmTMXKxFDFejXcupGXFTH3dqd7kXnxJMvz1jjuFjoDiCH5,ipfs://QmTghVVrzHGStDNE52WGQ3u5HEpoZJTS23DZWvcsXhQLXt,ipfs://QmYaqwF3ctuEb7uxczCgCgxi1ARGgBY1HoN6Nn8DuPNYHw

-----Encoded View---------------
35 Constructor Arguments found :
Arg [0] : 000000000000000000000000b0f9cd11cf373d816c62a5ddde2984b39e22fca2
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 00000000000000000000000074682c44a3be1e3d5d2fdcb1d30e067281239b2b
Arg [6] : 0000000000000000000000000312d0cafdcfb9a89fc0fa2aac64ebfaf4838c18
Arg [7] : 00000000000000000000000009dfde2d907996a7b4028d1691ae27bbfdb5af6c
Arg [8] : 0000000000000000000000006ff599fe8c0256634b47d498d964caf120e04df4
Arg [9] : 0000000000000000000000005b60117255df27fdd885629c0210d9dd975ff975
Arg [10] : 000000000000000000000000c0cd8ce02c69c92d5132038eea4b152f5b4e9c17
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [20] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [22] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [24] : 697066733a2f2f516d535476695a50594a4e4b3150723469317735734834787a
Arg [25] : 5365427a4764463248616d426f633147754e7478340000000000000000000000
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [27] : 697066733a2f2f516d544d584b78464446656a58637570475846544833647164
Arg [28] : 376b586e784a4d767a316a6a75466a6f44694348350000000000000000000000
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [30] : 697066733a2f2f516d5467685656727a48475374444e45353257475133753548
Arg [31] : 45706f5a4a54533233445a577663735868514c58740000000000000000000000
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [33] : 697066733a2f2f516d5961717746336374754562377578637a43674367786931
Arg [34] : 41524767425931486f4e364e6e384475504e5948770000000000000000000000


Deployed Bytecode Sourcemap

77532:12332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44517:40;24376:10;44517:40;;;-1:-1:-1;;;;;206:55:1;;;188:74;;44547:9:0;293:2:1;278:18;;271:34;161:18;44517:40:0;;;;;;;77532:12332;;;;;60201:305;;;;;;;;;;-1:-1:-1;60201:305:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;60201:305:0;;;;;;;;61129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62641:171::-;;;;;;;;;;-1:-1:-1;62641:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2104:55:1;;;2086:74;;2074:2;2059:18;62641:171:0;1940:226:1;62159:416:0;;;;;;;;;;-1:-1:-1;62159:416:0;;;;;:::i;:::-;;:::i;:::-;;47038:671;;;;;;;;;;-1:-1:-1;47038:671:0;;;;;:::i;:::-;;:::i;78875:35::-;;;;;;;;;;-1:-1:-1;78875:35:0;;;;;;;;;;;63341:335;;;;;;;;;;-1:-1:-1;63341:335:0;;;;;:::i;:::-;;:::i;44648:91::-;;;;;;;;;;-1:-1:-1;44719:12:0;;44648:91;;;3517:25:1;;;3505:2;3490:18;44648:91:0;3371:177:1;45777:135:0;;;;;;;;;;-1:-1:-1;45777:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;45874:21:0;;;45847:7;45874:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;45777:135;63747:185;;;;;;;;;;-1:-1:-1;63747:185:0;;;;;:::i;:::-;;:::i;76815:242::-;;;;;;;;;;-1:-1:-1;76815:242:0;;;;;:::i;:::-;;:::i;78755:33::-;;;;;;;;;;-1:-1:-1;78755:33:0;;;;;;;;;;;;;;4134:6:1;4122:19;;;4104:38;;4092:2;4077:18;78755:33:0;3960:188:1;88429:1057:0;;;;;;;;;;-1:-1:-1;88429:1057:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;87536:86::-;;;;;;;;;;-1:-1:-1;87536:86:0;;;;;:::i;:::-;;:::i;47977:792::-;;;;;;;;;;-1:-1:-1;47977:792:0;;;;;:::i;:::-;;:::i;85976:1552::-;;;;;;;;;;-1:-1:-1;85976:1552:0;;;;;:::i;:::-;;:::i;60839:223::-;;;;;;;;;;-1:-1:-1;60839:223:0;;;;;:::i;:::-;;:::i;60570:207::-;;;;;;;;;;-1:-1:-1;60570:207:0;;;;;:::i;:::-;;:::i;89494:367::-;;;;;;;;;;;;;:::i;79105:45::-;;;;;;;;;;-1:-1:-1;79105:45:0;;;;;;;;;;;;;5469:25:1;;;5525:2;5510:18;;5503:34;;;;5442:18;79105:45:0;5295:248:1;79157:70:0;;;;;;;;;;-1:-1:-1;79157:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;81661:446;;;;;;:::i;:::-;;:::i;46003:100::-;;;;;;;;;;-1:-1:-1;46003:100:0;;;;;:::i;:::-;;:::i;25745:87::-;;;;;;;;;;-1:-1:-1;25818:6:0;;-1:-1:-1;;;;;25818:6:0;25745:87;;61298:104;;;;;;;;;;;;;:::i;45499:109::-;;;;;;;;;;-1:-1:-1;45499:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;45582:18:0;45555:7;45582:18;;;:9;:18;;;;;;;45499:109;78703:45;;;;;;;;;;-1:-1:-1;78703:45:0;;;;;;;;85709:133;;;;;;;;;;-1:-1:-1;85709:133:0;;;;;:::i;:::-;;:::i;81323:330::-;;;;;;:::i;:::-;;:::i;62884:155::-;;;;;;;;;;-1:-1:-1;62884:155:0;;;;;:::i;:::-;;:::i;46193:225::-;;;;;;;;;;-1:-1:-1;46193:225:0;;;;;:::i;:::-;;:::i;82117:229::-;;;;;;;;;;-1:-1:-1;82117:229:0;;;;;:::i;:::-;;:::i;85564:137::-;;;;;;;;;;-1:-1:-1;85564:137:0;;;;;:::i;:::-;;:::i;88319:102::-;;;;;;;;;;-1:-1:-1;88319:102:0;;;;;:::i;:::-;;:::i;85850:118::-;;;;;;;;;;-1:-1:-1;85850:118:0;;;;;:::i;:::-;;:::i;64003:322::-;;;;;;;;;;-1:-1:-1;64003:322:0;;;;;:::i;:::-;;:::i;46578:260::-;;;;;;;;;;-1:-1:-1;46578:260:0;;;;;:::i;:::-;;:::i;80896:204::-;;;;;;;;;;-1:-1:-1;80896:204:0;;;;;:::i;:::-;;:::i;85324:232::-;;;;;;;;;;-1:-1:-1;85324:232:0;;;;;:::i;:::-;;:::i;79043:53::-;;;;;;;;;;-1:-1:-1;79043:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;45295:105;;;;;;;;;;-1:-1:-1;45295:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;45376:16:0;45349:7;45376:16;;;:7;:16;;;;;;;45295:105;79236:39;;;;;;;;;;;;;;;;45085:119;;;;;;;;;;-1:-1:-1;45085:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;45170:26:0;45143:7;45170:26;;;:19;:26;;;;;;;45085:119;78847:21;;;;;;;;;;-1:-1:-1;78847:21:0;;;;;;;;;;;44833:95;;;;;;;;;;-1:-1:-1;44906:14:0;;44833:95;;87630:681;;;;;;;;;;-1:-1:-1;87630:681:0;;;;;:::i;:::-;;:::i;63110:164::-;;;;;;;;;;-1:-1:-1;63110:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;63231:25:0;;;63207:4;63231:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63110:164;79334:41;;;;;;;;;;-1:-1:-1;79334:41:0;;;;-1:-1:-1;;;;;79334:41:0;;;81108:207;;;;;;;;;;-1:-1:-1;81108:207:0;;;;;:::i;:::-;;:::i;26651:201::-;;;;;;;;;;-1:-1:-1;26651:201:0;;;;;:::i;:::-;;:::i;80759:129::-;;;;;;;;;;-1:-1:-1;80759:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;80852:28:0;80828:4;80852:28;;;:19;:28;;;;;;;;;80759:129;79282:39;;;;;;;;;;;;;;;;78982:54;;;;;;;;;;-1:-1:-1;78982:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;60201:305::-;60303:4;60340:40;;;60355:25;60340:40;;:105;;-1:-1:-1;60397:48:0;;;60412:33;60397:48;60340:105;:158;;;-1:-1:-1;52827:25:0;52812:40;;;;60462:36;60320:178;60201:305;-1:-1:-1;;60201:305:0:o;61129:100::-;61183:13;61216:5;61209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61129:100;:::o;62641:171::-;62717:7;62737:23;62752:7;62737:14;:23::i;:::-;-1:-1:-1;62780:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;62780:24:0;;62641:171::o;62159:416::-;62240:13;62256:23;62271:7;62256:14;:23::i;:::-;62240:39;;62304:5;-1:-1:-1;;;;;62298:11:0;:2;-1:-1:-1;;;;;62298:11:0;;62290:57;;;;-1:-1:-1;;;62290:57:0;;12363:2:1;62290:57:0;;;12345:21:1;12402:2;12382:18;;;12375:30;12441:34;12421:18;;;12414:62;12512:3;12492:18;;;12485:31;12533:19;;62290:57:0;;;;;;;;;24376:10;-1:-1:-1;;;;;62382:21:0;;;;:62;;-1:-1:-1;62407:37:0;62424:5;24376:10;63110:164;:::i;62407:37::-;62360:173;;;;-1:-1:-1;;;62360:173:0;;12765:2:1;62360:173:0;;;12747:21:1;12804:2;12784:18;;;12777:30;12843:34;12823:18;;;12816:62;12914:31;12894:18;;;12887:59;12963:19;;62360:173:0;12563:425:1;62360:173:0;62546:21;62555:2;62559:7;62546:8;:21::i;:::-;62229:346;62159:416;;:::o;47038:671::-;-1:-1:-1;;;;;47114:16:0;;47133:1;47114:16;;;:7;:16;;;;;;47106:71;;;;-1:-1:-1;;;47106:71:0;;13195:2:1;47106:71:0;;;13177:21:1;13234:2;13214:18;;;13207:30;13273:34;13253:18;;;13246:62;13344:8;13324:18;;;13317:36;13370:19;;47106:71:0;12993:402:1;47106:71:0;47190:15;47208:19;47219:7;47208:10;:19::i;:::-;47190:37;;47248:7;47259:1;47248:12;47240:68;;;;-1:-1:-1;;;47240:68:0;;13602:2:1;47240:68:0;;;13584:21:1;13641:2;13621:18;;;13614:30;13680:34;13660:18;;;13653:62;13751:13;13731:18;;;13724:41;13782:19;;47240:68:0;13400:407:1;47240:68:0;47521:7;47503:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47564:18:0;;;;;;:9;:18;;;;;:29;;;;;;47617:35;47574:7;47586;47617:17;:35::i;:::-;47668:33;;;-1:-1:-1;;;;;206:55:1;;188:74;;293:2;278:18;;271:34;;;47668:33:0;;161:18:1;47668:33:0;;;;;;;47095:614;47038:671;:::o;63341:335::-;63536:41;24376:10;63555:12;63569:7;63536:18;:41::i;:::-;63528:99;;;;-1:-1:-1;;;63528:99:0;;14643:2:1;63528:99:0;;;14625:21:1;14682:2;14662:18;;;14655:30;14721:34;14701:18;;;14694:62;14792:15;14772:18;;;14765:43;14825:19;;63528:99:0;14441:409:1;63528:99:0;63640:28;63650:4;63656:2;63660:7;63640:9;:28::i;63747:185::-;63885:39;63902:4;63908:2;63912:7;63885:39;;;;;;;;;;;;:16;:39::i;76815:242::-;76933:41;24376:10;76952:12;24296:98;76933:41;76925:99;;;;-1:-1:-1;;;76925:99:0;;14643:2:1;76925:99:0;;;14625:21:1;14682:2;14662:18;;;14655:30;14721:34;14701:18;;;14694:62;14792:15;14772:18;;;14765:43;14825:19;;76925:99:0;14441:409:1;76925:99:0;77035:14;77041:7;77035:5;:14::i;:::-;76815:242;:::o;88429:1057::-;88490:16;88519:23;88545:16;88555:5;88545:9;:16::i;:::-;88519:42;;88572:34;88623:15;88609:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;88609:30:0;-1:-1:-1;88572:67:0;-1:-1:-1;88675:1:0;88650:22;88727:511;88752:15;88734;:33;:76;;;;-1:-1:-1;88789:21:0;;88771:39;;;88734:76;88727:511;;;66128:4;65726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65726:16:0;66152:31;;88874:4;88847:31;88843:339;;88912:25;88940:23;88948:14;88940:7;:23::i;:::-;88912:51;;89009:5;-1:-1:-1;;;;;88988:26:0;:17;-1:-1:-1;;;;;88988:26:0;;88984:183;;89093:14;89056:17;89074:15;89056:34;;;;;;;;:::i;:::-;;;;;;;;;;:51;89130:17;;;;:::i;:::-;;;;88984:183;88893:289;88843:339;89210:16;;;;:::i;:::-;;;;88727:511;;;89250:30;89297:15;89283:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;89283:30:0;;89250:63;;89329:9;89324:122;89348:15;89344:1;:19;89324:122;;;89414:17;89432:1;89414:20;;;;;;;;:::i;:::-;;;;;;;89395:13;89409:1;89395:16;;;;;;;;:::i;:::-;;;;;;;;;;:39;89365:3;;;;:::i;:::-;;;;89324:122;;;-1:-1:-1;89465:13:0;88429:1057;-1:-1:-1;;;;;;88429:1057:0:o;87536:86::-;25631:13;:11;:13::i;:::-;87597:10:::1;:17:::0;87536:86::o;47977:792::-;-1:-1:-1;;;;;48059:16:0;;48078:1;48059:16;;;:7;:16;;;;;;48051:71;;;;-1:-1:-1;;;48051:71:0;;13195:2:1;48051:71:0;;;13177:21:1;13234:2;13214:18;;;13207:30;13273:34;13253:18;;;13246:62;13344:8;13324:18;;;13317:36;13370:19;;48051:71:0;12993:402:1;48051:71:0;48135:15;48153:26;48164:5;48171:7;48153:10;:26::i;:::-;48135:44;;48200:7;48211:1;48200:12;48192:68;;;;-1:-1:-1;;;48192:68:0;;13602:2:1;48192:68:0;;;13584:21:1;13641:2;13621:18;;;13614:30;13680:34;13660:18;;;13653:62;13751:13;13731:18;;;13724:41;13782:19;;48192:68:0;13400:407:1;48192:68:0;-1:-1:-1;;;;;48515:26:0;;;;;;:19;:26;;;;;:37;;48545:7;;48515:26;:37;;48545:7;;48515:37;:::i;:::-;;;;-1:-1:-1;;;;;;;48588:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;:41;;;;;;48653:47;48603:5;48610:7;48622;48653:22;:47::i;:::-;48716:45;;;-1:-1:-1;;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;48716:45:0;;;;;161:18:1;48716:45:0;;;;;;;48040:729;47977:792;;:::o;85976:1552::-;2563:21;:19;:21::i;:::-;86074:9:::1;::::0;;;::::1;;;:18;86066:45;;;::::0;-1:-1:-1;;;86066:45:0;;15446:2:1;86066:45:0::1;::::0;::::1;15428:21:1::0;15485:2;15465:18;;;15458:30;15524:16;15504:18;;;15497:44;15558:18;;86066:45:0::1;15244:338:1::0;86066:45:0::1;86142:8;86130;:20:::0;86122:60:::1;;;::::0;-1:-1:-1;;;86122:60:0;;15789:2:1;86122:60:0::1;::::0;::::1;15771:21:1::0;15828:2;15808:18;;;15801:30;15867:29;15847:18;;;15840:57;15914:18;;86122:60:0::1;15587:351:1::0;86122:60:0::1;86211:26;::::0;86203:53:::1;::::0;;;;::::1;::::0;::::1;3517:25:1::0;;;86260:10:0::1;::::0;-1:-1:-1;;;;;86211:26:0::1;::::0;86203:43:::1;::::0;3490:18:1;;86203:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86203:67:0::1;;86195:100;;;::::0;-1:-1:-1;;;86195:100:0;;16401:2:1;86195:100:0::1;::::0;::::1;16383:21:1::0;16440:2;16420:18;;;16413:30;16479:22;16459:18;;;16452:50;16519:18;;86195:100:0::1;16199:344:1::0;86195:100:0::1;86322:26;::::0;86314:53:::1;::::0;;;;::::1;::::0;::::1;3517:25:1::0;;;86371:10:0::1;::::0;-1:-1:-1;;;;;86322:26:0::1;::::0;86314:43:::1;::::0;3490:18:1;;86314:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;86314:67:0::1;;86306:100;;;::::0;-1:-1:-1;;;86306:100:0;;16750:2:1;86306:100:0::1;::::0;::::1;16732:21:1::0;16789:2;16769:18;;;16762:30;16828:22;16808:18;;;16801:50;16868:18;;86306:100:0::1;16548:344:1::0;86306:100:0::1;86490:15;86471:35;::::0;:18:::1;:35;::::0;:41;;86427:35;:41;:85:::1;86419:124;;;::::0;-1:-1:-1;;;86419:124:0;;17099:2:1;86419:124:0::1;::::0;::::1;17081:21:1::0;17138:2;17118:18;;;17111:30;17177:28;17157:18;;;17150:56;17223:18;;86419:124:0::1;16897:350:1::0;86419:124:0::1;86628:18;86609:38;::::0;:18:::1;:38;::::0;:44;;86562:38;:44;:91:::1;86554:133;;;::::0;-1:-1:-1;;;86554:133:0;;17454:2:1;86554:133:0::1;::::0;::::1;17436:21:1::0;17493:2;17473:18;;;17466:30;17532:31;17512:18;;;17505:59;17581:18;;86554:133:0::1;17252:353:1::0;86554:133:0::1;86774:20;86755:40;::::0;:18:::1;:40;::::0;:46;;86706:40;:46;:95:::1;86698:139;;;::::0;-1:-1:-1;;;86698:139:0;;17812:2:1;86698:139:0::1;::::0;::::1;17794:21:1::0;17851:2;17831:18;;;17824:30;17890:33;17870:18;;;17863:61;17941:18;;86698:139:0::1;17610:355:1::0;86698:139:0::1;86904:39;::::0;;:18:::1;:39;::::0;:45;;86856:39;:45;:93:::1;86848:136;;;::::0;-1:-1:-1;;;86848:136:0;;18172:2:1;86848:136:0::1;::::0;::::1;18154:21:1::0;18211:2;18191:18;;;18184:30;18250:32;18230:18;;;18223:60;18300:18;;86848:136:0::1;17970:354:1::0;86848:136:0::1;87012:26;::::0;86997:57:::1;::::0;;;;::::1;::::0;::::1;3517:25:1::0;;;-1:-1:-1;;;;;87012:26:0;;::::1;::::0;86997:47:::1;::::0;3490:18:1;;86997:57:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;87080:26:0::1;::::0;87065:57:::1;::::0;;;;::::1;::::0;::::1;3517:25:1::0;;;-1:-1:-1;;;;;87080:26:0;;::::1;::::0;-1:-1:-1;87065:47:0::1;::::0;-1:-1:-1;3490:18:1;;87065:57:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;87139:25:0::1;::::0;::::1;;:29:::0;;-1:-1:-1;87135:136:0::1;::::0;-1:-1:-1;87135:136:0::1;87214:25;:30:::0;;;;::::1;;::::0;;::::1;-1:-1:-1::0;;87214:30:0;;;::::1;;::::0;;87135:136:::1;87291:50;87309:10;87321:19;87291:17;:50::i;:::-;87352:51;87370:10;87382:20;87352:17;:51::i;:::-;87414:49;87432:10;87444:18;87414:17;:49::i;:::-;87474:46;87492:10;87504:15;87474:17;:46::i;:::-;2607:20:::0;2001:1;3127:7;:22;2944:213;2607:20;85976:1552;;:::o;60839:223::-;60911:7;65726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65726:16:0;;60975:56;;;;-1:-1:-1;;;60975:56:0;;18531:2:1;60975:56:0;;;18513:21:1;18570:2;18550:18;;;18543:30;18609:26;18589:18;;;18582:54;18653:18;;60975:56:0;18329:348:1;60570:207:0;60642:7;-1:-1:-1;;;;;60670:19:0;;60662:73;;;;-1:-1:-1;;;60662:73:0;;18884:2:1;60662:73:0;;;18866:21:1;18923:2;18903:18;;;18896:30;18962:34;18942:18;;;18935:62;19033:11;19013:18;;;19006:39;19062:19;;60662:73:0;18682:405:1;60662:73:0;-1:-1:-1;;;;;;60753:16:0;;;;;:9;:16;;;;;;;60570:207::o;89494:367::-;25631:13;:11;:13::i;:::-;89594:1:::1;89560:30;;:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;89775:1;89741:30;;;;;;;;;;;:35;;;;89733:77;;;::::0;-1:-1:-1;;;89733:77:0;;19467:2:1;89733:77:0::1;::::0;::::1;19449:21:1::0;19506:2;19486:18;;;19479:30;19545:31;19525:18;;;19518:59;19594:18;;89733:77:0::1;19265:353:1::0;89733:77:0::1;89823:30;89850:1;89823:18;:30::i;:::-;89494:367::o:0;81661:446::-;81726:6;80590:19;;80580:6;:29;;80572:61;;;;-1:-1:-1;;;80572:61:0;;19825:2:1;80572:61:0;;;19807:21:1;19864:2;19844:18;;;19837:30;19903:21;19883:18;;;19876:49;19942:18;;80572:61:0;19623:343:1;80572:61:0;80686:21;;:15;80652:21;:30;;80676:6;;80652:30;:::i;:::-;:55;;80644:87;;;;-1:-1:-1;;;80644:87:0;;20173:2:1;80644:87:0;;;20155:21:1;20212:2;20192:18;;;20185:30;20251:21;20231:18;;;20224:49;20290:18;;80644:87:0;19971:343:1;80644:87:0;2563:21:::1;:19;:21::i;:::-;81766:23:::2;::::0;;;::::2;;;:31;;81793:4;81766:31;81758:70;;;::::0;-1:-1:-1;;;81758:70:0;;20521:2:1;81758:70:0::2;::::0;::::2;20503:21:1::0;20560:2;20540:18;;;20533:30;20599:28;20579:18;;;20572:56;20645:18;;81758:70:0::2;20319:350:1::0;81758:70:0::2;81867:10;81847:31;::::0;;;:19:::2;:31;::::0;;;;;::::2;;:39;;:31:::0;:39:::2;81839:67;;;::::0;-1:-1:-1;;;81839:67:0;;20876:2:1;81839:67:0::2;::::0;::::2;20858:21:1::0;20915:2;20895:18;;;20888:30;20954:17;20934:18;;;20927:45;20989:18;;81839:67:0::2;20674:339:1::0;81839:67:0::2;81935:10;81949:9;81935:23;81927:57;;;::::0;-1:-1:-1;;;81927:57:0;;21220:2:1;81927:57:0::2;::::0;::::2;21202:21:1::0;21259:2;21239:18;;;21232:30;21298:23;21278:18;;;21271:51;21339:18;;81927:57:0::2;21018:345:1::0;81927:57:0::2;82029:6;82016:10;;:19;;;;:::i;:::-;82003:9;:32;;81995:63;;;::::0;-1:-1:-1;;;81995:63:0;;21743:2:1;81995:63:0::2;::::0;::::2;21725:21:1::0;21782:2;21762:18;;;21755:30;21821:20;21801:18;;;21794:48;21859:18;;81995:63:0::2;21541:342:1::0;81995:63:0::2;82071:28;82080:10;82092:6;82071:8;:28::i;46003:100::-:0;46054:7;46081;46089:5;46081:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46081:14:0;;46003:100;-1:-1:-1;;46003:100:0:o;61298:104::-;61354:13;61387:7;61380:14;;;;;:::i;85709:133::-;25631:13;:11;:13::i;:::-;85831:3:::1;85800:17;:28;85818:9;85800:28;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:34;;;;;;:::i;81323:330::-:0;81385:6;80590:19;;80580:6;:29;;80572:61;;;;-1:-1:-1;;;80572:61:0;;19825:2:1;80572:61:0;;;19807:21:1;19864:2;19844:18;;;19837:30;19903:21;19883:18;;;19876:49;19942:18;;80572:61:0;19623:343:1;80572:61:0;80686:21;;:15;80652:21;:30;;80676:6;;80652:30;:::i;:::-;:55;;80644:87;;;;-1:-1:-1;;;80644:87:0;;20173:2:1;80644:87:0;;;20155:21:1;20212:2;20192:18;;;20185:30;20251:21;20231:18;;;20224:49;20290:18;;80644:87:0;19971:343:1;80644:87:0;2563:21:::1;:19;:21::i;:::-;81425:10:::2;81439:9;81425:23;81417:57;;;::::0;-1:-1:-1;;;81417:57:0;;21220:2:1;81417:57:0::2;::::0;::::2;21202:21:1::0;21259:2;21239:18;;;21232:30;21298:23;21278:18;;;21271:51;21339:18;;81417:57:0::2;21018:345:1::0;81417:57:0::2;81519:6;81506:10;;:19;;;;:::i;:::-;81493:9;:32;;81485:63;;;::::0;-1:-1:-1;;;81485:63:0;;21743:2:1;81485:63:0::2;::::0;::::2;21725:21:1::0;21782:2;21762:18;;;21755:30;21821:20;21801:18;;;21794:48;21859:18;;81485:63:0::2;21541:342:1::0;81485:63:0::2;81567:9;::::0;;;::::2;;;:18;81559:45;;;::::0;-1:-1:-1;;;81559:45:0;;15446:2:1;81559:45:0::2;::::0;::::2;15428:21:1::0;15485:2;15465:18;;;15458:30;15524:16;15504:18;;;15497:44;15558:18;;81559:45:0::2;15244:338:1::0;62884:155:0;62979:52;24376:10;63012:8;63022;62979:18;:52::i;46193:225::-;46251:7;46271:21;46319:15;44906:14;;;44833:95;46319:15;46295:39;;:21;:39;:::i;:::-;46271:63;;46352:58;46368:7;46377:13;46392:17;46401:7;-1:-1:-1;;;;;45582:18:0;45555:7;45582:18;;;:9;:18;;;;;;;45499:109;46392:17;46352:15;:58::i;:::-;46345:65;46193:225;-1:-1:-1;;;46193:225:0:o;82117:229::-;82190:6;80521:230;;80590:19;;80580:6;:29;;80572:61;;;;-1:-1:-1;;;80572:61:0;;19825:2:1;80572:61:0;;;19807:21:1;19864:2;19844:18;;;19837:30;19903:21;19883:18;;;19876:49;19942:18;;80572:61:0;19623:343:1;80572:61:0;80686:21;;:15;80652:21;:30;;80676:6;;80652:30;:::i;:::-;:55;;80644:87;;;;-1:-1:-1;;;80644:87:0;;20173:2:1;80644:87:0;;;20155:21:1;20212:2;20192:18;;;20185:30;20251:21;20231:18;;;20224:49;20290:18;;80644:87:0;19971:343:1;80644:87:0;25631:13:::1;:11;:13::i;:::-;82227:19:::2;::::0;82259:3:::2;::::0;82227:28:::2;::::0;82249:6;;82227:19;;::::2;;;:28;:::i;:::-;:35;;;;82219:44;;;::::0;::::2;;82299:6;82276:19;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;82318:20;82327:2;82331:6;82318:20;;:8;:20::i;85564:137::-:0;25631:13;:11;:13::i;:::-;85653:19:::1;:40:::0;85564:137::o;88319:102::-;25631:13;:11;:13::i;:::-;88390:9:::1;:23:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;88319:102::o;85850:118::-;25631:13;:11;:13::i;:::-;85927:23:::1;:33:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;85850:118::o;64003:322::-;64177:41;24376:10;64210:7;64177:18;:41::i;:::-;64169:99;;;;-1:-1:-1;;;64169:99:0;;14643:2:1;64169:99:0;;;14625:21:1;14682:2;14662:18;;;14655:30;14721:34;14701:18;;;14694:62;14792:15;14772:18;;;14765:43;14825:19;;64169:99:0;14441:409:1;64169:99:0;64279:38;64293:4;64299:2;64303:7;64312:4;64279:13;:38::i;:::-;64003:322;;;;:::o;46578:260::-;-1:-1:-1;;;;;45170:26:0;;46650:7;45170:26;;;:19;:26;;;;;;46650:7;;46694:30;;;;;46718:4;46694:30;;;2086:74:1;-1:-1:-1;;;;;46694:15:0;;;;;2059:18:1;;46694:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;45874:21:0;;;45847:7;45874:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;46670:77;;-1:-1:-1;46765:65:0;;46781:7;;46670:77;;46352:15;:58::i;46765:65::-;46758:72;46578:260;-1:-1:-1;;;;46578:260:0:o;80896:204::-;25631:13;:11;:13::i;:::-;80986:9:::1;80981:112;81005:8;:15;81001:1;:19;80981:112;;;81077:4;81042:19;:32;81062:8;81071:1;81062:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;81042:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;81042:32:0;:39;;-1:-1:-1;;81042:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;81022:3;::::1;::::0;::::1;:::i;:::-;;;;80981:112;;85324:232:::0;66128:4;65726:16;;;:7;:16;;;;;;85397:13;;-1:-1:-1;;;;;65726:16:0;85423:60;;;;-1:-1:-1;;;85423:60:0;;24662:2:1;85423:60:0;;;24644:21:1;24701:2;24681:18;;;24674:30;24740:33;24720:18;;;24713:61;24791:18;;85423:60:0;24460:355:1;85423:60:0;85503:45;85521:26;;;:17;:26;;;;;;85503:17;;:45;85521:26;;85503:45;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;85496:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85324:232;;;:::o;87630:681::-;25631:13;:11;:13::i;:::-;87710:10:::1;87718:2;87710:5:::0;:10:::1;:::i;:::-;:15:::0;87702:52:::1;;;::::0;-1:-1:-1;;;87702:52:0;;25328:2:1;87702:52:0::1;::::0;::::1;25310:21:1::0;25367:2;25347:18;;;25340:30;25406:26;25386:18;;;25379:54;25450:18;;87702:52:0::1;25126:348:1::0;87702:52:0::1;87798:21:::0;;87775:20:::1;::::0;87798:29:::1;::::0;87822:5;;87798:29:::1;:::i;:::-;87775:52;;87871:12;87846:15;:21;;;:37;;87838:74;;;::::0;-1:-1:-1;;;87838:74:0;;25814:2:1;87838:74:0::1;::::0;::::1;25796:21:1::0;25853:2;25833:18;;;25826:30;25892:26;25872:18;;;25865:54;25936:18;;87838:74:0::1;25612:348:1::0;87838:74:0::1;87933:21:::0;:36;;;88051:4:::1;88033:8;:5:::0;88039:2:::1;88033:8;:::i;:::-;88032:15;::::0;88045:2:::1;88032:15;:::i;:::-;88031:24;;;;:::i;:::-;87982:39;::::0;;;:18:::1;:39;::::0;:45;:73;;:45;;:39;:73:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;88136:4:0::1;::::0;-1:-1:-1;88118:8:0::1;:5:::0;88124:2:::1;88118:8;:::i;:::-;88117:15;::::0;88130:2:::1;88117:15;:::i;:::-;88116:24;;;;:::i;:::-;88085:20;88066:40;::::0;;;:18:::1;:40;::::0;:46;:74;;:46;;:40;:74:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;88219:4:0::1;::::0;-1:-1:-1;88201:8:0::1;:5:::0;88207:2:::1;88201:8;:::i;:::-;88200:15;::::0;88213:2:::1;88200:15;:::i;:::-;88199:24;;;;:::i;:::-;88170:18;88151:38;::::0;;;:18:::1;:38;::::0;:44;:72;;:44;;:38;:72:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;88299:4:0::1;::::0;-1:-1:-1;88281:8:0::1;:5:::0;88287:2:::1;88281:8;:::i;:::-;88280:15;::::0;88293:2:::1;88280:15;:::i;:::-;88279:24;;;;:::i;:::-;88253:15;88234:35;::::0;;;:18:::1;:35;::::0;:41;:69;;:41;;:35;:69:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;87630:681:0:o;81108:207::-;25631:13;:11;:13::i;:::-;81201:9:::1;81196:112;81220:8;:15;81216:1;:19;81196:112;;;81264:19;:32;81284:8;81293:1;81284:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;81264:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;81264:32:0;81257:39;;-1:-1:-1;;81257:39:0::1;::::0;;81237:3;::::1;::::0;::::1;:::i;:::-;;;;81196:112;;26651:201:::0;25631:13;:11;:13::i;:::-;-1:-1:-1;;;;;26740:22:0;::::1;26732:73;;;::::0;-1:-1:-1;;;26732:73:0;;26292:2:1;26732:73:0::1;::::0;::::1;26274:21:1::0;26331:2;26311:18;;;26304:30;26370:34;26350:18;;;26343:62;26441:8;26421:18;;;26414:36;26467:19;;26732:73:0::1;26090:402:1::0;26732:73:0::1;26816:28;26835:8;26816:18;:28::i;72442:135::-:0;66128:4;65726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65726:16:0;72516:53;;;;-1:-1:-1;;;72516:53:0;;18531:2:1;72516:53:0;;;18513:21:1;18570:2;18550:18;;;18543:30;18609:26;18589:18;;;18582:54;18653:18;;72516:53:0;18329:348:1;71721:174:0;71796:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;71796:29:0;-1:-1:-1;;;;;71796:29:0;;;;;;;;:24;;71850:23;71796:24;71850:14;:23::i;:::-;-1:-1:-1;;;;;71841:46:0;;;;;;;;;;;71721:174;;:::o;29709:317::-;29824:6;29799:21;:31;;29791:73;;;;-1:-1:-1;;;29791:73:0;;26699:2:1;29791:73:0;;;26681:21:1;26738:2;26718:18;;;26711:30;26777:31;26757:18;;;26750:59;26826:18;;29791:73:0;26497:353:1;29791:73:0;29878:12;29896:9;-1:-1:-1;;;;;29896:14:0;29918:6;29896:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29877:52;;;29948:7;29940:78;;;;-1:-1:-1;;;29940:78:0;;27267:2:1;29940:78:0;;;27249:21:1;27306:2;27286:18;;;27279:30;27345:34;27325:18;;;27318:62;27416:28;27396:18;;;27389:56;27462:19;;29940:78:0;27065:422:1;66358:264:0;66451:4;66468:13;66484:23;66499:7;66484:14;:23::i;:::-;66468:39;;66537:5;-1:-1:-1;;;;;66526:16:0;:7;-1:-1:-1;;;;;66526:16:0;;:52;;;-1:-1:-1;;;;;;63231:25:0;;;63207:4;63231:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;66546:32;66526:87;;;;66606:7;-1:-1:-1;;;;;66582:31:0;:20;66594:7;66582:11;:20::i;:::-;-1:-1:-1;;;;;66582:31:0;;;66358:264;-1:-1:-1;;;;66358:264:0:o;70345:1257::-;70504:4;-1:-1:-1;;;;;70477:31:0;:23;70492:7;70477:14;:23::i;:::-;-1:-1:-1;;;;;70477:31:0;;70469:81;;;;-1:-1:-1;;;70469:81:0;;27694:2:1;70469:81:0;;;27676:21:1;27733:2;27713:18;;;27706:30;27772:34;27752:18;;;27745:62;27843:7;27823:18;;;27816:35;27868:19;;70469:81:0;27492:401:1;70469:81:0;-1:-1:-1;;;;;70569:16:0;;70561:65;;;;-1:-1:-1;;;70561:65:0;;28100:2:1;70561:65:0;;;28082:21:1;28139:2;28119:18;;;28112:30;28178:34;28158:18;;;28151:62;28249:6;28229:18;;;28222:34;28273:19;;70561:65:0;27898:400:1;70561:65:0;70808:4;-1:-1:-1;;;;;70781:31:0;:23;70796:7;70781:14;:23::i;:::-;-1:-1:-1;;;;;70781:31:0;;70773:81;;;;-1:-1:-1;;;70773:81:0;;27694:2:1;70773:81:0;;;27676:21:1;27733:2;27713:18;;;27706:30;27772:34;27752:18;;;27745:62;27843:7;27823:18;;;27816:35;27868:19;;70773:81:0;27492:401:1;70773:81:0;70926:24;;;;:15;:24;;;;;;;;70919:31;;-1:-1:-1;;70919:31:0;;;;;;-1:-1:-1;;;;;71402:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;71402:20:0;;;71437:13;;;;;;;;;:18;;70919:31;71437:18;;;71477:16;;;:7;:16;;;;;;:21;;;;;;;;;;71516:27;;70942:7;;71516:27;;;62229:346;62159:416;;:::o;69231:777::-;69291:13;69307:23;69322:7;69307:14;:23::i;:::-;69291:39;;69504:23;69519:7;69504:14;:23::i;:::-;69575:24;;;;:15;:24;;;;;;;;69568:31;;-1:-1:-1;;69568:31:0;;;;;;-1:-1:-1;;;;;69820:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;69820:21:0;;;69870:16;;;:7;:16;;;;;;69863:23;;;;;;;69904:36;69496:31;;-1:-1:-1;69591:7:0;;69904:36;;69575:24;;69904:36;85976:1552;;:::o;25910:132::-;25818:6;;-1:-1:-1;;;;;25818:6:0;24376:10;25974:23;25966:68;;;;-1:-1:-1;;;25966:68:0;;28505:2:1;25966:68:0;;;28487:21:1;;;28524:18;;;28517:30;28583:34;28563:18;;;28556:62;28635:18;;25966:68:0;28303:356:1;37357:211:0;37501:58;;;-1:-1:-1;;;;;206:55:1;;37501:58:0;;;188:74:1;278:18;;;;271:34;;;37501:58:0;;;;;;;;;;161:18:1;;;;37501:58:0;;;;;;;;;;37524:23;37501:58;;;37474:86;;37494:5;;37474:19;:86::i;2643:293::-;2045:1;2777:7;;:19;2769:63;;;;-1:-1:-1;;;2769:63:0;;28866:2:1;2769:63:0;;;28848:21:1;28905:2;28885:18;;;28878:30;28944:33;28924:18;;;28917:61;28995:18;;2769:63:0;28664:355:1;2769:63:0;2045:1;2910:7;:18;2643:293::o;82762:538::-;82945:15;:26;;82970:1;82945:26;;;;;;83129:18;82945:21;83148:9;83129:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;83129:29:0;;;:40;;;;;;;;83211:15;:21;83193:40;;:17;:40;;;;;:52;;83236:9;;83193:40;-1:-1:-1;;83193:52:0;-1:-1:-1;83236:9:0;83193:52;;;;;;;;:::i;:::-;;;;;;83256:36;83266:2;83270:15;:21;;;83256:9;:36::i;27012:191::-;27105:6;;;-1:-1:-1;;;;;27122:17:0;;;-1:-1:-1;;27122:17:0;;;;;;;27155:40;;27105:6;;;27122:17;27105:6;;27155:40;;27086:16;;27155:40;27075:128;27012:191;:::o;82354:400::-;82419:19;;82486:261;82510:6;82506:1;:10;82486:261;;;82560:29;82579:1;82582:6;82560:18;:29::i;:::-;82548:41;-1:-1:-1;82671:14:0;82658:9;:27;;;;;;;;:::i;:::-;;82650:36;;;;;;82703:32;82721:2;82725:9;82703:17;:32::i;:::-;82518:3;;;;:::i;:::-;;;;82486:261;;72038:315;72193:8;-1:-1:-1;;;;;72184:17:0;:5;-1:-1:-1;;;;;72184:17:0;;72176:55;;;;-1:-1:-1;;;72176:55:0;;29226:2:1;72176:55:0;;;29208:21:1;29265:2;29245:18;;;29238:30;29304:27;29284:18;;;29277:55;29349:18;;72176:55:0;29024:349:1;72176:55:0;-1:-1:-1;;;;;72242:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;72242:46:0;;;;;;;;;;72304:41;;888::1;;;72304::0;;861:18:1;72304:41:0;;;;;;;72038:315;;;:::o;48947:248::-;49157:12;;-1:-1:-1;;;;;49137:16:0;;49093:7;49137:16;;;:7;:16;;;;;;49093:7;;49172:15;;49121:32;;:13;:32;:::i;:::-;49120:49;;;;:::i;:::-;:67;;;;:::i;65206:313::-;65362:28;65372:4;65378:2;65382:7;65362:9;:28::i;:::-;65409:47;65432:4;65438:2;65442:7;65451:4;65409:22;:47::i;:::-;65401:110;;;;-1:-1:-1;;;65401:110:0;;29580:2:1;65401:110:0;;;29562:21:1;29619:2;29599:18;;;29592:30;29658:34;29638:18;;;29631:62;29729:20;29709:18;;;29702:48;29767:19;;65401:110:0;29378:414:1;40424:716:0;40848:23;40874:69;40902:4;40874:69;;;;;;;;;;;;;;;;;40882:5;-1:-1:-1;;;;;40874:27:0;;;:69;;;;;:::i;:::-;40958:17;;40848:95;;-1:-1:-1;40958:21:0;40954:179;;41055:10;41044:30;;;;;;;;;;;;:::i;:::-;41036:85;;;;-1:-1:-1;;;41036:85:0;;30249:2:1;41036:85:0;;;30231:21:1;30288:2;30268:18;;;30261:30;30327:34;30307:18;;;30300:62;30398:12;30378:18;;;30371:40;30428:19;;41036:85:0;30047:406:1;66964:110:0;67040:26;67050:2;67054:7;67040:26;;;;;;;;;;;;:9;:26::i;83395:1921::-;83476:9;;83819:76;83637:10;83662:11;83688:12;83715:15;83755:16;83770:1;83688:12;83755:16;:::i;:::-;83612:202;;;-1:-1:-1;;;;;30791:55:1;;;83612:202:0;;;30773:74:1;30863:18;;30856:34;;;;30906:18;;;30899:34;;;;30949:18;;;30942:34;83745:27:0;30992:19:1;;;30985:35;31036:19;;;31029:35;;;31080:19;;;31073:35;;;30745:19;;83612:202:0;;;;;;;;;;;;83602:213;;;;;;83594:222;;:301;;;;:::i;:::-;83571:324;-1:-1:-1;83930:14:0;83908:19;;83983:255;83999:1;83995;:5;83983:255;;;84098:16;:30;84125:1;84115:12;;;;;;;;:::i;:::-;84098:30;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84091:37;;;;;:::i;:::-;;;;84074:12;:55;84070:157;;84185:1;84175:12;;;;;;;;:::i;:::-;84163:24;;84206:5;;84070:157;84002:3;;;;:::i;:::-;;;;83983:255;;;-1:-1:-1;84330:25:0;;;;84292:18;84330:25;84311:9;84292:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;:63;;;;:::i;:::-;84254:18;:29;84273:9;84254:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;:101;84250:136;;;-1:-1:-1;84377:9:0;-1:-1:-1;84370:16:0;;-1:-1:-1;84370:16:0;84250:136;84429:9;84605:264;84630:1;84617:9;84612:15;;;;;;;;:::i;:::-;:19;84605:264;;;84685:9;84680:15;;;;;;;;:::i;:::-;:19;;84698:1;84680:19;:::i;:::-;84670:30;;;;;;;;:::i;:::-;84797:25;;84658:42;;-1:-1:-1;84797:25:0;;84759:18;84797:25;84658:42;84759:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;:63;;;;:::i;:::-;84721:18;:29;84740:9;84721:29;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;:101;84717:140;;;84848:9;84841:16;;;;;;;;84717:140;84605:264;;;84973:1;84951:17;84946:23;;;;;;;;:::i;:::-;:28;84939:310;;85056:1;85035:17;85030:23;;;;;;;;:::i;:::-;:27;;;;:::i;:::-;85020:38;;;;;;;;:::i;:::-;85169:25;;85000:58;;-1:-1:-1;85169:25:0;;85123:18;85169:25;85000:58;85123:37;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:43;;;:71;;;;:::i;:::-;85077:18;:37;85096:17;85077:37;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;:43;;;:117;85073:164;;;85220:17;-1:-1:-1;85213:24:0;;-1:-1:-1;;;85213:24:0;85073:164;84939:310;;73141:853;73295:4;-1:-1:-1;;;;;73316:13:0;;28743:19;:23;73312:675;;73352:71;;;;;-1:-1:-1;;;;;73352:36:0;;;;;:71;;24376:10;;73403:4;;73409:7;;73418:4;;73352:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73352:71:0;;;;;;;;-1:-1:-1;;73352:71:0;;;;;;;;;;;;:::i;:::-;;;73348:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73593:6;:13;73610:1;73593:18;73589:328;;73636:60;;-1:-1:-1;;;73636:60:0;;29580:2:1;73636:60:0;;;29562:21:1;29619:2;29599:18;;;29592:30;29658:34;29638:18;;;29631:62;29729:20;29709:18;;;29702:48;29767:19;;73636:60:0;29378:414:1;73589:328:0;73867:6;73861:13;73852:6;73848:2;73844:15;73837:38;73348:584;73474:51;;73484:41;73474:51;;-1:-1:-1;73467:58:0;;73312:675;-1:-1:-1;73971:4:0;73141:853;;;;;;:::o;31205:229::-;31342:12;31374:52;31396:6;31404:4;31410:1;31413:12;31374:21;:52::i;67301:319::-;67430:18;67436:2;67440:7;67430:5;:18::i;:::-;67481:53;67512:1;67516:2;67520:7;67529:4;67481:22;:53::i;:::-;67459:153;;;;-1:-1:-1;;;67459:153:0;;29580:2:1;67459:153:0;;;29562:21:1;29619:2;29599:18;;;29592:30;29658:34;29638:18;;;29631:62;29729:20;29709:18;;;29702:48;29767:19;;67459:153:0;29378:414:1;32325:455:0;32495:12;32553:5;32528:21;:30;;32520:81;;;;-1:-1:-1;;;32520:81:0;;32291:2:1;32520:81:0;;;32273:21:1;32330:2;32310:18;;;32303:30;32369:34;32349:18;;;32342:62;32440:8;32420:18;;;32413:36;32466:19;;32520:81:0;32089:402:1;32520:81:0;32613:12;32627:23;32654:6;-1:-1:-1;;;;;32654:11:0;32673:5;32680:4;32654:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32612:73;;;;32703:69;32730:6;32738:7;32747:10;32759:12;32703:26;:69::i;:::-;32696:76;32325:455;-1:-1:-1;;;;;;;32325:455:0:o;67956:936::-;-1:-1:-1;;;;;68036:16:0;;68028:61;;;;-1:-1:-1;;;68028:61:0;;32990:2:1;68028:61:0;;;32972:21:1;;;33009:18;;;33002:30;33068:34;33048:18;;;33041:62;33120:18;;68028:61:0;32788:356:1;68028:61:0;66128:4;65726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65726:16:0;66152:31;68100:58;;;;-1:-1:-1;;;68100:58:0;;33351:2:1;68100:58:0;;;33333:21:1;33390:2;33370:18;;;33363:30;33429;33409:18;;;33402:58;33477:18;;68100:58:0;33149:352:1;68100:58:0;66128:4;65726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;65726:16:0;66152:31;68306:58;;;;-1:-1:-1;;;68306:58:0;;33351:2:1;68306:58:0;;;33333:21:1;33390:2;33370:18;;;33363:30;33429;33409:18;;;33402:58;33477:18;;68306:58:0;33149:352:1;68306:58:0;-1:-1:-1;;;;;68713:13:0;;;;;;:9;:13;;;;;;;;:18;;68730:1;68713:18;;;68755:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;68755:21:0;;;;;68794:33;68763:7;;68713:13;;68794:33;;68713:13;;68794:33;85976:1552;;:::o;34898:644::-;35083:12;35112:7;35108:427;;;35140:10;:17;35161:1;35140:22;35136:290;;-1:-1:-1;;;;;28743:19:0;;;35350:60;;;;-1:-1:-1;;;35350:60:0;;33708:2:1;35350:60:0;;;33690:21:1;33747:2;33727:18;;;33720:30;33786:31;33766:18;;;33759:59;33835:18;;35350:60:0;33506:353:1;35350:60:0;-1:-1:-1;35447:10:0;35440:17;;35108:427;35490:33;35498:10;35510:12;36245:17;;:21;36241:388;;36477:10;36471:17;36534:15;36521:10;36517:2;36513:19;36506:44;36241:388;36604:12;36597:20;;-1:-1:-1;;;36597:20:0;;;;;;;;:::i;316:177:1:-;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:250::-;1025:1;1035:113;1049:6;1046:1;1043:13;1035:113;;;1125:11;;;1119:18;1106:11;;;1099:39;1071:2;1064:10;1035:113;;;-1:-1:-1;;1182:1:1;1164:16;;1157:27;940:250::o;1195:330::-;1237:3;1275:5;1269:12;1302:6;1297:3;1290:19;1318:76;1387:6;1380:4;1375:3;1371:14;1364:4;1357:5;1353:16;1318:76;:::i;:::-;1439:2;1427:15;-1:-1:-1;;1423:88:1;1414:98;;;;1514:4;1410:109;;1195:330;-1:-1:-1;;1195:330:1:o;1530:220::-;1679:2;1668:9;1661:21;1642:4;1699:45;1740:2;1729:9;1725:18;1717:6;1699:45;:::i;1755:180::-;1814:6;1867:2;1855:9;1846:7;1842:23;1838:32;1835:52;;;1883:1;1880;1873:12;1835:52;-1:-1:-1;1906:23:1;;1755:180;-1:-1:-1;1755:180:1:o;2171:154::-;-1:-1:-1;;;;;2250:5:1;2246:54;2239:5;2236:65;2226:93;;2315:1;2312;2305:12;2330:315;2398:6;2406;2459:2;2447:9;2438:7;2434:23;2430:32;2427:52;;;2475:1;2472;2465:12;2427:52;2514:9;2501:23;2533:31;2558:5;2533:31;:::i;:::-;2583:5;2635:2;2620:18;;;;2607:32;;-1:-1:-1;;;2330:315:1:o;2650:255::-;2717:6;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2825:9;2812:23;2844:31;2869:5;2844:31;:::i;2910:456::-;2987:6;2995;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3111:9;3098:23;3130:31;3155:5;3130:31;:::i;:::-;3180:5;-1:-1:-1;3237:2:1;3222:18;;3209:32;3250:33;3209:32;3250:33;:::i;:::-;2910:456;;3302:7;;-1:-1:-1;;;3356:2:1;3341:18;;;;3328:32;;2910:456::o;3553:402::-;3635:6;3643;3696:2;3684:9;3675:7;3671:23;3667:32;3664:52;;;3712:1;3709;3702:12;3664:52;3751:9;3738:23;3770:31;3795:5;3770:31;:::i;:::-;3820:5;-1:-1:-1;3877:2:1;3862:18;;3849:32;3890:33;3849:32;3890:33;:::i;:::-;3942:7;3932:17;;;3553:402;;;;;:::o;4405:632::-;4576:2;4628:21;;;4698:13;;4601:18;;;4720:22;;;4547:4;;4576:2;4799:15;;;;4773:2;4758:18;;;4547:4;4842:169;4856:6;4853:1;4850:13;4842:169;;;4917:13;;4905:26;;4986:15;;;;4951:12;;;;4878:1;4871:9;4842:169;;;-1:-1:-1;5028:3:1;;4405:632;-1:-1:-1;;;;;;4405:632:1:o;5042:248::-;5110:6;5118;5171:2;5159:9;5150:7;5146:23;5142:32;5139:52;;;5187:1;5184;5177:12;5139:52;-1:-1:-1;;5210:23:1;;;5280:2;5265:18;;;5252:32;;-1:-1:-1;5042:248:1:o;5548:150::-;5623:20;;5672:1;5662:12;;5652:40;;5688:1;5685;5678:12;5652:40;5548:150;;;:::o;5703:207::-;5776:6;5829:2;5817:9;5808:7;5804:23;5800:32;5797:52;;;5845:1;5842;5835:12;5797:52;5868:36;5894:9;5868:36;:::i;5915:184::-;-1:-1:-1;;;5964:1:1;5957:88;6064:4;6061:1;6054:15;6088:4;6085:1;6078:15;6104:334;6175:2;6169:9;6231:2;6221:13;;-1:-1:-1;;6217:86:1;6205:99;;6334:18;6319:34;;6355:22;;;6316:62;6313:88;;;6381:18;;:::i;:::-;6417:2;6410:22;6104:334;;-1:-1:-1;6104:334:1:o;6443:466::-;6508:5;6542:18;6534:6;6531:30;6528:56;;;6564:18;;:::i;:::-;6602:116;6712:4;-1:-1:-1;;6638:2:1;6630:6;6626:15;6622:88;6618:99;6602:116;:::i;:::-;6593:125;;6741:6;6734:5;6727:21;6781:3;6772:6;6767:3;6763:16;6760:25;6757:45;;;6798:1;6795;6788:12;6757:45;6847:6;6842:3;6835:4;6828:5;6824:16;6811:43;6901:1;6894:4;6885:6;6878:5;6874:18;6870:29;6863:40;6443:466;;;;;:::o;6914:546::-;7006:6;7014;7067:2;7055:9;7046:7;7042:23;7038:32;7035:52;;;7083:1;7080;7073:12;7035:52;7106:36;7132:9;7106:36;:::i;:::-;7096:46;;7193:2;7182:9;7178:18;7165:32;7220:18;7212:6;7209:30;7206:50;;;7252:1;7249;7242:12;7206:50;7275:22;;7328:4;7320:13;;7316:27;-1:-1:-1;7306:55:1;;7357:1;7354;7347:12;7306:55;7380:74;7446:7;7441:2;7428:16;7423:2;7419;7415:11;7380:74;:::i;:::-;7370:84;;;6914:546;;;;;:::o;7465:118::-;7551:5;7544:13;7537:21;7530:5;7527:32;7517:60;;7573:1;7570;7563:12;7588:382;7653:6;7661;7714:2;7702:9;7693:7;7689:23;7685:32;7682:52;;;7730:1;7727;7720:12;7682:52;7769:9;7756:23;7788:31;7813:5;7788:31;:::i;:::-;7838:5;-1:-1:-1;7895:2:1;7880:18;;7867:32;7908:30;7867:32;7908:30;:::i;7975:415::-;8042:6;8050;8103:2;8091:9;8082:7;8078:23;8074:32;8071:52;;;8119:1;8116;8109:12;8071:52;8158:9;8145:23;8177:31;8202:5;8177:31;:::i;:::-;8227:5;-1:-1:-1;8284:2:1;8269:18;;8256:32;8332:6;8319:20;;8307:33;;8297:61;;8354:1;8351;8344:12;8395:241;8451:6;8504:2;8492:9;8483:7;8479:23;8475:32;8472:52;;;8520:1;8517;8510:12;8472:52;8559:9;8546:23;8578:28;8600:5;8578:28;:::i;8641:795::-;8736:6;8744;8752;8760;8813:3;8801:9;8792:7;8788:23;8784:33;8781:53;;;8830:1;8827;8820:12;8781:53;8869:9;8856:23;8888:31;8913:5;8888:31;:::i;:::-;8938:5;-1:-1:-1;8995:2:1;8980:18;;8967:32;9008:33;8967:32;9008:33;:::i;:::-;9060:7;-1:-1:-1;9114:2:1;9099:18;;9086:32;;-1:-1:-1;9169:2:1;9154:18;;9141:32;9196:18;9185:30;;9182:50;;;9228:1;9225;9218:12;9182:50;9251:22;;9304:4;9296:13;;9292:27;-1:-1:-1;9282:55:1;;9333:1;9330;9323:12;9282:55;9356:74;9422:7;9417:2;9404:16;9399:2;9395;9391:11;9356:74;:::i;:::-;9346:84;;;8641:795;;;;;;;:::o;9441:1021::-;9525:6;9556:2;9599;9587:9;9578:7;9574:23;9570:32;9567:52;;;9615:1;9612;9605:12;9567:52;9655:9;9642:23;9684:18;9725:2;9717:6;9714:14;9711:34;;;9741:1;9738;9731:12;9711:34;9779:6;9768:9;9764:22;9754:32;;9824:7;9817:4;9813:2;9809:13;9805:27;9795:55;;9846:1;9843;9836:12;9795:55;9882:2;9869:16;9904:2;9900;9897:10;9894:36;;;9910:18;;:::i;:::-;9956:2;9953:1;9949:10;9939:20;;9979:28;10003:2;9999;9995:11;9979:28;:::i;:::-;10041:15;;;10111:11;;;10107:20;;;10072:12;;;;10139:19;;;10136:39;;;10171:1;10168;10161:12;10136:39;10195:11;;;;10215:217;10231:6;10226:3;10223:15;10215:217;;;10311:3;10298:17;10285:30;;10328:31;10353:5;10328:31;:::i;:::-;10372:18;;;10248:12;;;;10410;;;;10215:217;;;10451:5;9441:1021;-1:-1:-1;;;;;;;;9441:1021:1:o;11126:184::-;-1:-1:-1;;;11175:1:1;11168:88;11275:4;11272:1;11265:15;11299:4;11296:1;11289:15;11315:399;11461:2;11446:18;;11494:1;11483:13;;11473:201;;-1:-1:-1;;;11527:1:1;11520:88;11631:4;11628:1;11621:15;11659:4;11656:1;11649:15;11473:201;11683:25;;;11315:399;:::o;11719:437::-;11798:1;11794:12;;;;11841;;;11862:61;;11916:4;11908:6;11904:17;11894:27;;11862:61;11969:2;11961:6;11958:14;11938:18;11935:38;11932:218;;-1:-1:-1;;;12003:1:1;11996:88;12107:4;12104:1;12097:15;12135:4;12132:1;12125:15;11932:218;;11719:437;;;:::o;13812:184::-;-1:-1:-1;;;13861:1:1;13854:88;13961:4;13958:1;13951:15;13985:4;13982:1;13975:15;14001:125;14066:9;;;14087:10;;;14084:36;;;14100:18;;:::i;14855:184::-;-1:-1:-1;;;14904:1:1;14897:88;15004:4;15001:1;14994:15;15028:4;15025:1;15018:15;15044:195;15083:3;-1:-1:-1;;15107:5:1;15104:77;15101:103;;15184:18;;:::i;:::-;-1:-1:-1;15231:1:1;15220:13;;15044:195::o;15943:251::-;16013:6;16066:2;16054:9;16045:7;16041:23;16037:32;16034:52;;;16082:1;16079;16072:12;16034:52;16114:9;16108:16;16133:31;16158:5;16133:31;:::i;19092:168::-;19159:6;19185:10;;;19197;;;19181:27;;19220:11;;;19217:37;;;19234:18;;:::i;:::-;19217:37;19092:168;;;;:::o;21368:::-;21441:9;;;21472;;21489:15;;;21483:22;;21469:37;21459:71;;21510:18;;:::i;22014:545::-;22116:2;22111:3;22108:11;22105:448;;;22152:1;22177:5;22173:2;22166:17;22222:4;22218:2;22208:19;22292:2;22280:10;22276:19;22273:1;22269:27;22263:4;22259:38;22328:4;22316:10;22313:20;22310:47;;;-1:-1:-1;22351:4:1;22310:47;22406:2;22401:3;22397:12;22394:1;22390:20;22384:4;22380:31;22370:41;;22461:82;22479:2;22472:5;22469:13;22461:82;;;22524:17;;;22505:1;22494:13;22461:82;;;22465:3;;;22014:545;;;:::o;22795:1471::-;22921:3;22915:10;22948:18;22940:6;22937:30;22934:56;;;22970:18;;:::i;:::-;22999:97;23089:6;23049:38;23081:4;23075:11;23049:38;:::i;:::-;23043:4;22999:97;:::i;:::-;23151:4;;23215:2;23204:14;;23232:1;23227:782;;;;24053:1;24070:6;24067:89;;;-1:-1:-1;24122:19:1;;;24116:26;24067:89;-1:-1:-1;;22692:1:1;22688:11;;;22684:84;22680:89;22670:100;22776:1;22772:11;;;22667:117;24169:81;;23197:1063;;23227:782;21961:1;21954:14;;;21998:4;21985:18;;-1:-1:-1;;23263:79:1;;;23440:236;23454:7;23451:1;23448:14;23440:236;;;23543:19;;;23537:26;23522:42;;23635:27;;;;23603:1;23591:14;;;;23470:19;;23440:236;;;23444:3;23704:6;23695:7;23692:19;23689:261;;;23765:19;;;23759:26;-1:-1:-1;;23848:1:1;23844:14;;;23860:3;23840:24;23836:97;23832:102;23817:118;23802:134;;23689:261;-1:-1:-1;;;;;23996:1:1;23980:14;;;23976:22;23963:36;;-1:-1:-1;22795:1471:1:o;24271:184::-;24341:6;24394:2;24382:9;24373:7;24369:23;24365:32;24362:52;;;24410:1;24407;24400:12;24362:52;-1:-1:-1;24433:16:1;;24271:184;-1:-1:-1;24271:184:1:o;24820:::-;-1:-1:-1;;;24869:1:1;24862:88;24969:4;24966:1;24959:15;24993:4;24990:1;24983:15;25009:112;25041:1;25067;25057:35;;25072:18;;:::i;:::-;-1:-1:-1;25106:9:1;;25009:112::o;25479:128::-;25546:9;;;25567:11;;;25564:37;;;25581:18;;:::i;25965:120::-;26005:1;26031;26021:35;;26036:18;;:::i;:::-;-1:-1:-1;26070:9:1;;25965:120::o;29797:245::-;29864:6;29917:2;29905:9;29896:7;29892:23;29888:32;29885:52;;;29933:1;29930;29923:12;29885:52;29965:9;29959:16;29984:28;30006:5;29984:28;:::i;31119:194::-;31157:3;31188:66;31181:5;31178:77;31175:103;;31258:18;;:::i;31318:512::-;31512:4;-1:-1:-1;;;;;31622:2:1;31614:6;31610:15;31599:9;31592:34;31674:2;31666:6;31662:15;31657:2;31646:9;31642:18;31635:43;;31714:6;31709:2;31698:9;31694:18;31687:34;31757:3;31752:2;31741:9;31737:18;31730:31;31778:46;31819:3;31808:9;31804:19;31796:6;31778:46;:::i;:::-;31770:54;31318:512;-1:-1:-1;;;;;;31318:512:1:o;31835:249::-;31904:6;31957:2;31945:9;31936:7;31932:23;31928:32;31925:52;;;31973:1;31970;31963:12;31925:52;32005:9;31999:16;32024:30;32048:5;32024:30;:::i;32496:287::-;32625:3;32663:6;32657:13;32679:66;32738:6;32733:3;32726:4;32718:6;32714:17;32679:66;:::i;:::-;32761:16;;;;;32496:287;-1:-1:-1;;32496:287:1:o

Swarm Source

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