ETH Price: $3,463.55 (-6.76%)
 

Overview

Max Total Supply

15,000,000 XNP

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
0 XNP

Value
$0.00
0x7a29da37a0828a70024047d87c866f190a04dd8d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XNPToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-13
*/

// Sources flattened with hardhat v2.15.0 https://hardhat.org

// File @openzeppelin/contracts/access/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]

// 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/utils/introspection/[email protected]

// 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/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 contracts/XNPToken.sol

  pragma solidity ^0.8.0;
  contract XNPToken is ERC20, AccessControl {
    string private __name = "ExenPay Token";
    string private __symbol = "XNP";
    uint8 private __decimals = 2;
    uint private __INITIAL_SUPPLY = 1500000000;
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    event Burned(address addr, uint256 amount);

    constructor() public ERC20(__name, __symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(BURNER_ROLE, msg.sender);
        _mint(msg.sender, __INITIAL_SUPPLY);
    }

    function burn(address from, uint256 amount) public {
        require(hasRole(BURNER_ROLE, _msgSender()), "XNP Token: Caller is not a burner");
        _burn(from, amount);
        emit Burned(from, amount);
    }

    function decimals() public view virtual override returns (uint8) {
        return __decimals;
    }
  }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","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":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":"BURNER_ROLE","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"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":"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"}]

60806040526040518060400160405280600d81526020017f4578656e50617920546f6b656e00000000000000000000000000000000000000815250600690816200004a9190620007dd565b506040518060400160405280600381526020017f584e50000000000000000000000000000000000000000000000000000000000081525060079081620000919190620007dd565b506002600860006101000a81548160ff021916908360ff1602179055506359682f00600955348015620000c357600080fd5b5060068054620000d390620005cc565b80601f01602080910402602001604051908101604052809291908181526020018280546200010190620005cc565b8015620001525780601f10620001265761010080835404028352916020019162000152565b820191906000526020600020905b8154815290600101906020018083116200013457829003601f168201915b5050505050600780546200016690620005cc565b80601f01602080910402602001604051908101604052809291908181526020018280546200019490620005cc565b8015620001e55780601f10620001b957610100808354040283529160200191620001e5565b820191906000526020600020905b815481529060010190602001808311620001c757829003601f168201915b50505050508160039081620001fb9190620007dd565b5080600490816200020d9190620007dd565b505050620002256000801b336200027160201b60201c565b620002577f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336200027160201b60201c565b6200026b336009546200028760201b60201c565b620009df565b620002838282620003f460201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f09062000925565b60405180910390fd5b6200030d60008383620004e660201b60201c565b806002600082825462000321919062000976565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d49190620009c2565b60405180910390a3620003f060008383620004eb60201b60201c565b5050565b620004068282620004f060201b60201c565b620004e25760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004876200055b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005e557607f821691505b602082108103620005fb57620005fa6200059d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000626565b62000671868362000626565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006be620006b8620006b28462000689565b62000693565b62000689565b9050919050565b6000819050919050565b620006da836200069d565b620006f2620006e982620006c5565b84845462000633565b825550505050565b600090565b62000709620006fa565b62000716818484620006cf565b505050565b5b818110156200073e5762000732600082620006ff565b6001810190506200071c565b5050565b601f8211156200078d57620007578162000601565b620007628462000616565b8101602085101562000772578190505b6200078a620007818562000616565b8301826200071b565b50505b505050565b600082821c905092915050565b6000620007b26000198460080262000792565b1980831691505092915050565b6000620007cd83836200079f565b9150826002028217905092915050565b620007e88262000563565b67ffffffffffffffff8111156200080457620008036200056e565b5b620008108254620005cc565b6200081d82828562000742565b600060209050601f83116001811462000855576000841562000840578287015190505b6200084c8582620007bf565b865550620008bc565b601f198416620008658662000601565b60005b828110156200088f5784890151825560018201915060208501945060208101905062000868565b86831015620008af5784890151620008ab601f8916826200079f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200090d601f83620008c4565b91506200091a82620008d5565b602082019050919050565b600060208201905081810360008301526200094081620008fe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009838262000689565b9150620009908362000689565b9250828201905080821115620009ab57620009aa62000947565b5b92915050565b620009bc8162000689565b82525050565b6000602082019050620009d96000830184620009b1565b92915050565b6123b980620009ef6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806339509351116100ad578063a217fddf11610071578063a217fddf1461036b578063a457c2d714610389578063a9059cbb146103b9578063d547741f146103e9578063dd62ed3e146104055761012c565b806339509351146102a157806370a08231146102d157806391d148541461030157806395d89b41146103315780639dc29fac1461034f5761012c565b8063248a9ca3116100f4578063248a9ca3146101fd578063282c51f31461022d5780632f2ff15d1461024b578063313ce5671461026757806336568abe146102855761012c565b806301ffc9a71461013157806306fdde0314610161578063095ea7b31461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b61014b6004803603810190610146919061164e565b610435565b6040516101589190611696565b60405180910390f35b6101696104af565b6040516101769190611741565b60405180910390f35b610199600480360381019061019491906117f7565b610541565b6040516101a69190611696565b60405180910390f35b6101b7610564565b6040516101c49190611846565b60405180910390f35b6101e760048036038101906101e29190611861565b61056e565b6040516101f49190611696565b60405180910390f35b610217600480360381019061021291906118ea565b61059d565b6040516102249190611926565b60405180910390f35b6102356105bd565b6040516102429190611926565b60405180910390f35b61026560048036038101906102609190611941565b6105e1565b005b61026f610602565b60405161027c919061199d565b60405180910390f35b61029f600480360381019061029a9190611941565b610619565b005b6102bb60048036038101906102b691906117f7565b61069c565b6040516102c89190611696565b60405180910390f35b6102eb60048036038101906102e691906119b8565b6106d3565b6040516102f89190611846565b60405180910390f35b61031b60048036038101906103169190611941565b61071b565b6040516103289190611696565b60405180910390f35b610339610786565b6040516103469190611741565b60405180910390f35b610369600480360381019061036491906117f7565b610818565b005b6103736108cf565b6040516103809190611926565b60405180910390f35b6103a3600480360381019061039e91906117f7565b6108d6565b6040516103b09190611696565b60405180910390f35b6103d360048036038101906103ce91906117f7565b61094d565b6040516103e09190611696565b60405180910390f35b61040360048036038101906103fe9190611941565b610970565b005b61041f600480360381019061041a91906119e5565b610991565b60405161042c9190611846565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a857506104a782610a18565b5b9050919050565b6060600380546104be90611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea90611a54565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c610a82565b9050610559818585610a8a565b600191505092915050565b6000600254905090565b600080610579610a82565b9050610586858285610c53565b610591858585610cdf565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6105ea8261059d565b6105f381610f55565b6105fd8383610f69565b505050565b6000600860009054906101000a900460ff16905090565b610621610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461068e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068590611af7565b60405180910390fd5b610698828261104a565b5050565b6000806106a7610a82565b90506106c88185856106b98589610991565b6106c39190611b46565b610a8a565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461079590611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611a54565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6108497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610844610a82565b61071b565b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90611bec565b60405180910390fd5b610892828261112c565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df782826040516108c3929190611c1b565b60405180910390a15050565b6000801b81565b6000806108e1610a82565b905060006108ef8286610991565b905083811015610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90611cb6565b60405180910390fd5b6109418286868403610a8a565b60019250505092915050565b600080610958610a82565b9050610965818585610cdf565b600191505092915050565b6109798261059d565b61098281610f55565b61098c838361104a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090611d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90611dda565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c469190611846565b60405180910390a3505050565b6000610c5f8484610991565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd95781811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290611e46565b60405180910390fd5b610cd88484848403610a8a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611ed8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611f6a565b60405180910390fd5b610dc88383836112f9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590611ffc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c9190611846565b60405180910390a3610f4f8484846112fe565b50505050565b610f6681610f61610a82565b611303565b50565b610f73828261071b565b6110465760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610feb610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611054828261071b565b156111285760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110cd610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061208e565b60405180910390fd5b6111a7826000836112f9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612120565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112e09190611846565b60405180910390a36112f4836000846112fe565b505050565b505050565b505050565b61130d828261071b565b6113845761131a81611388565b6113288360001c60206113b5565b604051602001611339929190612214565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9190611741565b60405180910390fd5b5050565b60606113ae8273ffffffffffffffffffffffffffffffffffffffff16601460ff166113b5565b9050919050565b6060600060028360026113c8919061224e565b6113d29190611b46565b67ffffffffffffffff8111156113eb576113ea612290565b5b6040519080825280601f01601f19166020018201604052801561141d5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611455576114546122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106114b9576114b86122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114f9919061224e565b6115039190611b46565b90505b60018111156115a3577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611545576115446122bf565b5b1a60f81b82828151811061155c5761155b6122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061159c906122ee565b9050611506565b50600084146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612363565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61162b816115f6565b811461163657600080fd5b50565b60008135905061164881611622565b92915050565b600060208284031215611664576116636115f1565b5b600061167284828501611639565b91505092915050565b60008115159050919050565b6116908161167b565b82525050565b60006020820190506116ab6000830184611687565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116eb5780820151818401526020810190506116d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611713826116b1565b61171d81856116bc565b935061172d8185602086016116cd565b611736816116f7565b840191505092915050565b6000602082019050818103600083015261175b8184611708565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061178e82611763565b9050919050565b61179e81611783565b81146117a957600080fd5b50565b6000813590506117bb81611795565b92915050565b6000819050919050565b6117d4816117c1565b81146117df57600080fd5b50565b6000813590506117f1816117cb565b92915050565b6000806040838503121561180e5761180d6115f1565b5b600061181c858286016117ac565b925050602061182d858286016117e2565b9150509250929050565b611840816117c1565b82525050565b600060208201905061185b6000830184611837565b92915050565b60008060006060848603121561187a576118796115f1565b5b6000611888868287016117ac565b9350506020611899868287016117ac565b92505060406118aa868287016117e2565b9150509250925092565b6000819050919050565b6118c7816118b4565b81146118d257600080fd5b50565b6000813590506118e4816118be565b92915050565b600060208284031215611900576118ff6115f1565b5b600061190e848285016118d5565b91505092915050565b611920816118b4565b82525050565b600060208201905061193b6000830184611917565b92915050565b60008060408385031215611958576119576115f1565b5b6000611966858286016118d5565b9250506020611977858286016117ac565b9150509250929050565b600060ff82169050919050565b61199781611981565b82525050565b60006020820190506119b2600083018461198e565b92915050565b6000602082840312156119ce576119cd6115f1565b5b60006119dc848285016117ac565b91505092915050565b600080604083850312156119fc576119fb6115f1565b5b6000611a0a858286016117ac565b9250506020611a1b858286016117ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a6c57607f821691505b602082108103611a7f57611a7e611a25565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611ae1602f836116bc565b9150611aec82611a85565b604082019050919050565b60006020820190508181036000830152611b1081611ad4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b51826117c1565b9150611b5c836117c1565b9250828201905080821115611b7457611b73611b17565b5b92915050565b7f584e5020546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bd66021836116bc565b9150611be182611b7a565b604082019050919050565b60006020820190508181036000830152611c0581611bc9565b9050919050565b611c1581611783565b82525050565b6000604082019050611c306000830185611c0c565b611c3d6020830184611837565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ca06025836116bc565b9150611cab82611c44565b604082019050919050565b60006020820190508181036000830152611ccf81611c93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d326024836116bc565b9150611d3d82611cd6565b604082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc46022836116bc565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e30601d836116bc565b9150611e3b82611dfa565b602082019050919050565b60006020820190508181036000830152611e5f81611e23565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ec26025836116bc565b9150611ecd82611e66565b604082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f546023836116bc565b9150611f5f82611ef8565b604082019050919050565b60006020820190508181036000830152611f8381611f47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe66026836116bc565b9150611ff182611f8a565b604082019050919050565b6000602082019050818103600083015261201581611fd9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120786021836116bc565b91506120838261201c565b604082019050919050565b600060208201905081810360008301526120a78161206b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061210a6022836116bc565b9150612115826120ae565b604082019050919050565b60006020820190508181036000830152612139816120fd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612181601783612140565b915061218c8261214b565b601782019050919050565b60006121a2826116b1565b6121ac8185612140565b93506121bc8185602086016116cd565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006121fe601183612140565b9150612209826121c8565b601182019050919050565b600061221f82612174565b915061222b8285612197565b9150612236826121f1565b91506122428284612197565b91508190509392505050565b6000612259826117c1565b9150612264836117c1565b9250828202612272816117c1565b9150828204841483151761228957612288611b17565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006122f9826117c1565b91506000820361230c5761230b611b17565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061234d6020836116bc565b915061235882612317565b602082019050919050565b6000602082019050818103600083015261237c81612340565b905091905056fea2646970667358221220a9a7f80a1311c0b721f5c9e48507e1af7e43e917701a9cceba176b9a54241a6164736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806339509351116100ad578063a217fddf11610071578063a217fddf1461036b578063a457c2d714610389578063a9059cbb146103b9578063d547741f146103e9578063dd62ed3e146104055761012c565b806339509351146102a157806370a08231146102d157806391d148541461030157806395d89b41146103315780639dc29fac1461034f5761012c565b8063248a9ca3116100f4578063248a9ca3146101fd578063282c51f31461022d5780632f2ff15d1461024b578063313ce5671461026757806336568abe146102855761012c565b806301ffc9a71461013157806306fdde0314610161578063095ea7b31461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b61014b6004803603810190610146919061164e565b610435565b6040516101589190611696565b60405180910390f35b6101696104af565b6040516101769190611741565b60405180910390f35b610199600480360381019061019491906117f7565b610541565b6040516101a69190611696565b60405180910390f35b6101b7610564565b6040516101c49190611846565b60405180910390f35b6101e760048036038101906101e29190611861565b61056e565b6040516101f49190611696565b60405180910390f35b610217600480360381019061021291906118ea565b61059d565b6040516102249190611926565b60405180910390f35b6102356105bd565b6040516102429190611926565b60405180910390f35b61026560048036038101906102609190611941565b6105e1565b005b61026f610602565b60405161027c919061199d565b60405180910390f35b61029f600480360381019061029a9190611941565b610619565b005b6102bb60048036038101906102b691906117f7565b61069c565b6040516102c89190611696565b60405180910390f35b6102eb60048036038101906102e691906119b8565b6106d3565b6040516102f89190611846565b60405180910390f35b61031b60048036038101906103169190611941565b61071b565b6040516103289190611696565b60405180910390f35b610339610786565b6040516103469190611741565b60405180910390f35b610369600480360381019061036491906117f7565b610818565b005b6103736108cf565b6040516103809190611926565b60405180910390f35b6103a3600480360381019061039e91906117f7565b6108d6565b6040516103b09190611696565b60405180910390f35b6103d360048036038101906103ce91906117f7565b61094d565b6040516103e09190611696565b60405180910390f35b61040360048036038101906103fe9190611941565b610970565b005b61041f600480360381019061041a91906119e5565b610991565b60405161042c9190611846565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a857506104a782610a18565b5b9050919050565b6060600380546104be90611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546104ea90611a54565b80156105375780601f1061050c57610100808354040283529160200191610537565b820191906000526020600020905b81548152906001019060200180831161051a57829003601f168201915b5050505050905090565b60008061054c610a82565b9050610559818585610a8a565b600191505092915050565b6000600254905090565b600080610579610a82565b9050610586858285610c53565b610591858585610cdf565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6105ea8261059d565b6105f381610f55565b6105fd8383610f69565b505050565b6000600860009054906101000a900460ff16905090565b610621610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461068e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068590611af7565b60405180910390fd5b610698828261104a565b5050565b6000806106a7610a82565b90506106c88185856106b98589610991565b6106c39190611b46565b610a8a565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461079590611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611a54565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b6108497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610844610a82565b61071b565b610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90611bec565b60405180910390fd5b610892828261112c565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df782826040516108c3929190611c1b565b60405180910390a15050565b6000801b81565b6000806108e1610a82565b905060006108ef8286610991565b905083811015610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90611cb6565b60405180910390fd5b6109418286868403610a8a565b60019250505092915050565b600080610958610a82565b9050610965818585610cdf565b600191505092915050565b6109798261059d565b61098281610f55565b61098c838361104a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090611d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90611dda565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c469190611846565b60405180910390a3505050565b6000610c5f8484610991565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd95781811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290611e46565b60405180910390fd5b610cd88484848403610a8a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611ed8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611f6a565b60405180910390fd5b610dc88383836112f9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590611ffc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f3c9190611846565b60405180910390a3610f4f8484846112fe565b50505050565b610f6681610f61610a82565b611303565b50565b610f73828261071b565b6110465760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610feb610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611054828261071b565b156111285760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506110cd610a82565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061208e565b60405180910390fd5b6111a7826000836112f9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612120565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112e09190611846565b60405180910390a36112f4836000846112fe565b505050565b505050565b505050565b61130d828261071b565b6113845761131a81611388565b6113288360001c60206113b5565b604051602001611339929190612214565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9190611741565b60405180910390fd5b5050565b60606113ae8273ffffffffffffffffffffffffffffffffffffffff16601460ff166113b5565b9050919050565b6060600060028360026113c8919061224e565b6113d29190611b46565b67ffffffffffffffff8111156113eb576113ea612290565b5b6040519080825280601f01601f19166020018201604052801561141d5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611455576114546122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106114b9576114b86122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026114f9919061224e565b6115039190611b46565b90505b60018111156115a3577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611545576115446122bf565b5b1a60f81b82828151811061155c5761155b6122bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061159c906122ee565b9050611506565b50600084146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612363565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61162b816115f6565b811461163657600080fd5b50565b60008135905061164881611622565b92915050565b600060208284031215611664576116636115f1565b5b600061167284828501611639565b91505092915050565b60008115159050919050565b6116908161167b565b82525050565b60006020820190506116ab6000830184611687565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116eb5780820151818401526020810190506116d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611713826116b1565b61171d81856116bc565b935061172d8185602086016116cd565b611736816116f7565b840191505092915050565b6000602082019050818103600083015261175b8184611708565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061178e82611763565b9050919050565b61179e81611783565b81146117a957600080fd5b50565b6000813590506117bb81611795565b92915050565b6000819050919050565b6117d4816117c1565b81146117df57600080fd5b50565b6000813590506117f1816117cb565b92915050565b6000806040838503121561180e5761180d6115f1565b5b600061181c858286016117ac565b925050602061182d858286016117e2565b9150509250929050565b611840816117c1565b82525050565b600060208201905061185b6000830184611837565b92915050565b60008060006060848603121561187a576118796115f1565b5b6000611888868287016117ac565b9350506020611899868287016117ac565b92505060406118aa868287016117e2565b9150509250925092565b6000819050919050565b6118c7816118b4565b81146118d257600080fd5b50565b6000813590506118e4816118be565b92915050565b600060208284031215611900576118ff6115f1565b5b600061190e848285016118d5565b91505092915050565b611920816118b4565b82525050565b600060208201905061193b6000830184611917565b92915050565b60008060408385031215611958576119576115f1565b5b6000611966858286016118d5565b9250506020611977858286016117ac565b9150509250929050565b600060ff82169050919050565b61199781611981565b82525050565b60006020820190506119b2600083018461198e565b92915050565b6000602082840312156119ce576119cd6115f1565b5b60006119dc848285016117ac565b91505092915050565b600080604083850312156119fc576119fb6115f1565b5b6000611a0a858286016117ac565b9250506020611a1b858286016117ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a6c57607f821691505b602082108103611a7f57611a7e611a25565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611ae1602f836116bc565b9150611aec82611a85565b604082019050919050565b60006020820190508181036000830152611b1081611ad4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b51826117c1565b9150611b5c836117c1565b9250828201905080821115611b7457611b73611b17565b5b92915050565b7f584e5020546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bd66021836116bc565b9150611be182611b7a565b604082019050919050565b60006020820190508181036000830152611c0581611bc9565b9050919050565b611c1581611783565b82525050565b6000604082019050611c306000830185611c0c565b611c3d6020830184611837565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ca06025836116bc565b9150611cab82611c44565b604082019050919050565b60006020820190508181036000830152611ccf81611c93565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d326024836116bc565b9150611d3d82611cd6565b604082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc46022836116bc565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e30601d836116bc565b9150611e3b82611dfa565b602082019050919050565b60006020820190508181036000830152611e5f81611e23565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ec26025836116bc565b9150611ecd82611e66565b604082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f546023836116bc565b9150611f5f82611ef8565b604082019050919050565b60006020820190508181036000830152611f8381611f47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe66026836116bc565b9150611ff182611f8a565b604082019050919050565b6000602082019050818103600083015261201581611fd9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120786021836116bc565b91506120838261201c565b604082019050919050565b600060208201905081810360008301526120a78161206b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061210a6022836116bc565b9150612115826120ae565b604082019050919050565b60006020820190508181036000830152612139816120fd565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612181601783612140565b915061218c8261214b565b601782019050919050565b60006121a2826116b1565b6121ac8185612140565b93506121bc8185602086016116cd565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006121fe601183612140565b9150612209826121c8565b601182019050919050565b600061221f82612174565b915061222b8285612197565b9150612236826121f1565b91506122428284612197565b91508190509392505050565b6000612259826117c1565b9150612264836117c1565b9250828202612272816117c1565b9150828204841483151761228957612288611b17565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006122f9826117c1565b91506000820361230c5761230b611b17565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061234d6020836116bc565b915061235882612317565b602082019050919050565b6000602082019050818103600083015261237c81612340565b905091905056fea2646970667358221220a9a7f80a1311c0b721f5c9e48507e1af7e43e917701a9cceba176b9a54241a6164736f6c63430008120033

Deployed Bytecode Sourcemap

48513:873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26044:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37455:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39815:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38584:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40596:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27867:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48730:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28308:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49280:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29452:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41266:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38755:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26340:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37674:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49056:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25445:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42007:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39088:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28748:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39344:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26044:204;26129:4;26168:32;26153:47;;;:11;:47;;;;:87;;;;26204:36;26228:11;26204:23;:36::i;:::-;26153:87;26146:94;;26044:204;;;:::o;37455:100::-;37509:13;37542:5;37535:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37455:100;:::o;39815:201::-;39898:4;39915:13;39931:12;:10;:12::i;:::-;39915:28;;39954:32;39963:5;39970:7;39979:6;39954:8;:32::i;:::-;40004:4;39997:11;;;39815:201;;;;:::o;38584:108::-;38645:7;38672:12;;38665:19;;38584:108;:::o;40596:261::-;40693:4;40710:15;40728:12;:10;:12::i;:::-;40710:30;;40751:38;40767:4;40773:7;40782:6;40751:15;:38::i;:::-;40800:27;40810:4;40816:2;40820:6;40800:9;:27::i;:::-;40845:4;40838:11;;;40596:261;;;;;:::o;27867:131::-;27941:7;27968:6;:12;27975:4;27968:12;;;;;;;;;;;:22;;;27961:29;;27867:131;;;:::o;48730:62::-;48768:24;48730:62;:::o;28308:147::-;28391:18;28404:4;28391:12;:18::i;:::-;25936:16;25947:4;25936:10;:16::i;:::-;28422:25:::1;28433:4;28439:7;28422:10;:25::i;:::-;28308:147:::0;;;:::o;49280:101::-;49338:5;49363:10;;;;;;;;;;;49356:17;;49280:101;:::o;29452:218::-;29559:12;:10;:12::i;:::-;29548:23;;:7;:23;;;29540:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29636:26;29648:4;29654:7;29636:11;:26::i;:::-;29452:218;;:::o;41266:238::-;41354:4;41371:13;41387:12;:10;:12::i;:::-;41371:28;;41410:64;41419:5;41426:7;41463:10;41435:25;41445:5;41452:7;41435:9;:25::i;:::-;:38;;;;:::i;:::-;41410:8;:64::i;:::-;41492:4;41485:11;;;41266:238;;;;:::o;38755:127::-;38829:7;38856:9;:18;38866:7;38856:18;;;;;;;;;;;;;;;;38849:25;;38755:127;;;:::o;26340:147::-;26426:4;26450:6;:12;26457:4;26450:12;;;;;;;;;;;:20;;:29;26471:7;26450:29;;;;;;;;;;;;;;;;;;;;;;;;;26443:36;;26340:147;;;;:::o;37674:104::-;37730:13;37763:7;37756:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37674:104;:::o;49056:216::-;49126:34;48768:24;49147:12;:10;:12::i;:::-;49126:7;:34::i;:::-;49118:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49209:19;49215:4;49221:6;49209:5;:19::i;:::-;49244:20;49251:4;49257:6;49244:20;;;;;;;:::i;:::-;;;;;;;;49056:216;;:::o;25445:49::-;25490:4;25445:49;;;:::o;42007:436::-;42100:4;42117:13;42133:12;:10;:12::i;:::-;42117:28;;42156:24;42183:25;42193:5;42200:7;42183:9;:25::i;:::-;42156:52;;42247:15;42227:16;:35;;42219:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42340:60;42349:5;42356:7;42384:15;42365:16;:34;42340:8;:60::i;:::-;42431:4;42424:11;;;;42007:436;;;;:::o;39088:193::-;39167:4;39184:13;39200:12;:10;:12::i;:::-;39184:28;;39223;39233:5;39240:2;39244:6;39223:9;:28::i;:::-;39269:4;39262:11;;;39088:193;;;;:::o;28748:149::-;28832:18;28845:4;28832:12;:18::i;:::-;25936:16;25947:4;25936:10;:16::i;:::-;28863:26:::1;28875:4;28881:7;28863:11;:26::i;:::-;28748:149:::0;;;:::o;39344:151::-;39433:7;39460:11;:18;39472:5;39460:18;;;;;;;;;;;;;;;:27;39479:7;39460:27;;;;;;;;;;;;;;;;39453:34;;39344:151;;;;:::o;5834:157::-;5919:4;5958:25;5943:40;;;:11;:40;;;;5936:47;;5834:157;;;:::o;3828:98::-;3881:7;3908:10;3901:17;;3828:98;:::o;46000:346::-;46119:1;46102:19;;:5;:19;;;46094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46200:1;46181:21;;:7;:21;;;46173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46284:6;46254:11;:18;46266:5;46254:18;;;;;;;;;;;;;;;:27;46273:7;46254:27;;;;;;;;;;;;;;;:36;;;;46322:7;46306:32;;46315:5;46306:32;;;46331:6;46306:32;;;;;;:::i;:::-;;;;;;;;46000:346;;;:::o;46637:419::-;46738:24;46765:25;46775:5;46782:7;46765:9;:25::i;:::-;46738:52;;46825:17;46805:16;:37;46801:248;;46887:6;46867:16;:26;;46859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46971:51;46980:5;46987:7;47015:6;46996:16;:25;46971:8;:51::i;:::-;46801:248;46727:329;46637:419;;;:::o;42913:806::-;43026:1;43010:18;;:4;:18;;;43002:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43103:1;43089:16;;:2;:16;;;43081:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43158:38;43179:4;43185:2;43189:6;43158:20;:38::i;:::-;43209:19;43231:9;:15;43241:4;43231:15;;;;;;;;;;;;;;;;43209:37;;43280:6;43265:11;:21;;43257:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43397:6;43383:11;:20;43365:9;:15;43375:4;43365:15;;;;;;;;;;;;;;;:38;;;;43600:6;43583:9;:13;43593:2;43583:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;43650:2;43635:26;;43644:4;43635:26;;;43654:6;43635:26;;;;;;:::i;:::-;;;;;;;;43674:37;43694:4;43700:2;43704:6;43674:19;:37::i;:::-;42991:728;42913:806;;;:::o;26791:105::-;26858:30;26869:4;26875:12;:10;:12::i;:::-;26858:10;:30::i;:::-;26791:105;:::o;31049:238::-;31133:22;31141:4;31147:7;31133;:22::i;:::-;31128:152;;31204:4;31172:6;:12;31179:4;31172:12;;;;;;;;;;;:20;;:29;31193:7;31172:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;31255:12;:10;:12::i;:::-;31228:40;;31246:7;31228:40;;31240:4;31228:40;;;;;;;;;;31128:152;31049:238;;:::o;31467:239::-;31551:22;31559:4;31565:7;31551;:22::i;:::-;31547:152;;;31622:5;31590:6;:12;31597:4;31590:12;;;;;;;;;;;:20;;:29;31611:7;31590:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;31674:12;:10;:12::i;:::-;31647:40;;31665:7;31647:40;;31659:4;31647:40;;;;;;;;;;31547:152;31467:239;;:::o;44887:675::-;44990:1;44971:21;;:7;:21;;;44963:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45043:49;45064:7;45081:1;45085:6;45043:20;:49::i;:::-;45105:22;45130:9;:18;45140:7;45130:18;;;;;;;;;;;;;;;;45105:43;;45185:6;45167:14;:24;;45159:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45304:6;45287:14;:23;45266:9;:18;45276:7;45266:18;;;;;;;;;;;;;;;:44;;;;45421:6;45405:12;;:22;;;;;;;;;;;45482:1;45456:37;;45465:7;45456:37;;;45486:6;45456:37;;;;;;:::i;:::-;;;;;;;;45506:48;45526:7;45543:1;45547:6;45506:19;:48::i;:::-;44952:610;44887:675;;:::o;47656:91::-;;;;:::o;48351:90::-;;;;:::o;27186:492::-;27275:22;27283:4;27289:7;27275;:22::i;:::-;27270:401;;27463:28;27483:7;27463:19;:28::i;:::-;27564:38;27592:4;27584:13;;27599:2;27564:19;:38::i;:::-;27368:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27314:345;;;;;;;;;;;:::i;:::-;;;;;;;;27270:401;27186:492;;:::o;22950:151::-;23008:13;23041:52;23069:4;23053:22;;20825:2;23041:52;;:11;:52::i;:::-;23034:59;;22950:151;;;:::o;22346:447::-;22421:13;22447:19;22492:1;22483:6;22479:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;22469:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22447:47;;22505:15;:6;22512:1;22505:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;22531;:6;22538:1;22531:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;22562:9;22587:1;22578:6;22574:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;22562:26;;22557:131;22594:1;22590;:5;22557:131;;;22629:8;22646:3;22638:5;:11;22629:21;;;;;;;:::i;:::-;;;;;22617:6;22624:1;22617:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;22675:1;22665:11;;;;;22597:3;;;;:::i;:::-;;;22557:131;;;;22715:1;22706:5;:10;22698:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;22778:6;22764:21;;;22346: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:619::-;4632:6;4640;4648;4697:2;4685:9;4676:7;4672:23;4668:32;4665:119;;;4703:79;;:::i;:::-;4665:119;4823:1;4848:53;4893:7;4884:6;4873:9;4869:22;4848:53;:::i;:::-;4838:63;;4794:117;4950:2;4976:53;5021:7;5012:6;5001:9;4997:22;4976:53;:::i;:::-;4966:63;;4921:118;5078:2;5104:53;5149:7;5140:6;5129:9;5125:22;5104:53;:::i;:::-;5094:63;;5049:118;4555:619;;;;;:::o;5180:77::-;5217:7;5246:5;5235:16;;5180:77;;;:::o;5263:122::-;5336:24;5354:5;5336:24;:::i;:::-;5329:5;5326:35;5316:63;;5375:1;5372;5365:12;5316:63;5263:122;:::o;5391:139::-;5437:5;5475:6;5462:20;5453:29;;5491:33;5518:5;5491:33;:::i;:::-;5391:139;;;;:::o;5536:329::-;5595:6;5644:2;5632:9;5623:7;5619:23;5615:32;5612:119;;;5650:79;;:::i;:::-;5612:119;5770:1;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5741:117;5536:329;;;;:::o;5871:118::-;5958:24;5976:5;5958:24;:::i;:::-;5953:3;5946:37;5871:118;;:::o;5995:222::-;6088:4;6126:2;6115:9;6111:18;6103:26;;6139:71;6207:1;6196:9;6192:17;6183:6;6139:71;:::i;:::-;5995:222;;;;:::o;6223:474::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:53;6672:7;6663:6;6652:9;6648:22;6627:53;:::i;:::-;6617:63;;6572:118;6223:474;;;;;:::o;6703:86::-;6738:7;6778:4;6771:5;6767:16;6756:27;;6703:86;;;:::o;6795:112::-;6878:22;6894:5;6878:22;:::i;:::-;6873:3;6866:35;6795:112;;:::o;6913:214::-;7002:4;7040:2;7029:9;7025:18;7017:26;;7053:67;7117:1;7106:9;7102:17;7093:6;7053:67;:::i;:::-;6913:214;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:474::-;7536:6;7544;7593:2;7581:9;7572:7;7568:23;7564:32;7561:119;;;7599:79;;:::i;:::-;7561:119;7719:1;7744:53;7789:7;7780:6;7769:9;7765:22;7744:53;:::i;:::-;7734:63;;7690:117;7846:2;7872:53;7917:7;7908:6;7897:9;7893:22;7872:53;:::i;:::-;7862:63;;7817:118;7468:474;;;;;:::o;7948:180::-;7996:77;7993:1;7986:88;8093:4;8090:1;8083:15;8117:4;8114:1;8107:15;8134:320;8178:6;8215:1;8209:4;8205:12;8195:22;;8262:1;8256:4;8252:12;8283:18;8273:81;;8339:4;8331:6;8327:17;8317:27;;8273:81;8401:2;8393:6;8390:14;8370:18;8367:38;8364:84;;8420:18;;:::i;:::-;8364:84;8185:269;8134:320;;;:::o;8460:234::-;8600:34;8596:1;8588:6;8584:14;8577:58;8669:17;8664:2;8656:6;8652:15;8645:42;8460:234;:::o;8700:366::-;8842:3;8863:67;8927:2;8922:3;8863:67;:::i;:::-;8856:74;;8939:93;9028:3;8939:93;:::i;:::-;9057:2;9052:3;9048:12;9041:19;;8700:366;;;:::o;9072:419::-;9238:4;9276:2;9265:9;9261:18;9253:26;;9325:9;9319:4;9315:20;9311:1;9300:9;9296:17;9289:47;9353:131;9479:4;9353:131;:::i;:::-;9345:139;;9072:419;;;:::o;9497:180::-;9545:77;9542:1;9535:88;9642:4;9639:1;9632:15;9666:4;9663:1;9656:15;9683:191;9723:3;9742:20;9760:1;9742:20;:::i;:::-;9737:25;;9776:20;9794:1;9776:20;:::i;:::-;9771:25;;9819:1;9816;9812:9;9805:16;;9840:3;9837:1;9834:10;9831:36;;;9847:18;;:::i;:::-;9831:36;9683:191;;;;:::o;9880:220::-;10020:34;10016:1;10008:6;10004:14;9997:58;10089:3;10084:2;10076:6;10072:15;10065:28;9880:220;:::o;10106:366::-;10248:3;10269:67;10333:2;10328:3;10269:67;:::i;:::-;10262:74;;10345:93;10434:3;10345:93;:::i;:::-;10463:2;10458:3;10454:12;10447:19;;10106:366;;;:::o;10478:419::-;10644:4;10682:2;10671:9;10667:18;10659:26;;10731:9;10725:4;10721:20;10717:1;10706:9;10702:17;10695:47;10759:131;10885:4;10759:131;:::i;:::-;10751:139;;10478:419;;;:::o;10903:118::-;10990:24;11008:5;10990:24;:::i;:::-;10985:3;10978:37;10903:118;;:::o;11027:332::-;11148:4;11186:2;11175:9;11171:18;11163:26;;11199:71;11267:1;11256:9;11252:17;11243:6;11199:71;:::i;:::-;11280:72;11348:2;11337:9;11333:18;11324:6;11280:72;:::i;:::-;11027:332;;;;;:::o;11365:224::-;11505:34;11501:1;11493:6;11489:14;11482:58;11574:7;11569:2;11561:6;11557:15;11550:32;11365:224;:::o;11595:366::-;11737:3;11758:67;11822:2;11817:3;11758:67;:::i;:::-;11751:74;;11834:93;11923:3;11834:93;:::i;:::-;11952:2;11947:3;11943:12;11936:19;;11595:366;;;:::o;11967:419::-;12133:4;12171:2;12160:9;12156:18;12148:26;;12220:9;12214:4;12210:20;12206:1;12195:9;12191:17;12184:47;12248:131;12374:4;12248:131;:::i;:::-;12240:139;;11967:419;;;:::o;12392:223::-;12532:34;12528:1;12520:6;12516:14;12509:58;12601:6;12596:2;12588:6;12584:15;12577:31;12392:223;:::o;12621:366::-;12763:3;12784:67;12848:2;12843:3;12784:67;:::i;:::-;12777:74;;12860:93;12949:3;12860:93;:::i;:::-;12978:2;12973:3;12969:12;12962:19;;12621:366;;;:::o;12993:419::-;13159:4;13197:2;13186:9;13182:18;13174:26;;13246:9;13240:4;13236:20;13232:1;13221:9;13217:17;13210:47;13274:131;13400:4;13274:131;:::i;:::-;13266:139;;12993:419;;;:::o;13418:221::-;13558:34;13554:1;13546:6;13542:14;13535:58;13627:4;13622:2;13614:6;13610:15;13603:29;13418:221;:::o;13645:366::-;13787:3;13808:67;13872:2;13867:3;13808:67;:::i;:::-;13801:74;;13884:93;13973:3;13884:93;:::i;:::-;14002:2;13997:3;13993:12;13986:19;;13645:366;;;:::o;14017:419::-;14183:4;14221:2;14210:9;14206:18;14198:26;;14270:9;14264:4;14260:20;14256:1;14245:9;14241:17;14234:47;14298:131;14424:4;14298:131;:::i;:::-;14290:139;;14017:419;;;:::o;14442:179::-;14582:31;14578:1;14570:6;14566:14;14559:55;14442:179;:::o;14627:366::-;14769:3;14790:67;14854:2;14849:3;14790:67;:::i;:::-;14783:74;;14866:93;14955:3;14866:93;:::i;:::-;14984:2;14979:3;14975:12;14968:19;;14627:366;;;:::o;14999:419::-;15165:4;15203:2;15192:9;15188:18;15180:26;;15252:9;15246:4;15242:20;15238:1;15227:9;15223:17;15216:47;15280:131;15406:4;15280:131;:::i;:::-;15272:139;;14999:419;;;:::o;15424:224::-;15564:34;15560:1;15552:6;15548:14;15541:58;15633:7;15628:2;15620:6;15616:15;15609:32;15424:224;:::o;15654:366::-;15796:3;15817:67;15881:2;15876:3;15817:67;:::i;:::-;15810:74;;15893:93;15982:3;15893:93;:::i;:::-;16011:2;16006:3;16002:12;15995:19;;15654:366;;;:::o;16026:419::-;16192:4;16230:2;16219:9;16215:18;16207:26;;16279:9;16273:4;16269:20;16265:1;16254:9;16250:17;16243:47;16307:131;16433:4;16307:131;:::i;:::-;16299:139;;16026:419;;;:::o;16451:222::-;16591:34;16587:1;16579:6;16575:14;16568:58;16660:5;16655:2;16647:6;16643:15;16636:30;16451:222;:::o;16679:366::-;16821:3;16842:67;16906:2;16901:3;16842:67;:::i;:::-;16835:74;;16918:93;17007:3;16918:93;:::i;:::-;17036:2;17031:3;17027:12;17020:19;;16679:366;;;:::o;17051:419::-;17217:4;17255:2;17244:9;17240:18;17232:26;;17304:9;17298:4;17294:20;17290:1;17279:9;17275:17;17268:47;17332:131;17458:4;17332:131;:::i;:::-;17324:139;;17051:419;;;:::o;17476:225::-;17616:34;17612:1;17604:6;17600:14;17593:58;17685:8;17680:2;17672:6;17668:15;17661:33;17476:225;:::o;17707:366::-;17849:3;17870:67;17934:2;17929:3;17870:67;:::i;:::-;17863:74;;17946:93;18035:3;17946:93;:::i;:::-;18064:2;18059:3;18055:12;18048:19;;17707:366;;;:::o;18079:419::-;18245:4;18283:2;18272:9;18268:18;18260:26;;18332:9;18326:4;18322:20;18318:1;18307:9;18303:17;18296:47;18360:131;18486:4;18360:131;:::i;:::-;18352:139;;18079:419;;;:::o;18504:220::-;18644:34;18640:1;18632:6;18628:14;18621:58;18713:3;18708:2;18700:6;18696:15;18689:28;18504:220;:::o;18730:366::-;18872:3;18893:67;18957:2;18952:3;18893:67;:::i;:::-;18886:74;;18969:93;19058:3;18969:93;:::i;:::-;19087:2;19082:3;19078:12;19071:19;;18730:366;;;:::o;19102:419::-;19268:4;19306:2;19295:9;19291:18;19283:26;;19355:9;19349:4;19345:20;19341:1;19330:9;19326:17;19319:47;19383:131;19509:4;19383:131;:::i;:::-;19375:139;;19102:419;;;:::o;19527:221::-;19667:34;19663:1;19655:6;19651:14;19644:58;19736:4;19731:2;19723:6;19719:15;19712:29;19527:221;:::o;19754:366::-;19896:3;19917:67;19981:2;19976:3;19917:67;:::i;:::-;19910:74;;19993:93;20082:3;19993:93;:::i;:::-;20111:2;20106:3;20102:12;20095:19;;19754:366;;;:::o;20126:419::-;20292:4;20330:2;20319:9;20315:18;20307:26;;20379:9;20373:4;20369:20;20365:1;20354:9;20350:17;20343:47;20407:131;20533:4;20407:131;:::i;:::-;20399:139;;20126:419;;;:::o;20551:148::-;20653:11;20690:3;20675:18;;20551:148;;;;:::o;20705:173::-;20845:25;20841:1;20833:6;20829:14;20822:49;20705:173;:::o;20884:402::-;21044:3;21065:85;21147:2;21142:3;21065:85;:::i;:::-;21058:92;;21159:93;21248:3;21159:93;:::i;:::-;21277:2;21272:3;21268:12;21261:19;;20884:402;;;:::o;21292:390::-;21398:3;21426:39;21459:5;21426:39;:::i;:::-;21481:89;21563:6;21558:3;21481:89;:::i;:::-;21474:96;;21579:65;21637:6;21632:3;21625:4;21618:5;21614:16;21579:65;:::i;:::-;21669:6;21664:3;21660:16;21653:23;;21402:280;21292:390;;;;:::o;21688:167::-;21828:19;21824:1;21816:6;21812:14;21805:43;21688:167;:::o;21861:402::-;22021:3;22042:85;22124:2;22119:3;22042:85;:::i;:::-;22035:92;;22136:93;22225:3;22136:93;:::i;:::-;22254:2;22249:3;22245:12;22238:19;;21861:402;;;:::o;22269:967::-;22651:3;22673:148;22817:3;22673:148;:::i;:::-;22666:155;;22838:95;22929:3;22920:6;22838:95;:::i;:::-;22831:102;;22950:148;23094:3;22950:148;:::i;:::-;22943:155;;23115:95;23206:3;23197:6;23115:95;:::i;:::-;23108:102;;23227:3;23220:10;;22269:967;;;;;:::o;23242:410::-;23282:7;23305:20;23323:1;23305:20;:::i;:::-;23300:25;;23339:20;23357:1;23339:20;:::i;:::-;23334:25;;23394:1;23391;23387:9;23416:30;23434:11;23416:30;:::i;:::-;23405:41;;23595:1;23586:7;23582:15;23579:1;23576:22;23556:1;23549:9;23529:83;23506:139;;23625:18;;:::i;:::-;23506:139;23290:362;23242:410;;;;:::o;23658:180::-;23706:77;23703:1;23696:88;23803:4;23800:1;23793:15;23827:4;23824:1;23817:15;23844:180;23892:77;23889:1;23882:88;23989:4;23986:1;23979:15;24013:4;24010:1;24003:15;24030:171;24069:3;24092:24;24110:5;24092:24;:::i;:::-;24083:33;;24138:4;24131:5;24128:15;24125:41;;24146:18;;:::i;:::-;24125:41;24193:1;24186:5;24182:13;24175:20;;24030:171;;;:::o;24207:182::-;24347:34;24343:1;24335:6;24331:14;24324:58;24207:182;:::o;24395:366::-;24537:3;24558:67;24622:2;24617:3;24558:67;:::i;:::-;24551:74;;24634:93;24723:3;24634:93;:::i;:::-;24752:2;24747:3;24743:12;24736:19;;24395:366;;;:::o;24767:419::-;24933:4;24971:2;24960:9;24956:18;24948:26;;25020:9;25014:4;25010:20;25006:1;24995:9;24991:17;24984:47;25048:131;25174:4;25048:131;:::i;:::-;25040:139;;24767:419;;;:::o

Swarm Source

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