ETH Price: $2,951.32 (+0.35%)

Token

YieldFarming Index (YFX)

Overview

Max Total Supply

2,666,667 YFX

Holders

2,460 (0.00%)

Market

Price

$0.9822 @ 0.000333 ETH (-0.02%)

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.173083037266408403 YFX

Value
$0.17 ( ~5.76012905507925E-05 ETH) [0.0000%]
0xd692e8e0DBd3b4b9dFefE0500F097c17AbEA4583
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

YFX is a crypto hedge fund that generates high returns on investment by farming strategies and exclusive investment opportunities.

Contract Source Code Verified (Exact Match)

Contract Name:
YFX

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-02-27
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// 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: contracts/taxable.sol



pragma solidity ^0.8.0; // Must use solidity 0.8.0 or higher. Math isn't so safe otherwise...


abstract contract Taxable is Context {

/// @dev Events defined for any contract changes.

	event TaxOn(address account); // Emits event "Tax On" when tax is enabled, returning the address of the Governor.
	event TaxOff(address account); // Emits event "Tax Off" when tax is disabled, returning the address of the Governor.
    event TaxChanged(address account); // Emits event "Tax Changed" when tax amount is updated, returning the address of the Governor.
	event TaxDestinationChanged(address account); // Emits event "Tax Destination Changed" when tax destination is changed, returning the address of the President.

/// @dev Name and type of constants defined.

	bool private _taxed; // Stores whether tax is enabled/disabled in a boolean.
	uint private _thetax; // Stores tax amount as a uint256 integer.
    uint private _maxtax; // Stores maximum tax amount as a uint256 integer.
    uint private _mintax; // Stores minimum tax amount as a uint256 integer.
    address private _taxdestination; // Stores tax destination as a blockchain address type.
    address private _taxdestination2; // Stores tax destination as a blockchain address type.
    address private _taxdestination3; // Stores tax destination as a blockchain address type.

/// @dev Constructor adds values to constants by passing arguments from token constructor.

	constructor(bool __taxed, uint __thetax, uint __maxtax, uint __mintax, address __taxdestination, address __taxdestination2 ,address __taxdestination3) {
        _taxed = __taxed; // Recommended: false 
        _thetax = __thetax; // Recommended: 1000 ; 1000 = 10%
        _maxtax = __maxtax; // Recommended: 1500 ; 1500 = 15%
        _mintax = __mintax; // Recommended: 25 ; 25 = 0.25%
        _taxdestination = __taxdestination;
        _taxdestination2 = __taxdestination2;
        _taxdestination3 = __taxdestination3; // Recommend a fresh, dedicated secure treasury hot or cold wallet that is not the deployer.
    }

/// @dev Modifiers throw errors if conditions are not met.

	modifier whenNotTaxed() { // Modifier for requiring the tax be off in order for the caller function to work.
        _requireNotTaxed(); // Function requires tax be off.
        _;
    }

	modifier whenTaxed() { // Modifier for requiring the tax be on in order for the caller function to work.
        _requireTaxed(); // Function requires tax be on.
        _;
    }

/// @dev Public view functions allow privately stored constants to be interfaced.

	function taxed() public view virtual returns (bool) { // Function enables public interface for tax enabled/disabled boolean.
        return _taxed; // Returns true if tax is enabled, false if it is disabled.
    }

    function thetax() public view virtual returns (uint) { // Function enables public interface for tax amount in points.
        return _thetax; // Returns the current tax amount in points.
    }

    function taxdestination() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination; // Returns the destination address for the tax.
    }
        function taxdestination2() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination2; // Returns the destination address for the tax.
    }
        function taxdestination3() public view virtual returns (address) { // Function enables public interface for tax destination address.
        return _taxdestination3; // Returns the destination address for the tax.
    }

/// @dev Internal view functions contain the require() statements for the modifiers to use.

	function _requireNotTaxed() internal view virtual { // Function is used in the whenNotTaxed() modifier.
        require(!taxed(), "Taxable: taxed"); // Throws the call if the tax is disabled.
    }

	function _requireTaxed() internal view virtual { // Function is used in the whenTaxed() modifier.
        require(taxed(), "Taxable: not taxed"); // Throws the call if the tax is enabled.
    }

/// @dev Internal virtual functions perform the requested contract updates and emit the events to the blockchain.

	function _taxon() internal virtual whenNotTaxed { // Function turns on the tax if it was disabled and emits "Tax On" event.
        _taxed = true; // Sets the tax enabled boolean to true, enabling the tax.
        emit TaxOn(_msgSender()); // Emits the "Tax On" event to the blockchain.
    }

	function _taxoff() internal virtual whenTaxed { // Function turns off the tax if it was enabled and emits "Tax Off" event.
        _taxed = false; // Sets the tax enabled boolean to false, disabling the tax.
        emit TaxOff(_msgSender()); // Emits the "Tax Off" event to the blockchain.
    }

    function _updatetax(uint newtax) internal virtual { // Function updates the tax amount if in allowable range and emits "Tax Changed" event.
        require(newtax <= _maxtax, "Taxable: tax is too high"); // Throws the call if the new tax is above the maximum tax.
        require(newtax >= _mintax, "Taxable: tax is too low"); // Throws the call if the new tax is below the minimum tax.
        _thetax = newtax; // Sets the tax amount integer to the new value, updating the tax amount.
        emit TaxChanged(_msgSender());  // Emits the "Tax Changed" event to the blockchain.
    }

	function _updatetaxdestination(address newdestination, address newdestination2,address newdestination3) internal virtual { // Function updates the tax destination address and emits "Tax Destination Changed" event.
        _taxdestination = newdestination;
        _taxdestination2 = newdestination2; 
        _taxdestination3 = newdestination3;  // Sets the tax destination address to the new value, updating the tax destination address.
        emit TaxDestinationChanged(_msgSender());  // Emits the "Tax Destination Changed" event to the blockchain.
    }
}
// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: contracts/yfx.sol



pragma solidity ^0.8.4;






contract YFX is ReentrancyGuard, ERC20, AccessControl, Taxable, Ownable {

    bytes32 public constant NOT_TAXED_FROM = keccak256("NOT_TAXED_FROM");
    bytes32 public constant NOT_TAXED_TO = keccak256("NOT_TAXED_TO");
    bytes32 public constant ALWAYS_TAXED_FROM = keccak256("ALWAYS_TAXED_FROM");
    bytes32 public constant ALWAYS_TAXED_TO = keccak256("ALWAYS_TAXED_TO");
    address public constant deadaddr = 0x000000000000000000000000000000000000dEaD;

    constructor(
   
        bool __taxed,
        uint __thetax,
        uint __maxtax,
        uint __mintax,
        address __owner,
        address __owner2,
        address __owner3
        )
        ERC20("YieldFarming Index", "YFX")
        Taxable(__taxed, __thetax, __maxtax, __mintax, __owner, __owner2, __owner3)
    {
        _grantRole(DEFAULT_ADMIN_ROLE, __owner);
        _grantRole(NOT_TAXED_FROM, __owner);
        _grantRole(NOT_TAXED_TO, __owner);
        _grantRole(NOT_TAXED_FROM, __owner2);
        _grantRole(NOT_TAXED_TO, __owner2);
        _grantRole(NOT_TAXED_FROM, __owner3);
        _grantRole(NOT_TAXED_TO, __owner3);
        _grantRole(NOT_TAXED_FROM, address(this));
        _grantRole(NOT_TAXED_TO, address(this));
        _mint(__owner, 2666667 * 10 ** decimals());
    }

    function enableTax() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _taxon();
    }

    function whitelisttax(address _user) external onlyOwner{
        _grantRole(NOT_TAXED_FROM, _user);
        _grantRole(NOT_TAXED_TO, _user);
    }

    function whitelisttaxTO(address _user) external onlyOwner{
   
        _grantRole(NOT_TAXED_TO, _user);
    }

        function whitelisttaxFROM(address _user) external onlyOwner{
        _grantRole(NOT_TAXED_FROM, _user);

    }

    function disableTax() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _taxoff();
    }

    function updateTax(uint newtax) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _updatetax(newtax);
    }

    function updateTaxDestination(address newdestination, address newdestination2, address newdestination3) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _updatetaxdestination(newdestination, newdestination2, newdestination3);
    }


   function _transfer(address from, address to, uint256 amount)
        internal
        virtual
        override(ERC20)
        nonReentrant
    {
        if (hasRole(DEFAULT_ADMIN_ROLE, msg.sender)) {
            super._transfer(from, to, amount);
        } else {
            if((hasRole(NOT_TAXED_FROM, from) || hasRole(NOT_TAXED_TO, to) || !taxed())
            && !hasRole(ALWAYS_TAXED_FROM, from) && !hasRole(ALWAYS_TAXED_TO, to)) {
                super._transfer(from, to, amount);
            } else { 
                require(balanceOf(from) >= amount, "Error: transfer amount exceeds balance");
                super._transfer(from, taxdestination(), amount*thetax()*3/200000); 
                super._transfer(from, taxdestination2(), amount*thetax()*6/200000);
                super._transfer(from, taxdestination3(), amount*thetax()/200000);
                super._transfer(from, deadaddr, amount*thetax()/20000);
                super._transfer(from, to, amount*(10000-thetax())/10000);
            }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"bool","name":"__taxed","type":"bool"},{"internalType":"uint256","name":"__thetax","type":"uint256"},{"internalType":"uint256","name":"__maxtax","type":"uint256"},{"internalType":"uint256","name":"__mintax","type":"uint256"},{"internalType":"address","name":"__owner","type":"address"},{"internalType":"address","name":"__owner2","type":"address"},{"internalType":"address","name":"__owner3","type":"address"}],"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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxDestinationChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxOff","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"TaxOn","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":[],"name":"ALWAYS_TAXED_FROM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ALWAYS_TAXED_TO","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_TAXED_FROM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_TAXED_TO","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[],"name":"deadaddr","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":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxdestination","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxdestination2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxdestination3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thetax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"uint256","name":"newtax","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newdestination","type":"address"},{"internalType":"address","name":"newdestination2","type":"address"},{"internalType":"address","name":"newdestination3","type":"address"}],"name":"updateTaxDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttaxFROM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelisttaxTO","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620040f1380380620040f1833981810160405281019062000037919062000870565b868686868686866040518060400160405280601281526020017f5969656c644661726d696e6720496e64657800000000000000000000000000008152506040518060400160405280600381526020017f594658000000000000000000000000000000000000000000000000000000000081525060016000819055508160049081620000c3919062000b93565b508060059081620000d5919062000b93565b50505086600760006101000a81548160ff021916908315150217905550856008819055508460098190555083600a8190555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505050620001f1620001e5620003e260201b60201c565b620003ea60201b60201c565b620002066000801b84620004b060201b60201c565b620002387f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784620004b060201b60201c565b6200026a7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff84620004b060201b60201c565b6200029c7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123783620004b060201b60201c565b620002ce7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83620004b060201b60201c565b620003007f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123782620004b060201b60201c565b620003327f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff82620004b060201b60201c565b620003647f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123730620004b060201b60201c565b620003967f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff30620004b060201b60201c565b620003d583620003ab620005a260201b60201c565b600a620003b9919062000e0a565b6228b0ab620003c9919062000e5b565b620005ab60201b60201c565b5050505050505062000f92565b600033905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004c282826200071960201b60201c565b6200059e5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000543620003e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200061d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006149062000f07565b60405180910390fd5b62000631600083836200078460201b60201c565b806003600082825462000645919062000f29565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006f9919062000f75565b60405180910390a362000715600083836200078960201b60201c565b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b600080fd5b60008115159050919050565b620007aa8162000793565b8114620007b657600080fd5b50565b600081519050620007ca816200079f565b92915050565b6000819050919050565b620007e581620007d0565b8114620007f157600080fd5b50565b6000815190506200080581620007da565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000838826200080b565b9050919050565b6200084a816200082b565b81146200085657600080fd5b50565b6000815190506200086a816200083f565b92915050565b600080600080600080600060e0888a0312156200089257620008916200078e565b5b6000620008a28a828b01620007b9565b9750506020620008b58a828b01620007f4565b9650506040620008c88a828b01620007f4565b9550506060620008db8a828b01620007f4565b9450506080620008ee8a828b0162000859565b93505060a0620009018a828b0162000859565b92505060c0620009148a828b0162000859565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009a557607f821691505b602082108103620009bb57620009ba6200095d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009e6565b62000a318683620009e6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000a7462000a6e62000a6884620007d0565b62000a49565b620007d0565b9050919050565b6000819050919050565b62000a908362000a53565b62000aa862000a9f8262000a7b565b848454620009f3565b825550505050565b600090565b62000abf62000ab0565b62000acc81848462000a85565b505050565b5b8181101562000af45762000ae860008262000ab5565b60018101905062000ad2565b5050565b601f82111562000b435762000b0d81620009c1565b62000b1884620009d6565b8101602085101562000b28578190505b62000b4062000b3785620009d6565b83018262000ad1565b50505b505050565b600082821c905092915050565b600062000b686000198460080262000b48565b1980831691505092915050565b600062000b83838362000b55565b9150826002028217905092915050565b62000b9e8262000923565b67ffffffffffffffff81111562000bba5762000bb96200092e565b5b62000bc682546200098c565b62000bd382828562000af8565b600060209050601f83116001811462000c0b576000841562000bf6578287015190505b62000c02858262000b75565b86555062000c72565b601f19841662000c1b86620009c1565b60005b8281101562000c455784890151825560018201915060208501945060208101905062000c1e565b8683101562000c65578489015162000c61601f89168262000b55565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d085780860481111562000ce05762000cdf62000c7a565b5b600185161562000cf05780820291505b808102905062000d008562000ca9565b945062000cc0565b94509492505050565b60008262000d23576001905062000df6565b8162000d33576000905062000df6565b816001811462000d4c576002811462000d575762000d8d565b600191505062000df6565b60ff84111562000d6c5762000d6b62000c7a565b5b8360020a91508482111562000d865762000d8562000c7a565b5b5062000df6565b5060208310610133831016604e8410600b841016171562000dc75782820a90508381111562000dc15762000dc062000c7a565b5b62000df6565b62000dd6848484600162000cb6565b9250905081840481111562000df05762000def62000c7a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e1782620007d0565b915062000e248362000dfd565b925062000e537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d11565b905092915050565b600062000e6882620007d0565b915062000e7583620007d0565b925082820262000e8581620007d0565b9150828204841483151762000e9f5762000e9e62000c7a565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eef601f8362000ea6565b915062000efc8262000eb7565b602082019050919050565b6000602082019050818103600083015262000f228162000ee0565b9050919050565b600062000f3682620007d0565b915062000f4383620007d0565b925082820190508082111562000f5e5762000f5d62000c7a565b5b92915050565b62000f6f81620007d0565b82525050565b600060208201905062000f8c600083018462000f64565b92915050565b61314f8062000fa26000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a457c2d7116100b8578063ced695a41161007c578063ced695a414610681578063d547741f1461068b578063dd62ed3e146106a7578063ee240bbc146106d7578063f2fde38b146106f557610232565b8063a457c2d7146105cb578063a9059cbb146105fb578063a9eec33a1461062b578063c498f37614610647578063cca0feb61461066557610232565b80638da5cb5b116100ff5780638da5cb5b1461052357806391d148541461054157806395d89b41146105715780639e01392f1461058f578063a217fddf146105ad57610232565b806370a08231146104af578063715018a6146104df57806372922a37146104e95780638a2b66d11461050557610232565b8063313ce567116101be57806346a85aa41161018257806346a85aa41461042f578063513fbcec1461044d57806353eb3bcf146104695780635acd2fa6146104735780635f64d7301461049157610232565b8063313ce5671461038957806336568abe146103a75780633785e6d9146103c357806339509351146103e15780633b9b03141461041157610232565b80631c3269b7116102055780631c3269b7146102d357806323b872dd146102ef578063248a9ca31461031f5780632713c21e1461034f5780632f2ff15d1461036d57610232565b806301ffc9a71461023757806306fdde0314610267578063095ea7b31461028557806318160ddd146102b5575b600080fd5b610251600480360381019061024c91906120e8565b610711565b60405161025e9190612130565b60405180910390f35b61026f61078b565b60405161027c91906121db565b60405180910390f35b61029f600480360381019061029a9190612291565b61081d565b6040516102ac9190612130565b60405180910390f35b6102bd610840565b6040516102ca91906122e0565b60405180910390f35b6102ed60048036038101906102e891906122fb565b61084a565b005b61030960048036038101906103049190612328565b61087f565b6040516103169190612130565b60405180910390f35b610339600480360381019061033491906123b1565b6108ae565b60405161034691906123ed565b60405180910390f35b6103576108ce565b60405161036491906123ed565b60405180910390f35b61038760048036038101906103829190612408565b6108f2565b005b610391610913565b60405161039e9190612464565b60405180910390f35b6103c160048036038101906103bc9190612408565b61091c565b005b6103cb61099f565b6040516103d8919061248e565b60405180910390f35b6103fb60048036038101906103f69190612291565b6109c9565b6040516104089190612130565b60405180910390f35b610419610a00565b60405161042691906122e0565b60405180910390f35b610437610a0a565b60405161044491906123ed565b60405180910390f35b610467600480360381019061046291906122fb565b610a2e565b005b610471610a8d565b005b61047b610aa5565b604051610488919061248e565b60405180910390f35b610499610aab565b6040516104a691906123ed565b60405180910390f35b6104c960048036038101906104c491906122fb565b610acf565b6040516104d691906122e0565b60405180910390f35b6104e7610b18565b005b61050360048036038101906104fe91906122fb565b610b2c565b005b61050d610b61565b60405161051a919061248e565b60405180910390f35b61052b610b8b565b604051610538919061248e565b60405180910390f35b61055b60048036038101906105569190612408565b610bb5565b6040516105689190612130565b60405180910390f35b610579610c20565b60405161058691906121db565b60405180910390f35b610597610cb2565b6040516105a49190612130565b60405180910390f35b6105b5610cc9565b6040516105c291906123ed565b60405180910390f35b6105e560048036038101906105e09190612291565b610cd0565b6040516105f29190612130565b60405180910390f35b61061560048036038101906106109190612291565b610d47565b6040516106229190612130565b60405180910390f35b610645600480360381019061064091906124a9565b610d6a565b005b61064f610d88565b60405161065c91906123ed565b60405180910390f35b61067f600480360381019061067a91906124fc565b610dac565b005b610689610dc6565b005b6106a560048036038101906106a09190612408565b610dde565b005b6106c160048036038101906106bc9190612529565b610dff565b6040516106ce91906122e0565b60405180910390f35b6106df610e86565b6040516106ec919061248e565b60405180910390f35b61070f600480360381019061070a91906122fb565b610eb0565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610784575061078382610f33565b5b9050919050565b60606004805461079a90612598565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690612598565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b600080610828610f9d565b9050610835818585610fa5565b600191505092915050565b6000600354905090565b61085261116e565b61087c7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed2443461237826111ec565b50565b60008061088a610f9d565b90506108978582856112cd565b6108a2858585611359565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123781565b6108fb826108ae565b610904816115d4565b61090e83836111ec565b505050565b60006012905090565b610924610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061263b565b60405180910390fd5b61099b82826115e8565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806109d4610f9d565b90506109f58185856109e68589610dff565b6109f0919061268a565b610fa5565b600191505092915050565b6000600854905090565b7fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3581565b610a3661116e565b610a607f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed2443461237826111ec565b610a8a7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff826111ec565b50565b6000801b610a9a816115d4565b610aa26116ca565b50565b61dead81565b7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b2061116e565b610b2a600061172d565b565b610b3461116e565b610b5e7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff826111ec565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610c2f90612598565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5b90612598565b8015610ca85780601f10610c7d57610100808354040283529160200191610ca8565b820191906000526020600020905b815481529060010190602001808311610c8b57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff16905090565b6000801b81565b600080610cdb610f9d565b90506000610ce98286610dff565b905083811015610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590612730565b60405180910390fd5b610d3b8286868403610fa5565b60019250505092915050565b600080610d52610f9d565b9050610d5f818585611359565b600191505092915050565b6000801b610d77816115d4565b610d828484846117f3565b50505050565b7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7881565b6000801b610db9816115d4565b610dc2826118f9565b5050565b6000801b610dd3816115d4565b610ddb6119cb565b50565b610de7826108ae565b610df0816115d4565b610dfa83836115e8565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eb861116e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906127c2565b60405180910390fd5b610f308161172d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906128e6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161116191906122e0565b60405180910390a3505050565b611176610f9d565b73ffffffffffffffffffffffffffffffffffffffff16611194610b8b565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612952565b60405180910390fd5b565b6111f68282610bb5565b6112c95760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061126e610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006112d98484610dff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113535781811015611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906129be565b60405180910390fd5b6113528484848403610fa5565b5b50505050565b611361611a2e565b61136e6000801b33610bb5565b156113835761137e838383611a7d565b6115c7565b6113ad7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784610bb5565b806113de57506113dd7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83610bb5565b5b806113ee57506113ec610cb2565b155b8015611421575061141f7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7884610bb5565b155b801561145457506114527fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3583610bb5565b155b1561146957611464838383611a7d565b6115c6565b8061147384610acf565b10156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90612a50565b60405180910390fd5b6114f2836114c0610b61565b62030d4060036114ce610a00565b866114d99190612a70565b6114e39190612a70565b6114ed9190612ae1565b611a7d565b611530836114fe61099f565b62030d40600661150c610a00565b866115179190612a70565b6115219190612a70565b61152b9190612ae1565b611a7d565b6115628361153c610e86565b62030d40611548610a00565b856115539190612a70565b61155d9190612ae1565b611a7d565b61158e8361dead614e20611574610a00565b8561157f9190612a70565b6115899190612ae1565b611a7d565b6115c5838361271061159e610a00565b6127106115ab9190612b12565b856115b69190612a70565b6115c09190612ae1565b611a7d565b5b5b6115cf611cf6565b505050565b6115e5816115e0610f9d565b611d00565b50565b6115f28282610bb5565b156116c65760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061166b610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6116d2611d85565b6001600760006101000a81548160ff0219169083151502179055507fcca130fdd52ce6e5eedb160c5f635a53883abcfe2b46453038a1516d7d5380b9611716610f9d565b604051611723919061248e565b60405180910390a1565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f09eee28d8d70bfad809ce8acadd46ce657b1fa64646b1e4b414e6bbb2eb2c8fa6118df610f9d565b6040516118ec919061248e565b60405180910390a1505050565b60095481111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612b92565b60405180910390fd5b600a54811015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612bfe565b60405180910390fd5b806008819055507fc8eab30ec12770242ba7c205b239d632db8d3f54b3392aa8692893c8fd07abc36119b3610f9d565b6040516119c0919061248e565b60405180910390a150565b6119d3611dcf565b6000600760006101000a81548160ff0219169083151502179055507f8b99205429b09a5a41d0d69839e5129b5f813b29a8e9924b45131170948d88a8611a17610f9d565b604051611a24919061248e565b60405180910390a1565b600260005403611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90612c6a565b60405180910390fd5b6002600081905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390612cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290612d8e565b60405180910390fd5b611b66838383611e18565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490612e20565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cdd91906122e0565b60405180910390a3611cf0848484611e1d565b50505050565b6001600081905550565b611d0a8282610bb5565b611d8157611d1781611e22565b611d258360001c6020611e4f565b604051602001611d36929190612f14565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7891906121db565b60405180910390fd5b5050565b611d8d610cb2565b15611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490612f9a565b60405180910390fd5b565b611dd7610cb2565b611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90613006565b60405180910390fd5b565b505050565b505050565b6060611e488273ffffffffffffffffffffffffffffffffffffffff16601460ff16611e4f565b9050919050565b606060006002836002611e629190612a70565b611e6c919061268a565b67ffffffffffffffff811115611e8557611e84613026565b5b6040519080825280601f01601f191660200182016040528015611eb75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611eef57611eee613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611f5357611f52613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611f939190612a70565b611f9d919061268a565b90505b600181111561203d577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611fdf57611fde613055565b5b1a60f81b828281518110611ff657611ff5613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061203690613084565b9050611fa0565b5060008414612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906130f9565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c581612090565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b6000602082840312156120fe576120fd61208b565b5b600061210c848285016120d3565b91505092915050565b60008115159050919050565b61212a81612115565b82525050565b60006020820190506121456000830184612121565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561218557808201518184015260208101905061216a565b60008484015250505050565b6000601f19601f8301169050919050565b60006121ad8261214b565b6121b78185612156565b93506121c7818560208601612167565b6121d081612191565b840191505092915050565b600060208201905081810360008301526121f581846121a2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612228826121fd565b9050919050565b6122388161221d565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b6000819050919050565b61226e8161225b565b811461227957600080fd5b50565b60008135905061228b81612265565b92915050565b600080604083850312156122a8576122a761208b565b5b60006122b685828601612246565b92505060206122c78582860161227c565b9150509250929050565b6122da8161225b565b82525050565b60006020820190506122f560008301846122d1565b92915050565b6000602082840312156123115761231061208b565b5b600061231f84828501612246565b91505092915050565b6000806000606084860312156123415761234061208b565b5b600061234f86828701612246565b935050602061236086828701612246565b92505060406123718682870161227c565b9150509250925092565b6000819050919050565b61238e8161237b565b811461239957600080fd5b50565b6000813590506123ab81612385565b92915050565b6000602082840312156123c7576123c661208b565b5b60006123d58482850161239c565b91505092915050565b6123e78161237b565b82525050565b600060208201905061240260008301846123de565b92915050565b6000806040838503121561241f5761241e61208b565b5b600061242d8582860161239c565b925050602061243e85828601612246565b9150509250929050565b600060ff82169050919050565b61245e81612448565b82525050565b60006020820190506124796000830184612455565b92915050565b6124888161221d565b82525050565b60006020820190506124a3600083018461247f565b92915050565b6000806000606084860312156124c2576124c161208b565b5b60006124d086828701612246565b93505060206124e186828701612246565b92505060406124f286828701612246565b9150509250925092565b6000602082840312156125125761251161208b565b5b60006125208482850161227c565b91505092915050565b600080604083850312156125405761253f61208b565b5b600061254e85828601612246565b925050602061255f85828601612246565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125b057607f821691505b6020821081036125c3576125c2612569565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612625602f83612156565b9150612630826125c9565b604082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126958261225b565b91506126a08361225b565b92508282019050808211156126b8576126b761265b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271a602583612156565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127ac602683612156565b91506127b782612750565b604082019050919050565b600060208201905081810360008301526127db8161279f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061283e602483612156565b9150612849826127e2565b604082019050919050565b6000602082019050818103600083015261286d81612831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d0602283612156565b91506128db82612874565b604082019050919050565b600060208201905081810360008301526128ff816128c3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061293c602083612156565b915061294782612906565b602082019050919050565b6000602082019050818103600083015261296b8161292f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129a8601d83612156565b91506129b382612972565b602082019050919050565b600060208201905081810360008301526129d78161299b565b9050919050565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a3a602683612156565b9150612a45826129de565b604082019050919050565b60006020820190508181036000830152612a6981612a2d565b9050919050565b6000612a7b8261225b565b9150612a868361225b565b9250828202612a948161225b565b91508282048414831517612aab57612aaa61265b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612aec8261225b565b9150612af78361225b565b925082612b0757612b06612ab2565b5b828204905092915050565b6000612b1d8261225b565b9150612b288361225b565b9250828203905081811115612b4057612b3f61265b565b5b92915050565b7f54617861626c653a2074617820697320746f6f20686967680000000000000000600082015250565b6000612b7c601883612156565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f54617861626c653a2074617820697320746f6f206c6f77000000000000000000600082015250565b6000612be8601783612156565b9150612bf382612bb2565b602082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c54601f83612156565b9150612c5f82612c1e565b602082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ce6602583612156565b9150612cf182612c8a565b604082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d78602383612156565b9150612d8382612d1c565b604082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e0a602683612156565b9150612e1582612dae565b604082019050919050565b60006020820190508181036000830152612e3981612dfd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e81601783612e40565b9150612e8c82612e4b565b601782019050919050565b6000612ea28261214b565b612eac8185612e40565b9350612ebc818560208601612167565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612efe601183612e40565b9150612f0982612ec8565b601182019050919050565b6000612f1f82612e74565b9150612f2b8285612e97565b9150612f3682612ef1565b9150612f428284612e97565b91508190509392505050565b7f54617861626c653a207461786564000000000000000000000000000000000000600082015250565b6000612f84600e83612156565b9150612f8f82612f4e565b602082019050919050565b60006020820190508181036000830152612fb381612f77565b9050919050565b7f54617861626c653a206e6f742074617865640000000000000000000000000000600082015250565b6000612ff0601283612156565b9150612ffb82612fba565b602082019050919050565b6000602082019050818103600083015261301f81612fe3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061308f8261225b565b9150600082036130a2576130a161265b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006130e3602083612156565b91506130ee826130ad565b602082019050919050565b60006020820190508181036000830152613112816130d6565b905091905056fea264697066735822122062bd5ba43178632d189a85c6ed2d1120df9fb74cee494493800f3c51d39a287664736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269000000000000000000000000c6493626be58dc647a5103970da5bcf9f7fdbfd200000000000000000000000011a70541df802260856087275115f4735849ea1c

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a457c2d7116100b8578063ced695a41161007c578063ced695a414610681578063d547741f1461068b578063dd62ed3e146106a7578063ee240bbc146106d7578063f2fde38b146106f557610232565b8063a457c2d7146105cb578063a9059cbb146105fb578063a9eec33a1461062b578063c498f37614610647578063cca0feb61461066557610232565b80638da5cb5b116100ff5780638da5cb5b1461052357806391d148541461054157806395d89b41146105715780639e01392f1461058f578063a217fddf146105ad57610232565b806370a08231146104af578063715018a6146104df57806372922a37146104e95780638a2b66d11461050557610232565b8063313ce567116101be57806346a85aa41161018257806346a85aa41461042f578063513fbcec1461044d57806353eb3bcf146104695780635acd2fa6146104735780635f64d7301461049157610232565b8063313ce5671461038957806336568abe146103a75780633785e6d9146103c357806339509351146103e15780633b9b03141461041157610232565b80631c3269b7116102055780631c3269b7146102d357806323b872dd146102ef578063248a9ca31461031f5780632713c21e1461034f5780632f2ff15d1461036d57610232565b806301ffc9a71461023757806306fdde0314610267578063095ea7b31461028557806318160ddd146102b5575b600080fd5b610251600480360381019061024c91906120e8565b610711565b60405161025e9190612130565b60405180910390f35b61026f61078b565b60405161027c91906121db565b60405180910390f35b61029f600480360381019061029a9190612291565b61081d565b6040516102ac9190612130565b60405180910390f35b6102bd610840565b6040516102ca91906122e0565b60405180910390f35b6102ed60048036038101906102e891906122fb565b61084a565b005b61030960048036038101906103049190612328565b61087f565b6040516103169190612130565b60405180910390f35b610339600480360381019061033491906123b1565b6108ae565b60405161034691906123ed565b60405180910390f35b6103576108ce565b60405161036491906123ed565b60405180910390f35b61038760048036038101906103829190612408565b6108f2565b005b610391610913565b60405161039e9190612464565b60405180910390f35b6103c160048036038101906103bc9190612408565b61091c565b005b6103cb61099f565b6040516103d8919061248e565b60405180910390f35b6103fb60048036038101906103f69190612291565b6109c9565b6040516104089190612130565b60405180910390f35b610419610a00565b60405161042691906122e0565b60405180910390f35b610437610a0a565b60405161044491906123ed565b60405180910390f35b610467600480360381019061046291906122fb565b610a2e565b005b610471610a8d565b005b61047b610aa5565b604051610488919061248e565b60405180910390f35b610499610aab565b6040516104a691906123ed565b60405180910390f35b6104c960048036038101906104c491906122fb565b610acf565b6040516104d691906122e0565b60405180910390f35b6104e7610b18565b005b61050360048036038101906104fe91906122fb565b610b2c565b005b61050d610b61565b60405161051a919061248e565b60405180910390f35b61052b610b8b565b604051610538919061248e565b60405180910390f35b61055b60048036038101906105569190612408565b610bb5565b6040516105689190612130565b60405180910390f35b610579610c20565b60405161058691906121db565b60405180910390f35b610597610cb2565b6040516105a49190612130565b60405180910390f35b6105b5610cc9565b6040516105c291906123ed565b60405180910390f35b6105e560048036038101906105e09190612291565b610cd0565b6040516105f29190612130565b60405180910390f35b61061560048036038101906106109190612291565b610d47565b6040516106229190612130565b60405180910390f35b610645600480360381019061064091906124a9565b610d6a565b005b61064f610d88565b60405161065c91906123ed565b60405180910390f35b61067f600480360381019061067a91906124fc565b610dac565b005b610689610dc6565b005b6106a560048036038101906106a09190612408565b610dde565b005b6106c160048036038101906106bc9190612529565b610dff565b6040516106ce91906122e0565b60405180910390f35b6106df610e86565b6040516106ec919061248e565b60405180910390f35b61070f600480360381019061070a91906122fb565b610eb0565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610784575061078382610f33565b5b9050919050565b60606004805461079a90612598565b80601f01602080910402602001604051908101604052809291908181526020018280546107c690612598565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b600080610828610f9d565b9050610835818585610fa5565b600191505092915050565b6000600354905090565b61085261116e565b61087c7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed2443461237826111ec565b50565b60008061088a610f9d565b90506108978582856112cd565b6108a2858585611359565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123781565b6108fb826108ae565b610904816115d4565b61090e83836111ec565b505050565b60006012905090565b610924610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061263b565b60405180910390fd5b61099b82826115e8565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806109d4610f9d565b90506109f58185856109e68589610dff565b6109f0919061268a565b610fa5565b600191505092915050565b6000600854905090565b7fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3581565b610a3661116e565b610a607f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed2443461237826111ec565b610a8a7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff826111ec565b50565b6000801b610a9a816115d4565b610aa26116ca565b50565b61dead81565b7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b2061116e565b610b2a600061172d565b565b610b3461116e565b610b5e7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff826111ec565b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060058054610c2f90612598565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5b90612598565b8015610ca85780601f10610c7d57610100808354040283529160200191610ca8565b820191906000526020600020905b815481529060010190602001808311610c8b57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff16905090565b6000801b81565b600080610cdb610f9d565b90506000610ce98286610dff565b905083811015610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590612730565b60405180910390fd5b610d3b8286868403610fa5565b60019250505092915050565b600080610d52610f9d565b9050610d5f818585611359565b600191505092915050565b6000801b610d77816115d4565b610d828484846117f3565b50505050565b7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7881565b6000801b610db9816115d4565b610dc2826118f9565b5050565b6000801b610dd3816115d4565b610ddb6119cb565b50565b610de7826108ae565b610df0816115d4565b610dfa83836115e8565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610eb861116e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906127c2565b60405180910390fd5b610f308161172d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906128e6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161116191906122e0565b60405180910390a3505050565b611176610f9d565b73ffffffffffffffffffffffffffffffffffffffff16611194610b8b565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612952565b60405180910390fd5b565b6111f68282610bb5565b6112c95760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061126e610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006112d98484610dff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113535781811015611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906129be565b60405180910390fd5b6113528484848403610fa5565b5b50505050565b611361611a2e565b61136e6000801b33610bb5565b156113835761137e838383611a7d565b6115c7565b6113ad7f5a8e93afc88a8f41c32a59ead48949c995bbbd1ca15b8a3f9b53ed244346123784610bb5565b806113de57506113dd7f651dbafbf0066bfdd2c717cccc977cff67bf8877ed830ce641731c2e8837c0ff83610bb5565b5b806113ee57506113ec610cb2565b155b8015611421575061141f7f3c9053d8d897bea84f1a2e8814845cc40f47b0a508dc93e56bc37c81c21a3b7884610bb5565b155b801561145457506114527fdb1f6cc858f64c436f0ba814bf59b72262e27f9b82ae65442c00c7cfad070f3583610bb5565b155b1561146957611464838383611a7d565b6115c6565b8061147384610acf565b10156114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90612a50565b60405180910390fd5b6114f2836114c0610b61565b62030d4060036114ce610a00565b866114d99190612a70565b6114e39190612a70565b6114ed9190612ae1565b611a7d565b611530836114fe61099f565b62030d40600661150c610a00565b866115179190612a70565b6115219190612a70565b61152b9190612ae1565b611a7d565b6115628361153c610e86565b62030d40611548610a00565b856115539190612a70565b61155d9190612ae1565b611a7d565b61158e8361dead614e20611574610a00565b8561157f9190612a70565b6115899190612ae1565b611a7d565b6115c5838361271061159e610a00565b6127106115ab9190612b12565b856115b69190612a70565b6115c09190612ae1565b611a7d565b5b5b6115cf611cf6565b505050565b6115e5816115e0610f9d565b611d00565b50565b6115f28282610bb5565b156116c65760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061166b610f9d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6116d2611d85565b6001600760006101000a81548160ff0219169083151502179055507fcca130fdd52ce6e5eedb160c5f635a53883abcfe2b46453038a1516d7d5380b9611716610f9d565b604051611723919061248e565b60405180910390a1565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f09eee28d8d70bfad809ce8acadd46ce657b1fa64646b1e4b414e6bbb2eb2c8fa6118df610f9d565b6040516118ec919061248e565b60405180910390a1505050565b60095481111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612b92565b60405180910390fd5b600a54811015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a90612bfe565b60405180910390fd5b806008819055507fc8eab30ec12770242ba7c205b239d632db8d3f54b3392aa8692893c8fd07abc36119b3610f9d565b6040516119c0919061248e565b60405180910390a150565b6119d3611dcf565b6000600760006101000a81548160ff0219169083151502179055507f8b99205429b09a5a41d0d69839e5129b5f813b29a8e9924b45131170948d88a8611a17610f9d565b604051611a24919061248e565b60405180910390a1565b600260005403611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90612c6a565b60405180910390fd5b6002600081905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390612cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290612d8e565b60405180910390fd5b611b66838383611e18565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490612e20565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cdd91906122e0565b60405180910390a3611cf0848484611e1d565b50505050565b6001600081905550565b611d0a8282610bb5565b611d8157611d1781611e22565b611d258360001c6020611e4f565b604051602001611d36929190612f14565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7891906121db565b60405180910390fd5b5050565b611d8d610cb2565b15611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490612f9a565b60405180910390fd5b565b611dd7610cb2565b611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90613006565b60405180910390fd5b565b505050565b505050565b6060611e488273ffffffffffffffffffffffffffffffffffffffff16601460ff16611e4f565b9050919050565b606060006002836002611e629190612a70565b611e6c919061268a565b67ffffffffffffffff811115611e8557611e84613026565b5b6040519080825280601f01601f191660200182016040528015611eb75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611eef57611eee613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611f5357611f52613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611f939190612a70565b611f9d919061268a565b90505b600181111561203d577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611fdf57611fde613055565b5b1a60f81b828281518110611ff657611ff5613055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061203690613084565b9050611fa0565b5060008414612081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612078906130f9565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c581612090565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b6000602082840312156120fe576120fd61208b565b5b600061210c848285016120d3565b91505092915050565b60008115159050919050565b61212a81612115565b82525050565b60006020820190506121456000830184612121565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561218557808201518184015260208101905061216a565b60008484015250505050565b6000601f19601f8301169050919050565b60006121ad8261214b565b6121b78185612156565b93506121c7818560208601612167565b6121d081612191565b840191505092915050565b600060208201905081810360008301526121f581846121a2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612228826121fd565b9050919050565b6122388161221d565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b6000819050919050565b61226e8161225b565b811461227957600080fd5b50565b60008135905061228b81612265565b92915050565b600080604083850312156122a8576122a761208b565b5b60006122b685828601612246565b92505060206122c78582860161227c565b9150509250929050565b6122da8161225b565b82525050565b60006020820190506122f560008301846122d1565b92915050565b6000602082840312156123115761231061208b565b5b600061231f84828501612246565b91505092915050565b6000806000606084860312156123415761234061208b565b5b600061234f86828701612246565b935050602061236086828701612246565b92505060406123718682870161227c565b9150509250925092565b6000819050919050565b61238e8161237b565b811461239957600080fd5b50565b6000813590506123ab81612385565b92915050565b6000602082840312156123c7576123c661208b565b5b60006123d58482850161239c565b91505092915050565b6123e78161237b565b82525050565b600060208201905061240260008301846123de565b92915050565b6000806040838503121561241f5761241e61208b565b5b600061242d8582860161239c565b925050602061243e85828601612246565b9150509250929050565b600060ff82169050919050565b61245e81612448565b82525050565b60006020820190506124796000830184612455565b92915050565b6124888161221d565b82525050565b60006020820190506124a3600083018461247f565b92915050565b6000806000606084860312156124c2576124c161208b565b5b60006124d086828701612246565b93505060206124e186828701612246565b92505060406124f286828701612246565b9150509250925092565b6000602082840312156125125761251161208b565b5b60006125208482850161227c565b91505092915050565b600080604083850312156125405761253f61208b565b5b600061254e85828601612246565b925050602061255f85828601612246565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125b057607f821691505b6020821081036125c3576125c2612569565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612625602f83612156565b9150612630826125c9565b604082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126958261225b565b91506126a08361225b565b92508282019050808211156126b8576126b761265b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271a602583612156565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127ac602683612156565b91506127b782612750565b604082019050919050565b600060208201905081810360008301526127db8161279f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061283e602483612156565b9150612849826127e2565b604082019050919050565b6000602082019050818103600083015261286d81612831565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d0602283612156565b91506128db82612874565b604082019050919050565b600060208201905081810360008301526128ff816128c3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061293c602083612156565b915061294782612906565b602082019050919050565b6000602082019050818103600083015261296b8161292f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129a8601d83612156565b91506129b382612972565b602082019050919050565b600060208201905081810360008301526129d78161299b565b9050919050565b7f4572726f723a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612a3a602683612156565b9150612a45826129de565b604082019050919050565b60006020820190508181036000830152612a6981612a2d565b9050919050565b6000612a7b8261225b565b9150612a868361225b565b9250828202612a948161225b565b91508282048414831517612aab57612aaa61265b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612aec8261225b565b9150612af78361225b565b925082612b0757612b06612ab2565b5b828204905092915050565b6000612b1d8261225b565b9150612b288361225b565b9250828203905081811115612b4057612b3f61265b565b5b92915050565b7f54617861626c653a2074617820697320746f6f20686967680000000000000000600082015250565b6000612b7c601883612156565b9150612b8782612b46565b602082019050919050565b60006020820190508181036000830152612bab81612b6f565b9050919050565b7f54617861626c653a2074617820697320746f6f206c6f77000000000000000000600082015250565b6000612be8601783612156565b9150612bf382612bb2565b602082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c54601f83612156565b9150612c5f82612c1e565b602082019050919050565b60006020820190508181036000830152612c8381612c47565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ce6602583612156565b9150612cf182612c8a565b604082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d78602383612156565b9150612d8382612d1c565b604082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e0a602683612156565b9150612e1582612dae565b604082019050919050565b60006020820190508181036000830152612e3981612dfd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e81601783612e40565b9150612e8c82612e4b565b601782019050919050565b6000612ea28261214b565b612eac8185612e40565b9350612ebc818560208601612167565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612efe601183612e40565b9150612f0982612ec8565b601182019050919050565b6000612f1f82612e74565b9150612f2b8285612e97565b9150612f3682612ef1565b9150612f428284612e97565b91508190509392505050565b7f54617861626c653a207461786564000000000000000000000000000000000000600082015250565b6000612f84600e83612156565b9150612f8f82612f4e565b602082019050919050565b60006020820190508181036000830152612fb381612f77565b9050919050565b7f54617861626c653a206e6f742074617865640000000000000000000000000000600082015250565b6000612ff0601283612156565b9150612ffb82612fba565b602082019050919050565b6000602082019050818103600083015261301f81612fe3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061308f8261225b565b9150600082036130a2576130a161265b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006130e3602083612156565b91506130ee826130ad565b602082019050919050565b60006020820190508181036000830152613112816130d6565b905091905056fea264697066735822122062bd5ba43178632d189a85c6ed2d1120df9fb74cee494493800f3c51d39a287664736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269000000000000000000000000c6493626be58dc647a5103970da5bcf9f7fdbfd200000000000000000000000011a70541df802260856087275115f4735849ea1c

-----Decoded View---------------
Arg [0] : __taxed (bool): True
Arg [1] : __thetax (uint256): 100
Arg [2] : __maxtax (uint256): 300
Arg [3] : __mintax (uint256): 0
Arg [4] : __owner (address): 0xF44e40882F3536edfEA032530213C7FCF146b269
Arg [5] : __owner2 (address): 0xC6493626be58Dc647A5103970Da5BcF9F7FdbFd2
Arg [6] : __owner3 (address): 0x11A70541df802260856087275115f4735849ea1C

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000f44e40882f3536edfea032530213c7fcf146b269
Arg [5] : 000000000000000000000000c6493626be58dc647a5103970da5bcf9f7fdbfd2
Arg [6] : 00000000000000000000000011a70541df802260856087275115f4735849ea1c


Deployed Bytecode Sourcemap

58142:3296:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32510:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43937:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46288:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45057:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59818:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47069:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34333:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58223:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34774:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44899:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35918:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27091:221;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47773:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26660:194;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58450:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59537:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59445:84;;;:::i;:::-;;58527:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58298:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45228:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22962:103;;;:::i;:::-;;59694:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26862:219;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22314:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44156:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26437:215;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31911:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48514:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45561:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60146:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58369:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60033:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59939:86;;;:::i;:::-;;35214:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45817:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27322:221;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23220:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32510:204;32595:4;32634:32;32619:47;;;:11;:47;;;;:87;;;;32670:36;32694:11;32670:23;:36::i;:::-;32619:87;32612:94;;32510:204;;;:::o;43937:100::-;43991:13;44024:5;44017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43937:100;:::o;46288:201::-;46371:4;46388:13;46404:12;:10;:12::i;:::-;46388:28;;46427:32;46436:5;46443:7;46452:6;46427:8;:32::i;:::-;46477:4;46470:11;;;46288:201;;;;:::o;45057:108::-;45118:7;45145:12;;45138:19;;45057:108;:::o;59818:113::-;22200:13;:11;:13::i;:::-;59888:33:::1;58264:27;59915:5;59888:10;:33::i;:::-;59818:113:::0;:::o;47069:295::-;47200:4;47217:15;47235:12;:10;:12::i;:::-;47217:30;;47258:38;47274:4;47280:7;47289:6;47258:15;:38::i;:::-;47307:27;47317:4;47323:2;47327:6;47307:9;:27::i;:::-;47352:4;47345:11;;;47069:295;;;;;:::o;34333:131::-;34407:7;34434:6;:12;34441:4;34434:12;;;;;;;;;;;:22;;;34427:29;;34333:131;;;:::o;58223:68::-;58264:27;58223:68;:::o;34774:147::-;34857:18;34870:4;34857:12;:18::i;:::-;32402:16;32413:4;32402:10;:16::i;:::-;34888:25:::1;34899:4;34905:7;34888:10;:25::i;:::-;34774:147:::0;;;:::o;44899:93::-;44957:5;44982:2;44975:9;;44899:93;:::o;35918:218::-;36025:12;:10;:12::i;:::-;36014:23;;:7;:23;;;36006:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;36102:26;36114:4;36120:7;36102:11;:26::i;:::-;35918:218;;:::o;27091:221::-;27147:7;27240:16;;;;;;;;;;;27233:23;;27091:221;:::o;47773:238::-;47861:4;47878:13;47894:12;:10;:12::i;:::-;47878:28;;47917:64;47926:5;47933:7;47970:10;47942:25;47952:5;47959:7;47942:9;:25::i;:::-;:38;;;;:::i;:::-;47917:8;:64::i;:::-;47999:4;47992:11;;;47773:238;;;;:::o;26660:194::-;26707:4;26794:7;;26787:14;;26660:194;:::o;58450:70::-;58492:28;58450:70;:::o;59537:149::-;22200:13;:11;:13::i;:::-;59603:33:::1;58264:27;59630:5;59603:10;:33::i;:::-;59647:31;58337:25;59672:5;59647:10;:31::i;:::-;59537:149:::0;:::o;59445:84::-;31956:4;59482:18;;32402:16;32413:4;32402:10;:16::i;:::-;59513:8:::1;:6;:8::i;:::-;59445:84:::0;:::o;58527:77::-;58562:42;58527:77;:::o;58298:64::-;58337:25;58298:64;:::o;45228:127::-;45302:7;45329:9;:18;45339:7;45329:18;;;;;;;;;;;;;;;;45322:25;;45228:127;;;:::o;22962:103::-;22200:13;:11;:13::i;:::-;23027:30:::1;23054:1;23027:18;:30::i;:::-;22962:103::o:0;59694:112::-;22200:13;:11;:13::i;:::-;59767:31:::1;58337:25;59792:5;59767:10;:31::i;:::-;59694:112:::0;:::o;26862:219::-;26917:7;27010:15;;;;;;;;;;;27003:22;;26862:219;:::o;22314:87::-;22360:7;22387:6;;;;;;;;;;;22380:13;;22314:87;:::o;32806:147::-;32892:4;32916:6;:12;32923:4;32916:12;;;;;;;;;;;:20;;:29;32937:7;32916:29;;;;;;;;;;;;;;;;;;;;;;;;;32909:36;;32806:147;;;;:::o;44156:104::-;44212:13;44245:7;44238:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44156:104;:::o;26437:215::-;26483:4;26578:6;;;;;;;;;;;26571:13;;26437:215;:::o;31911:49::-;31956:4;31911:49;;;:::o;48514:436::-;48607:4;48624:13;48640:12;:10;:12::i;:::-;48624:28;;48663:24;48690:25;48700:5;48707:7;48690:9;:25::i;:::-;48663:52;;48754:15;48734:16;:35;;48726:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48847:60;48856:5;48863:7;48891:15;48872:16;:34;48847:8;:60::i;:::-;48938:4;48931:11;;;;48514:436;;;;:::o;45561:193::-;45640:4;45657:13;45673:12;:10;:12::i;:::-;45657:28;;45696;45706:5;45713:2;45717:6;45696:9;:28::i;:::-;45742:4;45735:11;;;45561:193;;;;:::o;60146:230::-;31956:4;60266:18;;32402:16;32413:4;32402:10;:16::i;:::-;60297:71:::1;60319:14;60335:15;60352;60297:21;:71::i;:::-;60146:230:::0;;;;:::o;58369:74::-;58413:30;58369:74;:::o;60033:105::-;31956:4;60081:18;;32402:16;32413:4;32402:10;:16::i;:::-;60112:18:::1;60123:6;60112:10;:18::i;:::-;60033:105:::0;;:::o;59939:86::-;31956:4;59977:18;;32402:16;32413:4;32402:10;:16::i;:::-;60008:9:::1;:7;:9::i;:::-;59939:86:::0;:::o;35214:149::-;35298:18;35311:4;35298:12;:18::i;:::-;32402:16;32413:4;32402:10;:16::i;:::-;35329:26:::1;35341:4;35347:7;35329:11;:26::i;:::-;35214:149:::0;;;:::o;45817:151::-;45906:7;45933:11;:18;45945:5;45933:18;;;;;;;;;;;;;;;:27;45952:7;45933:27;;;;;;;;;;;;;;;;45926:34;;45817:151;;;;:::o;27322:221::-;27378:7;27471:16;;;;;;;;;;;27464:23;;27322:221;:::o;23220:201::-;22200:13;:11;:13::i;:::-;23329:1:::1;23309:22;;:8;:22;;::::0;23301:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23385:28;23404:8;23385:18;:28::i;:::-;23220:201:::0;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;20865:98::-;20918:7;20945:10;20938:17;;20865:98;:::o;52541:380::-;52694:1;52677:19;;:5;:19;;;52669:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52775:1;52756:21;;:7;:21;;;52748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52859:6;52829:11;:18;52841:5;52829:18;;;;;;;;;;;;;;;:27;52848:7;52829:27;;;;;;;;;;;;;;;:36;;;;52897:7;52881:32;;52890:5;52881:32;;;52906:6;52881:32;;;;;;:::i;:::-;;;;;;;;52541:380;;;:::o;22479:132::-;22554:12;:10;:12::i;:::-;22543:23;;:7;:5;:7::i;:::-;:23;;;22535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22479:132::o;37515:238::-;37599:22;37607:4;37613:7;37599;:22::i;:::-;37594:152;;37670:4;37638:6;:12;37645:4;37638:12;;;;;;;;;;;:20;;:29;37659:7;37638:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;37721:12;:10;:12::i;:::-;37694:40;;37712:7;37694:40;;37706:4;37694:40;;;;;;;;;;37594:152;37515:238;;:::o;53212:453::-;53347:24;53374:25;53384:5;53391:7;53374:9;:25::i;:::-;53347:52;;53434:17;53414:16;:37;53410:248;;53496:6;53476:16;:26;;53468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53580:51;53589:5;53596:7;53624:6;53605:16;:25;53580:8;:51::i;:::-;53410:248;53336:329;53212:453;;;:::o;60385:1050::-;57470:21;:19;:21::i;:::-;60548:39:::1;31956:4;60556:18:::0;::::1;60576:10;60548:7;:39::i;:::-;60544:884;;;60604:33;60620:4;60626:2;60630:6;60604:15;:33::i;:::-;60544:884;;;60674:29;58264:27;60698:4;60674:7;:29::i;:::-;:58;;;;60707:25;58337;60729:2;60707:7;:25::i;:::-;60674:58;:70;;;;60737:7;:5;:7::i;:::-;60736:8;60674:70;60673:122;;;;;60763:32;58413:30;60790:4;60763:7;:32::i;:::-;60762:33;60673:122;:155;;;;;60800:28;58492;60825:2;60800:7;:28::i;:::-;60799:29;60673:155;60670:747;;;60849:33;60865:4;60871:2;60875:6;60849:15;:33::i;:::-;60670:747;;;60951:6;60932:15;60942:4;60932:9;:15::i;:::-;:25;;60924:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61019:65;61035:4;61041:16;:14;:16::i;:::-;61077:6;61075:1;61066:8;:6;:8::i;:::-;61059:6;:15;;;;:::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;61019:15;:65::i;:::-;61104:66;61120:4;61126:17;:15;:17::i;:::-;61163:6;61161:1;61152:8;:6;:8::i;:::-;61145:6;:15;;;;:::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;61104:15;:66::i;:::-;61189:64;61205:4;61211:17;:15;:17::i;:::-;61246:6;61237:8;:6;:8::i;:::-;61230:6;:15;;;;:::i;:::-;:22;;;;:::i;:::-;61189:15;:64::i;:::-;61272:54;61288:4;58562:42;61320:5;61311:8;:6;:8::i;:::-;61304:6;:15;;;;:::i;:::-;:21;;;;:::i;:::-;61272:15;:54::i;:::-;61345:56;61361:4;61367:2;61395:5;61385:8;:6;:8::i;:::-;61379:5;:14;;;;:::i;:::-;61371:6;:23;;;;:::i;:::-;:29;;;;:::i;:::-;61345:15;:56::i;:::-;60670:747;60544:884;57514:20:::0;:18;:20::i;:::-;60385:1050;;;:::o;33257:105::-;33324:30;33335:4;33341:12;:10;:12::i;:::-;33324:10;:30::i;:::-;33257:105;:::o;37933:239::-;38017:22;38025:4;38031:7;38017;:22::i;:::-;38013:152;;;38088:5;38056:6;:12;38063:4;38056:12;;;;;;;;;;;:20;;:29;38077:7;38056:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;38140:12;:10;:12::i;:::-;38113:40;;38131:7;38113:40;;38125:4;38113:40;;;;;;;;;;38013:152;37933:239;;:::o;28164:295::-;26090:18;:16;:18::i;:::-;28306:4:::1;28297:6;;:13;;;;;;;;;;;;;;;;;;28385:19;28391:12;:10;:12::i;:::-;28385:19;;;;;;:::i;:::-;;;;;;;;28164:295::o:0;23581:191::-;23655:16;23674:6;;;;;;;;;;;23655:25;;23700:8;23691:6;;:17;;;;;;;;;;;;;;;;;;23755:8;23724:40;;23745:8;23724:40;;;;;;;;;;;;23644:128;23581:191;:::o;29365:563::-;29606:14;29588:15;;:32;;;;;;;;;;;;;;;;;;29650:15;29631:16;;:34;;;;;;;;;;;;;;;;;;29696:15;29677:16;;:34;;;;;;;;;;;;;;;;;;29820:35;29842:12;:10;:12::i;:::-;29820:35;;;;;;:::i;:::-;;;;;;;;29365:563;;;:::o;28771:589::-;28938:7;;28928:6;:17;;28920:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;29063:7;;29053:6;:17;;29045:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;29179:6;29169:7;:16;;;;29275:24;29286:12;:10;:12::i;:::-;29275:24;;;;;;:::i;:::-;;;;;;;;28771:589;:::o;28464:299::-;26280:15;:13;:15::i;:::-;28605:5:::1;28596:6;;:14;;;;;;;;;;;;;;;;;;28687:20;28694:12;:10;:12::i;:::-;28687:20;;;;;;:::i;:::-;;;;;;;;28464:299::o:0;57550:293::-;56952:1;57684:7;;:19;57676:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;56952:1;57817:7;:18;;;;57550:293::o;49420:840::-;49567:1;49551:18;;:4;:18;;;49543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49644:1;49630:16;;:2;:16;;;49622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:38;49720:4;49726:2;49730:6;49699:20;:38::i;:::-;49750:19;49772:9;:15;49782:4;49772:15;;;;;;;;;;;;;;;;49750:37;;49821:6;49806:11;:21;;49798:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;49938:6;49924:11;:20;49906:9;:15;49916:4;49906:15;;;;;;;;;;;;;;;:38;;;;50141:6;50124:9;:13;50134:2;50124:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;50191:2;50176:26;;50185:4;50176:26;;;50195:6;50176:26;;;;;;:::i;:::-;;;;;;;;50215:37;50235:4;50241:2;50245:6;50215:19;:37::i;:::-;49532:728;49420:840;;;:::o;57851:213::-;56908:1;58034:7;:22;;;;57851:213::o;33652:492::-;33741:22;33749:4;33755:7;33741;:22::i;:::-;33736:401;;33929:28;33949:7;33929:19;:28::i;:::-;34030:38;34058:4;34050:13;;34065:2;34030:19;:38::i;:::-;33834:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33780:345;;;;;;;;;;;:::i;:::-;;;;;;;;33736:401;33652:492;;:::o;27643:199::-;27765:7;:5;:7::i;:::-;27764:8;27756:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;27643:199::o;27847:195::-;27962:7;:5;:7::i;:::-;27954:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;27847:195::o;54265:125::-;;;;:::o;54994:124::-;;;;:::o;16987:151::-;17045:13;17078:52;17106:4;17090:22;;15142:2;17078:52;;:11;:52::i;:::-;17071:59;;16987:151;;;:::o;16383:447::-;16458:13;16484:19;16529:1;16520:6;16516:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16506:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16484:47;;16542:15;:6;16549:1;16542:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16568;:6;16575:1;16568:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;16599:9;16624:1;16615:6;16611:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;16599:26;;16594:131;16631:1;16627;:5;16594:131;;;16666:8;16683:3;16675:5;:11;16666:21;;;;;;;:::i;:::-;;;;;16654:6;16661:1;16654:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;16712:1;16702:11;;;;;16634:3;;;;:::i;:::-;;;16594:131;;;;16752:1;16743:5;:10;16735:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;16815:6;16801:21;;;16383:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:77::-;5552:7;5581:5;5570:16;;5515:77;;;:::o;5598:122::-;5671:24;5689:5;5671:24;:::i;:::-;5664:5;5661:35;5651:63;;5710:1;5707;5700:12;5651:63;5598:122;:::o;5726:139::-;5772:5;5810:6;5797:20;5788:29;;5826:33;5853:5;5826:33;:::i;:::-;5726:139;;;;:::o;5871:329::-;5930:6;5979:2;5967:9;5958:7;5954:23;5950:32;5947:119;;;5985:79;;:::i;:::-;5947:119;6105:1;6130:53;6175:7;6166:6;6155:9;6151:22;6130:53;:::i;:::-;6120:63;;6076:117;5871:329;;;;:::o;6206:118::-;6293:24;6311:5;6293:24;:::i;:::-;6288:3;6281:37;6206:118;;:::o;6330:222::-;6423:4;6461:2;6450:9;6446:18;6438:26;;6474:71;6542:1;6531:9;6527:17;6518:6;6474:71;:::i;:::-;6330:222;;;;:::o;6558:474::-;6626:6;6634;6683:2;6671:9;6662:7;6658:23;6654:32;6651:119;;;6689:79;;:::i;:::-;6651:119;6809:1;6834:53;6879:7;6870:6;6859:9;6855:22;6834:53;:::i;:::-;6824:63;;6780:117;6936:2;6962:53;7007:7;6998:6;6987:9;6983:22;6962:53;:::i;:::-;6952:63;;6907:118;6558:474;;;;;:::o;7038:86::-;7073:7;7113:4;7106:5;7102:16;7091:27;;7038:86;;;:::o;7130:112::-;7213:22;7229:5;7213:22;:::i;:::-;7208:3;7201:35;7130:112;;:::o;7248:214::-;7337:4;7375:2;7364:9;7360:18;7352:26;;7388:67;7452:1;7441:9;7437:17;7428:6;7388:67;:::i;:::-;7248:214;;;;:::o;7468:118::-;7555:24;7573:5;7555:24;:::i;:::-;7550:3;7543:37;7468:118;;:::o;7592:222::-;7685:4;7723:2;7712:9;7708:18;7700:26;;7736:71;7804:1;7793:9;7789:17;7780:6;7736:71;:::i;:::-;7592:222;;;;:::o;7820:619::-;7897:6;7905;7913;7962:2;7950:9;7941:7;7937:23;7933:32;7930:119;;;7968:79;;:::i;:::-;7930:119;8088:1;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8059:117;8215:2;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8186:118;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7820:619;;;;;:::o;8445:329::-;8504:6;8553:2;8541:9;8532:7;8528:23;8524:32;8521:119;;;8559:79;;:::i;:::-;8521:119;8679:1;8704:53;8749:7;8740:6;8729:9;8725:22;8704:53;:::i;:::-;8694:63;;8650:117;8445:329;;;;:::o;8780:474::-;8848:6;8856;8905:2;8893:9;8884:7;8880:23;8876:32;8873:119;;;8911:79;;:::i;:::-;8873:119;9031:1;9056:53;9101:7;9092:6;9081:9;9077:22;9056:53;:::i;:::-;9046:63;;9002:117;9158:2;9184:53;9229:7;9220:6;9209:9;9205:22;9184:53;:::i;:::-;9174:63;;9129:118;8780:474;;;;;:::o;9260:180::-;9308:77;9305:1;9298:88;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9446:320;9490:6;9527:1;9521:4;9517:12;9507:22;;9574:1;9568:4;9564:12;9595:18;9585:81;;9651:4;9643:6;9639:17;9629:27;;9585:81;9713:2;9705:6;9702:14;9682:18;9679:38;9676:84;;9732:18;;:::i;:::-;9676:84;9497:269;9446:320;;;:::o;9772:234::-;9912:34;9908:1;9900:6;9896:14;9889:58;9981:17;9976:2;9968:6;9964:15;9957:42;9772:234;:::o;10012:366::-;10154:3;10175:67;10239:2;10234:3;10175:67;:::i;:::-;10168:74;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;10012:366;;;:::o;10384:419::-;10550:4;10588:2;10577:9;10573:18;10565:26;;10637:9;10631:4;10627:20;10623:1;10612:9;10608:17;10601:47;10665:131;10791:4;10665:131;:::i;:::-;10657:139;;10384:419;;;:::o;10809:180::-;10857:77;10854:1;10847:88;10954:4;10951:1;10944:15;10978:4;10975:1;10968:15;10995:191;11035:3;11054:20;11072:1;11054:20;:::i;:::-;11049:25;;11088:20;11106:1;11088:20;:::i;:::-;11083:25;;11131:1;11128;11124:9;11117:16;;11152:3;11149:1;11146:10;11143:36;;;11159:18;;:::i;:::-;11143:36;10995:191;;;;:::o;11192:224::-;11332:34;11328:1;11320:6;11316:14;11309:58;11401:7;11396:2;11388:6;11384:15;11377:32;11192:224;:::o;11422:366::-;11564:3;11585:67;11649:2;11644:3;11585:67;:::i;:::-;11578:74;;11661:93;11750:3;11661:93;:::i;:::-;11779:2;11774:3;11770:12;11763:19;;11422:366;;;:::o;11794:419::-;11960:4;11998:2;11987:9;11983:18;11975:26;;12047:9;12041:4;12037:20;12033:1;12022:9;12018:17;12011:47;12075:131;12201:4;12075:131;:::i;:::-;12067:139;;11794:419;;;:::o;12219:225::-;12359:34;12355:1;12347:6;12343:14;12336:58;12428:8;12423:2;12415:6;12411:15;12404:33;12219:225;:::o;12450:366::-;12592:3;12613:67;12677:2;12672:3;12613:67;:::i;:::-;12606:74;;12689:93;12778:3;12689:93;:::i;:::-;12807:2;12802:3;12798:12;12791:19;;12450:366;;;:::o;12822:419::-;12988:4;13026:2;13015:9;13011:18;13003:26;;13075:9;13069:4;13065:20;13061:1;13050:9;13046:17;13039:47;13103:131;13229:4;13103:131;:::i;:::-;13095:139;;12822:419;;;:::o;13247:223::-;13387:34;13383:1;13375:6;13371:14;13364:58;13456:6;13451:2;13443:6;13439:15;13432:31;13247:223;:::o;13476:366::-;13618:3;13639:67;13703:2;13698:3;13639:67;:::i;:::-;13632:74;;13715:93;13804:3;13715:93;:::i;:::-;13833:2;13828:3;13824:12;13817:19;;13476:366;;;:::o;13848:419::-;14014:4;14052:2;14041:9;14037:18;14029:26;;14101:9;14095:4;14091:20;14087:1;14076:9;14072:17;14065:47;14129:131;14255:4;14129:131;:::i;:::-;14121:139;;13848:419;;;:::o;14273:221::-;14413:34;14409:1;14401:6;14397:14;14390:58;14482:4;14477:2;14469:6;14465:15;14458:29;14273:221;:::o;14500:366::-;14642:3;14663:67;14727:2;14722:3;14663:67;:::i;:::-;14656:74;;14739:93;14828:3;14739:93;:::i;:::-;14857:2;14852:3;14848:12;14841:19;;14500:366;;;:::o;14872:419::-;15038:4;15076:2;15065:9;15061:18;15053:26;;15125:9;15119:4;15115:20;15111:1;15100:9;15096:17;15089:47;15153:131;15279:4;15153:131;:::i;:::-;15145:139;;14872:419;;;:::o;15297:182::-;15437:34;15433:1;15425:6;15421:14;15414:58;15297:182;:::o;15485:366::-;15627:3;15648:67;15712:2;15707:3;15648:67;:::i;:::-;15641:74;;15724:93;15813:3;15724:93;:::i;:::-;15842:2;15837:3;15833:12;15826:19;;15485:366;;;:::o;15857:419::-;16023:4;16061:2;16050:9;16046:18;16038:26;;16110:9;16104:4;16100:20;16096:1;16085:9;16081:17;16074:47;16138:131;16264:4;16138:131;:::i;:::-;16130:139;;15857:419;;;:::o;16282:179::-;16422:31;16418:1;16410:6;16406:14;16399:55;16282:179;:::o;16467:366::-;16609:3;16630:67;16694:2;16689:3;16630:67;:::i;:::-;16623:74;;16706:93;16795:3;16706:93;:::i;:::-;16824:2;16819:3;16815:12;16808:19;;16467:366;;;:::o;16839:419::-;17005:4;17043:2;17032:9;17028:18;17020:26;;17092:9;17086:4;17082:20;17078:1;17067:9;17063:17;17056:47;17120:131;17246:4;17120:131;:::i;:::-;17112:139;;16839:419;;;:::o;17264:225::-;17404:34;17400:1;17392:6;17388:14;17381:58;17473:8;17468:2;17460:6;17456:15;17449:33;17264:225;:::o;17495:366::-;17637:3;17658:67;17722:2;17717:3;17658:67;:::i;:::-;17651:74;;17734:93;17823:3;17734:93;:::i;:::-;17852:2;17847:3;17843:12;17836:19;;17495:366;;;:::o;17867:419::-;18033:4;18071:2;18060:9;18056:18;18048:26;;18120:9;18114:4;18110:20;18106:1;18095:9;18091:17;18084:47;18148:131;18274:4;18148:131;:::i;:::-;18140:139;;17867:419;;;:::o;18292:410::-;18332:7;18355:20;18373:1;18355:20;:::i;:::-;18350:25;;18389:20;18407:1;18389:20;:::i;:::-;18384:25;;18444:1;18441;18437:9;18466:30;18484:11;18466:30;:::i;:::-;18455:41;;18645:1;18636:7;18632:15;18629:1;18626:22;18606:1;18599:9;18579:83;18556:139;;18675:18;;:::i;:::-;18556:139;18340:362;18292:410;;;;:::o;18708:180::-;18756:77;18753:1;18746:88;18853:4;18850:1;18843:15;18877:4;18874:1;18867:15;18894:185;18934:1;18951:20;18969:1;18951:20;:::i;:::-;18946:25;;18985:20;19003:1;18985:20;:::i;:::-;18980:25;;19024:1;19014:35;;19029:18;;:::i;:::-;19014:35;19071:1;19068;19064:9;19059:14;;18894:185;;;;:::o;19085:194::-;19125:4;19145:20;19163:1;19145:20;:::i;:::-;19140:25;;19179:20;19197:1;19179:20;:::i;:::-;19174:25;;19223:1;19220;19216:9;19208:17;;19247:1;19241:4;19238:11;19235:37;;;19252:18;;:::i;:::-;19235:37;19085:194;;;;:::o;19285:174::-;19425:26;19421:1;19413:6;19409:14;19402:50;19285:174;:::o;19465:366::-;19607:3;19628:67;19692:2;19687:3;19628:67;:::i;:::-;19621:74;;19704:93;19793:3;19704:93;:::i;:::-;19822:2;19817:3;19813:12;19806:19;;19465:366;;;:::o;19837:419::-;20003:4;20041:2;20030:9;20026:18;20018:26;;20090:9;20084:4;20080:20;20076:1;20065:9;20061:17;20054:47;20118:131;20244:4;20118:131;:::i;:::-;20110:139;;19837:419;;;:::o;20262:173::-;20402:25;20398:1;20390:6;20386:14;20379:49;20262:173;:::o;20441:366::-;20583:3;20604:67;20668:2;20663:3;20604:67;:::i;:::-;20597:74;;20680:93;20769:3;20680:93;:::i;:::-;20798:2;20793:3;20789:12;20782:19;;20441:366;;;:::o;20813:419::-;20979:4;21017:2;21006:9;21002:18;20994:26;;21066:9;21060:4;21056:20;21052:1;21041:9;21037:17;21030:47;21094:131;21220:4;21094:131;:::i;:::-;21086:139;;20813:419;;;:::o;21238:181::-;21378:33;21374:1;21366:6;21362:14;21355:57;21238:181;:::o;21425:366::-;21567:3;21588:67;21652:2;21647:3;21588:67;:::i;:::-;21581:74;;21664:93;21753:3;21664:93;:::i;:::-;21782:2;21777:3;21773:12;21766:19;;21425:366;;;:::o;21797:419::-;21963:4;22001:2;21990:9;21986:18;21978:26;;22050:9;22044:4;22040:20;22036:1;22025:9;22021:17;22014:47;22078:131;22204:4;22078:131;:::i;:::-;22070:139;;21797:419;;;:::o;22222:224::-;22362:34;22358:1;22350:6;22346:14;22339:58;22431:7;22426:2;22418:6;22414:15;22407:32;22222:224;:::o;22452:366::-;22594:3;22615:67;22679:2;22674:3;22615:67;:::i;:::-;22608:74;;22691:93;22780:3;22691:93;:::i;:::-;22809:2;22804:3;22800:12;22793:19;;22452:366;;;:::o;22824:419::-;22990:4;23028:2;23017:9;23013:18;23005:26;;23077:9;23071:4;23067:20;23063:1;23052:9;23048:17;23041:47;23105:131;23231:4;23105:131;:::i;:::-;23097:139;;22824:419;;;:::o;23249:222::-;23389:34;23385:1;23377:6;23373:14;23366:58;23458:5;23453:2;23445:6;23441:15;23434:30;23249:222;:::o;23477:366::-;23619:3;23640:67;23704:2;23699:3;23640:67;:::i;:::-;23633:74;;23716:93;23805:3;23716:93;:::i;:::-;23834:2;23829:3;23825:12;23818:19;;23477:366;;;:::o;23849:419::-;24015:4;24053:2;24042:9;24038:18;24030:26;;24102:9;24096:4;24092:20;24088:1;24077:9;24073:17;24066:47;24130:131;24256:4;24130:131;:::i;:::-;24122:139;;23849:419;;;:::o;24274:225::-;24414:34;24410:1;24402:6;24398:14;24391:58;24483:8;24478:2;24470:6;24466:15;24459:33;24274:225;:::o;24505:366::-;24647:3;24668:67;24732:2;24727:3;24668:67;:::i;:::-;24661:74;;24744:93;24833:3;24744:93;:::i;:::-;24862:2;24857:3;24853:12;24846:19;;24505:366;;;:::o;24877:419::-;25043:4;25081:2;25070:9;25066:18;25058:26;;25130:9;25124:4;25120:20;25116:1;25105:9;25101:17;25094:47;25158:131;25284:4;25158:131;:::i;:::-;25150:139;;24877:419;;;:::o;25302:148::-;25404:11;25441:3;25426:18;;25302:148;;;;:::o;25456:173::-;25596:25;25592:1;25584:6;25580:14;25573:49;25456:173;:::o;25635:402::-;25795:3;25816:85;25898:2;25893:3;25816:85;:::i;:::-;25809:92;;25910:93;25999:3;25910:93;:::i;:::-;26028:2;26023:3;26019:12;26012:19;;25635:402;;;:::o;26043:390::-;26149:3;26177:39;26210:5;26177:39;:::i;:::-;26232:89;26314:6;26309:3;26232:89;:::i;:::-;26225:96;;26330:65;26388:6;26383:3;26376:4;26369:5;26365:16;26330:65;:::i;:::-;26420:6;26415:3;26411:16;26404:23;;26153:280;26043:390;;;;:::o;26439:167::-;26579:19;26575:1;26567:6;26563:14;26556:43;26439:167;:::o;26612:402::-;26772:3;26793:85;26875:2;26870:3;26793:85;:::i;:::-;26786:92;;26887:93;26976:3;26887:93;:::i;:::-;27005:2;27000:3;26996:12;26989:19;;26612:402;;;:::o;27020:967::-;27402:3;27424:148;27568:3;27424:148;:::i;:::-;27417:155;;27589:95;27680:3;27671:6;27589:95;:::i;:::-;27582:102;;27701:148;27845:3;27701:148;:::i;:::-;27694:155;;27866:95;27957:3;27948:6;27866:95;:::i;:::-;27859:102;;27978:3;27971:10;;27020:967;;;;;:::o;27993:164::-;28133:16;28129:1;28121:6;28117:14;28110:40;27993:164;:::o;28163:366::-;28305:3;28326:67;28390:2;28385:3;28326:67;:::i;:::-;28319:74;;28402:93;28491:3;28402:93;:::i;:::-;28520:2;28515:3;28511:12;28504:19;;28163:366;;;:::o;28535:419::-;28701:4;28739:2;28728:9;28724:18;28716:26;;28788:9;28782:4;28778:20;28774:1;28763:9;28759:17;28752:47;28816:131;28942:4;28816:131;:::i;:::-;28808:139;;28535:419;;;:::o;28960:168::-;29100:20;29096:1;29088:6;29084:14;29077:44;28960:168;:::o;29134:366::-;29276:3;29297:67;29361:2;29356:3;29297:67;:::i;:::-;29290:74;;29373:93;29462:3;29373:93;:::i;:::-;29491:2;29486:3;29482:12;29475:19;;29134:366;;;:::o;29506:419::-;29672:4;29710:2;29699:9;29695:18;29687:26;;29759:9;29753:4;29749:20;29745:1;29734:9;29730:17;29723:47;29787:131;29913:4;29787:131;:::i;:::-;29779:139;;29506:419;;;:::o;29931:180::-;29979:77;29976:1;29969:88;30076:4;30073:1;30066:15;30100:4;30097:1;30090:15;30117:180;30165:77;30162:1;30155:88;30262:4;30259:1;30252:15;30286:4;30283:1;30276:15;30303:171;30342:3;30365:24;30383:5;30365:24;:::i;:::-;30356:33;;30411:4;30404:5;30401:15;30398:41;;30419:18;;:::i;:::-;30398:41;30466:1;30459:5;30455:13;30448:20;;30303:171;;;:::o;30480:182::-;30620:34;30616:1;30608:6;30604:14;30597:58;30480:182;:::o;30668:366::-;30810:3;30831:67;30895:2;30890:3;30831:67;:::i;:::-;30824:74;;30907:93;30996:3;30907:93;:::i;:::-;31025:2;31020:3;31016:12;31009:19;;30668:366;;;:::o;31040:419::-;31206:4;31244:2;31233:9;31229:18;31221:26;;31293:9;31287:4;31283:20;31279:1;31268:9;31264:17;31257:47;31321:131;31447:4;31321:131;:::i;:::-;31313:139;;31040:419;;;:::o

Swarm Source

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