ETH Price: $3,024.09 (+3.17%)
Gas: 2 Gwei

Token

Pepe Gangz (GANGZ)
 

Overview

Max Total Supply

2,000,000,000,000 GANGZ

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.79953759356534913 GANGZ

Value
$0.00
0x05e63b6d63576afc9f982438e207af8c9da34614
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:
PepeGangzToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: GANGZ.sol


pragma solidity ^0.8.0;




contract PepeGangzToken is ERC20, ERC20Snapshot, Ownable {
    mapping(address => uint8) public team; // 0: not assigned, 1: blue, 2: red
    mapping(address => bool) public excludesFromTeam;
    uint256 public blueScore;
    uint256 public redScore;

    address public lp;
    address public burnAddr = address(0x000000000000000000000000000000000000dEaD);
    uint8 public lastAssignedTeam;

    constructor() ERC20("Pepe Gangz ", "GANGZ") {
        excludesFromTeam[msg.sender] = true;
        delete team[msg.sender];
        
        excludesFromTeam[burnAddr] = true;

        lastAssignedTeam = 2; // init with red, so first team will be blue

        _mint(msg.sender, 2000000000000 * 10 ** 18);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Snapshot) {
        super._beforeTokenTransfer(from, to, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(lp != address(0) || sender == owner() || recipient == owner(), "LP must be set before transfers can occur");

        // assign team if recipient doesn't have one
        if (team[recipient] == 0 && !excludesFromTeam[recipient]) {
            if (!excludesFromTeam[sender]) {
                team[recipient] = team[sender];
            } else {
                lastAssignedTeam = (lastAssignedTeam == 1) ? 2 : 1;
                team[recipient] = lastAssignedTeam;
            }
        }

        // if sender is the owner, adjust the score of the recipient's team
        if (sender == owner() && team[recipient] != 0) {
            if (team[recipient] == 1) {
                blueScore += amount;
            } else if (team[recipient] == 2) {
                redScore += amount;
            }
        }

        if (!excludesFromTeam[sender] && !excludesFromTeam[recipient]) {
            require(team[recipient] == team[sender], "No dice, traitor! Can't send tokens to the rival gang, ya dig?");
        }

        // update score process
        if ((sender == lp && team[recipient] != 0) || (recipient == lp && team[sender] != 0)) {
            uint256 scoreChange = amount;
            uint8 recipientTeam = team[recipient];

            if (sender == lp) {
                // increase score if buy
                if (recipientTeam == 1) {
                    blueScore += scoreChange;
                } else if (recipientTeam == 2) {
                    redScore += scoreChange;
                }
            } else if (recipient == lp) {
                // decrease score if sell
                uint8 senderTeam = team[sender];
                if (senderTeam == 1) {
                    require(blueScore >= scoreChange, "Underflow protection");
                    blueScore -= scoreChange;
                } else if (senderTeam == 2) {
                    require(redScore >= scoreChange, "Underflow protection");
                    redScore -= scoreChange;
                }
            }
        }

        super._transfer(sender, recipient, amount);
    }

    function snapshot() public onlyOwner returns (uint256) {
        return _snapshot();
    }

    function switchGang() public {
        require(team[msg.sender] != 0, "No gang, bro? Find your turf first!");

        uint256 balance = ERC20(address(this)).balanceOf(msg.sender);
        require(balance >= 2000000 * 10 ** 18, "Not enough tokens to switch gang");

        if (team[msg.sender] == 1) {
            require(blueScore >= balance, "Underflow protection");
            blueScore -= balance;
            redScore += balance - 2000000 * 10 ** 18;
            team[msg.sender] = 2;
        } else {
            require(redScore >= balance, "Underflow protection");
            blueScore += balance - 2000000 * 10 ** 18;
            redScore -= balance;
            team[msg.sender] = 1;
        }

        bool success = ERC20(address(this)).transferFrom(msg.sender, burnAddr, 2000000 * 10 ** 18);
        require(success, "Transfer failed");
    }

    function excludeAddr(address exclude) public onlyOwner {
        excludesFromTeam[exclude] = true;
        delete team[exclude];
    }

    function addLpAddr(address _lp) public onlyOwner {
        lp = _lp;
        excludesFromTeam[_lp] = true;
        delete team[lp];
    }
}

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":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"}],"name":"addLpAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blueScore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"exclude","type":"address"}],"name":"excludeAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludesFromTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastAssignedTeam","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redScore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchGang","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"team","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005457600080fd5b506040518060400160405280600b81526020017f506570652047616e677a200000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47414e475a0000000000000000000000000000000000000000000000000000008152508160039081620000d2919062000a22565b508060049081620000e4919062000a22565b50505062000107620000fb6200026960201b60201c565b6200027160201b60201c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556001600b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002600f60146101000a81548160ff021916908360ff16021790555062000263336c193e5939a08ce9dbd4800000006200033760201b60201c565b62000c8e565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a09062000b6a565b60405180910390fd5b620003bd60008383620004a460201b60201c565b8060026000828254620003d1919062000bbb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000484919062000c07565b60405180910390a3620004a060008383620004c160201b60201c565b5050565b620004bc838383620004c660201b620011001760201c565b505050565b505050565b620004de838383620005bf60201b620011b81760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200053a576200052482620005c460201b60201c565b620005346200062760201b60201c565b620005ba565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000596576200058083620005c460201b60201c565b620005906200062760201b60201c565b620005b9565b620005a783620005c460201b60201c565b620005b882620005c460201b60201c565b5b5b505050565b505050565b62000624600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000618836200064b60201b60201c565b6200069360201b60201c565b50565b6200064960066200063d6200071f60201b60201c565b6200069360201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620006a56200072960201b60201c565b905080620006bc846000016200074760201b60201c565b10156200071a5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b60006200074260086200079a60201b620011bd1760201c565b905090565b6000808280549050036200075f576000905062000795565b816001838054905062000773919062000c24565b8154811062000787576200078662000c5f565b5b906000526020600020015490505b919050565b600081600001549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200082a57607f821691505b60208210810362000840576200083f620007e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200086b565b620008b686836200086b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000903620008fd620008f784620008ce565b620008d8565b620008ce565b9050919050565b6000819050919050565b6200091f83620008e2565b620009376200092e826200090a565b84845462000878565b825550505050565b600090565b6200094e6200093f565b6200095b81848462000914565b505050565b5b8181101562000983576200097760008262000944565b60018101905062000961565b5050565b601f821115620009d2576200099c8162000846565b620009a7846200085b565b81016020851015620009b7578190505b620009cf620009c6856200085b565b83018262000960565b50505b505050565b600082821c905092915050565b6000620009f760001984600802620009d7565b1980831691505092915050565b600062000a128383620009e4565b9150826002028217905092915050565b62000a2d82620007a8565b67ffffffffffffffff81111562000a495762000a48620007b3565b5b62000a55825462000811565b62000a6282828562000987565b600060209050601f83116001811462000a9a576000841562000a85578287015190505b62000a91858262000a04565b86555062000b01565b601f19841662000aaa8662000846565b60005b8281101562000ad45784890151825560018201915060208501945060208101905062000aad565b8683101562000af4578489015162000af0601f891682620009e4565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b52601f8362000b09565b915062000b5f8262000b1a565b602082019050919050565b6000602082019050818103600083015262000b858162000b43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc882620008ce565b915062000bd583620008ce565b925082820190508082111562000bf05762000bef62000b8c565b5b92915050565b62000c0181620008ce565b82525050565b600060208201905062000c1e600083018462000bf6565b92915050565b600062000c3182620008ce565b915062000c3e83620008ce565b925082820390508181111562000c595762000c5862000b8c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6134b48062000c9e6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a7d3bfd511610097578063d246d41111610071578063d246d411146104fc578063dd62ed3e1461051a578063e49478791461054a578063f2fde38b14610554576101a9565b8063a7d3bfd514610492578063a9059cbb146104ae578063c5eadb4c146104de576101a9565b806395d89b41116100d357806395d89b41146103f65780639711715a14610414578063981b24d014610432578063a457c2d714610462576101a9565b806370a082311461039e578063715018a6146103ce5780638da5cb5b146103d8576101a9565b8063313ce567116101665780633e19d3d2116101405780633e19d3d2146103165780634ee2cd7e1461033457806358b8c2d6146103645780635cbb1c6a14610382576101a9565b8063313ce5671461029857806339509351146102b65780633de94925146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a5780632a5c80b31461024a578063313c06a01461027a575b600080fd5b6101b6610570565b6040516101c39190612690565b60405180910390f35b6101e660048036038101906101e1919061274b565b610602565b6040516101f391906127a6565b60405180910390f35b610204610625565b60405161021191906127d0565b60405180910390f35b610234600480360381019061022f91906127eb565b61062f565b60405161024191906127a6565b60405180910390f35b610264600480360381019061025f919061283e565b61065e565b60405161027191906127a6565b60405180910390f35b61028261067e565b60405161028f919061287a565b60405180910390f35b6102a06106a4565b6040516102ad91906128b1565b60405180910390f35b6102d060048036038101906102cb919061274b565b6106ad565b6040516102dd91906127a6565b60405180910390f35b61030060048036038101906102fb919061283e565b6106e4565b60405161030d91906128b1565b60405180910390f35b61031e610704565b60405161032b91906127d0565b60405180910390f35b61034e6004803603810190610349919061274b565b61070a565b60405161035b91906127d0565b60405180910390f35b61036c61077a565b60405161037991906128b1565b60405180910390f35b61039c6004803603810190610397919061283e565b61078d565b005b6103b860048036038101906103b3919061283e565b61083f565b6040516103c591906127d0565b60405180910390f35b6103d6610887565b005b6103e061089b565b6040516103ed919061287a565b60405180910390f35b6103fe6108c5565b60405161040b9190612690565b60405180910390f35b61041c610957565b60405161042991906127d0565b60405180910390f35b61044c600480360381019061044791906128cc565b61096e565b60405161045991906127d0565b60405180910390f35b61047c6004803603810190610477919061274b565b61099f565b60405161048991906127a6565b60405180910390f35b6104ac60048036038101906104a7919061283e565b610a16565b005b6104c860048036038101906104c3919061274b565b610b2b565b6040516104d591906127a6565b60405180910390f35b6104e6610b4e565b6040516104f391906127d0565b60405180910390f35b610504610b54565b604051610511919061287a565b60405180910390f35b610534600480360381019061052f91906128f9565b610b7a565b60405161054191906127d0565b60405180910390f35b610552610c01565b005b61056e6004803603810190610569919061283e565b61107d565b005b60606003805461057f90612968565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90612968565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b60008061060d6111cb565b905061061a8185856111d3565b600191505092915050565b6000600254905090565b60008061063a6111cb565b905061064785828561139c565b610652858585611428565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106b86111cb565b90506106d98185856106ca8589610b7a565b6106d491906129c8565b6111d3565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600080600061075784600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e86565b915091508161076e576107698561083f565b610770565b805b9250505092915050565b600f60149054906101000a900460ff1681565b610795611f7b565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088f611f7b565b6108996000611ff9565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d490612968565b80601f016020809104026020016040519081016040528092919081815260200182805461090090612968565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610961611f7b565b6109696120bf565b905090565b600080600061097e846006611e86565b91509150816109945761098f610625565b610996565b805b92505050919050565b6000806109aa6111cb565b905060006109b88286610b7a565b9050838110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490612a6e565b60405180910390fd5b610a0a82868684036111d3565b60019250505092915050565b610a1e611f7b565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b600080610b366111cb565b9050610b43818585611428565b600191505092915050565b600c5481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90612b00565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610cce919061287a565b602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190612b35565b90506a01a784379d99db42000000811015610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690612bae565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603610ea15780600c541015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290612c1a565b60405180910390fd5b80600c6000828254610e0d9190612c3a565b925050819055506a01a784379d99db4200000081610e2b9190612c3a565b600d6000828254610e3c91906129c8565b925050819055506002600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550610f88565b80600d541015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612c1a565b60405180910390fd5b6a01a784379d99db4200000081610efd9190612c3a565b600c6000828254610f0e91906129c8565b9250508190555080600d6000828254610f279190612c3a565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b60003073ffffffffffffffffffffffffffffffffffffffff166323b872dd33600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a01a784379d99db420000006040518463ffffffff1660e01b8152600401610ff493929190612cb3565b6020604051808303816000875af1158015611013573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110379190612d16565b905080611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090612d8f565b60405180910390fd5b5050565b611085611f7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90612e21565b60405180910390fd5b6110fd81611ff9565b50565b61110b8383836111b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111555761114882612115565b611150612168565b6111b3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119f5761119283612115565b61119a612168565b6111b2565b6111a883612115565b6111b182612115565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612eb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612f45565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161138f91906127d0565b60405180910390a3505050565b60006113a88484610b7a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114225781811015611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612fb1565b60405180910390fd5b61142184848484036111d3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415806114b8575061148961089b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114f557506114c661089b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613043565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161480156115dd5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561178357600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116dc57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550611782565b6001600f60149054906101000a900460ff1660ff16146116fd576001611700565b60025b600f60146101000a81548160ff021916908360ff160217905550600f60149054906101000a900460ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b5b61178b61089b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561181557506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b15611902576001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361188f5780600c600082825461188391906129c8565b92505081905550611901565b6002600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16036119005780600d60008282546118f891906129c8565b925050819055505b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119a65750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8c57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a82906130d5565b60405180910390fd5b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611b3957506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b80611bed5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611bec57506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b5b15611e765760008190506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cf15760018160ff1603611cc65781600c6000828254611cba91906129c8565b92505081905550611cec565b60028160ff1603611ceb5781600d6000828254611ce391906129c8565b925050819055505b5b611e73565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e72576000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060018160ff1603611e055782600c541015611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90612c1a565b60405180910390fd5b82600c6000828254611df99190612c3a565b92505081905550611e70565b60028160ff1603611e6f5782600d541015611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90612c1a565b60405180910390fd5b82600d6000828254611e679190612c3a565b925050819055505b5b505b5b50505b611e8183838361217c565b505050565b60008060008411611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613141565b60405180910390fd5b611ed46123f2565b841115611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906131ad565b60405180910390fd5b6000611f2e858560000161240390919063ffffffff16565b905083600001805490508103611f4b576000809250925050611f74565b6001846001018281548110611f6357611f626131cd565b5b906000526020600020015492509250505b9250929050565b611f836111cb565b73ffffffffffffffffffffffffffffffffffffffff16611fa161089b565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613248565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120cb60086124bc565b60006120d56123f2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161210691906127d0565b60405180910390a18091505090565b612165600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121608361083f565b6124d2565b50565b61217a6006612175610625565b6124d2565b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e2906132da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122519061336c565b60405180910390fd5b61226583838361254d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906133fe565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d991906127d0565b60405180910390a36123ec84848461255d565b50505050565b60006123fe60086111bd565b905090565b60008083805490500361241957600090506124b6565b600080848054905090505b8082101561246d5760006124388383612562565b9050846124458783612588565b60000154111561245757809150612467565b60018161246491906129c8565b92505b50612424565b60008211801561249557508361248f8660018561248a9190612c3a565b612588565b60000154145b156124b0576001826124a79190612c3a565b925050506124b6565b81925050505b92915050565b6001816000016000828254019250508190555050565b60006124dc6123f2565b9050806124eb846000016125aa565b10156125485782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b612558838383611100565b505050565b505050565b60006002828418612573919061344d565b82841661258091906129c8565b905092915050565b600080836000528260206000200190506125a1816125f6565b91505092915050565b6000808280549050036125c057600090506125f1565b81600183805490506125d29190612c3a565b815481106125e3576125e26131cd565b5b906000526020600020015490505b919050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263a57808201518184015260208101905061261f565b60008484015250505050565b6000601f19601f8301169050919050565b600061266282612600565b61266c818561260b565b935061267c81856020860161261c565b61268581612646565b840191505092915050565b600060208201905081810360008301526126aa8184612657565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e2826126b7565b9050919050565b6126f2816126d7565b81146126fd57600080fd5b50565b60008135905061270f816126e9565b92915050565b6000819050919050565b61272881612715565b811461273357600080fd5b50565b6000813590506127458161271f565b92915050565b60008060408385031215612762576127616126b2565b5b600061277085828601612700565b925050602061278185828601612736565b9150509250929050565b60008115159050919050565b6127a08161278b565b82525050565b60006020820190506127bb6000830184612797565b92915050565b6127ca81612715565b82525050565b60006020820190506127e560008301846127c1565b92915050565b600080600060608486031215612804576128036126b2565b5b600061281286828701612700565b935050602061282386828701612700565b925050604061283486828701612736565b9150509250925092565b600060208284031215612854576128536126b2565b5b600061286284828501612700565b91505092915050565b612874816126d7565b82525050565b600060208201905061288f600083018461286b565b92915050565b600060ff82169050919050565b6128ab81612895565b82525050565b60006020820190506128c660008301846128a2565b92915050565b6000602082840312156128e2576128e16126b2565b5b60006128f084828501612736565b91505092915050565b600080604083850312156129105761290f6126b2565b5b600061291e85828601612700565b925050602061292f85828601612700565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061298057607f821691505b60208210810361299357612992612939565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129d382612715565b91506129de83612715565b92508282019050808211156129f6576129f5612999565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a5860258361260b565b9150612a63826129fc565b604082019050919050565b60006020820190508181036000830152612a8781612a4b565b9050919050565b7f4e6f2067616e672c2062726f3f2046696e6420796f757220747572662066697260008201527f7374210000000000000000000000000000000000000000000000000000000000602082015250565b6000612aea60238361260b565b9150612af582612a8e565b604082019050919050565b60006020820190508181036000830152612b1981612add565b9050919050565b600081519050612b2f8161271f565b92915050565b600060208284031215612b4b57612b4a6126b2565b5b6000612b5984828501612b20565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f207377697463682067616e67600082015250565b6000612b9860208361260b565b9150612ba382612b62565b602082019050919050565b60006020820190508181036000830152612bc781612b8b565b9050919050565b7f556e646572666c6f772070726f74656374696f6e000000000000000000000000600082015250565b6000612c0460148361260b565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b6000612c4582612715565b9150612c5083612715565b9250828203905081811115612c6857612c67612999565b5b92915050565b6000819050919050565b6000819050919050565b6000612c9d612c98612c9384612c6e565b612c78565b612715565b9050919050565b612cad81612c82565b82525050565b6000606082019050612cc8600083018661286b565b612cd5602083018561286b565b612ce26040830184612ca4565b949350505050565b612cf38161278b565b8114612cfe57600080fd5b50565b600081519050612d1081612cea565b92915050565b600060208284031215612d2c57612d2b6126b2565b5b6000612d3a84828501612d01565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000612d79600f8361260b565b9150612d8482612d43565b602082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e0b60268361260b565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e9d60248361260b565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f2f60228361260b565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f9b601d8361260b565b9150612fa682612f65565b602082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b7f4c50206d75737420626520736574206265666f7265207472616e73666572732060008201527f63616e206f636375720000000000000000000000000000000000000000000000602082015250565b600061302d60298361260b565b915061303882612fd1565b604082019050919050565b6000602082019050818103600083015261305c81613020565b9050919050565b7f4e6f20646963652c2074726169746f72212043616e27742073656e6420746f6b60008201527f656e7320746f2074686520726976616c2067616e672c207961206469673f0000602082015250565b60006130bf603e8361260b565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b600061312b60168361260b565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000613197601d8361260b565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323260208361260b565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132c460258361260b565b91506132cf82613268565b604082019050919050565b600060208201905081810360008301526132f3816132b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061335660238361260b565b9150613361826132fa565b604082019050919050565b6000602082019050818103600083015261338581613349565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133e860268361260b565b91506133f38261338c565b604082019050919050565b60006020820190508181036000830152613417816133db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061345882612715565b915061346383612715565b9250826134735761347261341e565b5b82820490509291505056fea264697066735822122095ca00ac038e2f9df78bc582bd93134af751565a92549df887fbbad6287ee89464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a7d3bfd511610097578063d246d41111610071578063d246d411146104fc578063dd62ed3e1461051a578063e49478791461054a578063f2fde38b14610554576101a9565b8063a7d3bfd514610492578063a9059cbb146104ae578063c5eadb4c146104de576101a9565b806395d89b41116100d357806395d89b41146103f65780639711715a14610414578063981b24d014610432578063a457c2d714610462576101a9565b806370a082311461039e578063715018a6146103ce5780638da5cb5b146103d8576101a9565b8063313ce567116101665780633e19d3d2116101405780633e19d3d2146103165780634ee2cd7e1461033457806358b8c2d6146103645780635cbb1c6a14610382576101a9565b8063313ce5671461029857806339509351146102b65780633de94925146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a5780632a5c80b31461024a578063313c06a01461027a575b600080fd5b6101b6610570565b6040516101c39190612690565b60405180910390f35b6101e660048036038101906101e1919061274b565b610602565b6040516101f391906127a6565b60405180910390f35b610204610625565b60405161021191906127d0565b60405180910390f35b610234600480360381019061022f91906127eb565b61062f565b60405161024191906127a6565b60405180910390f35b610264600480360381019061025f919061283e565b61065e565b60405161027191906127a6565b60405180910390f35b61028261067e565b60405161028f919061287a565b60405180910390f35b6102a06106a4565b6040516102ad91906128b1565b60405180910390f35b6102d060048036038101906102cb919061274b565b6106ad565b6040516102dd91906127a6565b60405180910390f35b61030060048036038101906102fb919061283e565b6106e4565b60405161030d91906128b1565b60405180910390f35b61031e610704565b60405161032b91906127d0565b60405180910390f35b61034e6004803603810190610349919061274b565b61070a565b60405161035b91906127d0565b60405180910390f35b61036c61077a565b60405161037991906128b1565b60405180910390f35b61039c6004803603810190610397919061283e565b61078d565b005b6103b860048036038101906103b3919061283e565b61083f565b6040516103c591906127d0565b60405180910390f35b6103d6610887565b005b6103e061089b565b6040516103ed919061287a565b60405180910390f35b6103fe6108c5565b60405161040b9190612690565b60405180910390f35b61041c610957565b60405161042991906127d0565b60405180910390f35b61044c600480360381019061044791906128cc565b61096e565b60405161045991906127d0565b60405180910390f35b61047c6004803603810190610477919061274b565b61099f565b60405161048991906127a6565b60405180910390f35b6104ac60048036038101906104a7919061283e565b610a16565b005b6104c860048036038101906104c3919061274b565b610b2b565b6040516104d591906127a6565b60405180910390f35b6104e6610b4e565b6040516104f391906127d0565b60405180910390f35b610504610b54565b604051610511919061287a565b60405180910390f35b610534600480360381019061052f91906128f9565b610b7a565b60405161054191906127d0565b60405180910390f35b610552610c01565b005b61056e6004803603810190610569919061283e565b61107d565b005b60606003805461057f90612968565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90612968565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b60008061060d6111cb565b905061061a8185856111d3565b600191505092915050565b6000600254905090565b60008061063a6111cb565b905061064785828561139c565b610652858585611428565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106b86111cb565b90506106d98185856106ca8589610b7a565b6106d491906129c8565b6111d3565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600080600061075784600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611e86565b915091508161076e576107698561083f565b610770565b805b9250505092915050565b600f60149054906101000a900460ff1681565b610795611f7b565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088f611f7b565b6108996000611ff9565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d490612968565b80601f016020809104026020016040519081016040528092919081815260200182805461090090612968565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610961611f7b565b6109696120bf565b905090565b600080600061097e846006611e86565b91509150816109945761098f610625565b610996565b805b92505050919050565b6000806109aa6111cb565b905060006109b88286610b7a565b9050838110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490612a6e565b60405180910390fd5b610a0a82868684036111d3565b60019250505092915050565b610a1e611f7b565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff021916905550565b600080610b366111cb565b9050610b43818585611428565b600191505092915050565b600c5481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90612b00565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610cce919061287a565b602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f9190612b35565b90506a01a784379d99db42000000811015610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690612bae565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1603610ea15780600c541015610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290612c1a565b60405180910390fd5b80600c6000828254610e0d9190612c3a565b925050819055506a01a784379d99db4200000081610e2b9190612c3a565b600d6000828254610e3c91906129c8565b925050819055506002600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550610f88565b80600d541015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90612c1a565b60405180910390fd5b6a01a784379d99db4200000081610efd9190612c3a565b600c6000828254610f0e91906129c8565b9250508190555080600d6000828254610f279190612c3a565b925050819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b60003073ffffffffffffffffffffffffffffffffffffffff166323b872dd33600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a01a784379d99db420000006040518463ffffffff1660e01b8152600401610ff493929190612cb3565b6020604051808303816000875af1158015611013573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110379190612d16565b905080611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090612d8f565b60405180910390fd5b5050565b611085611f7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90612e21565b60405180910390fd5b6110fd81611ff9565b50565b61110b8383836111b8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111555761114882612115565b611150612168565b6111b3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119f5761119283612115565b61119a612168565b6111b2565b6111a883612115565b6111b182612115565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990612eb3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612f45565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161138f91906127d0565b60405180910390a3505050565b60006113a88484610b7a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114225781811015611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b90612fb1565b60405180910390fd5b61142184848484036111d3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415806114b8575061148961089b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114f557506114c661089b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613043565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161480156115dd5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561178357600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116dc57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550611782565b6001600f60149054906101000a900460ff1660ff16146116fd576001611700565b60025b600f60146101000a81548160ff021916908360ff160217905550600f60149054906101000a900460ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b5b61178b61089b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561181557506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b15611902576001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff160361188f5780600c600082825461188391906129c8565b92505081905550611901565b6002600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16036119005780600d60008282546118f891906129c8565b925050819055505b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119a65750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8c57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a82906130d5565b60405180910390fd5b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611b3957506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b80611bed5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611bec57506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614155b5b15611e765760008190506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cf15760018160ff1603611cc65781600c6000828254611cba91906129c8565b92505081905550611cec565b60028160ff1603611ceb5781600d6000828254611ce391906129c8565b925050819055505b5b611e73565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e72576000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060018160ff1603611e055782600c541015611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90612c1a565b60405180910390fd5b82600c6000828254611df99190612c3a565b92505081905550611e70565b60028160ff1603611e6f5782600d541015611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90612c1a565b60405180910390fd5b82600d6000828254611e679190612c3a565b925050819055505b5b505b5b50505b611e8183838361217c565b505050565b60008060008411611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613141565b60405180910390fd5b611ed46123f2565b841115611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906131ad565b60405180910390fd5b6000611f2e858560000161240390919063ffffffff16565b905083600001805490508103611f4b576000809250925050611f74565b6001846001018281548110611f6357611f626131cd565b5b906000526020600020015492509250505b9250929050565b611f836111cb565b73ffffffffffffffffffffffffffffffffffffffff16611fa161089b565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613248565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120cb60086124bc565b60006120d56123f2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161210691906127d0565b60405180910390a18091505090565b612165600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206121608361083f565b6124d2565b50565b61217a6006612175610625565b6124d2565b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e2906132da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122519061336c565b60405180910390fd5b61226583838361254d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906133fe565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123d991906127d0565b60405180910390a36123ec84848461255d565b50505050565b60006123fe60086111bd565b905090565b60008083805490500361241957600090506124b6565b600080848054905090505b8082101561246d5760006124388383612562565b9050846124458783612588565b60000154111561245757809150612467565b60018161246491906129c8565b92505b50612424565b60008211801561249557508361248f8660018561248a9190612c3a565b612588565b60000154145b156124b0576001826124a79190612c3a565b925050506124b6565b81925050505b92915050565b6001816000016000828254019250508190555050565b60006124dc6123f2565b9050806124eb846000016125aa565b10156125485782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b612558838383611100565b505050565b505050565b60006002828418612573919061344d565b82841661258091906129c8565b905092915050565b600080836000528260206000200190506125a1816125f6565b91505092915050565b6000808280549050036125c057600090506125f1565b81600183805490506125d29190612c3a565b815481106125e3576125e26131cd565b5b906000526020600020015490505b919050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263a57808201518184015260208101905061261f565b60008484015250505050565b6000601f19601f8301169050919050565b600061266282612600565b61266c818561260b565b935061267c81856020860161261c565b61268581612646565b840191505092915050565b600060208201905081810360008301526126aa8184612657565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e2826126b7565b9050919050565b6126f2816126d7565b81146126fd57600080fd5b50565b60008135905061270f816126e9565b92915050565b6000819050919050565b61272881612715565b811461273357600080fd5b50565b6000813590506127458161271f565b92915050565b60008060408385031215612762576127616126b2565b5b600061277085828601612700565b925050602061278185828601612736565b9150509250929050565b60008115159050919050565b6127a08161278b565b82525050565b60006020820190506127bb6000830184612797565b92915050565b6127ca81612715565b82525050565b60006020820190506127e560008301846127c1565b92915050565b600080600060608486031215612804576128036126b2565b5b600061281286828701612700565b935050602061282386828701612700565b925050604061283486828701612736565b9150509250925092565b600060208284031215612854576128536126b2565b5b600061286284828501612700565b91505092915050565b612874816126d7565b82525050565b600060208201905061288f600083018461286b565b92915050565b600060ff82169050919050565b6128ab81612895565b82525050565b60006020820190506128c660008301846128a2565b92915050565b6000602082840312156128e2576128e16126b2565b5b60006128f084828501612736565b91505092915050565b600080604083850312156129105761290f6126b2565b5b600061291e85828601612700565b925050602061292f85828601612700565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061298057607f821691505b60208210810361299357612992612939565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129d382612715565b91506129de83612715565b92508282019050808211156129f6576129f5612999565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a5860258361260b565b9150612a63826129fc565b604082019050919050565b60006020820190508181036000830152612a8781612a4b565b9050919050565b7f4e6f2067616e672c2062726f3f2046696e6420796f757220747572662066697260008201527f7374210000000000000000000000000000000000000000000000000000000000602082015250565b6000612aea60238361260b565b9150612af582612a8e565b604082019050919050565b60006020820190508181036000830152612b1981612add565b9050919050565b600081519050612b2f8161271f565b92915050565b600060208284031215612b4b57612b4a6126b2565b5b6000612b5984828501612b20565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f207377697463682067616e67600082015250565b6000612b9860208361260b565b9150612ba382612b62565b602082019050919050565b60006020820190508181036000830152612bc781612b8b565b9050919050565b7f556e646572666c6f772070726f74656374696f6e000000000000000000000000600082015250565b6000612c0460148361260b565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b6000612c4582612715565b9150612c5083612715565b9250828203905081811115612c6857612c67612999565b5b92915050565b6000819050919050565b6000819050919050565b6000612c9d612c98612c9384612c6e565b612c78565b612715565b9050919050565b612cad81612c82565b82525050565b6000606082019050612cc8600083018661286b565b612cd5602083018561286b565b612ce26040830184612ca4565b949350505050565b612cf38161278b565b8114612cfe57600080fd5b50565b600081519050612d1081612cea565b92915050565b600060208284031215612d2c57612d2b6126b2565b5b6000612d3a84828501612d01565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000612d79600f8361260b565b9150612d8482612d43565b602082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e0b60268361260b565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e9d60248361260b565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f2f60228361260b565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f9b601d8361260b565b9150612fa682612f65565b602082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b7f4c50206d75737420626520736574206265666f7265207472616e73666572732060008201527f63616e206f636375720000000000000000000000000000000000000000000000602082015250565b600061302d60298361260b565b915061303882612fd1565b604082019050919050565b6000602082019050818103600083015261305c81613020565b9050919050565b7f4e6f20646963652c2074726169746f72212043616e27742073656e6420746f6b60008201527f656e7320746f2074686520726976616c2067616e672c207961206469673f0000602082015250565b60006130bf603e8361260b565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b600061312b60168361260b565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000613197601d8361260b565b91506131a282613161565b602082019050919050565b600060208201905081810360008301526131c68161318a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323260208361260b565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132c460258361260b565b91506132cf82613268565b604082019050919050565b600060208201905081810360008301526132f3816132b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061335660238361260b565b9150613361826132fa565b604082019050919050565b6000602082019050818103600083015261338581613349565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133e860268361260b565b91506133f38261338c565b604082019050919050565b60006020820190508181036000830152613417816133db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061345882612715565b915061346383612715565b9250826134735761347261341e565b5b82820490509291505056fea264697066735822122095ca00ac038e2f9df78bc582bd93134af751565a92549df887fbbad6287ee89464736f6c63430008120033

Deployed Bytecode Sourcemap

49996:4441:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29803:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32154:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30923:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32935:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50140:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50258:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30765:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33639:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50060:37;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50226:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46044:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50366:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54148:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31094:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23228:103;;;:::i;:::-;;22580:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30022:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53162:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46414:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34380:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54293:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31427:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50195:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50282:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31683:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53262:878;;;:::i;:::-;;23486:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29803:100;29857:13;29890:5;29883:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29803:100;:::o;32154:201::-;32237:4;32254:13;32270:12;:10;:12::i;:::-;32254:28;;32293:32;32302:5;32309:7;32318:6;32293:8;:32::i;:::-;32343:4;32336:11;;;32154:201;;;;:::o;30923:108::-;30984:7;31011:12;;31004:19;;30923:108;:::o;32935:295::-;33066:4;33083:15;33101:12;:10;:12::i;:::-;33083:30;;33124:38;33140:4;33146:7;33155:6;33124:15;:38::i;:::-;33173:27;33183:4;33189:2;33193:6;33173:9;:27::i;:::-;33218:4;33211:11;;;32935:295;;;;;:::o;50140:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;50258:17::-;;;;;;;;;;;;;:::o;30765:93::-;30823:5;30848:2;30841:9;;30765:93;:::o;33639:238::-;33727:4;33744:13;33760:12;:10;:12::i;:::-;33744:28;;33783:64;33792:5;33799:7;33836:10;33808:25;33818:5;33825:7;33808:9;:25::i;:::-;:38;;;;:::i;:::-;33783:8;:64::i;:::-;33865:4;33858:11;;;33639:238;;;;:::o;50060:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;50226:23::-;;;;:::o;46044:266::-;46131:7;46152:16;46170:13;46187:55;46196:10;46208:24;:33;46233:7;46208:33;;;;;;;;;;;;;;;46187:8;:55::i;:::-;46151:91;;;;46262:11;:40;;46284:18;46294:7;46284:9;:18::i;:::-;46262:40;;;46276:5;46262:40;46255:47;;;;46044:266;;;;:::o;50366:29::-;;;;;;;;;;;;;:::o;54148:137::-;22466:13;:11;:13::i;:::-;54242:4:::1;54214:16;:25;54231:7;54214:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;54264:4;:13;54269:7;54264:13;;;;;;;;;;;;;;;;54257:20;;;;;;;;;;;54148:137:::0;:::o;31094:127::-;31168:7;31195:9;:18;31205:7;31195:18;;;;;;;;;;;;;;;;31188:25;;31094:127;;;:::o;23228:103::-;22466:13;:11;:13::i;:::-;23293:30:::1;23320:1;23293:18;:30::i;:::-;23228:103::o:0;22580:87::-;22626:7;22653:6;;;;;;;;;;;22646:13;;22580:87;:::o;30022:104::-;30078:13;30111:7;30104:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30022:104;:::o;53162:92::-;53208:7;22466:13;:11;:13::i;:::-;53235:11:::1;:9;:11::i;:::-;53228:18;;53162:92:::0;:::o;46414:234::-;46486:7;46507:16;46525:13;46542:43;46551:10;46563:21;46542:8;:43::i;:::-;46506:79;;;;46605:11;:35;;46627:13;:11;:13::i;:::-;46605:35;;;46619:5;46605:35;46598:42;;;;46414:234;;;:::o;34380:436::-;34473:4;34490:13;34506:12;:10;:12::i;:::-;34490:28;;34529:24;34556:25;34566:5;34573:7;34556:9;:25::i;:::-;34529:52;;34620:15;34600:16;:35;;34592:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:60;34722:5;34729:7;34757:15;34738:16;:34;34713:8;:60::i;:::-;34804:4;34797:11;;;;34380:436;;;;:::o;54293:141::-;22466:13;:11;:13::i;:::-;54358:3:::1;54353:2;;:8;;;;;;;;;;;;;;;;;;54396:4;54372:16;:21;54389:3;54372:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;54418:4;:8;54423:2;;;;;;;;;;;54418:8;;;;;;;;;;;;;;;;54411:15;;;;;;;;;;;54293:141:::0;:::o;31427:193::-;31506:4;31523:13;31539:12;:10;:12::i;:::-;31523:28;;31562;31572:5;31579:2;31583:6;31562:9;:28::i;:::-;31608:4;31601:11;;;31427:193;;;;:::o;50195:24::-;;;;:::o;50282:77::-;;;;;;;;;;;;;:::o;31683:151::-;31772:7;31799:11;:18;31811:5;31799:18;;;;;;;;;;;;;;;:27;31818:7;31799:27;;;;;;;;;;;;;;;;31792:34;;31683:151;;;;:::o;53262:878::-;53330:1;53310:4;:16;53315:10;53310:16;;;;;;;;;;;;;;;;;;;;;;;;;:21;;;53302:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53384:15;53416:4;53402:30;;;53433:10;53402:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53384:60;;53474:18;53463:7;:29;;53455:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53566:1;53546:4;:16;53551:10;53546:16;;;;;;;;;;;;;;;;;;;;;;;;;:21;;;53542:442;;53605:7;53592:9;;:20;;53584:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53665:7;53652:9;;:20;;;;;;;:::i;:::-;;;;;;;;53709:18;53699:7;:28;;;;:::i;:::-;53687:8;;:40;;;;;;;:::i;:::-;;;;;;;;53761:1;53742:4;:16;53747:10;53742:16;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;53542:442;;;53815:7;53803:8;;:19;;53795:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;53885:18;53875:7;:28;;;;:::i;:::-;53862:9;;:41;;;;;;;:::i;:::-;;;;;;;;53930:7;53918:8;;:19;;;;;;;:::i;:::-;;;;;;;;53971:1;53952:4;:16;53957:10;53952:16;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;53542:442;53996:12;54025:4;54011:33;;;54045:10;54057:8;;;;;;;;;;;54067:18;54011:75;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53996:90;;54105:7;54097:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;53291:849;;53262:878::o;23486:201::-;22466:13;:11;:13::i;:::-;23595:1:::1;23575:22;;:8;:22;;::::0;23567:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23651:28;23670:8;23651:18;:28::i;:::-;23486:201:::0;:::o;46865:622::-;47008:44;47035:4;47041:2;47045:6;47008:26;:44::i;:::-;47085:1;47069:18;;:4;:18;;;47065:415;;47125:26;47148:2;47125:22;:26::i;:::-;47166:28;:26;:28::i;:::-;47065:415;;;47230:1;47216:16;;:2;:16;;;47212:268;;47270:28;47293:4;47270:22;:28::i;:::-;47313;:26;:28::i;:::-;47212:268;;;47399:28;47422:4;47399:22;:28::i;:::-;47442:26;47465:2;47442:22;:26::i;:::-;47212:268;47065:415;46865:622;;;:::o;40131:125::-;;;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;21131:98::-;21184:7;21211:10;21204:17;;21131:98;:::o;38407:380::-;38560:1;38543:19;;:5;:19;;;38535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:1;38622:21;;:7;:21;;;38614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38725:6;38695:11;:18;38707:5;38695:18;;;;;;;;;;;;;;;:27;38714:7;38695:27;;;;;;;;;;;;;;;:36;;;;38763:7;38747:32;;38756:5;38747:32;;;38772:6;38747:32;;;;;;:::i;:::-;;;;;;;;38407:380;;;:::o;39078:453::-;39213:24;39240:25;39250:5;39257:7;39240:9;:25::i;:::-;39213:52;;39300:17;39280:16;:37;39276:248;;39362:6;39342:16;:26;;39334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39446:51;39455:5;39462:7;39490:6;39471:16;:25;39446:8;:51::i;:::-;39276:248;39202:329;39078:453;;;:::o;50923:2231::-;51044:1;51030:16;;:2;;;;;;;;;;;:16;;;;:37;;;;51060:7;:5;:7::i;:::-;51050:17;;:6;:17;;;51030:37;:61;;;;51084:7;:5;:7::i;:::-;51071:20;;:9;:20;;;51030:61;51022:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;51227:1;51208:4;:15;51213:9;51208:15;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;:52;;;;;51233:16;:27;51250:9;51233:27;;;;;;;;;;;;;;;;;;;;;;;;;51232:28;51208:52;51204:324;;;51282:16;:24;51299:6;51282:24;;;;;;;;;;;;;;;;;;;;;;;;;51277:240;;51345:4;:12;51350:6;51345:12;;;;;;;;;;;;;;;;;;;;;;;;;51327:4;:15;51332:9;51327:15;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;51277:240;;;51438:1;51418:16;;;;;;;;;;;:21;;;51417:31;;51447:1;51417:31;;;51443:1;51417:31;51398:16;;:50;;;;;;;;;;;;;;;;;;51485:16;;;;;;;;;;;51467:4;:15;51472:9;51467:15;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;51277:240;51204:324;51631:7;:5;:7::i;:::-;51621:17;;:6;:17;;;:41;;;;;51661:1;51642:4;:15;51647:9;51642:15;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;;51621:41;51617:238;;;51702:1;51683:4;:15;51688:9;51683:15;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;51679:165;;51737:6;51724:9;;:19;;;;;;;:::i;:::-;;;;;;;;51679:165;;;51788:1;51769:4;:15;51774:9;51769:15;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;51765:79;;51822:6;51810:8;;:18;;;;;;;:::i;:::-;;;;;;;;51765:79;51679:165;51617:238;51872:16;:24;51889:6;51872:24;;;;;;;;;;;;;;;;;;;;;;;;;51871:25;:57;;;;;51901:16;:27;51918:9;51901:27;;;;;;;;;;;;;;;;;;;;;;;;;51900:28;51871:57;51867:196;;;51972:4;:12;51977:6;51972:12;;;;;;;;;;;;;;;;;;;;;;;;;51953:31;;:4;:15;51958:9;51953:15;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;51945:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;51867:196;52123:2;;;;;;;;;;;52113:12;;:6;:12;;;:36;;;;;52148:1;52129:4;:15;52134:9;52129:15;;;;;;;;;;;;;;;;;;;;;;;;;:20;;;;52113:36;52112:80;;;;52168:2;;;;;;;;;;;52155:15;;:9;:15;;;:36;;;;;52190:1;52174:4;:12;52179:6;52174:12;;;;;;;;;;;;;;;;;;;;;;;;;:17;;;;52155:36;52112:80;52108:984;;;52209:19;52231:6;52209:28;;52252:19;52274:4;:15;52279:9;52274:15;;;;;;;;;;;;;;;;;;;;;;;;;52252:37;;52320:2;;;;;;;;;;;52310:12;;:6;:12;;;52306:775;;52406:1;52389:13;:18;;;52385:187;;52445:11;52432:9;;:24;;;;;;;:::i;:::-;;;;;;;;52385:187;;;52503:1;52486:13;:18;;;52482:90;;52541:11;52529:8;;:23;;;;;;;:::i;:::-;;;;;;;;52482:90;52385:187;52306:775;;;52610:2;;;;;;;;;;;52597:15;;:9;:15;;;52593:488;;52676:16;52695:4;:12;52700:6;52695:12;;;;;;;;;;;;;;;;;;;;;;;;;52676:31;;52744:1;52730:10;:15;;;52726:340;;52791:11;52778:9;;:24;;52770:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52863:11;52850:9;;:24;;;;;;;:::i;:::-;;;;;;;;52726:340;;;52918:1;52904:10;:15;;;52900:166;;52964:11;52952:8;;:23;;52944:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53035:11;53023:8;;:23;;;;;;;:::i;:::-;;;;;;;;52900:166;52726:340;52614:467;52593:488;52306:775;52194:898;;52108:984;53104:42;53120:6;53128:9;53139:6;53104:15;:42::i;:::-;50923:2231;;;:::o;47495:1619::-;47584:4;47590:7;47631:1;47618:10;:14;47610:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47692:23;:21;:23::i;:::-;47678:10;:37;;47670:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48888:13;48904:40;48933:10;48904:9;:13;;:28;;:40;;;;:::i;:::-;48888:56;;48970:9;:13;;:20;;;;48961:5;:29;48957:150;;49015:5;49022:1;49007:17;;;;;;;48957:150;49065:4;49071:9;:16;;49088:5;49071:23;;;;;;;;:::i;:::-;;;;;;;;;;49057:38;;;;;47495:1619;;;;;;:::o;22745:132::-;22820:12;:10;:12::i;:::-;22809:23;;:7;:5;:7::i;:::-;:23;;;22801:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22745:132::o;23847:191::-;23921:16;23940:6;;;;;;;;;;;23921:25;;23966:8;23957:6;;:17;;;;;;;;;;;;;;;;;;24021:8;23990:40;;24011:8;23990:40;;;;;;;;;;;;23910:128;23847:191;:::o;45516:223::-;45563:7;45583:30;:18;:28;:30::i;:::-;45626:17;45646:23;:21;:23::i;:::-;45626:43;;45685:19;45694:9;45685:19;;;;;;:::i;:::-;;;;;;;;45722:9;45715:16;;;45516:223;:::o;49122:146::-;49190:70;49206:24;:33;49231:7;49206:33;;;;;;;;;;;;;;;49241:18;49251:7;49241:9;:18::i;:::-;49190:15;:70::i;:::-;49122:146;:::o;49276:118::-;49333:53;49349:21;49372:13;:11;:13::i;:::-;49333:15;:53::i;:::-;49276:118::o;35286:840::-;35433:1;35417:18;;:4;:18;;;35409:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35510:1;35496:16;;:2;:16;;;35488:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35565:38;35586:4;35592:2;35596:6;35565:20;:38::i;:::-;35616:19;35638:9;:15;35648:4;35638:15;;;;;;;;;;;;;;;;35616:37;;35687:6;35672:11;:21;;35664:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;35804:6;35790:11;:20;35772:9;:15;35782:4;35772:15;;;;;;;;;;;;;;;:38;;;;36007:6;35990:9;:13;36000:2;35990:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;36057:2;36042:26;;36051:4;36042:26;;;36061:6;36042:26;;;;;;:::i;:::-;;;;;;;;36081:37;36101:4;36107:2;36111:6;36081:19;:37::i;:::-;35398:728;35286:840;;;:::o;45805:127::-;45869:7;45896:28;:18;:26;:28::i;:::-;45889:35;;45805:127;:::o;17834:958::-;17923:7;17963:1;17947:5;:12;;;;:17;17943:58;;17988:1;17981:8;;;;17943:58;18013:11;18039:12;18054:5;:12;;;;18039:27;;18079:444;18092:4;18086:3;:10;18079:444;;;18113:11;18127:23;18140:3;18145:4;18127:12;:23::i;:::-;18113:37;;18404:7;18371:24;18384:5;18391:3;18371:12;:24::i;:::-;:30;;;:40;18367:145;;;18439:3;18432:10;;18367:145;;;18495:1;18489:3;:7;;;;:::i;:::-;18483:13;;18367:145;18098:425;18079:444;;;18649:1;18643:3;:7;:56;;;;;18692:7;18654:28;18667:5;18680:1;18674:3;:7;;;;:::i;:::-;18654:12;:28::i;:::-;:34;;;:45;18643:56;18639:146;;;18729:1;18723:3;:7;;;;:::i;:::-;18716:14;;;;;;18639:146;18770:3;18763:10;;;;17834:958;;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;49402:310::-;49497:17;49517:23;:21;:23::i;:::-;49497:43;;49588:9;49555:30;49571:9;:13;;49555:15;:30::i;:::-;:42;49551:154;;;49614:9;:13;;49633:9;49614:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49658:9;:16;;49680:12;49658:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49551:154;49486:226;49402:310;;:::o;50732:183::-;50863:44;50890:4;50896:2;50900:6;50863:26;:44::i;:::-;50732:183;;;:::o;40860:124::-;;;;:::o;2328:156::-;2390:7;2475:1;2470;2466;:5;2465:11;;;;:::i;:::-;2460:1;2456;:5;2455:21;;;;:::i;:::-;2448:28;;2328:156;;;;:::o;20103:342::-;20184:31;20228:12;20329:8;20326:1;20319:19;20384:3;20377:4;20374:1;20364:18;20360:28;20352:36;;20416:21;:4;:19;:21::i;:::-;20409:28;;;20103:342;;;;:::o;49720:212::-;49790:7;49828:1;49814:3;:10;;;;:15;49810:115;;49853:1;49846:8;;;;49810:115;49894:3;49911:1;49898:3;:10;;;;:14;;;;:::i;:::-;49894:19;;;;;;;;:::i;:::-;;;;;;;;;;49887:26;;49720:212;;;;:::o;16928:195::-;16989:21;17101:4;17091:14;;16928:195;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:118::-;4845:24;4863:5;4845:24;:::i;:::-;4840:3;4833:37;4758:118;;:::o;4882:222::-;4975:4;5013:2;5002:9;4998:18;4990:26;;5026:71;5094:1;5083:9;5079:17;5070:6;5026:71;:::i;:::-;4882:222;;;;:::o;5110:86::-;5145:7;5185:4;5178:5;5174:16;5163:27;;5110:86;;;:::o;5202:112::-;5285:22;5301:5;5285:22;:::i;:::-;5280:3;5273:35;5202:112;;:::o;5320:214::-;5409:4;5447:2;5436:9;5432:18;5424:26;;5460:67;5524:1;5513:9;5509:17;5500:6;5460:67;:::i;:::-;5320:214;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:222::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:5;8481:2;8473:6;8469:15;8462:30;8277:222;:::o;8505:366::-;8647:3;8668:67;8732:2;8727:3;8668:67;:::i;:::-;8661:74;;8744:93;8833:3;8744:93;:::i;:::-;8862:2;8857:3;8853:12;8846:19;;8505:366;;;:::o;8877:419::-;9043:4;9081:2;9070:9;9066:18;9058:26;;9130:9;9124:4;9120:20;9116:1;9105:9;9101:17;9094:47;9158:131;9284:4;9158:131;:::i;:::-;9150:139;;8877:419;;;:::o;9302:143::-;9359:5;9390:6;9384:13;9375:22;;9406:33;9433:5;9406:33;:::i;:::-;9302:143;;;;:::o;9451:351::-;9521:6;9570:2;9558:9;9549:7;9545:23;9541:32;9538:119;;;9576:79;;:::i;:::-;9538:119;9696:1;9721:64;9777:7;9768:6;9757:9;9753:22;9721:64;:::i;:::-;9711:74;;9667:128;9451:351;;;;:::o;9808:182::-;9948:34;9944:1;9936:6;9932:14;9925:58;9808:182;:::o;9996:366::-;10138:3;10159:67;10223:2;10218:3;10159:67;:::i;:::-;10152:74;;10235:93;10324:3;10235:93;:::i;:::-;10353:2;10348:3;10344:12;10337:19;;9996:366;;;:::o;10368:419::-;10534:4;10572:2;10561:9;10557:18;10549:26;;10621:9;10615:4;10611:20;10607:1;10596:9;10592:17;10585:47;10649:131;10775:4;10649:131;:::i;:::-;10641:139;;10368:419;;;:::o;10793:170::-;10933:22;10929:1;10921:6;10917:14;10910:46;10793:170;:::o;10969:366::-;11111:3;11132:67;11196:2;11191:3;11132:67;:::i;:::-;11125:74;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;10969:366;;;:::o;11341:419::-;11507:4;11545:2;11534:9;11530:18;11522:26;;11594:9;11588:4;11584:20;11580:1;11569:9;11565:17;11558:47;11622:131;11748:4;11622:131;:::i;:::-;11614:139;;11341:419;;;:::o;11766:194::-;11806:4;11826:20;11844:1;11826:20;:::i;:::-;11821:25;;11860:20;11878:1;11860:20;:::i;:::-;11855:25;;11904:1;11901;11897:9;11889:17;;11928:1;11922:4;11919:11;11916:37;;;11933:18;;:::i;:::-;11916:37;11766:194;;;;:::o;11966:109::-;12035:7;12064:5;12053:16;;11966:109;;;:::o;12081:60::-;12109:3;12130:5;12123:12;;12081:60;;;:::o;12147:206::-;12229:9;12262:85;12280:66;12289:56;12339:5;12289:56;:::i;:::-;12280:66;:::i;:::-;12262:85;:::i;:::-;12249:98;;12147:206;;;:::o;12359:195::-;12478:69;12541:5;12478:69;:::i;:::-;12473:3;12466:82;12359:195;;:::o;12560:506::-;12741:4;12779:2;12768:9;12764:18;12756:26;;12792:71;12860:1;12849:9;12845:17;12836:6;12792:71;:::i;:::-;12873:72;12941:2;12930:9;12926:18;12917:6;12873:72;:::i;:::-;12955:104;13055:2;13044:9;13040:18;13031:6;12955:104;:::i;:::-;12560:506;;;;;;:::o;13072:116::-;13142:21;13157:5;13142:21;:::i;:::-;13135:5;13132:32;13122:60;;13178:1;13175;13168:12;13122:60;13072:116;:::o;13194:137::-;13248:5;13279:6;13273:13;13264:22;;13295:30;13319:5;13295:30;:::i;:::-;13194:137;;;;:::o;13337:345::-;13404:6;13453:2;13441:9;13432:7;13428:23;13424:32;13421:119;;;13459:79;;:::i;:::-;13421:119;13579:1;13604:61;13657:7;13648:6;13637:9;13633:22;13604:61;:::i;:::-;13594:71;;13550:125;13337:345;;;;:::o;13688:165::-;13828:17;13824:1;13816:6;13812:14;13805:41;13688:165;:::o;13859:366::-;14001:3;14022:67;14086:2;14081:3;14022:67;:::i;:::-;14015:74;;14098:93;14187:3;14098:93;:::i;:::-;14216:2;14211:3;14207:12;14200:19;;13859:366;;;:::o;14231:419::-;14397:4;14435:2;14424:9;14420:18;14412:26;;14484:9;14478:4;14474:20;14470:1;14459:9;14455:17;14448:47;14512:131;14638:4;14512:131;:::i;:::-;14504:139;;14231:419;;;:::o;14656:225::-;14796:34;14792:1;14784:6;14780:14;14773:58;14865:8;14860:2;14852:6;14848:15;14841:33;14656:225;:::o;14887:366::-;15029:3;15050:67;15114:2;15109:3;15050:67;:::i;:::-;15043:74;;15126:93;15215:3;15126:93;:::i;:::-;15244:2;15239:3;15235:12;15228:19;;14887:366;;;:::o;15259:419::-;15425:4;15463:2;15452:9;15448:18;15440:26;;15512:9;15506:4;15502:20;15498:1;15487:9;15483:17;15476:47;15540:131;15666:4;15540:131;:::i;:::-;15532:139;;15259:419;;;:::o;15684:223::-;15824:34;15820:1;15812:6;15808:14;15801:58;15893:6;15888:2;15880:6;15876:15;15869:31;15684:223;:::o;15913:366::-;16055:3;16076:67;16140:2;16135:3;16076:67;:::i;:::-;16069:74;;16152:93;16241:3;16152:93;:::i;:::-;16270:2;16265:3;16261:12;16254:19;;15913:366;;;:::o;16285:419::-;16451:4;16489:2;16478:9;16474:18;16466:26;;16538:9;16532:4;16528:20;16524:1;16513:9;16509:17;16502:47;16566:131;16692:4;16566:131;:::i;:::-;16558:139;;16285:419;;;:::o;16710:221::-;16850:34;16846:1;16838:6;16834:14;16827:58;16919:4;16914:2;16906:6;16902:15;16895:29;16710:221;:::o;16937:366::-;17079:3;17100:67;17164:2;17159:3;17100:67;:::i;:::-;17093:74;;17176:93;17265:3;17176:93;:::i;:::-;17294:2;17289:3;17285:12;17278:19;;16937:366;;;:::o;17309:419::-;17475:4;17513:2;17502:9;17498:18;17490:26;;17562:9;17556:4;17552:20;17548:1;17537:9;17533:17;17526:47;17590:131;17716:4;17590:131;:::i;:::-;17582:139;;17309:419;;;:::o;17734:179::-;17874:31;17870:1;17862:6;17858:14;17851:55;17734:179;:::o;17919:366::-;18061:3;18082:67;18146:2;18141:3;18082:67;:::i;:::-;18075:74;;18158:93;18247:3;18158:93;:::i;:::-;18276:2;18271:3;18267:12;18260:19;;17919:366;;;:::o;18291:419::-;18457:4;18495:2;18484:9;18480:18;18472:26;;18544:9;18538:4;18534:20;18530:1;18519:9;18515:17;18508:47;18572:131;18698:4;18572:131;:::i;:::-;18564:139;;18291:419;;;:::o;18716:228::-;18856:34;18852:1;18844:6;18840:14;18833:58;18925:11;18920:2;18912:6;18908:15;18901:36;18716:228;:::o;18950:366::-;19092:3;19113:67;19177:2;19172:3;19113:67;:::i;:::-;19106:74;;19189:93;19278:3;19189:93;:::i;:::-;19307:2;19302:3;19298:12;19291:19;;18950:366;;;:::o;19322:419::-;19488:4;19526:2;19515:9;19511:18;19503:26;;19575:9;19569:4;19565:20;19561:1;19550:9;19546:17;19539:47;19603:131;19729:4;19603:131;:::i;:::-;19595:139;;19322:419;;;:::o;19747:249::-;19887:34;19883:1;19875:6;19871:14;19864:58;19956:32;19951:2;19943:6;19939:15;19932:57;19747:249;:::o;20002:366::-;20144:3;20165:67;20229:2;20224:3;20165:67;:::i;:::-;20158:74;;20241:93;20330:3;20241:93;:::i;:::-;20359:2;20354:3;20350:12;20343:19;;20002:366;;;:::o;20374:419::-;20540:4;20578:2;20567:9;20563:18;20555:26;;20627:9;20621:4;20617:20;20613:1;20602:9;20598:17;20591:47;20655:131;20781:4;20655:131;:::i;:::-;20647:139;;20374:419;;;:::o;20799:172::-;20939:24;20935:1;20927:6;20923:14;20916:48;20799:172;:::o;20977:366::-;21119:3;21140:67;21204:2;21199:3;21140:67;:::i;:::-;21133:74;;21216:93;21305:3;21216:93;:::i;:::-;21334:2;21329:3;21325:12;21318:19;;20977:366;;;:::o;21349:419::-;21515:4;21553:2;21542:9;21538:18;21530:26;;21602:9;21596:4;21592:20;21588:1;21577:9;21573:17;21566:47;21630:131;21756:4;21630:131;:::i;:::-;21622:139;;21349:419;;;:::o;21774:179::-;21914:31;21910:1;21902:6;21898:14;21891:55;21774:179;:::o;21959:366::-;22101:3;22122:67;22186:2;22181:3;22122:67;:::i;:::-;22115:74;;22198:93;22287:3;22198:93;:::i;:::-;22316:2;22311:3;22307:12;22300:19;;21959:366;;;:::o;22331:419::-;22497:4;22535:2;22524:9;22520:18;22512:26;;22584:9;22578:4;22574:20;22570:1;22559:9;22555:17;22548:47;22612:131;22738:4;22612:131;:::i;:::-;22604:139;;22331:419;;;:::o;22756:180::-;22804:77;22801:1;22794:88;22901:4;22898:1;22891:15;22925:4;22922:1;22915:15;22942:182;23082:34;23078:1;23070:6;23066:14;23059:58;22942:182;:::o;23130:366::-;23272:3;23293:67;23357:2;23352:3;23293:67;:::i;:::-;23286:74;;23369:93;23458:3;23369:93;:::i;:::-;23487:2;23482:3;23478:12;23471:19;;23130:366;;;:::o;23502:419::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:224::-;24067:34;24063:1;24055:6;24051:14;24044:58;24136:7;24131:2;24123:6;24119:15;24112:32;23927:224;:::o;24157:366::-;24299:3;24320:67;24384:2;24379:3;24320:67;:::i;:::-;24313:74;;24396:93;24485:3;24396:93;:::i;:::-;24514:2;24509:3;24505:12;24498:19;;24157:366;;;:::o;24529:419::-;24695:4;24733:2;24722:9;24718:18;24710:26;;24782:9;24776:4;24772:20;24768:1;24757:9;24753:17;24746:47;24810:131;24936:4;24810:131;:::i;:::-;24802:139;;24529:419;;;:::o;24954:222::-;25094:34;25090:1;25082:6;25078:14;25071:58;25163:5;25158:2;25150:6;25146:15;25139:30;24954:222;:::o;25182:366::-;25324:3;25345:67;25409:2;25404:3;25345:67;:::i;:::-;25338:74;;25421:93;25510:3;25421:93;:::i;:::-;25539:2;25534:3;25530:12;25523:19;;25182:366;;;:::o;25554:419::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25554:419;;;:::o;25979:225::-;26119:34;26115:1;26107:6;26103:14;26096:58;26188:8;26183:2;26175:6;26171:15;26164:33;25979:225;:::o;26210:366::-;26352:3;26373:67;26437:2;26432:3;26373:67;:::i;:::-;26366:74;;26449:93;26538:3;26449:93;:::i;:::-;26567:2;26562:3;26558:12;26551:19;;26210:366;;;:::o;26582:419::-;26748:4;26786:2;26775:9;26771:18;26763:26;;26835:9;26829:4;26825:20;26821:1;26810:9;26806:17;26799:47;26863:131;26989:4;26863:131;:::i;:::-;26855:139;;26582:419;;;:::o;27007:180::-;27055:77;27052:1;27045:88;27152:4;27149:1;27142:15;27176:4;27173:1;27166:15;27193:185;27233:1;27250:20;27268:1;27250:20;:::i;:::-;27245:25;;27284:20;27302:1;27284:20;:::i;:::-;27279:25;;27323:1;27313:35;;27328:18;;:::i;:::-;27313:35;27370:1;27367;27363:9;27358:14;;27193:185;;;;:::o

Swarm Source

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