ETH Price: $2,389.71 (+2.22%)

Token

Farmers | Turkeys.io (FRMR)
 

Overview

Max Total Supply

194 FRMR

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
12 FRMR
0xe2c0379f57a26be3bd58147ec67355d73d30f379
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
turkeysGameFarmers

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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/SignedMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: turkeys/farmersContract.sol


pragma solidity ^0.8.17;







interface VEGInterface {
    function rewardTokens(address to, address lost, uint256 amount, uint256 nextamount) external;
}

contract turkeysGameFarmers is ERC721Enumerable, Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;

    string private constant _baseTokenURI = "https://ipfs.io/ipfs/bafybeid7lp6g6c3yy3tteikrzphd6fwbzufx52noyq7sl65jyl5tolqjfi/"; 
    IERC20 public paymentToken = IERC20(0xA8b28269376a854Ce52B7238733cb257Dd3934e8);
    VEGInterface public vegContract = VEGInterface(0xA8b28269376a854Ce52B7238733cb257Dd3934e8);
    address public LOST_REWARDS_ADDRESS = 0x2174C20C7c6b738e5213F877386EE370c1B3D9a6;
    address DEAD = 0x000000000000000000000000000000000000dEaD;

    event TurkeyStampede(uint256 lostAmount, uint256 transferredAmount);
    event HungryTurkeys(uint256 lostAmount, uint256 transferredAmount);
    event TurkeyTime(uint256 lostAmount, uint256 transferredAmount);
    event TurkeyStrike(uint256 lostAmount, uint256 transferredAmount);
    event RogueTurkey(uint256 lostAmount, uint256 transferredAmount);

    constructor() ERC721("Farmers | Turkeys.io", "FRMR") {}

    uint256 public currentPrice = 400 * 10**9;
    uint256 public totalMinted = 0;

    uint256 public REWARD_RATE_PER_SECOND = 140 * 10**9;
    uint256 public constant MAX_SUPPLY = 4444;
    uint256 public ethMintPrice = 0.02 ether;
    uint256 public ethMintedCount = 0;
    uint256 public constant ETH_MINT_LIMIT = 444;

    struct StakeInfo {
        uint256 timestamp;
        uint256 reward;
    }

    mapping(address => StakeInfo) public stakers;

    function _baseURI() internal pure override returns (string memory) {
        return _baseTokenURI;
    }

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

    function mint(address to) external whenNotPaused {
        require(totalMinted < MAX_SUPPLY, "Maximum supply reached");
        require(paymentToken.balanceOf(msg.sender) >= currentPrice, "Insufficient payment token balance");
        require(paymentToken.allowance(msg.sender, address(this)) >= currentPrice, "Token allowance not provided");

        paymentToken.transferFrom(msg.sender, address(DEAD), currentPrice);

        _mint(to, totalSupply() + 1);

        totalMinted = totalMinted.add(1);
        currentPrice = currentPrice.add(currentPrice.mul(1).div(1000));

        stakers[to] = StakeInfo({
            timestamp: block.timestamp,
            reward: 0
        });

    }

    function mintMultiple(address to, uint256 quantity) external whenNotPaused {
        require(quantity > 0, "Must mint at least one NFT");
        require(totalMinted.add(quantity) <= MAX_SUPPLY, "Exceeds maximum supply"); 
        uint256 totalPrice = currentPrice.mul(quantity);
        
        require(paymentToken.balanceOf(msg.sender) >= totalPrice, "Insufficient payment token balance");
        require(paymentToken.allowance(msg.sender, address(this)) >= totalPrice, "Token allowance not provided");

        paymentToken.transferFrom(msg.sender, address(DEAD), totalPrice);

        for (uint256 i = 0; i < quantity; i++) {
            _mint(to, totalSupply() + 1);
            totalMinted = totalMinted.add(1);
        }

        currentPrice = currentPrice.add(currentPrice.mul(1).div(1000).mul(quantity)); // Update price for each NFT minted

        stakers[to] = StakeInfo({
            timestamp: block.timestamp,
            reward: 0
        });
    }

    function adminMint(address to) external onlyOwner {
        require(totalMinted < MAX_SUPPLY, "Maximum supply reached"); // Check against max supply

        _mint(to, totalSupply() + 1);

        totalMinted = totalMinted.add(1);

        // Initialize staking info for the recipient
        stakers[to] = StakeInfo({
            timestamp: block.timestamp,
            reward: 0
        });
    }

    function adminMintMultiple(address[] memory recipients, uint256[] memory quantities) external onlyOwner {
        require(recipients.length == quantities.length, "Mismatched arrays");

        for (uint256 i = 0; i < recipients.length; i++) {
            address to = recipients[i];
            uint256 quantity = quantities[i];

            require(totalMinted.add(quantity) <= MAX_SUPPLY, "Exceeds maximum supply");

            for (uint256 j = 0; j < quantity; j++) {
                _mint(to, totalSupply() + 1);
                totalMinted = totalMinted.add(1);
            }

            // Initialize or update staking info for the recipient
            if (stakers[to].timestamp == 0) {
                stakers[to] = StakeInfo({
                    timestamp: block.timestamp,
                    reward: 0
                });
            }
        }
    }

    function mintWithEth(address to) external payable whenNotPaused {
        require(ethMintedCount < ETH_MINT_LIMIT, "ETH mint limit reached");
        require(msg.value == ethMintPrice, "Incorrect ETH amount sent");

        _mint(to, totalSupply() + 1);

        totalMinted = totalMinted.add(1);
        ethMintedCount = ethMintedCount.add(1);

        stakers[to] = StakeInfo({
            timestamp: block.timestamp,
            reward: 0
        });
    }

    function claim() public whenNotPaused {
        require(stakers[msg.sender].timestamp > 0, "Not holding or staking any NFTs");

        uint256 pendingReward = getPendingReward(msg.sender);
        require(pendingReward > 0, "No rewards available");

        uint256 randomNumber = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, block.difficulty))) % 100;
        uint256 lostReward = 0;

        if (randomNumber < 5) {
            lostReward = pendingReward.mul(60).div(100); // 60% loss
        } else if (randomNumber < 25) {
            lostReward = pendingReward.mul(50).div(100); // 50% loss
        } else if (randomNumber < 65) {
            lostReward = pendingReward.mul(40).div(100); // 40% loss
        } else if (randomNumber < 125) {
            lostReward = pendingReward.mul(30).div(100); // 30% loss
        } else {
            lostReward = pendingReward.mul(20).div(100); // 20% loss
        }

        uint256 finalReward = pendingReward.sub(lostReward);

        // Emit events after calculating finalReward
        if (randomNumber < 5) {
            emit TurkeyStampede(lostReward, finalReward);
        } else if (randomNumber < 25) {
            emit HungryTurkeys(lostReward, finalReward);
        } else if (randomNumber < 65) {
            emit TurkeyTime(lostReward, finalReward);
        } else if (randomNumber < 125) {
            emit TurkeyStrike(lostReward, finalReward);
        } else {
            emit RogueTurkey(lostReward, finalReward);
        }

        stakers[msg.sender].reward = 0;
        stakers[msg.sender].timestamp = block.timestamp;

        vegContract.rewardTokens(msg.sender, LOST_REWARDS_ADDRESS, finalReward, lostReward);
    }

    function getPendingReward(address account) public view returns (uint256) {
        if (stakers[account].timestamp == 0) return 0;

        uint256 stakedDurationInSeconds = block.timestamp.sub(stakers[account].timestamp);
        uint256 numberOfNFTs = balanceOf(account); // Get the number of NFTs held by the account

        return stakedDurationInSeconds.mul(REWARD_RATE_PER_SECOND).mul(numberOfNFTs).div(86400).add(stakers[account].reward);
    }

    function getEthMintedCount() public view returns (uint256) {
        return ethMintedCount;
    }

    function setDead(address newDead) public onlyOwner {
        DEAD = newDead;
    }

    function setRewardRate(uint256 newRate) public onlyOwner {
        REWARD_RATE_PER_SECOND = newRate;
    }

    function withdrawStuckEther() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function withdrawStuckTokens(uint256 amount) external onlyOwner {
        require(paymentToken.balanceOf(address(this)) >= amount, "Insufficient token balance");
        paymentToken.transfer(owner(), amount);
    }

    function manualTopUpReward(address _recipient, uint256 _reward) external onlyOwner {
        require(stakers[_recipient].timestamp != 0, "Recipient is not a staker");

        stakers[_recipient].reward = stakers[_recipient].reward.add(_reward);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function updatePaymentToken(address _newPaymentToken) external onlyOwner {
        paymentToken = IERC20(_newPaymentToken);
    }

    function updateLostRewardsAddress(address _newLostRewardsAddress) external onlyOwner {
        LOST_REWARDS_ADDRESS = _newLostRewardsAddress;
    }

    function updateVegInterface(address _newVegInterface) external onlyOwner {
        vegContract = VEGInterface(_newVegInterface);
    }

    function updateCurrentPrice(uint256 _newCurrentPrice) external onlyOwner {
        currentPrice = _newCurrentPrice;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"uint256","name":"lostAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferredAmount","type":"uint256"}],"name":"HungryTurkeys","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"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lostAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferredAmount","type":"uint256"}],"name":"RogueTurkey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lostAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferredAmount","type":"uint256"}],"name":"TurkeyStampede","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lostAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferredAmount","type":"uint256"}],"name":"TurkeyStrike","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lostAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferredAmount","type":"uint256"}],"name":"TurkeyTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ETH_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOST_REWARDS_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_RATE_PER_SECOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"adminMintMultiple","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":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_reward","type":"uint256"}],"name":"manualTopUpReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintWithEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDead","type":"address"}],"name":"setDead","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakers","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"reward","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCurrentPrice","type":"uint256"}],"name":"updateCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newLostRewardsAddress","type":"address"}],"name":"updateLostRewardsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPaymentToken","type":"address"}],"name":"updatePaymentToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newVegInterface","type":"address"}],"name":"updateVegInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vegContract","outputs":[{"internalType":"contract VEGInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b031990811673a8b28269376a854ce52b7238733cb257dd3934e8908117909255600c80548216909217909155600d80548216732174c20c7c6b738e5213f877386ee370c1b3d9a6179055600e805490911661dead179055645d21dba000600f5560006010819055642098a6780060115566470de4df8200006012556013553480156200009a57600080fd5b506040518060400160405280601481526020017f4661726d657273207c205475726b6579732e696f00000000000000000000000081525060405180604001604052806004815260200163232926a960e11b8152508160009081620000ff919062000239565b5060016200010e828262000239565b5050506200012b620001256200013e60201b60201c565b62000142565b600a805460ff60a01b1916905562000305565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001bf57607f821691505b602082108103620001e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023457600081815260208120601f850160051c810160208610156200020f5750805b601f850160051c820191505b8181101562000230578281556001016200021b565b5050505b505050565b81516001600160401b0381111562000255576200025562000194565b6200026d81620002668454620001aa565b84620001e6565b602080601f831160018114620002a557600084156200028c5750858301515b600019600386901b1c1916600185901b17855562000230565b600085815260208120601f198616915b82811015620002d657888601518255948401946001909101908401620002b5565b5085821015620002f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6133cd80620003156000396000f3fe6080604052600436106102c95760003560e01c8063715018a611610175578063a2309ff8116100dc578063c87b56dd11610095578063e49b12561161006f578063e49b125614610844578063e807202d14610864578063e985e9c514610884578063f2fde38b146108cd57600080fd5b8063c87b56dd146107f8578063c973db0b14610818578063da5343531461082e57600080fd5b8063a2309ff814610761578063a32b9e1814610777578063a6a8e6ea1461078c578063ab864003146107a2578063b3fa4a4c146107b8578063b88d4fde146107d857600080fd5b80639168ae721161012e5780639168ae721461068d57806395d89b41146106d65780639769dc0e146106eb5780639d1b464a1461070b5780639e447fc614610721578063a22cb4651461074157600080fd5b8063715018a6146105f257806376e98d33146106075780637863e2671461061a5780637fc6686e1461063a5780638456cb591461065a5780638da5cb5b1461066f57600080fd5b806332cb6b0c116102345780634f6ccce7116101ed5780636352211e116101c75780636352211e146105725780636a6278421461059257806370a08231146105b257806370e8f628146105d257600080fd5b80634f6ccce7146105135780635c975abb146105335780635e6710de1461055257600080fd5b806332cb6b0c146104735780633f4ba83a1461048957806342842e0e1461049e5780634ccf1b34146104be5780634df9d6ba146104de5780634e71d92d146104fe57600080fd5b80631b728c7c116102865780631b728c7c146103be5780631fcfa40f146103d3578063232ff35c146103f357806323b872dd146104135780632f745c59146104335780633013ce291461045357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d578063145cb14e1461037f57806318160ddd1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612c3d565b6108ed565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610918565b6040516102fa9190612caa565b34801561033157600080fd5b50610345610340366004612cbd565b6109aa565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612cf2565b6109d1565b005b34801561038b57600080fd5b5061037d61039a366004612d1c565b610aeb565b3480156103ab57600080fd5b506008545b6040519081526020016102fa565b3480156103ca57600080fd5b506013546103b0565b3480156103df57600080fd5b5061037d6103ee366004612d1c565b610b15565b3480156103ff57600080fd5b50600d54610345906001600160a01b031681565b34801561041f57600080fd5b5061037d61042e366004612d37565b610b3f565b34801561043f57600080fd5b506103b061044e366004612cf2565b610b70565b34801561045f57600080fd5b50600b54610345906001600160a01b031681565b34801561047f57600080fd5b506103b061115c81565b34801561049557600080fd5b5061037d610c06565b3480156104aa57600080fd5b5061037d6104b9366004612d37565b610c18565b3480156104ca57600080fd5b5061037d6104d9366004612d1c565b610c33565b3480156104ea57600080fd5b506103b06104f9366004612d1c565b610c5d565b34801561050a57600080fd5b5061037d610d1d565b34801561051f57600080fd5b506103b061052e366004612cbd565b611091565b34801561053f57600080fd5b50600a54600160a01b900460ff166102ee565b34801561055e57600080fd5b5061037d61056d366004612cbd565b611124565b34801561057e57600080fd5b5061034561058d366004612cbd565b61127e565b34801561059e57600080fd5b5061037d6105ad366004612d1c565b6112de565b3480156105be57600080fd5b506103b06105cd366004612d1c565b611593565b3480156105de57600080fd5b5061037d6105ed366004612cf2565b611619565b3480156105fe57600080fd5b5061037d6116d1565b61037d610615366004612d1c565b6116e3565b34801561062657600080fd5b5061037d610635366004612d1c565b6117f0565b34801561064657600080fd5b5061037d610655366004612cbd565b61181a565b34801561066657600080fd5b5061037d611827565b34801561067b57600080fd5b50600a546001600160a01b0316610345565b34801561069957600080fd5b506106c16106a8366004612d1c565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102fa565b3480156106e257600080fd5b50610318611837565b3480156106f757600080fd5b5061037d610706366004612d1c565b611846565b34801561071757600080fd5b506103b0600f5481565b34801561072d57600080fd5b5061037d61073c366004612cbd565b6118f1565b34801561074d57600080fd5b5061037d61075c366004612d81565b6118fe565b34801561076d57600080fd5b506103b060105481565b34801561078357600080fd5b5061037d611909565b34801561079857600080fd5b506103b06101bc81565b3480156107ae57600080fd5b506103b060135481565b3480156107c457600080fd5b5061037d6107d3366004612cf2565b61194d565b3480156107e457600080fd5b5061037d6107f3366004612dff565b611c79565b34801561080457600080fd5b50610318610813366004612cbd565b611cb1565b34801561082457600080fd5b506103b060125481565b34801561083a57600080fd5b506103b060115481565b34801561085057600080fd5b5061037d61085f366004612f4e565b611d0f565b34801561087057600080fd5b50600c54610345906001600160a01b031681565b34801561089057600080fd5b506102ee61089f36600461300e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d957600080fd5b5061037d6108e8366004612d1c565b611eaa565b60006001600160e01b0319821663780e9d6360e01b1480610912575061091282611f20565b92915050565b60606000805461092790613041565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613041565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b582611f70565b506000908152600460205260409020546001600160a01b031690565b60006109dc8261127e565b9050806001600160a01b0316836001600160a01b031603610a4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a6a5750610a6a813361089f565b610adc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a45565b610ae68383611fcf565b505050565b610af361203d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610b1d61203d565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610b493382612097565b610b655760405162461bcd60e51b8152600401610a459061307b565b610ae6838383612115565b6000610b7b83611593565b8210610bdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a45565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c0e61203d565b610c16612286565b565b610ae683838360405180602001604052806000815250611c79565b610c3b61203d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152601460205260408120548103610c8457506000919050565b6001600160a01b038216600090815260146020526040812054610ca89042906122db565b90506000610cb584611593565b9050610d1560146000866001600160a01b03166001600160a01b0316815260200190815260200160002060010154610d0f62015180610d0985610d03601154896122e790919063ffffffff16565b906122e7565b906122f3565b906122ff565b949350505050565b610d2561230b565b33600090815260146020526040902054610d815760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420686f6c64696e67206f72207374616b696e6720616e79204e465473006044820152606401610a45565b6000610d8c33610c5d565b905060008111610dd55760405162461bcd60e51b81526020600482015260146024820152734e6f207265776172647320617661696c61626c6560601b6044820152606401610a45565b604080514260208201526bffffffffffffffffffffffff193360601b16918101919091524460548201526000906064906074016040516020818303038152906040528051906020012060001c610e2b91906130de565b905060006005821015610e4f57610e486064610d0985603c6122e7565b9050610ead565b6019821015610e6857610e486064610d098560326122e7565b6041821015610e8157610e486064610d098560286122e7565b607d821015610e9a57610e486064610d0985601e6122e7565b610eaa6064610d098560146122e7565b90505b6000610eb984836122db565b90506005831015610f035760408051838152602081018390527fd5f65ed25024af5eba200913a9e78a760da2f77eaa84f9954ae85f092282c3a791015b60405180910390a1610ffa565b6019831015610f425760408051838152602081018390527feb2d9627b42a9006aabd27fbded6d1922922d5ff5634929e22c19120ee68ed289101610ef6565b6041831015610f815760408051838152602081018390527fd5ada35c17b0de375895548094339eed33f9da82915287b20f934f9007abfbea9101610ef6565b607d831015610fc05760408051838152602081018390527f07b1cefedfd24e27d13a276638759c959cb7a29f3ca7c8d1ad1aa60cfa5422ed9101610ef6565b60408051838152602081018390527fdb0e004ed1cb53f97c2a8f988cbc15c355c0c14dea3b1d22c47f36e5da747522910160405180910390a15b33600081815260146020526040808220600181019290925542909155600c54600d54915163f699529160e01b815260048101939093526001600160a01b0391821660248401526044830184905260648301859052169063f699529190608401600060405180830381600087803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b5050505050505050565b600061109c60085490565b82106110ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a45565b60088281548110611112576111126130f2565b90600052602060002001549050919050565b61112c61203d565b600b546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015611174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111989190613108565b10156111e65760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e2062616c616e63650000000000006044820152606401610a45565b600b546001600160a01b031663a9059cbb611209600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611256573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127a9190613121565b5050565b6000818152600260205260408120546001600160a01b0316806109125760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a45565b6112e661230b565b61115c601054106113325760405162461bcd60e51b815260206004820152601660248201527513585e1a5b5d5b481cdd5c1c1b1e481c995858da195960521b6044820152606401610a45565b600f54600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561137d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a19190613108565b10156113bf5760405162461bcd60e51b8152600401610a459061313e565b600f54600b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114349190613108565b10156114825760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e20616c6c6f77616e6365206e6f742070726f7669646564000000006044820152606401610a45565b600b54600e54600f546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156114e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115059190613121565b506115238161151360085490565b61151e906001613196565b612358565b6010546115319060016122ff565b601055600f546115579061154e906103e890610d099060016122e7565b600f54906122ff565b600f55604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b60006001600160a01b0382166115fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a45565b506001600160a01b031660009081526003602052604090205490565b61162161203d565b6001600160a01b03821660009081526014602052604081205490036116885760405162461bcd60e51b815260206004820152601960248201527f526563697069656e74206973206e6f742061207374616b6572000000000000006044820152606401610a45565b6001600160a01b0382166000908152601460205260409020600101546116ae90826122ff565b6001600160a01b0390921660009081526014602052604090206001019190915550565b6116d961203d565b610c1660006124f1565b6116eb61230b565b6101bc601354106117375760405162461bcd60e51b8152602060048201526016602482015275115512081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610a45565b60125434146117885760405162461bcd60e51b815260206004820152601960248201527f496e636f72726563742045544820616d6f756e742073656e74000000000000006044820152606401610a45565b6117958161151360085490565b6010546117a39060016122ff565b6010556013546117b49060016122ff565b601355604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b6117f861203d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61182261203d565b600f55565b61182f61203d565b610c16612543565b60606001805461092790613041565b61184e61203d565b61115c6010541061189a5760405162461bcd60e51b815260206004820152601660248201527513585e1a5b5d5b481cdd5c1c1b1e481c995858da195960521b6044820152606401610a45565b6118a78161151360085490565b6010546118b59060016122ff565b601055604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b6118f961203d565b601155565b61127a338383612586565b61191161203d565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561194a573d6000803e3d6000fd5b50565b61195561230b565b600081116119a55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374206f6e65204e46540000000000006044820152606401610a45565b60105461115c906119b690836122ff565b11156119fd5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610a45565b600f54600090611a0d90836122e7565b600b546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a7e9190613108565b1015611a9c5760405162461bcd60e51b8152600401610a459061313e565b600b54604051636eb1769f60e11b815233600482015230602482015282916001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015611aea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0e9190613108565b1015611b5c5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e20616c6c6f77616e6365206e6f742070726f7669646564000000006044820152606401610a45565b600b54600e546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd906064016020604051808303816000875af1158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb9190613121565b5060005b82811015611c1757611bf48461151360085490565b601054611c029060016122ff565b60105580611c0f816131a9565b915050611bdf565b50611c3b61154e83610d036103e8610d096001600f546122e790919063ffffffff16565b600f555050604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b611c833383612097565b611c9f5760405162461bcd60e51b8152600401610a459061307b565b611cab84848484612654565b50505050565b60606000611cbd612687565b90506000815111611cdd5760405180602001604052806000815250611d08565b80611ce7846126a7565b604051602001611cf89291906131c2565b6040516020818303038152906040525b9392505050565b611d1761203d565b8051825114611d5c5760405162461bcd60e51b81526020600482015260116024820152704d69736d6174636865642061727261797360781b6044820152606401610a45565b60005b8251811015610ae6576000838281518110611d7c57611d7c6130f2565b602002602001015190506000838381518110611d9a57611d9a6130f2565b6020026020010151905061115c611dbc826010546122ff90919063ffffffff16565b1115611e035760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610a45565b60005b81811015611e3e57611e1b8361151360085490565b601054611e299060016122ff565b60105580611e36816131a9565b915050611e06565b506001600160a01b0382166000908152601460205260408120549003611e9557604080518082018252428152600060208083018281526001600160a01b038716835260149091529290209051815590516001909101555b50508080611ea2906131a9565b915050611d5f565b611eb261203d565b6001600160a01b038116611f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a45565b61194a816124f1565b60006001600160e01b031982166380ac58cd60e01b1480611f5157506001600160e01b03198216635b5e139f60e01b145b8061091257506301ffc9a760e01b6001600160e01b0319831614610912565b6000818152600260205260409020546001600160a01b031661194a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a45565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120048261127e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610c165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a45565b6000806120a38361127e565b9050806001600160a01b0316846001600160a01b031614806120ea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d155750836001600160a01b0316612103846109aa565b6001600160a01b031614949350505050565b826001600160a01b03166121288261127e565b6001600160a01b03161461214e5760405162461bcd60e51b8152600401610a4590613201565b6001600160a01b0382166121b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a45565b6121bd838383600161273a565b826001600160a01b03166121d08261127e565b6001600160a01b0316146121f65760405162461bcd60e51b8152600401610a4590613201565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61228e61286e565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611d088284613246565b6000611d088284613259565b6000611d088284613270565b6000611d088284613196565b600a54600160a01b900460ff1615610c165760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a45565b6001600160a01b0382166123ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a45565b6000818152600260205260409020546001600160a01b0316156124135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b61242160008383600161273a565b6000818152600260205260409020546001600160a01b0316156124865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61254b61230b565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122be3390565b816001600160a01b0316836001600160a01b0316036125e75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61265f848484612115565b61266b848484846128be565b611cab5760405162461bcd60e51b8152600401610a4590613284565b606060405180608001604052806051815260200161334760519139905090565b606060006126b4836129bf565b600101905060008167ffffffffffffffff8111156126d4576126d4612db8565b6040519080825280601f01601f1916602001820160405280156126fe576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461270857509392505050565b60018111156127a95760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610a45565b816001600160a01b0385166128055761280081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612828565b836001600160a01b0316856001600160a01b031614612828576128288582612a97565b6001600160a01b0384166128445761283f81612b34565b612867565b846001600160a01b0316846001600160a01b031614612867576128678482612be3565b5050505050565b600a54600160a01b900460ff16610c165760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a45565b60006001600160a01b0384163b156129b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129029033908990889088906004016132d6565b6020604051808303816000875af192505050801561293d575060408051601f3d908101601f1916820190925261293a91810190613313565b60015b61299a573d80801561296b576040519150601f19603f3d011682016040523d82523d6000602084013e612970565b606091505b5080516000036129925760405162461bcd60e51b8152600401610a4590613284565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d15565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129fe5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a2a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a4857662386f26fc10000830492506010015b6305f5e1008310612a60576305f5e100830492506008015b6127108310612a7457612710830492506004015b60648310612a86576064830492506002015b600a83106109125760010192915050565b60006001612aa484611593565b612aae9190613246565b600083815260076020526040902054909150808214612b01576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b4690600190613246565b60008381526009602052604081205460088054939450909284908110612b6e57612b6e6130f2565b906000526020600020015490508060088381548110612b8f57612b8f6130f2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bc757612bc7613330565b6001900381819060005260206000200160009055905550505050565b6000612bee83611593565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461194a57600080fd5b600060208284031215612c4f57600080fd5b8135611d0881612c27565b60005b83811015612c75578181015183820152602001612c5d565b50506000910152565b60008151808452612c96816020860160208601612c5a565b601f01601f19169290920160200192915050565b602081526000611d086020830184612c7e565b600060208284031215612ccf57600080fd5b5035919050565b80356001600160a01b0381168114612ced57600080fd5b919050565b60008060408385031215612d0557600080fd5b612d0e83612cd6565b946020939093013593505050565b600060208284031215612d2e57600080fd5b611d0882612cd6565b600080600060608486031215612d4c57600080fd5b612d5584612cd6565b9250612d6360208501612cd6565b9150604084013590509250925092565b801515811461194a57600080fd5b60008060408385031215612d9457600080fd5b612d9d83612cd6565b91506020830135612dad81612d73565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612df757612df7612db8565b604052919050565b60008060008060808587031215612e1557600080fd5b612e1e85612cd6565b93506020612e2d818701612cd6565b935060408601359250606086013567ffffffffffffffff80821115612e5157600080fd5b818801915088601f830112612e6557600080fd5b813581811115612e7757612e77612db8565b612e89601f8201601f19168501612dce565b91508082528984828501011115612e9f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff821115612ed957612ed9612db8565b5060051b60200190565b600082601f830112612ef457600080fd5b81356020612f09612f0483612ebf565b612dce565b82815260059290921b84018101918181019086841115612f2857600080fd5b8286015b84811015612f435780358352918301918301612f2c565b509695505050505050565b60008060408385031215612f6157600080fd5b823567ffffffffffffffff80821115612f7957600080fd5b818501915085601f830112612f8d57600080fd5b81356020612f9d612f0483612ebf565b82815260059290921b84018101918181019089841115612fbc57600080fd5b948201945b83861015612fe157612fd286612cd6565b82529482019490820190612fc1565b96505086013592505080821115612ff757600080fd5b5061300485828601612ee3565b9150509250929050565b6000806040838503121561302157600080fd5b61302a83612cd6565b915061303860208401612cd6565b90509250929050565b600181811c9082168061305557607f821691505b60208210810361307557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130ed576130ed6130c8565b500690565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561311a57600080fd5b5051919050565b60006020828403121561313357600080fd5b8151611d0881612d73565b60208082526022908201527f496e73756666696369656e74207061796d656e7420746f6b656e2062616c616e604082015261636560f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561091257610912613180565b6000600182016131bb576131bb613180565b5060010190565b600083516131d4818460208801612c5a565b8351908301906131e8818360208801612c5a565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b8181038181111561091257610912613180565b808202811582820484141761091257610912613180565b60008261327f5761327f6130c8565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330990830184612c7e565b9695505050505050565b60006020828403121561332557600080fd5b8151611d0881612c27565b634e487b7160e01b600052603160045260246000fdfe68747470733a2f2f697066732e696f2f697066732f6261667962656964376c703667366333797933747465696b727a706864366677627a75667835326e6f797137736c36356a796c35746f6c716a66692fa26469706673582212203b6e3a26b8fcd18e19b58ed08165a7b06cd9e444b91bf55d2293e655dd79be6564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063715018a611610175578063a2309ff8116100dc578063c87b56dd11610095578063e49b12561161006f578063e49b125614610844578063e807202d14610864578063e985e9c514610884578063f2fde38b146108cd57600080fd5b8063c87b56dd146107f8578063c973db0b14610818578063da5343531461082e57600080fd5b8063a2309ff814610761578063a32b9e1814610777578063a6a8e6ea1461078c578063ab864003146107a2578063b3fa4a4c146107b8578063b88d4fde146107d857600080fd5b80639168ae721161012e5780639168ae721461068d57806395d89b41146106d65780639769dc0e146106eb5780639d1b464a1461070b5780639e447fc614610721578063a22cb4651461074157600080fd5b8063715018a6146105f257806376e98d33146106075780637863e2671461061a5780637fc6686e1461063a5780638456cb591461065a5780638da5cb5b1461066f57600080fd5b806332cb6b0c116102345780634f6ccce7116101ed5780636352211e116101c75780636352211e146105725780636a6278421461059257806370a08231146105b257806370e8f628146105d257600080fd5b80634f6ccce7146105135780635c975abb146105335780635e6710de1461055257600080fd5b806332cb6b0c146104735780633f4ba83a1461048957806342842e0e1461049e5780634ccf1b34146104be5780634df9d6ba146104de5780634e71d92d146104fe57600080fd5b80631b728c7c116102865780631b728c7c146103be5780631fcfa40f146103d3578063232ff35c146103f357806323b872dd146104135780632f745c59146104335780633013ce291461045357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d578063145cb14e1461037f57806318160ddd1461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e9366004612c3d565b6108ed565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610918565b6040516102fa9190612caa565b34801561033157600080fd5b50610345610340366004612cbd565b6109aa565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d610378366004612cf2565b6109d1565b005b34801561038b57600080fd5b5061037d61039a366004612d1c565b610aeb565b3480156103ab57600080fd5b506008545b6040519081526020016102fa565b3480156103ca57600080fd5b506013546103b0565b3480156103df57600080fd5b5061037d6103ee366004612d1c565b610b15565b3480156103ff57600080fd5b50600d54610345906001600160a01b031681565b34801561041f57600080fd5b5061037d61042e366004612d37565b610b3f565b34801561043f57600080fd5b506103b061044e366004612cf2565b610b70565b34801561045f57600080fd5b50600b54610345906001600160a01b031681565b34801561047f57600080fd5b506103b061115c81565b34801561049557600080fd5b5061037d610c06565b3480156104aa57600080fd5b5061037d6104b9366004612d37565b610c18565b3480156104ca57600080fd5b5061037d6104d9366004612d1c565b610c33565b3480156104ea57600080fd5b506103b06104f9366004612d1c565b610c5d565b34801561050a57600080fd5b5061037d610d1d565b34801561051f57600080fd5b506103b061052e366004612cbd565b611091565b34801561053f57600080fd5b50600a54600160a01b900460ff166102ee565b34801561055e57600080fd5b5061037d61056d366004612cbd565b611124565b34801561057e57600080fd5b5061034561058d366004612cbd565b61127e565b34801561059e57600080fd5b5061037d6105ad366004612d1c565b6112de565b3480156105be57600080fd5b506103b06105cd366004612d1c565b611593565b3480156105de57600080fd5b5061037d6105ed366004612cf2565b611619565b3480156105fe57600080fd5b5061037d6116d1565b61037d610615366004612d1c565b6116e3565b34801561062657600080fd5b5061037d610635366004612d1c565b6117f0565b34801561064657600080fd5b5061037d610655366004612cbd565b61181a565b34801561066657600080fd5b5061037d611827565b34801561067b57600080fd5b50600a546001600160a01b0316610345565b34801561069957600080fd5b506106c16106a8366004612d1c565b6014602052600090815260409020805460019091015482565b604080519283526020830191909152016102fa565b3480156106e257600080fd5b50610318611837565b3480156106f757600080fd5b5061037d610706366004612d1c565b611846565b34801561071757600080fd5b506103b0600f5481565b34801561072d57600080fd5b5061037d61073c366004612cbd565b6118f1565b34801561074d57600080fd5b5061037d61075c366004612d81565b6118fe565b34801561076d57600080fd5b506103b060105481565b34801561078357600080fd5b5061037d611909565b34801561079857600080fd5b506103b06101bc81565b3480156107ae57600080fd5b506103b060135481565b3480156107c457600080fd5b5061037d6107d3366004612cf2565b61194d565b3480156107e457600080fd5b5061037d6107f3366004612dff565b611c79565b34801561080457600080fd5b50610318610813366004612cbd565b611cb1565b34801561082457600080fd5b506103b060125481565b34801561083a57600080fd5b506103b060115481565b34801561085057600080fd5b5061037d61085f366004612f4e565b611d0f565b34801561087057600080fd5b50600c54610345906001600160a01b031681565b34801561089057600080fd5b506102ee61089f36600461300e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d957600080fd5b5061037d6108e8366004612d1c565b611eaa565b60006001600160e01b0319821663780e9d6360e01b1480610912575061091282611f20565b92915050565b60606000805461092790613041565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613041565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b582611f70565b506000908152600460205260409020546001600160a01b031690565b60006109dc8261127e565b9050806001600160a01b0316836001600160a01b031603610a4e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a6a5750610a6a813361089f565b610adc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a45565b610ae68383611fcf565b505050565b610af361203d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610b1d61203d565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610b493382612097565b610b655760405162461bcd60e51b8152600401610a459061307b565b610ae6838383612115565b6000610b7b83611593565b8210610bdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a45565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c0e61203d565b610c16612286565b565b610ae683838360405180602001604052806000815250611c79565b610c3b61203d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152601460205260408120548103610c8457506000919050565b6001600160a01b038216600090815260146020526040812054610ca89042906122db565b90506000610cb584611593565b9050610d1560146000866001600160a01b03166001600160a01b0316815260200190815260200160002060010154610d0f62015180610d0985610d03601154896122e790919063ffffffff16565b906122e7565b906122f3565b906122ff565b949350505050565b610d2561230b565b33600090815260146020526040902054610d815760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420686f6c64696e67206f72207374616b696e6720616e79204e465473006044820152606401610a45565b6000610d8c33610c5d565b905060008111610dd55760405162461bcd60e51b81526020600482015260146024820152734e6f207265776172647320617661696c61626c6560601b6044820152606401610a45565b604080514260208201526bffffffffffffffffffffffff193360601b16918101919091524460548201526000906064906074016040516020818303038152906040528051906020012060001c610e2b91906130de565b905060006005821015610e4f57610e486064610d0985603c6122e7565b9050610ead565b6019821015610e6857610e486064610d098560326122e7565b6041821015610e8157610e486064610d098560286122e7565b607d821015610e9a57610e486064610d0985601e6122e7565b610eaa6064610d098560146122e7565b90505b6000610eb984836122db565b90506005831015610f035760408051838152602081018390527fd5f65ed25024af5eba200913a9e78a760da2f77eaa84f9954ae85f092282c3a791015b60405180910390a1610ffa565b6019831015610f425760408051838152602081018390527feb2d9627b42a9006aabd27fbded6d1922922d5ff5634929e22c19120ee68ed289101610ef6565b6041831015610f815760408051838152602081018390527fd5ada35c17b0de375895548094339eed33f9da82915287b20f934f9007abfbea9101610ef6565b607d831015610fc05760408051838152602081018390527f07b1cefedfd24e27d13a276638759c959cb7a29f3ca7c8d1ad1aa60cfa5422ed9101610ef6565b60408051838152602081018390527fdb0e004ed1cb53f97c2a8f988cbc15c355c0c14dea3b1d22c47f36e5da747522910160405180910390a15b33600081815260146020526040808220600181019290925542909155600c54600d54915163f699529160e01b815260048101939093526001600160a01b0391821660248401526044830184905260648301859052169063f699529190608401600060405180830381600087803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b5050505050505050565b600061109c60085490565b82106110ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a45565b60088281548110611112576111126130f2565b90600052602060002001549050919050565b61112c61203d565b600b546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015611174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111989190613108565b10156111e65760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e2062616c616e63650000000000006044820152606401610a45565b600b546001600160a01b031663a9059cbb611209600a546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611256573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127a9190613121565b5050565b6000818152600260205260408120546001600160a01b0316806109125760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a45565b6112e661230b565b61115c601054106113325760405162461bcd60e51b815260206004820152601660248201527513585e1a5b5d5b481cdd5c1c1b1e481c995858da195960521b6044820152606401610a45565b600f54600b546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561137d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a19190613108565b10156113bf5760405162461bcd60e51b8152600401610a459061313e565b600f54600b54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e90604401602060405180830381865afa158015611410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114349190613108565b10156114825760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e20616c6c6f77616e6365206e6f742070726f7669646564000000006044820152606401610a45565b600b54600e54600f546040516323b872dd60e01b81523360048201526001600160a01b03928316602482015260448101919091529116906323b872dd906064016020604051808303816000875af11580156114e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115059190613121565b506115238161151360085490565b61151e906001613196565b612358565b6010546115319060016122ff565b601055600f546115579061154e906103e890610d099060016122e7565b600f54906122ff565b600f55604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b60006001600160a01b0382166115fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a45565b506001600160a01b031660009081526003602052604090205490565b61162161203d565b6001600160a01b03821660009081526014602052604081205490036116885760405162461bcd60e51b815260206004820152601960248201527f526563697069656e74206973206e6f742061207374616b6572000000000000006044820152606401610a45565b6001600160a01b0382166000908152601460205260409020600101546116ae90826122ff565b6001600160a01b0390921660009081526014602052604090206001019190915550565b6116d961203d565b610c1660006124f1565b6116eb61230b565b6101bc601354106117375760405162461bcd60e51b8152602060048201526016602482015275115512081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610a45565b60125434146117885760405162461bcd60e51b815260206004820152601960248201527f496e636f72726563742045544820616d6f756e742073656e74000000000000006044820152606401610a45565b6117958161151360085490565b6010546117a39060016122ff565b6010556013546117b49060016122ff565b601355604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b6117f861203d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b61182261203d565b600f55565b61182f61203d565b610c16612543565b60606001805461092790613041565b61184e61203d565b61115c6010541061189a5760405162461bcd60e51b815260206004820152601660248201527513585e1a5b5d5b481cdd5c1c1b1e481c995858da195960521b6044820152606401610a45565b6118a78161151360085490565b6010546118b59060016122ff565b601055604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b6118f961203d565b601155565b61127a338383612586565b61191161203d565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561194a573d6000803e3d6000fd5b50565b61195561230b565b600081116119a55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374206f6e65204e46540000000000006044820152606401610a45565b60105461115c906119b690836122ff565b11156119fd5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610a45565b600f54600090611a0d90836122e7565b600b546040516370a0823160e01b815233600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a7e9190613108565b1015611a9c5760405162461bcd60e51b8152600401610a459061313e565b600b54604051636eb1769f60e11b815233600482015230602482015282916001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015611aea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0e9190613108565b1015611b5c5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e20616c6c6f77616e6365206e6f742070726f7669646564000000006044820152606401610a45565b600b54600e546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018490529116906323b872dd906064016020604051808303816000875af1158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb9190613121565b5060005b82811015611c1757611bf48461151360085490565b601054611c029060016122ff565b60105580611c0f816131a9565b915050611bdf565b50611c3b61154e83610d036103e8610d096001600f546122e790919063ffffffff16565b600f555050604080518082018252428152600060208083018281526001600160a01b0390951682526014905291909120905181559051600190910155565b611c833383612097565b611c9f5760405162461bcd60e51b8152600401610a459061307b565b611cab84848484612654565b50505050565b60606000611cbd612687565b90506000815111611cdd5760405180602001604052806000815250611d08565b80611ce7846126a7565b604051602001611cf89291906131c2565b6040516020818303038152906040525b9392505050565b611d1761203d565b8051825114611d5c5760405162461bcd60e51b81526020600482015260116024820152704d69736d6174636865642061727261797360781b6044820152606401610a45565b60005b8251811015610ae6576000838281518110611d7c57611d7c6130f2565b602002602001015190506000838381518110611d9a57611d9a6130f2565b6020026020010151905061115c611dbc826010546122ff90919063ffffffff16565b1115611e035760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610a45565b60005b81811015611e3e57611e1b8361151360085490565b601054611e299060016122ff565b60105580611e36816131a9565b915050611e06565b506001600160a01b0382166000908152601460205260408120549003611e9557604080518082018252428152600060208083018281526001600160a01b038716835260149091529290209051815590516001909101555b50508080611ea2906131a9565b915050611d5f565b611eb261203d565b6001600160a01b038116611f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a45565b61194a816124f1565b60006001600160e01b031982166380ac58cd60e01b1480611f5157506001600160e01b03198216635b5e139f60e01b145b8061091257506301ffc9a760e01b6001600160e01b0319831614610912565b6000818152600260205260409020546001600160a01b031661194a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a45565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120048261127e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610c165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a45565b6000806120a38361127e565b9050806001600160a01b0316846001600160a01b031614806120ea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d155750836001600160a01b0316612103846109aa565b6001600160a01b031614949350505050565b826001600160a01b03166121288261127e565b6001600160a01b03161461214e5760405162461bcd60e51b8152600401610a4590613201565b6001600160a01b0382166121b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a45565b6121bd838383600161273a565b826001600160a01b03166121d08261127e565b6001600160a01b0316146121f65760405162461bcd60e51b8152600401610a4590613201565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61228e61286e565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611d088284613246565b6000611d088284613259565b6000611d088284613270565b6000611d088284613196565b600a54600160a01b900460ff1615610c165760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a45565b6001600160a01b0382166123ae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a45565b6000818152600260205260409020546001600160a01b0316156124135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b61242160008383600161273a565b6000818152600260205260409020546001600160a01b0316156124865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a45565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61254b61230b565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122be3390565b816001600160a01b0316836001600160a01b0316036125e75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a45565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61265f848484612115565b61266b848484846128be565b611cab5760405162461bcd60e51b8152600401610a4590613284565b606060405180608001604052806051815260200161334760519139905090565b606060006126b4836129bf565b600101905060008167ffffffffffffffff8111156126d4576126d4612db8565b6040519080825280601f01601f1916602001820160405280156126fe576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461270857509392505050565b60018111156127a95760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610a45565b816001600160a01b0385166128055761280081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612828565b836001600160a01b0316856001600160a01b031614612828576128288582612a97565b6001600160a01b0384166128445761283f81612b34565b612867565b846001600160a01b0316846001600160a01b031614612867576128678482612be3565b5050505050565b600a54600160a01b900460ff16610c165760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a45565b60006001600160a01b0384163b156129b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129029033908990889088906004016132d6565b6020604051808303816000875af192505050801561293d575060408051601f3d908101601f1916820190925261293a91810190613313565b60015b61299a573d80801561296b576040519150601f19603f3d011682016040523d82523d6000602084013e612970565b606091505b5080516000036129925760405162461bcd60e51b8152600401610a4590613284565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d15565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129fe5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a2a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a4857662386f26fc10000830492506010015b6305f5e1008310612a60576305f5e100830492506008015b6127108310612a7457612710830492506004015b60648310612a86576064830492506002015b600a83106109125760010192915050565b60006001612aa484611593565b612aae9190613246565b600083815260076020526040902054909150808214612b01576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b4690600190613246565b60008381526009602052604081205460088054939450909284908110612b6e57612b6e6130f2565b906000526020600020015490508060088381548110612b8f57612b8f6130f2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612bc757612bc7613330565b6001900381819060005260206000200160009055905550505050565b6000612bee83611593565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461194a57600080fd5b600060208284031215612c4f57600080fd5b8135611d0881612c27565b60005b83811015612c75578181015183820152602001612c5d565b50506000910152565b60008151808452612c96816020860160208601612c5a565b601f01601f19169290920160200192915050565b602081526000611d086020830184612c7e565b600060208284031215612ccf57600080fd5b5035919050565b80356001600160a01b0381168114612ced57600080fd5b919050565b60008060408385031215612d0557600080fd5b612d0e83612cd6565b946020939093013593505050565b600060208284031215612d2e57600080fd5b611d0882612cd6565b600080600060608486031215612d4c57600080fd5b612d5584612cd6565b9250612d6360208501612cd6565b9150604084013590509250925092565b801515811461194a57600080fd5b60008060408385031215612d9457600080fd5b612d9d83612cd6565b91506020830135612dad81612d73565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612df757612df7612db8565b604052919050565b60008060008060808587031215612e1557600080fd5b612e1e85612cd6565b93506020612e2d818701612cd6565b935060408601359250606086013567ffffffffffffffff80821115612e5157600080fd5b818801915088601f830112612e6557600080fd5b813581811115612e7757612e77612db8565b612e89601f8201601f19168501612dce565b91508082528984828501011115612e9f57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff821115612ed957612ed9612db8565b5060051b60200190565b600082601f830112612ef457600080fd5b81356020612f09612f0483612ebf565b612dce565b82815260059290921b84018101918181019086841115612f2857600080fd5b8286015b84811015612f435780358352918301918301612f2c565b509695505050505050565b60008060408385031215612f6157600080fd5b823567ffffffffffffffff80821115612f7957600080fd5b818501915085601f830112612f8d57600080fd5b81356020612f9d612f0483612ebf565b82815260059290921b84018101918181019089841115612fbc57600080fd5b948201945b83861015612fe157612fd286612cd6565b82529482019490820190612fc1565b96505086013592505080821115612ff757600080fd5b5061300485828601612ee3565b9150509250929050565b6000806040838503121561302157600080fd5b61302a83612cd6565b915061303860208401612cd6565b90509250929050565b600181811c9082168061305557607f821691505b60208210810361307557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130ed576130ed6130c8565b500690565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561311a57600080fd5b5051919050565b60006020828403121561313357600080fd5b8151611d0881612d73565b60208082526022908201527f496e73756666696369656e74207061796d656e7420746f6b656e2062616c616e604082015261636560f01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561091257610912613180565b6000600182016131bb576131bb613180565b5060010190565b600083516131d4818460208801612c5a565b8351908301906131e8818360208801612c5a565b64173539b7b760d91b9101908152600501949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b8181038181111561091257610912613180565b808202811582820484141761091257610912613180565b60008261327f5761327f6130c8565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330990830184612c7e565b9695505050505050565b60006020828403121561332557600080fd5b8151611d0881612c27565b634e487b7160e01b600052603160045260246000fdfe68747470733a2f2f697066732e696f2f697066732f6261667962656964376c703667366333797933747465696b727a706864366677627a75667835326e6f797137736c36356a796c35746f6c716a66692fa26469706673582212203b6e3a26b8fcd18e19b58ed08165a7b06cd9e444b91bf55d2293e655dd79be6564736f6c63430008110033

Deployed Bytecode Sourcemap

77298:9260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71151:224;;;;;;;;;;-1:-1:-1;71151:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;71151:224:0;;;;;;;;55200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56712:171::-;;;;;;;;;;-1:-1:-1;56712:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;56712:171:0;1533:203:1;56230:416:0;;;;;;;;;;-1:-1:-1;56230:416:0;;;;;:::i;:::-;;:::i;:::-;;86288:136;;;;;;;;;;-1:-1:-1;86288:136:0;;;;;:::i;:::-;;:::i;71791:113::-;;;;;;;;;;-1:-1:-1;71879:10:0;:17;71791:113;;;2515:25:1;;;2503:2;2488:18;71791:113:0;2369:177:1;84918:99:0;;;;;;;;;;-1:-1:-1;84995:14:0;;84918:99;;86131:149;;;;;;;;;;-1:-1:-1;86131:149:0;;;;;:::i;:::-;;:::i;77753:80::-;;;;;;;;;;-1:-1:-1;77753:80:0;;;;-1:-1:-1;;;;;77753:80:0;;;57412:301;;;;;;;;;;-1:-1:-1;57412:301:0;;;;;:::i;:::-;;:::i;71459:256::-;;;;;;;;;;-1:-1:-1;71459:256:0;;;;;:::i;:::-;;:::i;77570:79::-;;;;;;;;;;-1:-1:-1;77570:79:0;;;;-1:-1:-1;;;;;77570:79:0;;;78476:41;;;;;;;;;;;;78513:4;78476:41;;85917:67;;;;;;;;;;;;;:::i;57784:151::-;;;;;;;;;;-1:-1:-1;57784:151:0;;;;;:::i;:::-;;:::i;85992:131::-;;;;;;;;;;-1:-1:-1;85992:131:0;;;;;:::i;:::-;;:::i;84452:458::-;;;;;;;;;;-1:-1:-1;84452:458:0;;;;;:::i;:::-;;:::i;82700:1744::-;;;;;;;;;;;;;:::i;71981:233::-;;;;;;;;;;-1:-1:-1;71981:233:0;;;;;:::i;:::-;;:::i;29672:86::-;;;;;;;;;;-1:-1:-1;29743:7:0;;-1:-1:-1;;;29743:7:0;;;;29672:86;;85357:218;;;;;;;;;;-1:-1:-1;85357:218:0;;;;;:::i;:::-;;:::i;54910:223::-;;;;;;;;;;-1:-1:-1;54910:223:0;;;;;:::i;:::-;;:::i;79196:706::-;;;;;;;;;;-1:-1:-1;79196:706:0;;;;;:::i;:::-;;:::i;54641:207::-;;;;;;;;;;-1:-1:-1;54641:207:0;;;;;:::i;:::-;;:::i;85583:255::-;;;;;;;;;;-1:-1:-1;85583:255:0;;;;;:::i;:::-;;:::i;32530:103::-;;;;;;;;;;;;;:::i;82220:472::-;;;;;;:::i;:::-;;:::i;85025:84::-;;;;;;;;;;-1:-1:-1;85025:84:0;;;;;:::i;:::-;;:::i;86432:123::-;;;;;;;;;;-1:-1:-1;86432:123:0;;;;;:::i;:::-;;:::i;85846:63::-;;;;;;;;;;;;;:::i;31889:87::-;;;;;;;;;;-1:-1:-1;31962:6:0;;-1:-1:-1;;;;;31962:6:0;31889:87;;78750:44;;;;;;;;;;-1:-1:-1;78750:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;3280:25:1;;;3336:2;3321:18;;3314:34;;;;3253:18;78750:44:0;3106:248:1;55369:104:0;;;;;;;;;;;;;:::i;80907:410::-;;;;;;;;;;-1:-1:-1;80907:410:0;;;;;:::i;:::-;;:::i;78331:41::-;;;;;;;;;;;;;;;;85117:108;;;;;;;;;;-1:-1:-1;85117:108:0;;;;;:::i;:::-;;:::i;56955:155::-;;;;;;;;;;-1:-1:-1;56955:155:0;;;;;:::i;:::-;;:::i;78379:30::-;;;;;;;;;;;;;;;;85233:116;;;;;;;;;;;;;:::i;78611:44::-;;;;;;;;;;;;78652:3;78611:44;;78571:33;;;;;;;;;;;;;;;;79910:989;;;;;;;;;;-1:-1:-1;79910:989:0;;;;;:::i;:::-;;:::i;58006:279::-;;;;;;;;;;-1:-1:-1;58006:279:0;;;;;:::i;:::-;;:::i;78917:271::-;;;;;;;;;;-1:-1:-1;78917:271:0;;;;;:::i;:::-;;:::i;78524:40::-;;;;;;;;;;;;;;;;78418:51;;;;;;;;;;;;;;;;81325:887;;;;;;;;;;-1:-1:-1;81325:887:0;;;;;:::i;:::-;;:::i;77656:90::-;;;;;;;;;;-1:-1:-1;77656:90:0;;;;-1:-1:-1;;;;;77656:90:0;;;57181:164;;;;;;;;;;-1:-1:-1;57181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;57302:25:0;;;57278:4;57302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57181:164;32788:201;;;;;;;;;;-1:-1:-1;32788:201:0;;;;;:::i;:::-;;:::i;71151:224::-;71253:4;-1:-1:-1;;;;;;71277:50:0;;-1:-1:-1;;;71277:50:0;;:90;;;71331:36;71355:11;71331:23;:36::i;:::-;71270:97;71151:224;-1:-1:-1;;71151:224:0:o;55200:100::-;55254:13;55287:5;55280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55200:100;:::o;56712:171::-;56788:7;56808:23;56823:7;56808:14;:23::i;:::-;-1:-1:-1;56851:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56851:24:0;;56712:171::o;56230:416::-;56311:13;56327:23;56342:7;56327:14;:23::i;:::-;56311:39;;56375:5;-1:-1:-1;;;;;56369:11:0;:2;-1:-1:-1;;;;;56369:11:0;;56361:57;;;;-1:-1:-1;;;56361:57:0;;8286:2:1;56361:57:0;;;8268:21:1;8325:2;8305:18;;;8298:30;8364:34;8344:18;;;8337:62;-1:-1:-1;;;8415:18:1;;;8408:31;8456:19;;56361:57:0;;;;;;;;;27865:10;-1:-1:-1;;;;;56453:21:0;;;;:62;;-1:-1:-1;56478:37:0;56495:5;27865:10;57181:164;:::i;56478:37::-;56431:173;;;;-1:-1:-1;;;56431:173:0;;8688:2:1;56431:173:0;;;8670:21:1;8727:2;8707:18;;;8700:30;8766:34;8746:18;;;8739:62;8837:31;8817:18;;;8810:59;8886:19;;56431:173:0;8486:425:1;56431:173:0;56617:21;56626:2;56630:7;56617:8;:21::i;:::-;56300:346;56230:416;;:::o;86288:136::-;31775:13;:11;:13::i;:::-;86372:11:::1;:44:::0;;-1:-1:-1;;;;;;86372:44:0::1;-1:-1:-1::0;;;;;86372:44:0;;;::::1;::::0;;;::::1;::::0;;86288:136::o;86131:149::-;31775:13;:11;:13::i;:::-;86227:20:::1;:45:::0;;-1:-1:-1;;;;;;86227:45:0::1;-1:-1:-1::0;;;;;86227:45:0;;;::::1;::::0;;;::::1;::::0;;86131:149::o;57412:301::-;57573:41;27865:10;57606:7;57573:18;:41::i;:::-;57565:99;;;;-1:-1:-1;;;57565:99:0;;;;;;;:::i;:::-;57677:28;57687:4;57693:2;57697:7;57677:9;:28::i;71459:256::-;71556:7;71592:23;71609:5;71592:16;:23::i;:::-;71584:5;:31;71576:87;;;;-1:-1:-1;;;71576:87:0;;9532:2:1;71576:87:0;;;9514:21:1;9571:2;9551:18;;;9544:30;9610:34;9590:18;;;9583:62;-1:-1:-1;;;9661:18:1;;;9654:41;9712:19;;71576:87:0;9330:407:1;71576:87:0;-1:-1:-1;;;;;;71681:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;71459:256::o;85917:67::-;31775:13;:11;:13::i;:::-;85966:10:::1;:8;:10::i;:::-;85917:67::o:0;57784:151::-;57888:39;57905:4;57911:2;57915:7;57888:39;;;;;;;;;;;;:16;:39::i;85992:131::-;31775:13;:11;:13::i;:::-;86076:12:::1;:39:::0;;-1:-1:-1;;;;;;86076:39:0::1;-1:-1:-1::0;;;;;86076:39:0;;;::::1;::::0;;;::::1;::::0;;85992:131::o;84452:458::-;-1:-1:-1;;;;;84540:16:0;;84516:7;84540:16;;;:7;:16;;;;;:26;:31;;84536:45;;-1:-1:-1;84580:1:0;;84452:458;-1:-1:-1;84452:458:0:o;84536:45::-;-1:-1:-1;;;;;84648:16:0;;84594:31;84648:16;;;:7;:16;;;;;:26;84628:47;;:15;;:19;:47::i;:::-;84594:81;;84686:20;84709:18;84719:7;84709:9;:18::i;:::-;84686:41;;84793:109;84878:7;:16;84886:7;-1:-1:-1;;;;;84878:16:0;-1:-1:-1;;;;;84878:16:0;;;;;;;;;;;;:23;;;84793:80;84867:5;84793:69;84849:12;84793:51;84821:22;;84793:23;:27;;:51;;;;:::i;:::-;:55;;:69::i;:::-;:73;;:80::i;:::-;:84;;:109::i;:::-;84786:116;84452:458;-1:-1:-1;;;;84452:458:0:o;82700:1744::-;29277:19;:17;:19::i;:::-;82765:10:::1;82789:1;82757:19:::0;;;:7:::1;:19;::::0;;;;:29;82749:77:::1;;;::::0;-1:-1:-1;;;82749:77:0;;9944:2:1;82749:77:0::1;::::0;::::1;9926:21:1::0;9983:2;9963:18;;;9956:30;10022:33;10002:18;;;9995:61;10073:18;;82749:77:0::1;9742:355:1::0;82749:77:0::1;82839:21;82863:28;82880:10;82863:16;:28::i;:::-;82839:52;;82926:1;82910:13;:17;82902:50;;;::::0;-1:-1:-1;;;82902:50:0;;10304:2:1;82902:50:0::1;::::0;::::1;10286:21:1::0;10343:2;10323:18;;;10316:30;-1:-1:-1;;;10362:18:1;;;10355:50;10422:18;;82902:50:0::1;10102:344:1::0;82902:50:0::1;83006:63;::::0;;83023:15:::1;83006:63;::::0;::::1;10636:19:1::0;-1:-1:-1;;83040:10:0::1;10693:2:1::0;10689:15;10685:53;10671:12;;;10664:75;;;;83052:16:0::1;10755:12:1::0;;;10748:28;82965:20:0::1;::::0;83074:3:::1;::::0;10792:12:1;;83006:63:0::1;;;;;;;;;;;;82996:74;;;;;;82988:83;;:89;;;;:::i;:::-;82965:112;;83088:18;83142:1;83127:12;:16;83123:526;;;83173:30;83199:3;83173:21;:13:::0;83191:2:::1;83173:17;:21::i;:30::-;83160:43;;83123:526;;;83252:2;83237:12;:17;83233:416;;;83284:30;83310:3;83284:21;:13:::0;83302:2:::1;83284:17;:21::i;83233:416::-;83363:2;83348:12;:17;83344:305;;;83395:30;83421:3;83395:21;:13:::0;83413:2:::1;83395:17;:21::i;83344:305::-;83474:3;83459:12;:18;83455:194;;;83507:30;83533:3;83507:21;:13:::0;83525:2:::1;83507:17;:21::i;83455:194::-;83595:30;83621:3;83595:21;:13:::0;83613:2:::1;83595:17;:21::i;:30::-;83582:43;;83455:194;83661:19;83683:29;:13:::0;83701:10;83683:17:::1;:29::i;:::-;83661:51;;83798:1;83783:12;:16;83779:461;;;83821:39;::::0;;3280:25:1;;;3336:2;3321:18;;3314:34;;;83821:39:0::1;::::0;3253:18:1;83821:39:0::1;;;;;;;;83779:461;;;83897:2;83882:12;:17;83878:362;;;83921:38;::::0;;3280:25:1;;;3336:2;3321:18;;3314:34;;;83921:38:0::1;::::0;3253:18:1;83921:38:0::1;3106:248:1::0;83878:362:0::1;83996:2;83981:12;:17;83977:263;;;84020:35;::::0;;3280:25:1;;;3336:2;3321:18;;3314:34;;;84020:35:0::1;::::0;3253:18:1;84020:35:0::1;3106:248:1::0;83977:263:0::1;84092:3;84077:12;:18;84073:167;;;84117:37;::::0;;3280:25:1;;;3336:2;3321:18;;3314:34;;;84117:37:0::1;::::0;3253:18:1;84117:37:0::1;3106:248:1::0;84073:167:0::1;84192:36;::::0;;3280:25:1;;;3336:2;3321:18;;3314:34;;;84192:36:0::1;::::0;3253:18:1;84192:36:0::1;;;;;;;84073:167;84260:10;84281:1;84252:19:::0;;;:7:::1;:19;::::0;;;;;:26:::1;::::0;::::1;:30:::0;;;;84325:15:::1;84293:47:::0;;;84353:11:::1;::::0;84390:20:::1;::::0;84353:83;;-1:-1:-1;;;84353:83:0;;::::1;::::0;::::1;11333:34:1::0;;;;-1:-1:-1;;;;;84390:20:0;;::::1;11383:18:1::0;;;11376:43;11435:18;;;11428:34;;;11478:18;;;11471:34;;;84353:11:0::1;::::0;:24:::1;::::0;11267:19:1;;84353:83:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;82738:1706;;;;82700:1744::o:0;71981:233::-;72056:7;72092:30;71879:10;:17;;71791:113;72092:30;72084:5;:38;72076:95;;;;-1:-1:-1;;;72076:95:0;;11718:2:1;72076:95:0;;;11700:21:1;11757:2;11737:18;;;11730:30;11796:34;11776:18;;;11769:62;-1:-1:-1;;;11847:18:1;;;11840:42;11899:19;;72076:95:0;11516:408:1;72076:95:0;72189:10;72200:5;72189:17;;;;;;;;:::i;:::-;;;;;;;;;72182:24;;71981:233;;;:::o;85357:218::-;31775:13;:11;:13::i;:::-;85440:12:::1;::::0;:37:::1;::::0;-1:-1:-1;;;85440:37:0;;85471:4:::1;85440:37;::::0;::::1;1679:51:1::0;85481:6:0;;-1:-1:-1;;;;;85440:12:0::1;::::0;:22:::1;::::0;1652:18:1;;85440:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;85432:86;;;::::0;-1:-1:-1;;;85432:86:0;;12452:2:1;85432:86:0::1;::::0;::::1;12434:21:1::0;12491:2;12471:18;;;12464:30;12530:28;12510:18;;;12503:56;12576:18;;85432:86:0::1;12250:350:1::0;85432:86:0::1;85529:12;::::0;-1:-1:-1;;;;;85529:12:0::1;:21;85551:7;31962:6:::0;;-1:-1:-1;;;;;31962:6:0;;31889:87;85551:7:::1;85529:38;::::0;-1:-1:-1;;;;;;85529:38:0::1;::::0;;;;;;-1:-1:-1;;;;;12797:32:1;;;85529:38:0::1;::::0;::::1;12779:51:1::0;12846:18;;;12839:34;;;12752:18;;85529:38:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;85357:218:::0;:::o;54910:223::-;54982:7;59643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59643:16:0;;55046:56;;;;-1:-1:-1;;;55046:56:0;;13336:2:1;55046:56:0;;;13318:21:1;13375:2;13355:18;;;13348:30;-1:-1:-1;;;13394:18:1;;;13387:54;13458:18;;55046:56:0;13134:348:1;79196:706:0;29277:19;:17;:19::i;:::-;78513:4:::1;79264:11;;:24;79256:59;;;::::0;-1:-1:-1;;;79256:59:0;;13689:2:1;79256:59:0::1;::::0;::::1;13671:21:1::0;13728:2;13708:18;;;13701:30;-1:-1:-1;;;13747:18:1;;;13740:52;13809:18;;79256:59:0::1;13487:346:1::0;79256:59:0::1;79372:12;::::0;79334::::1;::::0;:34:::1;::::0;-1:-1:-1;;;79334:34:0;;79357:10:::1;79334:34;::::0;::::1;1679:51:1::0;-1:-1:-1;;;;;79334:12:0;;::::1;::::0;:22:::1;::::0;1652:18:1;;79334:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;79326:97;;;;-1:-1:-1::0;;;79326:97:0::1;;;;;;;:::i;:::-;79495:12;::::0;79442::::1;::::0;:49:::1;::::0;-1:-1:-1;;;79442:49:0;;79465:10:::1;79442:49;::::0;::::1;14453:34:1::0;79485:4:0::1;14503:18:1::0;;;14496:43;-1:-1:-1;;;;;79442:12:0;;::::1;::::0;:22:::1;::::0;14388:18:1;;79442:49:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;79434:106;;;::::0;-1:-1:-1;;;79434:106:0;;14752:2:1;79434:106:0::1;::::0;::::1;14734:21:1::0;14791:2;14771:18;;;14764:30;14830;14810:18;;;14803:58;14878:18;;79434:106:0::1;14550:352:1::0;79434:106:0::1;79553:12;::::0;79599:4:::1;::::0;79606:12:::1;::::0;79553:66:::1;::::0;-1:-1:-1;;;79553:66:0;;79579:10:::1;79553:66;::::0;::::1;15147:34:1::0;-1:-1:-1;;;;;79599:4:0;;::::1;15197:18:1::0;;;15190:43;15249:18;;;15242:34;;;;79553:12:0;::::1;::::0;:25:::1;::::0;15082:18:1;;79553:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;79632:28;79638:2;79642:13;71879:10:::0;:17;;71791:113;79642:13:::1;:17;::::0;79658:1:::1;79642:17;:::i;:::-;79632:5;:28::i;:::-;79687:11;::::0;:18:::1;::::0;79703:1:::1;79687:15;:18::i;:::-;79673:11;:32:::0;79748:12:::1;::::0;79731:47:::1;::::0;79748:29:::1;::::0;79772:4:::1;::::0;79748:19:::1;::::0;79765:1:::1;79748:16;:19::i;:29::-;79731:12;::::0;;:16:::1;:47::i;:::-;79716:12;:62:::0;79805:87:::1;::::0;;;;::::1;::::0;;79841:15:::1;79805:87:::0;;-1:-1:-1;79805:87:0::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;79791:11:0;;::::1;::::0;;:7:::1;:11:::0;;;;;;:101;;;;;;::::1;::::0;;::::1;::::0;79196:706::o;54641:207::-;54713:7;-1:-1:-1;;;;;54741:19:0;;54733:73;;;;-1:-1:-1;;;54733:73:0;;15751:2:1;54733:73:0;;;15733:21:1;15790:2;15770:18;;;15763:30;15829:34;15809:18;;;15802:62;-1:-1:-1;;;15880:18:1;;;15873:39;15929:19;;54733:73:0;15549:405:1;54733:73:0;-1:-1:-1;;;;;;54824:16:0;;;;;:9;:16;;;;;;;54641:207::o;85583:255::-;31775:13;:11;:13::i;:::-;-1:-1:-1;;;;;85685:19:0;::::1;;::::0;;;:7:::1;:19;::::0;;;;:29;:34;;85677:72:::1;;;::::0;-1:-1:-1;;;85677:72:0;;16161:2:1;85677:72:0::1;::::0;::::1;16143:21:1::0;16200:2;16180:18;;;16173:30;16239:27;16219:18;;;16212:55;16284:18;;85677:72:0::1;15959:349:1::0;85677:72:0::1;-1:-1:-1::0;;;;;85791:19:0;::::1;;::::0;;;:7:::1;:19;::::0;;;;:26:::1;;::::0;:39:::1;::::0;85822:7;85791:30:::1;:39::i;:::-;-1:-1:-1::0;;;;;85762:19:0;;::::1;;::::0;;;:7:::1;:19;::::0;;;;:26:::1;;:68:::0;;;;-1:-1:-1;85583:255:0:o;32530:103::-;31775:13;:11;:13::i;:::-;32595:30:::1;32622:1;32595:18;:30::i;82220:472::-:0;29277:19;:17;:19::i;:::-;78652:3:::1;82303:14;;:31;82295:66;;;::::0;-1:-1:-1;;;82295:66:0;;16515:2:1;82295:66:0::1;::::0;::::1;16497:21:1::0;16554:2;16534:18;;;16527:30;-1:-1:-1;;;16573:18:1;;;16566:52;16635:18;;82295:66:0::1;16313:346:1::0;82295:66:0::1;82393:12;;82380:9;:25;82372:63;;;::::0;-1:-1:-1;;;82372:63:0;;16866:2:1;82372:63:0::1;::::0;::::1;16848:21:1::0;16905:2;16885:18;;;16878:30;16944:27;16924:18;;;16917:55;16989:18;;82372:63:0::1;16664:349:1::0;82372:63:0::1;82448:28;82454:2;82458:13;71879:10:::0;:17;;71791:113;82448:28:::1;82503:11;::::0;:18:::1;::::0;82519:1:::1;82503:15;:18::i;:::-;82489:11;:32:::0;82549:14:::1;::::0;:21:::1;::::0;82568:1:::1;82549:18;:21::i;:::-;82532:14;:38:::0;82597:87:::1;::::0;;;;::::1;::::0;;82633:15:::1;82597:87:::0;;-1:-1:-1;82597:87:0::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;82583:11:0;;::::1;::::0;;:7:::1;:11:::0;;;;;;:101;;;;;;::::1;::::0;;::::1;::::0;82220:472::o;85025:84::-;31775:13;:11;:13::i;:::-;85087:4:::1;:14:::0;;-1:-1:-1;;;;;;85087:14:0::1;-1:-1:-1::0;;;;;85087:14:0;;;::::1;::::0;;;::::1;::::0;;85025:84::o;86432:123::-;31775:13;:11;:13::i;:::-;86516:12:::1;:31:::0;86432:123::o;85846:63::-;31775:13;:11;:13::i;:::-;85893:8:::1;:6;:8::i;55369:104::-:0;55425:13;55458:7;55451:14;;;;;:::i;80907:410::-;31775:13;:11;:13::i;:::-;78513:4:::1;80976:11;;:24;80968:59;;;::::0;-1:-1:-1;;;80968:59:0;;13689:2:1;80968:59:0::1;::::0;::::1;13671:21:1::0;13728:2;13708:18;;;13701:30;-1:-1:-1;;;13747:18:1;;;13740:52;13809:18;;80968:59:0::1;13487:346:1::0;80968:59:0::1;81068:28;81074:2;81078:13;71879:10:::0;:17;;71791:113;81068:28:::1;81123:11;::::0;:18:::1;::::0;81139:1:::1;81123:15;:18::i;:::-;81109:11;:32:::0;81222:87:::1;::::0;;;;::::1;::::0;;81258:15:::1;81222:87:::0;;-1:-1:-1;81222:87:0::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;81208:11:0;;::::1;::::0;;:7:::1;:11:::0;;;;;;:101;;;;;;::::1;::::0;;::::1;::::0;80907:410::o;85117:108::-;31775:13;:11;:13::i;:::-;85185:22:::1;:32:::0;85117:108::o;56955:155::-;57050:52;27865:10;57083:8;57093;57050:18;:52::i;85233:116::-;31775:13;:11;:13::i;:::-;31962:6;;85293:48:::1;::::0;-1:-1:-1;;;;;31962:6:0;;;;85319:21:::1;85293:48:::0;::::1;;;::::0;::::1;::::0;;;85319:21;31962:6;85293:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;85233:116::o:0;79910:989::-;29277:19;:17;:19::i;:::-;80015:1:::1;80004:8;:12;79996:51;;;::::0;-1:-1:-1;;;79996:51:0;;17220:2:1;79996:51:0::1;::::0;::::1;17202:21:1::0;17259:2;17239:18;;;17232:30;17298:28;17278:18;;;17271:56;17344:18;;79996:51:0::1;17018:350:1::0;79996:51:0::1;80066:11;::::0;78513:4:::1;::::0;80066:25:::1;::::0;80082:8;80066:15:::1;:25::i;:::-;:39;;80058:74;;;::::0;-1:-1:-1;;;80058:74:0;;17575:2:1;80058:74:0::1;::::0;::::1;17557:21:1::0;17614:2;17594:18;;;17587:30;-1:-1:-1;;;17633:18:1;;;17626:52;17695:18;;80058:74:0::1;17373:346:1::0;80058:74:0::1;80165:12;::::0;80144:18:::1;::::0;80165:26:::1;::::0;80182:8;80165:16:::1;:26::i;:::-;80220:12;::::0;:34:::1;::::0;-1:-1:-1;;;80220:34:0;;80243:10:::1;80220:34;::::0;::::1;1679:51:1::0;80144:47:0;;-1:-1:-1;80144:47:0;;-1:-1:-1;;;;;80220:12:0;;::::1;::::0;:22:::1;::::0;1652:18:1;;80220:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;80212:95;;;;-1:-1:-1::0;;;80212:95:0::1;;;;;;;:::i;:::-;80326:12;::::0;:49:::1;::::0;-1:-1:-1;;;80326:49:0;;80349:10:::1;80326:49;::::0;::::1;14453:34:1::0;80369:4:0::1;14503:18:1::0;;;14496:43;80379:10:0;;-1:-1:-1;;;;;80326:12:0::1;::::0;:22:::1;::::0;14388:18:1;;80326:49:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;80318:104;;;::::0;-1:-1:-1;;;80318:104:0;;14752:2:1;80318:104:0::1;::::0;::::1;14734:21:1::0;14791:2;14771:18;;;14764:30;14830;14810:18;;;14803:58;14878:18;;80318:104:0::1;14550:352:1::0;80318:104:0::1;80435:12;::::0;80481:4:::1;::::0;80435:64:::1;::::0;-1:-1:-1;;;80435:64:0;;80461:10:::1;80435:64;::::0;::::1;15147:34:1::0;-1:-1:-1;;;;;80481:4:0;;::::1;15197:18:1::0;;;15190:43;15249:18;;;15242:34;;;80435:12:0;::::1;::::0;:25:::1;::::0;15082:18:1;;80435:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;80517:9;80512:141;80536:8;80532:1;:12;80512:141;;;80566:28;80572:2;80576:13;71879:10:::0;:17;;71791:113;80566:28:::1;80623:11;::::0;:18:::1;::::0;80639:1:::1;80623:15;:18::i;:::-;80609:11;:32:::0;80546:3;::::1;::::0;::::1;:::i;:::-;;;;80512:141;;;;80680:61;80697:43;80731:8;80697:29;80721:4;80697:19;80714:1;80697:12;;:16;;:19;;;;:::i;80680:61::-;80665:12;:76:::0;-1:-1:-1;;80804:87:0::1;::::0;;;;::::1;::::0;;80840:15:::1;80804:87:::0;;-1:-1:-1;80804:87:0::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;80790:11:0;;::::1;::::0;;:7:::1;:11:::0;;;;;;:101;;;;;;::::1;::::0;;::::1;::::0;79910:989::o;58006:279::-;58137:41;27865:10;58170:7;58137:18;:41::i;:::-;58129:99;;;;-1:-1:-1;;;58129:99:0;;;;;;;:::i;:::-;58239:38;58253:4;58259:2;58263:7;58272:4;58239:13;:38::i;:::-;58006:279;;;;:::o;78917:271::-;78990:13;79016:18;79037:10;:8;:10::i;:::-;79016:31;;79086:1;79071:4;79065:18;:22;:115;;;;;;;;;;;;;;;;;79127:4;79133:18;:7;:16;:18::i;:::-;79110:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79065:115;79058:122;78917:271;-1:-1:-1;;;78917:271:0:o;81325:887::-;31775:13;:11;:13::i;:::-;81469:10:::1;:17;81448:10;:17;:38;81440:68;;;::::0;-1:-1:-1;;;81440:68:0;;18734:2:1;81440:68:0::1;::::0;::::1;18716:21:1::0;18773:2;18753:18;;;18746:30;-1:-1:-1;;;18792:18:1;;;18785:47;18849:18;;81440:68:0::1;18532:341:1::0;81440:68:0::1;81526:9;81521:684;81545:10;:17;81541:1;:21;81521:684;;;81584:10;81597;81608:1;81597:13;;;;;;;;:::i;:::-;;;;;;;81584:26;;81625:16;81644:10;81655:1;81644:13;;;;;;;;:::i;:::-;;;;;;;81625:32;;78513:4;81682:25;81698:8;81682:11;;:15;;:25;;;;:::i;:::-;:39;;81674:74;;;::::0;-1:-1:-1;;;81674:74:0;;17575:2:1;81674:74:0::1;::::0;::::1;17557:21:1::0;17614:2;17594:18;;;17587:30;-1:-1:-1;;;17633:18:1;;;17626:52;17695:18;;81674:74:0::1;17373:346:1::0;81674:74:0::1;81770:9;81765:153;81789:8;81785:1;:12;81765:153;;;81823:28;81829:2;81833:13;71879:10:::0;:17;;71791:113;81823:28:::1;81884:11;::::0;:18:::1;::::0;81900:1:::1;81884:15;:18::i;:::-;81870:11;:32:::0;81799:3;::::1;::::0;::::1;:::i;:::-;;;;81765:153;;;-1:-1:-1::0;;;;;;82006:11:0;::::1;;::::0;;;:7:::1;:11;::::0;;;;:21;:26;;82002:192:::1;;82067:111;::::0;;;;::::1;::::0;;82111:15:::1;82067:111:::0;;-1:-1:-1;82067:111:0::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;82053:11:0;::::1;::::0;;:7:::1;:11:::0;;;;;;:125;;;;;;::::1;::::0;;::::1;::::0;82002:192:::1;81569:636;;81564:3;;;;;:::i;:::-;;;;81521:684;;32788:201:::0;31775:13;:11;:13::i;:::-;-1:-1:-1;;;;;32877:22:0;::::1;32869:73;;;::::0;-1:-1:-1;;;32869:73:0;;19080:2:1;32869:73:0::1;::::0;::::1;19062:21:1::0;19119:2;19099:18;;;19092:30;19158:34;19138:18;;;19131:62;-1:-1:-1;;;19209:18:1;;;19202:36;19255:19;;32869:73:0::1;18878:402:1::0;32869:73:0::1;32953:28;32972:8;32953:18;:28::i;54272:305::-:0;54374:4;-1:-1:-1;;;;;;54411:40:0;;-1:-1:-1;;;54411:40:0;;:105;;-1:-1:-1;;;;;;;54468:48:0;;-1:-1:-1;;;54468:48:0;54411:105;:158;;;-1:-1:-1;;;;;;;;;;45925:40:0;;;54533:36;45816:157;66275:135;60045:4;59643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59643:16:0;66349:53;;;;-1:-1:-1;;;66349:53:0;;13336:2:1;66349:53:0;;;13318:21:1;13375:2;13355:18;;;13348:30;-1:-1:-1;;;13394:18:1;;;13387:54;13458:18;;66349:53:0;13134:348:1;65588:174:0;65663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;65663:29:0;-1:-1:-1;;;;;65663:29:0;;;;;;;;:24;;65717:23;65663:24;65717:14;:23::i;:::-;-1:-1:-1;;;;;65708:46:0;;;;;;;;;;;65588:174;;:::o;32054:132::-;31962:6;;-1:-1:-1;;;;;31962:6:0;27865:10;32118:23;32110:68;;;;-1:-1:-1;;;32110:68:0;;19487:2:1;32110:68:0;;;19469:21:1;;;19506:18;;;19499:30;19565:34;19545:18;;;19538:62;19617:18;;32110:68:0;19285:356:1;60275:264:0;60368:4;60385:13;60401:23;60416:7;60401:14;:23::i;:::-;60385:39;;60454:5;-1:-1:-1;;;;;60443:16:0;:7;-1:-1:-1;;;;;60443:16:0;;:52;;;-1:-1:-1;;;;;;57302:25:0;;;57278:4;57302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;60463:32;60443:87;;;;60523:7;-1:-1:-1;;;;;60499:31:0;:20;60511:7;60499:11;:20::i;:::-;-1:-1:-1;;;;;60499:31:0;;60435:96;60275:264;-1:-1:-1;;;;60275:264:0:o;64240:1229::-;64365:4;-1:-1:-1;;;;;64338:31:0;:23;64353:7;64338:14;:23::i;:::-;-1:-1:-1;;;;;64338:31:0;;64330:81;;;;-1:-1:-1;;;64330:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64430:16:0;;64422:65;;;;-1:-1:-1;;;64422:65:0;;20254:2:1;64422:65:0;;;20236:21:1;20293:2;20273:18;;;20266:30;20332:34;20312:18;;;20305:62;-1:-1:-1;;;20383:18:1;;;20376:34;20427:19;;64422:65:0;20052:400:1;64422:65:0;64500:42;64521:4;64527:2;64531:7;64540:1;64500:20;:42::i;:::-;64672:4;-1:-1:-1;;;;;64645:31:0;:23;64660:7;64645:14;:23::i;:::-;-1:-1:-1;;;;;64645:31:0;;64637:81;;;;-1:-1:-1;;;64637:81:0;;;;;;;:::i;:::-;64790:24;;;;:15;:24;;;;;;;;64783:31;;-1:-1:-1;;;;;;64783:31:0;;;;;;-1:-1:-1;;;;;65266:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;65266:20:0;;;65301:13;;;;;;;;;:18;;64783:31;65301:18;;;65341:16;;;:7;:16;;;;;;:21;;;;;;;;;;65380:27;;64806:7;;65380:27;;;56300:346;56230:416;;:::o;30527:120::-;29536:16;:14;:16::i;:::-;30586:7:::1;:15:::0;;-1:-1:-1;;;;30586:15:0::1;::::0;;30617:22:::1;27865:10:::0;30626:12:::1;30617:22;::::0;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;30617:22:0::1;;;;;;;30527:120::o:0;3257:98::-;3315:7;3342:5;3346:1;3342;:5;:::i;3614:98::-;3672:7;3699:5;3703:1;3699;:5;:::i;4013:98::-;4071:7;4098:5;4102:1;4098;:5;:::i;2876:98::-;2934:7;2961:5;2965:1;2961;:5;:::i;29831:108::-;29743:7;;-1:-1:-1;;;29743:7:0;;;;29901:9;29893:38;;;;-1:-1:-1;;;29893:38:0;;21090:2:1;29893:38:0;;;21072:21:1;21129:2;21109:18;;;21102:30;-1:-1:-1;;;21148:18:1;;;21141:46;21204:18;;29893:38:0;20888:340:1;61839:942:0;-1:-1:-1;;;;;61919:16:0;;61911:61;;;;-1:-1:-1;;;61911:61:0;;21435:2:1;61911:61:0;;;21417:21:1;;;21454:18;;;21447:30;21513:34;21493:18;;;21486:62;21565:18;;61911:61:0;21233:356:1;61911:61:0;60045:4;59643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59643:16:0;60069:31;61983:58;;;;-1:-1:-1;;;61983:58:0;;21796:2:1;61983:58:0;;;21778:21:1;21835:2;21815:18;;;21808:30;21874;21854:18;;;21847:58;21922:18;;61983:58:0;21594:352:1;61983:58:0;62054:48;62083:1;62087:2;62091:7;62100:1;62054:20;:48::i;:::-;60045:4;59643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;59643:16:0;60069:31;62192:58;;;;-1:-1:-1;;;62192:58:0;;21796:2:1;62192:58:0;;;21778:21:1;21835:2;21815:18;;;21808:30;21874;21854:18;;;21847:58;21922:18;;62192:58:0;21594:352:1;62192:58:0;-1:-1:-1;;;;;62599:13:0;;;;;;:9;:13;;;;;;;;:18;;62616:1;62599:18;;;62641:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;62641:21:0;;;;;62680:33;62649:7;;62599:13;;62680:33;;62599:13;;62680:33;85529:38:::1;85357:218:::0;:::o;33149:191::-;33242:6;;;-1:-1:-1;;;;;33259:17:0;;;-1:-1:-1;;;;;;33259:17:0;;;;;;;33292:40;;33242:6;;;33259:17;33242:6;;33292:40;;33223:16;;33292:40;33212:128;33149:191;:::o;30268:118::-;29277:19;:17;:19::i;:::-;30328:7:::1;:14:::0;;-1:-1:-1;;;;30328:14:0::1;-1:-1:-1::0;;;30328:14:0::1;::::0;;30358:20:::1;30365:12;27865:10:::0;;27785:98;65905:281;66026:8;-1:-1:-1;;;;;66017:17:0;:5;-1:-1:-1;;;;;66017:17:0;;66009:55;;;;-1:-1:-1;;;66009:55:0;;22153:2:1;66009:55:0;;;22135:21:1;22192:2;22172:18;;;22165:30;22231:27;22211:18;;;22204:55;22276:18;;66009:55:0;21951:349:1;66009:55:0;-1:-1:-1;;;;;66075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;66075:46:0;;;;;;;;;;66137:41;;540::1;;;66137::0;;513:18:1;66137:41:0;;;;;;;65905:281;;;:::o;59166:270::-;59279:28;59289:4;59295:2;59299:7;59279:9;:28::i;:::-;59326:47;59349:4;59355:2;59359:7;59368:4;59326:22;:47::i;:::-;59318:110;;;;-1:-1:-1;;;59318:110:0;;;;;;;:::i;78803:106::-;78855:13;78888;;;;;;;;;;;;;;;;;78881:20;;78803:106;:::o;24704:716::-;24760:13;24811:14;24828:17;24839:5;24828:10;:17::i;:::-;24848:1;24828:21;24811:38;;24864:20;24898:6;24887:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24887:18:0;-1:-1:-1;24864:41:0;-1:-1:-1;25029:28:0;;;25045:2;25029:28;25086:288;-1:-1:-1;;25118:5:0;-1:-1:-1;;;25255:2:0;25244:14;;25239:30;25118:5;25226:44;25316:2;25307:11;;;-1:-1:-1;25337:21:0;25086:288;25337:21;-1:-1:-1;25395:6:0;24704:716;-1:-1:-1;;;24704:716:0:o;72288:915::-;72555:1;72543:9;:13;72539:222;;;72686:63;;-1:-1:-1;;;72686:63:0;;22926:2:1;72686:63:0;;;22908:21:1;22965:2;22945:18;;;22938:30;23004:34;22984:18;;;22977:62;-1:-1:-1;;;23055:18:1;;;23048:51;23116:19;;72686:63:0;22724:417:1;72539:222:0;72791:12;-1:-1:-1;;;;;72820:18:0;;72816:187;;72855:40;72887:7;74030:10;:17;;74003:24;;;;:15;:24;;;;;:44;;;74058:24;;;;;;;;;;;;73926:164;72855:40;72816:187;;;72925:2;-1:-1:-1;;;;;72917:10:0;:4;-1:-1:-1;;;;;72917:10:0;;72913:90;;72944:47;72977:4;72983:7;72944:32;:47::i;:::-;-1:-1:-1;;;;;73017:16:0;;73013:183;;73050:45;73087:7;73050:36;:45::i;:::-;73013:183;;;73123:4;-1:-1:-1;;;;;73117:10:0;:2;-1:-1:-1;;;;;73117:10:0;;73113:83;;73144:40;73172:2;73176:7;73144:27;:40::i;:::-;72454:749;72288:915;;;;:::o;30016:108::-;29743:7;;-1:-1:-1;;;29743:7:0;;;;30075:41;;;;-1:-1:-1;;;30075:41:0;;23348:2:1;30075:41:0;;;23330:21:1;23387:2;23367:18;;;23360:30;-1:-1:-1;;;23406:18:1;;;23399:50;23466:18;;30075:41:0;23146:344:1;66974:853:0;67128:4;-1:-1:-1;;;;;67149:13:0;;35116:19;:23;67145:675;;67185:71;;-1:-1:-1;;;67185:71:0;;-1:-1:-1;;;;;67185:36:0;;;;;:71;;27865:10;;67236:4;;67242:7;;67251:4;;67185:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67185:71:0;;;;;;;;-1:-1:-1;;67185:71:0;;;;;;;;;;;;:::i;:::-;;;67181:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67426:6;:13;67443:1;67426:18;67422:328;;67469:60;;-1:-1:-1;;;67469:60:0;;;;;;;:::i;67422:328::-;67700:6;67694:13;67685:6;67681:2;67677:15;67670:38;67181:584;-1:-1:-1;;;;;;67307:51:0;-1:-1:-1;;;67307:51:0;;-1:-1:-1;67300:58:0;;67145:675;-1:-1:-1;67804:4:0;66974:853;;;;;;:::o;21538:948::-;21591:7;;-1:-1:-1;;;21669:17:0;;21665:106;;-1:-1:-1;;;21707:17:0;;;-1:-1:-1;21753:2:0;21743:12;21665:106;21798:8;21789:5;:17;21785:106;;21836:8;21827:17;;;-1:-1:-1;21873:2:0;21863:12;21785:106;21918:8;21909:5;:17;21905:106;;21956:8;21947:17;;;-1:-1:-1;21993:2:0;21983:12;21905:106;22038:7;22029:5;:16;22025:103;;22075:7;22066:16;;;-1:-1:-1;22111:1:0;22101:11;22025:103;22155:7;22146:5;:16;22142:103;;22192:7;22183:16;;;-1:-1:-1;22228:1:0;22218:11;22142:103;22272:7;22263:5;:16;22259:103;;22309:7;22300:16;;;-1:-1:-1;22345:1:0;22335:11;22259:103;22389:7;22380:5;:16;22376:68;;22427:1;22417:11;22472:6;21538:948;-1:-1:-1;;21538:948:0:o;74717:988::-;74983:22;75033:1;75008:22;75025:4;75008:16;:22::i;:::-;:26;;;;:::i;:::-;75045:18;75066:26;;;:17;:26;;;;;;74983:51;;-1:-1:-1;75199:28:0;;;75195:328;;-1:-1:-1;;;;;75266:18:0;;75244:19;75266:18;;;:12;:18;;;;;;;;:34;;;;;;;;;75317:30;;;;;;:44;;;75434:30;;:17;:30;;;;;:43;;;75195:328;-1:-1:-1;75619:26:0;;;;:17;:26;;;;;;;;75612:33;;;-1:-1:-1;;;;;75663:18:0;;;;;:12;:18;;;;;:34;;;;;;;75656:41;74717:988::o;76000:1079::-;76278:10;:17;76253:22;;76278:21;;76298:1;;76278:21;:::i;:::-;76310:18;76331:24;;;:15;:24;;;;;;76704:10;:26;;76253:46;;-1:-1:-1;76331:24:0;;76253:46;;76704:26;;;;;;:::i;:::-;;;;;;;;;76682:48;;76768:11;76743:10;76754;76743:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;76848:28;;;:15;:28;;;;;;;:41;;;77020:24;;;;;77013:31;77055:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;76071:1008;;;76000:1079;:::o;73504:221::-;73589:14;73606:20;73623:2;73606:16;:20::i;:::-;-1:-1:-1;;;;;73637:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;73682:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;73504:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;3359:118::-;3445:5;3438:13;3431:21;3424:5;3421:32;3411:60;;3467:1;3464;3457:12;3482:315;3547:6;3555;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3647:29;3666:9;3647:29;:::i;:::-;3637:39;;3726:2;3715:9;3711:18;3698:32;3739:28;3761:5;3739:28;:::i;:::-;3786:5;3776:15;;;3482:315;;;;;:::o;3802:127::-;3863:10;3858:3;3854:20;3851:1;3844:31;3894:4;3891:1;3884:15;3918:4;3915:1;3908:15;3934:275;4005:2;3999:9;4070:2;4051:13;;-1:-1:-1;;4047:27:1;4035:40;;4105:18;4090:34;;4126:22;;;4087:62;4084:88;;;4152:18;;:::i;:::-;4188:2;4181:22;3934:275;;-1:-1:-1;3934:275:1:o;4214:980::-;4309:6;4317;4325;4333;4386:3;4374:9;4365:7;4361:23;4357:33;4354:53;;;4403:1;4400;4393:12;4354:53;4426:29;4445:9;4426:29;:::i;:::-;4416:39;;4474:2;4495:38;4529:2;4518:9;4514:18;4495:38;:::i;:::-;4485:48;;4580:2;4569:9;4565:18;4552:32;4542:42;;4635:2;4624:9;4620:18;4607:32;4658:18;4699:2;4691:6;4688:14;4685:34;;;4715:1;4712;4705:12;4685:34;4753:6;4742:9;4738:22;4728:32;;4798:7;4791:4;4787:2;4783:13;4779:27;4769:55;;4820:1;4817;4810:12;4769:55;4856:2;4843:16;4878:2;4874;4871:10;4868:36;;;4884:18;;:::i;:::-;4926:53;4969:2;4950:13;;-1:-1:-1;;4946:27:1;4942:36;;4926:53;:::i;:::-;4913:66;;5002:2;4995:5;4988:17;5042:7;5037:2;5032;5028;5024:11;5020:20;5017:33;5014:53;;;5063:1;5060;5053:12;5014:53;5118:2;5113;5109;5105:11;5100:2;5093:5;5089:14;5076:45;5162:1;5157:2;5152;5145:5;5141:14;5137:23;5130:34;;5183:5;5173:15;;;;;4214:980;;;;;;;:::o;5199:183::-;5259:4;5292:18;5284:6;5281:30;5278:56;;;5314:18;;:::i;:::-;-1:-1:-1;5359:1:1;5355:14;5371:4;5351:25;;5199:183::o;5387:662::-;5441:5;5494:3;5487:4;5479:6;5475:17;5471:27;5461:55;;5512:1;5509;5502:12;5461:55;5548:6;5535:20;5574:4;5598:60;5614:43;5654:2;5614:43;:::i;:::-;5598:60;:::i;:::-;5692:15;;;5778:1;5774:10;;;;5762:23;;5758:32;;;5723:12;;;;5802:15;;;5799:35;;;5830:1;5827;5820:12;5799:35;5866:2;5858:6;5854:15;5878:142;5894:6;5889:3;5886:15;5878:142;;;5960:17;;5948:30;;5998:12;;;;5911;;5878:142;;;-1:-1:-1;6038:5:1;5387:662;-1:-1:-1;;;;;;5387:662:1:o;6054:1146::-;6172:6;6180;6233:2;6221:9;6212:7;6208:23;6204:32;6201:52;;;6249:1;6246;6239:12;6201:52;6289:9;6276:23;6318:18;6359:2;6351:6;6348:14;6345:34;;;6375:1;6372;6365:12;6345:34;6413:6;6402:9;6398:22;6388:32;;6458:7;6451:4;6447:2;6443:13;6439:27;6429:55;;6480:1;6477;6470:12;6429:55;6516:2;6503:16;6538:4;6562:60;6578:43;6618:2;6578:43;:::i;6562:60::-;6656:15;;;6738:1;6734:10;;;;6726:19;;6722:28;;;6687:12;;;;6762:19;;;6759:39;;;6794:1;6791;6784:12;6759:39;6818:11;;;;6838:148;6854:6;6849:3;6846:15;6838:148;;;6920:23;6939:3;6920:23;:::i;:::-;6908:36;;6871:12;;;;6964;;;;6838:148;;;7005:5;-1:-1:-1;;7048:18:1;;7035:32;;-1:-1:-1;;7079:16:1;;;7076:36;;;7108:1;7105;7098:12;7076:36;;7131:63;7186:7;7175:8;7164:9;7160:24;7131:63;:::i;:::-;7121:73;;;6054:1146;;;;;:::o;7434:260::-;7502:6;7510;7563:2;7551:9;7542:7;7538:23;7534:32;7531:52;;;7579:1;7576;7569:12;7531:52;7602:29;7621:9;7602:29;:::i;:::-;7592:39;;7650:38;7684:2;7673:9;7669:18;7650:38;:::i;:::-;7640:48;;7434:260;;;;;:::o;7699:380::-;7778:1;7774:12;;;;7821;;;7842:61;;7896:4;7888:6;7884:17;7874:27;;7842:61;7949:2;7941:6;7938:14;7918:18;7915:38;7912:161;;7995:10;7990:3;7986:20;7983:1;7976:31;8030:4;8027:1;8020:15;8058:4;8055:1;8048:15;7912:161;;7699:380;;;:::o;8916:409::-;9118:2;9100:21;;;9157:2;9137:18;;;9130:30;9196:34;9191:2;9176:18;;9169:62;-1:-1:-1;;;9262:2:1;9247:18;;9240:43;9315:3;9300:19;;8916:409::o;10815:127::-;10876:10;10871:3;10867:20;10864:1;10857:31;10907:4;10904:1;10897:15;10931:4;10928:1;10921:15;10947:112;10979:1;11005;10995:35;;11010:18;;:::i;:::-;-1:-1:-1;11044:9:1;;10947:112::o;11929:127::-;11990:10;11985:3;11981:20;11978:1;11971:31;12021:4;12018:1;12011:15;12045:4;12042:1;12035:15;12061:184;12131:6;12184:2;12172:9;12163:7;12159:23;12155:32;12152:52;;;12200:1;12197;12190:12;12152:52;-1:-1:-1;12223:16:1;;12061:184;-1:-1:-1;12061:184:1:o;12884:245::-;12951:6;13004:2;12992:9;12983:7;12979:23;12975:32;12972:52;;;13020:1;13017;13010:12;12972:52;13052:9;13046:16;13071:28;13093:5;13071:28;:::i;13838:398::-;14040:2;14022:21;;;14079:2;14059:18;;;14052:30;14118:34;14113:2;14098:18;;14091:62;-1:-1:-1;;;14184:2:1;14169:18;;14162:32;14226:3;14211:19;;13838:398::o;15287:127::-;15348:10;15343:3;15339:20;15336:1;15329:31;15379:4;15376:1;15369:15;15403:4;15400:1;15393:15;15419:125;15484:9;;;15505:10;;;15502:36;;;15518:18;;:::i;17724:135::-;17763:3;17784:17;;;17781:43;;17804:18;;:::i;:::-;-1:-1:-1;17851:1:1;17840:13;;17724:135::o;17864:663::-;18144:3;18182:6;18176:13;18198:66;18257:6;18252:3;18245:4;18237:6;18233:17;18198:66;:::i;:::-;18327:13;;18286:16;;;;18349:70;18327:13;18286:16;18396:4;18384:17;;18349:70;:::i;:::-;-1:-1:-1;;;18441:20:1;;18470:22;;;18519:1;18508:13;;17864:663;-1:-1:-1;;;;17864:663:1:o;19646:401::-;19848:2;19830:21;;;19887:2;19867:18;;;19860:30;19926:34;19921:2;19906:18;;19899:62;-1:-1:-1;;;19992:2:1;19977:18;;19970:35;20037:3;20022:19;;19646:401::o;20457:128::-;20524:9;;;20545:11;;;20542:37;;;20559:18;;:::i;20590:168::-;20663:9;;;20694;;20711:15;;;20705:22;;20691:37;20681:71;;20732:18;;:::i;20763:120::-;20803:1;20829;20819:35;;20834:18;;:::i;:::-;-1:-1:-1;20868:9:1;;20763:120::o;22305:414::-;22507:2;22489:21;;;22546:2;22526:18;;;22519:30;22585:34;22580:2;22565:18;;22558:62;-1:-1:-1;;;22651:2:1;22636:18;;22629:48;22709:3;22694:19;;22305:414::o;23495:489::-;-1:-1:-1;;;;;23764:15:1;;;23746:34;;23816:15;;23811:2;23796:18;;23789:43;23863:2;23848:18;;23841:34;;;23911:3;23906:2;23891:18;;23884:31;;;23689:4;;23932:46;;23958:19;;23950:6;23932:46;:::i;:::-;23924:54;23495:489;-1:-1:-1;;;;;;23495:489:1:o;23989:249::-;24058:6;24111:2;24099:9;24090:7;24086:23;24082:32;24079:52;;;24127:1;24124;24117:12;24079:52;24159:9;24153:16;24178:30;24202:5;24178:30;:::i;24243:127::-;24304:10;24299:3;24295:20;24292:1;24285:31;24335:4;24332:1;24325:15;24359:4;24356:1;24349:15

Swarm Source

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