ETH Price: $3,115.71 (+1.23%)
Gas: 17 Gwei

Token

CashFlash (CFT)
 

Overview

Max Total Supply

10,000,000,000 CFT

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14.849999999999999999 CFT

Value
$0.00
0x8d621070b8d1a97c675bbdc20180f21e959d98e0
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:
CashFlash

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-10-30
*/

// SPDX-License-Identifier: MIT

//   ___         _    ___ _         _    
//  / __|__ _ __| |_ | __| |__ _ __| |_  
// | (__/ _` (_-< ' \| _|| / _` (_-< ' \
//  \___\__,_/__/_||_|_| |_\__,_/__/_||_|
                                       
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
}

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;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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;
}

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;
    }
}

pragma solidity ^0.8.0;

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

    /**
     * @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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @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 {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " 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 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.
     */
    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.
     */
    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`.
     */
    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.
     *
     * [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.
     */
    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.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

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);
}

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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

pragma solidity >=0.8.0 <0.9.0;

contract CashFlash is ERC20, AccessControl, ERC20Burnable, Pausable {
    using SafeMath for uint256;

    uint256 internal  _maxAmountMintable = 10000000000e18;


    constructor() ERC20("CashFlash", "CFT") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    modifier onlyAdminRole() {
        require(
            hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
            "!admin"
        );
        _;
    }

    function transferOwnership(address newOwner) public onlyAdminRole {
        require(msg.sender != newOwner, "!same address");
        grantRole(DEFAULT_ADMIN_ROLE, newOwner);
        revokeRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    function mint(address _to, uint256 _amount) public onlyAdminRole whenNotPaused {
        require(ERC20.totalSupply().add(_amount) <= _maxAmountMintable, "Max mintable exceeded");
        super._mint(_to, _amount);
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        super.transfer(recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        super.transferFrom(sender, recipient, amount);
        return true;
    }

    function pause() external onlyAdminRole {
        super._pause();
    }

    function unpause() external onlyAdminRole {
        super._unpause();
    }
}

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":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b204fce5e3e250261100000006007553480156200002157600080fd5b506040518060400160405280600981526020017f43617368466c61736800000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434654000000000000000000000000000000000000000000000000000000000081525081600390816200009f9190620004df565b508060049081620000b19190620004df565b5050506000600660006101000a81548160ff021916908315150217905550620000e46000801b33620000ea60201b60201c565b620005c6565b620000fc82826200010060201b60201c565b5050565b620001128282620001f260201b60201c565b620001ee5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001936200025d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e757607f821691505b602082108103620002fd57620002fc6200029f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000328565b62000373868362000328565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003c0620003ba620003b4846200038b565b62000395565b6200038b565b9050919050565b6000819050919050565b620003dc836200039f565b620003f4620003eb82620003c7565b84845462000335565b825550505050565b600090565b6200040b620003fc565b62000418818484620003d1565b505050565b5b8181101562000440576200043460008262000401565b6001810190506200041e565b5050565b601f8211156200048f57620004598162000303565b620004648462000318565b8101602085101562000474578190505b6200048c620004838562000318565b8301826200041d565b50505b505050565b600082821c905092915050565b6000620004b46000198460080262000494565b1980831691505092915050565b6000620004cf8383620004a1565b9150826002028217905092915050565b620004ea8262000265565b67ffffffffffffffff81111562000506576200050562000270565b5b620005128254620002ce565b6200051f82828562000444565b600060209050601f83116001811462000557576000841562000542578287015190505b6200054e8582620004c1565b865550620005be565b601f198416620005678662000303565b60005b8281101562000591578489015182556001820191506020850194506020810190506200056a565b86831015620005b15784890151620005ad601f891682620004a1565b8355505b6001600288020188555050505b505050505050565b612da880620005d66000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d547741f1461047c578063dd62ed3e14610498578063f2fde38b146104c857610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611d3c565b6104e4565b60405161019f9190611d84565b60405180910390f35b6101b061055e565b6040516101bd9190611e2f565b60405180910390f35b6101e060048036038101906101db9190611ee5565b6105f0565b6040516101ed9190611d84565b60405180910390f35b6101fe61060e565b60405161020b9190611f34565b60405180910390f35b61022e60048036038101906102299190611f4f565b610618565b60405161023b9190611d84565b60405180910390f35b61025e60048036038101906102599190611fd8565b610631565b60405161026b9190612014565b60405180910390f35b61028e6004803603810190610289919061202f565b610651565b005b61029861067a565b6040516102a5919061208b565b60405180910390f35b6102c860048036038101906102c3919061202f565b610683565b005b6102e460048036038101906102df9190611ee5565b610706565b6040516102f19190611d84565b60405180910390f35b6103026107b2565b005b61031e60048036038101906103199190611ee5565b610808565b005b61033a600480360381019061033591906120a6565b610908565b005b61034461091c565b6040516103519190611d84565b60405180910390f35b610374600480360381019061036f91906120d3565b610933565b6040516103819190611f34565b60405180910390f35b6103a4600480360381019061039f9190611ee5565b61097b565b005b6103ae6109f6565b005b6103ca60048036038101906103c5919061202f565b610a4c565b6040516103d79190611d84565b60405180910390f35b6103e8610ab7565b6040516103f59190611e2f565b60405180910390f35b610406610b49565b6040516104139190612014565b60405180910390f35b61043660048036038101906104319190611ee5565b610b50565b6040516104439190611d84565b60405180910390f35b61046660048036038101906104619190611ee5565b610c3b565b6040516104739190611d84565b60405180910390f35b6104966004803603810190610491919061202f565b610c52565b005b6104b260048036038101906104ad9190612100565b610c7b565b6040516104bf9190611f34565b60405180910390f35b6104e260048036038101906104dd91906120d3565b610d02565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610557575061055682610dd9565b5b9050919050565b60606003805461056d9061216f565b80601f01602080910402602001604051908101604052809291908181526020018280546105999061216f565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60006106046105fd610e43565b8484610e4b565b6001905092915050565b6000600254905090565b6000610625848484611014565b50600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b61065a82610631565b61066b81610666610e43565b61110c565b61067583836111a9565b505050565b60006012905090565b61068b610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90612212565b60405180910390fd5b610702828261128a565b5050565b60006107a8610713610e43565b848460016000610721610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a39190612261565b610e4b565b6001905092915050565b6107bf6000801b33610a4c565b6107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f5906122e1565b60405180910390fd5b61080661136c565b565b6108156000801b33610a4c565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906122e1565b60405180910390fd5b61085c61091c565b1561089c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108939061234d565b60405180910390fd5b6007546108b9826108ab61060e565b61140e90919063ffffffff16565b11156108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f1906123b9565b60405180910390fd5b6109048282611424565b5050565b610919610913610e43565b82611583565b50565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061098e83610989610e43565b610c7b565b9050818110156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061244b565b60405180910390fd5b6109e7836109df610e43565b848403610e4b565b6109f18383611583565b505050565b610a036000801b33610a4c565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a39906122e1565b60405180910390fd5b610a4a611759565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ac69061216f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af29061216f565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000801b81565b60008060016000610b5f610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906124dd565b60405180910390fd5b610c30610c27610e43565b85858403610e4b565b600191505092915050565b6000610c4783836117fc565b506001905092915050565b610c5b82610631565b610c6c81610c67610e43565b61110c565b610c76838361128a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0f6000801b33610a4c565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d45906122e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612549565b60405180910390fd5b610dc96000801b82610651565b610dd66000801b33610c52565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061266d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110079190611f34565b60405180910390a3505050565b600061102184848461181a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106c610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906126ff565b60405180910390fd5b611100856110f8610e43565b858403610e4b565b60019150509392505050565b6111168282610a4c565b6111a55761113b8173ffffffffffffffffffffffffffffffffffffffff166014611a99565b6111498360001c6020611a99565b60405160200161115a9291906127f3565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9190611e2f565b60405180910390fd5b5050565b6111b38282610a4c565b6112865760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122b610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112948282610a4c565b156113685760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061130d610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61137461091c565b6113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612879565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113f7610e43565b60405161140491906128a8565b60405180910390a1565b6000818361141c9190612261565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061290f565b60405180910390fd5b61149f60008383611cd5565b80600260008282546114b19190612261565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115069190612261565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156b9190611f34565b60405180910390a361157f60008383611cda565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906129a1565b60405180910390fd5b6115fe82600083611cd5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90612a33565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116db9190612a53565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117409190611f34565b60405180910390a361175483600084611cda565b505050565b61176161091c565b156117a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117989061234d565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117e5610e43565b6040516117f291906128a8565b60405180910390a1565b6000611810611809610e43565b848461181a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090612af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90612b8b565b60405180910390fd5b611903838383611cd5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612c1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1c9190612261565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a809190611f34565b60405180910390a3611a93848484611cda565b50505050565b606060006002836002611aac9190612c3d565b611ab69190612261565b67ffffffffffffffff811115611acf57611ace612c7f565b5b6040519080825280601f01601f191660200182016040528015611b015781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b3957611b38612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b9d57611b9c612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611bdd9190612c3d565b611be79190612261565b90505b6001811115611c87577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c2957611c28612cae565b5b1a60f81b828281518110611c4057611c3f612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c8090612cdd565b9050611bea565b5060008414611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290612d52565b60405180910390fd5b8091505092915050565b505050565b505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1981611ce4565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b600060208284031215611d5257611d51611cdf565b5b6000611d6084828501611d27565b91505092915050565b60008115159050919050565b611d7e81611d69565b82525050565b6000602082019050611d996000830184611d75565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd9578082015181840152602081019050611dbe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e0182611d9f565b611e0b8185611daa565b9350611e1b818560208601611dbb565b611e2481611de5565b840191505092915050565b60006020820190508181036000830152611e498184611df6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7c82611e51565b9050919050565b611e8c81611e71565b8114611e9757600080fd5b50565b600081359050611ea981611e83565b92915050565b6000819050919050565b611ec281611eaf565b8114611ecd57600080fd5b50565b600081359050611edf81611eb9565b92915050565b60008060408385031215611efc57611efb611cdf565b5b6000611f0a85828601611e9a565b9250506020611f1b85828601611ed0565b9150509250929050565b611f2e81611eaf565b82525050565b6000602082019050611f496000830184611f25565b92915050565b600080600060608486031215611f6857611f67611cdf565b5b6000611f7686828701611e9a565b9350506020611f8786828701611e9a565b9250506040611f9886828701611ed0565b9150509250925092565b6000819050919050565b611fb581611fa2565b8114611fc057600080fd5b50565b600081359050611fd281611fac565b92915050565b600060208284031215611fee57611fed611cdf565b5b6000611ffc84828501611fc3565b91505092915050565b61200e81611fa2565b82525050565b60006020820190506120296000830184612005565b92915050565b6000806040838503121561204657612045611cdf565b5b600061205485828601611fc3565b925050602061206585828601611e9a565b9150509250929050565b600060ff82169050919050565b6120858161206f565b82525050565b60006020820190506120a0600083018461207c565b92915050565b6000602082840312156120bc576120bb611cdf565b5b60006120ca84828501611ed0565b91505092915050565b6000602082840312156120e9576120e8611cdf565b5b60006120f784828501611e9a565b91505092915050565b6000806040838503121561211757612116611cdf565b5b600061212585828601611e9a565b925050602061213685828601611e9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218757607f821691505b60208210810361219a57612199612140565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006121fc602f83611daa565b9150612207826121a0565b604082019050919050565b6000602082019050818103600083015261222b816121ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226c82611eaf565b915061227783611eaf565b925082820190508082111561228f5761228e612232565b5b92915050565b7f2161646d696e0000000000000000000000000000000000000000000000000000600082015250565b60006122cb600683611daa565b91506122d682612295565b602082019050919050565b600060208201905081810360008301526122fa816122be565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612337601083611daa565b915061234282612301565b602082019050919050565b600060208201905081810360008301526123668161232a565b9050919050565b7f4d6178206d696e7461626c652065786365656465640000000000000000000000600082015250565b60006123a3601583611daa565b91506123ae8261236d565b602082019050919050565b600060208201905081810360008301526123d281612396565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612435602483611daa565b9150612440826123d9565b604082019050919050565b6000602082019050818103600083015261246481612428565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124c7602583611daa565b91506124d28261246b565b604082019050919050565b600060208201905081810360008301526124f6816124ba565b9050919050565b7f2173616d65206164647265737300000000000000000000000000000000000000600082015250565b6000612533600d83611daa565b915061253e826124fd565b602082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125c5602483611daa565b91506125d082612569565b604082019050919050565b600060208201905081810360008301526125f4816125b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612657602283611daa565b9150612662826125fb565b604082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006126e9602883611daa565b91506126f48261268d565b604082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061276060178361271f565b915061276b8261272a565b601782019050919050565b600061278182611d9f565b61278b818561271f565b935061279b818560208601611dbb565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006127dd60118361271f565b91506127e8826127a7565b601182019050919050565b60006127fe82612753565b915061280a8285612776565b9150612815826127d0565b91506128218284612776565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612863601483611daa565b915061286e8261282d565b602082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b6128a281611e71565b82525050565b60006020820190506128bd6000830184612899565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006128f9601f83611daa565b9150612904826128c3565b602082019050919050565b60006020820190508181036000830152612928816128ec565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061298b602183611daa565b91506129968261292f565b604082019050919050565b600060208201905081810360008301526129ba8161297e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602283611daa565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b6000612a5e82611eaf565b9150612a6983611eaf565b9250828203905081811115612a8157612a80612232565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ae3602583611daa565b9150612aee82612a87565b604082019050919050565b60006020820190508181036000830152612b1281612ad6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b75602383611daa565b9150612b8082612b19565b604082019050919050565b60006020820190508181036000830152612ba481612b68565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c07602683611daa565b9150612c1282612bab565b604082019050919050565b60006020820190508181036000830152612c3681612bfa565b9050919050565b6000612c4882611eaf565b9150612c5383611eaf565b9250828202612c6181611eaf565b91508282048414831517612c7857612c77612232565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ce882611eaf565b915060008203612cfb57612cfa612232565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612d3c602083611daa565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b905091905056fea2646970667358221220efca86928cefbc05551207572928bced880c68e2fe62b3f42f88980948fb476364736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb1461044c578063d547741f1461047c578063dd62ed3e14610498578063f2fde38b146104c857610173565b806395d89b41146103e0578063a217fddf146103fe578063a457c2d71461041c57610173565b806342966c68146103205780635c975abb1461033c57806370a082311461035a57806379cc67901461038a5780638456cb59146103a657806391d14854146103b057610173565b80632f2ff15d116101305780632f2ff15d14610274578063313ce5671461029057806336568abe146102ae57806339509351146102ca5780633f4ba83a146102fa57806340c10f191461030457610173565b806301ffc9a71461017857806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101f657806323b872dd14610214578063248a9ca314610244575b600080fd5b610192600480360381019061018d9190611d3c565b6104e4565b60405161019f9190611d84565b60405180910390f35b6101b061055e565b6040516101bd9190611e2f565b60405180910390f35b6101e060048036038101906101db9190611ee5565b6105f0565b6040516101ed9190611d84565b60405180910390f35b6101fe61060e565b60405161020b9190611f34565b60405180910390f35b61022e60048036038101906102299190611f4f565b610618565b60405161023b9190611d84565b60405180910390f35b61025e60048036038101906102599190611fd8565b610631565b60405161026b9190612014565b60405180910390f35b61028e6004803603810190610289919061202f565b610651565b005b61029861067a565b6040516102a5919061208b565b60405180910390f35b6102c860048036038101906102c3919061202f565b610683565b005b6102e460048036038101906102df9190611ee5565b610706565b6040516102f19190611d84565b60405180910390f35b6103026107b2565b005b61031e60048036038101906103199190611ee5565b610808565b005b61033a600480360381019061033591906120a6565b610908565b005b61034461091c565b6040516103519190611d84565b60405180910390f35b610374600480360381019061036f91906120d3565b610933565b6040516103819190611f34565b60405180910390f35b6103a4600480360381019061039f9190611ee5565b61097b565b005b6103ae6109f6565b005b6103ca60048036038101906103c5919061202f565b610a4c565b6040516103d79190611d84565b60405180910390f35b6103e8610ab7565b6040516103f59190611e2f565b60405180910390f35b610406610b49565b6040516104139190612014565b60405180910390f35b61043660048036038101906104319190611ee5565b610b50565b6040516104439190611d84565b60405180910390f35b61046660048036038101906104619190611ee5565b610c3b565b6040516104739190611d84565b60405180910390f35b6104966004803603810190610491919061202f565b610c52565b005b6104b260048036038101906104ad9190612100565b610c7b565b6040516104bf9190611f34565b60405180910390f35b6104e260048036038101906104dd91906120d3565b610d02565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610557575061055682610dd9565b5b9050919050565b60606003805461056d9061216f565b80601f01602080910402602001604051908101604052809291908181526020018280546105999061216f565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b60006106046105fd610e43565b8484610e4b565b6001905092915050565b6000600254905090565b6000610625848484611014565b50600190509392505050565b600060056000838152602001908152602001600020600101549050919050565b61065a82610631565b61066b81610666610e43565b61110c565b61067583836111a9565b505050565b60006012905090565b61068b610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90612212565b60405180910390fd5b610702828261128a565b5050565b60006107a8610713610e43565b848460016000610721610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a39190612261565b610e4b565b6001905092915050565b6107bf6000801b33610a4c565b6107fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f5906122e1565b60405180910390fd5b61080661136c565b565b6108156000801b33610a4c565b610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906122e1565b60405180910390fd5b61085c61091c565b1561089c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108939061234d565b60405180910390fd5b6007546108b9826108ab61060e565b61140e90919063ffffffff16565b11156108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f1906123b9565b60405180910390fd5b6109048282611424565b5050565b610919610913610e43565b82611583565b50565b6000600660009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061098e83610989610e43565b610c7b565b9050818110156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061244b565b60405180910390fd5b6109e7836109df610e43565b848403610e4b565b6109f18383611583565b505050565b610a036000801b33610a4c565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a39906122e1565b60405180910390fd5b610a4a611759565b565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ac69061216f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af29061216f565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000801b81565b60008060016000610b5f610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906124dd565b60405180910390fd5b610c30610c27610e43565b85858403610e4b565b600191505092915050565b6000610c4783836117fc565b506001905092915050565b610c5b82610631565b610c6c81610c67610e43565b61110c565b610c76838361128a565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0f6000801b33610a4c565b610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d45906122e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612549565b60405180910390fd5b610dc96000801b82610651565b610dd66000801b33610c52565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906125db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f209061266d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110079190611f34565b60405180910390a3505050565b600061102184848461181a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106c610e43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906126ff565b60405180910390fd5b611100856110f8610e43565b858403610e4b565b60019150509392505050565b6111168282610a4c565b6111a55761113b8173ffffffffffffffffffffffffffffffffffffffff166014611a99565b6111498360001c6020611a99565b60405160200161115a9291906127f3565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9190611e2f565b60405180910390fd5b5050565b6111b38282610a4c565b6112865760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061122b610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112948282610a4c565b156113685760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061130d610e43565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61137461091c565b6113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90612879565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113f7610e43565b60405161140491906128a8565b60405180910390a1565b6000818361141c9190612261565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061290f565b60405180910390fd5b61149f60008383611cd5565b80600260008282546114b19190612261565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115069190612261565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161156b9190611f34565b60405180910390a361157f60008383611cda565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906129a1565b60405180910390fd5b6115fe82600083611cd5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90612a33565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116db9190612a53565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117409190611f34565b60405180910390a361175483600084611cda565b505050565b61176161091c565b156117a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117989061234d565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117e5610e43565b6040516117f291906128a8565b60405180910390a1565b6000611810611809610e43565b848461181a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090612af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90612b8b565b60405180910390fd5b611903838383611cd5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612c1d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1c9190612261565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a809190611f34565b60405180910390a3611a93848484611cda565b50505050565b606060006002836002611aac9190612c3d565b611ab69190612261565b67ffffffffffffffff811115611acf57611ace612c7f565b5b6040519080825280601f01601f191660200182016040528015611b015781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b3957611b38612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611b9d57611b9c612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611bdd9190612c3d565b611be79190612261565b90505b6001811115611c87577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c2957611c28612cae565b5b1a60f81b828281518110611c4057611c3f612cae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611c8090612cdd565b9050611bea565b5060008414611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290612d52565b60405180910390fd5b8091505092915050565b505050565b505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d1981611ce4565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b600060208284031215611d5257611d51611cdf565b5b6000611d6084828501611d27565b91505092915050565b60008115159050919050565b611d7e81611d69565b82525050565b6000602082019050611d996000830184611d75565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611dd9578082015181840152602081019050611dbe565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e0182611d9f565b611e0b8185611daa565b9350611e1b818560208601611dbb565b611e2481611de5565b840191505092915050565b60006020820190508181036000830152611e498184611df6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7c82611e51565b9050919050565b611e8c81611e71565b8114611e9757600080fd5b50565b600081359050611ea981611e83565b92915050565b6000819050919050565b611ec281611eaf565b8114611ecd57600080fd5b50565b600081359050611edf81611eb9565b92915050565b60008060408385031215611efc57611efb611cdf565b5b6000611f0a85828601611e9a565b9250506020611f1b85828601611ed0565b9150509250929050565b611f2e81611eaf565b82525050565b6000602082019050611f496000830184611f25565b92915050565b600080600060608486031215611f6857611f67611cdf565b5b6000611f7686828701611e9a565b9350506020611f8786828701611e9a565b9250506040611f9886828701611ed0565b9150509250925092565b6000819050919050565b611fb581611fa2565b8114611fc057600080fd5b50565b600081359050611fd281611fac565b92915050565b600060208284031215611fee57611fed611cdf565b5b6000611ffc84828501611fc3565b91505092915050565b61200e81611fa2565b82525050565b60006020820190506120296000830184612005565b92915050565b6000806040838503121561204657612045611cdf565b5b600061205485828601611fc3565b925050602061206585828601611e9a565b9150509250929050565b600060ff82169050919050565b6120858161206f565b82525050565b60006020820190506120a0600083018461207c565b92915050565b6000602082840312156120bc576120bb611cdf565b5b60006120ca84828501611ed0565b91505092915050565b6000602082840312156120e9576120e8611cdf565b5b60006120f784828501611e9a565b91505092915050565b6000806040838503121561211757612116611cdf565b5b600061212585828601611e9a565b925050602061213685828601611e9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061218757607f821691505b60208210810361219a57612199612140565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006121fc602f83611daa565b9150612207826121a0565b604082019050919050565b6000602082019050818103600083015261222b816121ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226c82611eaf565b915061227783611eaf565b925082820190508082111561228f5761228e612232565b5b92915050565b7f2161646d696e0000000000000000000000000000000000000000000000000000600082015250565b60006122cb600683611daa565b91506122d682612295565b602082019050919050565b600060208201905081810360008301526122fa816122be565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612337601083611daa565b915061234282612301565b602082019050919050565b600060208201905081810360008301526123668161232a565b9050919050565b7f4d6178206d696e7461626c652065786365656465640000000000000000000000600082015250565b60006123a3601583611daa565b91506123ae8261236d565b602082019050919050565b600060208201905081810360008301526123d281612396565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612435602483611daa565b9150612440826123d9565b604082019050919050565b6000602082019050818103600083015261246481612428565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124c7602583611daa565b91506124d28261246b565b604082019050919050565b600060208201905081810360008301526124f6816124ba565b9050919050565b7f2173616d65206164647265737300000000000000000000000000000000000000600082015250565b6000612533600d83611daa565b915061253e826124fd565b602082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125c5602483611daa565b91506125d082612569565b604082019050919050565b600060208201905081810360008301526125f4816125b8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612657602283611daa565b9150612662826125fb565b604082019050919050565b600060208201905081810360008301526126868161264a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006126e9602883611daa565b91506126f48261268d565b604082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061276060178361271f565b915061276b8261272a565b601782019050919050565b600061278182611d9f565b61278b818561271f565b935061279b818560208601611dbb565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006127dd60118361271f565b91506127e8826127a7565b601182019050919050565b60006127fe82612753565b915061280a8285612776565b9150612815826127d0565b91506128218284612776565b91508190509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612863601483611daa565b915061286e8261282d565b602082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b6128a281611e71565b82525050565b60006020820190506128bd6000830184612899565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006128f9601f83611daa565b9150612904826128c3565b602082019050919050565b60006020820190508181036000830152612928816128ec565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061298b602183611daa565b91506129968261292f565b604082019050919050565b600060208201905081810360008301526129ba8161297e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602283611daa565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b6000612a5e82611eaf565b9150612a6983611eaf565b9250828203905081811115612a8157612a80612232565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ae3602583611daa565b9150612aee82612a87565b604082019050919050565b60006020820190508181036000830152612b1281612ad6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b75602383611daa565b9150612b8082612b19565b604082019050919050565b60006020820190508181036000830152612ba481612b68565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c07602683611daa565b9150612c1282612bab565b604082019050919050565b60006020820190508181036000830152612c3681612bfa565b9050919050565b6000612c4882611eaf565b9150612c5383611eaf565b9250828202612c6181611eaf565b91508282048414831517612c7857612c77612232565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612ce882611eaf565b915060008203612cfb57612cfa612232565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612d3c602083611daa565b9150612d4782612d06565b602082019050919050565b60006020820190508181036000830152612d6b81612d2f565b905091905056fea2646970667358221220efca86928cefbc05551207572928bced880c68e2fe62b3f42f88980948fb476364736f6c63430008120033

Deployed Bytecode Sourcemap

40509:1532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16809:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29322:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31489:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30442:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41640:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18220:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18605:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30284:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19653:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33041:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41961:77;;;:::i;:::-;;41195:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39689:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22782:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30613:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40099:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41880:73;;;:::i;:::-;;17105:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16196:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33759:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41425:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18997:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31191:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40951:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16809:204;16894:4;16933:32;16918:47;;;:11;:47;;;;:87;;;;16969:36;16993:11;16969:23;:36::i;:::-;16918:87;16911:94;;16809:204;;;:::o;29322:100::-;29376:13;29409:5;29402:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29322:100;:::o;31489:169::-;31572:4;31589:39;31598:12;:10;:12::i;:::-;31612:7;31621:6;31589:8;:39::i;:::-;31646:4;31639:11;;31489:169;;;;:::o;30442:108::-;30503:7;30530:12;;30523:19;;30442:108;:::o;41640:232::-;41780:4;41797:45;41816:6;41824:9;41835:6;41797:18;:45::i;:::-;;41860:4;41853:11;;41640:232;;;;;:::o;18220:123::-;18286:7;18313:6;:12;18320:4;18313:12;;;;;;;;;;;:22;;;18306:29;;18220:123;;;:::o;18605:147::-;18688:18;18701:4;18688:12;:18::i;:::-;16687:30;16698:4;16704:12;:10;:12::i;:::-;16687:10;:30::i;:::-;18719:25:::1;18730:4;18736:7;18719:10;:25::i;:::-;18605:147:::0;;;:::o;30284:93::-;30342:5;30367:2;30360:9;;30284:93;:::o;19653:218::-;19760:12;:10;:12::i;:::-;19749:23;;:7;:23;;;19741:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;19837:26;19849:4;19855:7;19837:11;:26::i;:::-;19653:218;;:::o;33041:215::-;33129:4;33146:80;33155:12;:10;:12::i;:::-;33169:7;33215:10;33178:11;:25;33190:12;:10;:12::i;:::-;33178:25;;;;;;;;;;;;;;;:34;33204:7;33178:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;33146:8;:80::i;:::-;33244:4;33237:11;;33041:215;;;;:::o;41961:77::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42014:16:::1;:14;:16::i;:::-;41961:77::o:0;41195:222::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;23108:8:::1;:6;:8::i;:::-;23107:9;23099:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41329:18:::2;;41293:32;41317:7;41293:19;:17;:19::i;:::-;:23;;:32;;;;:::i;:::-;:54;;41285:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;41384:25;41396:3;41401:7;41384:11;:25::i;:::-;41195:222:::0;;:::o;39689:91::-;39745:27;39751:12;:10;:12::i;:::-;39765:6;39745:5;:27::i;:::-;39689:91;:::o;22782:86::-;22829:4;22853:7;;;;;;;;;;;22846:14;;22782:86;:::o;30613:127::-;30687:7;30714:9;:18;30724:7;30714:18;;;;;;;;;;;;;;;;30707:25;;30613:127;;;:::o;40099:368::-;40176:24;40203:32;40213:7;40222:12;:10;:12::i;:::-;40203:9;:32::i;:::-;40176:59;;40274:6;40254:16;:26;;40246:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40357:58;40366:7;40375:12;:10;:12::i;:::-;40408:6;40389:16;:25;40357:8;:58::i;:::-;40437:22;40443:7;40452:6;40437:5;:22::i;:::-;40165:302;40099:368;;:::o;41880:73::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41931:14:::1;:12;:14::i;:::-;41880:73::o:0;17105:139::-;17183:4;17207:6;:12;17214:4;17207:12;;;;;;;;;;;:20;;:29;17228:7;17207:29;;;;;;;;;;;;;;;;;;;;;;;;;17200:36;;17105:139;;;;:::o;29541:104::-;29597:13;29630:7;29623:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29541:104;:::o;16196:49::-;16241:4;16196:49;;;:::o;33759:413::-;33852:4;33869:24;33896:11;:25;33908:12;:10;:12::i;:::-;33896:25;;;;;;;;;;;;;;;:34;33922:7;33896:34;;;;;;;;;;;;;;;;33869:61;;33969:15;33949:16;:35;;33941:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34062:67;34071:12;:10;:12::i;:::-;34085:7;34113:15;34094:16;:34;34062:8;:67::i;:::-;34160:4;34153:11;;;33759:413;;;;:::o;41425:207::-;41547:4;41569:33;41584:9;41595:6;41569:14;:33::i;:::-;;41620:4;41613:11;;41425:207;;;;:::o;18997:149::-;19081:18;19094:4;19081:12;:18::i;:::-;16687:30;16698:4;16704:12;:10;:12::i;:::-;16687:10;:30::i;:::-;19112:26:::1;19124:4;19130:7;19112:11;:26::i;:::-;18997:149:::0;;;:::o;31191:151::-;31280:7;31307:11;:18;31319:5;31307:18;;;;;;;;;;;;;;;:27;31326:7;31307:27;;;;;;;;;;;;;;;;31300:34;;31191:151;;;;:::o;40951:236::-;40850:39;16241:4;40858:18;;40878:10;40850:7;:39::i;:::-;40828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41050:8:::1;41036:22;;:10;:22;;::::0;41028:48:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41087:39;16241:4;41097:18:::0;::::1;41117:8;41087:9;:39::i;:::-;41137:42;16241:4;41148:18:::0;::::1;41168:10;41137;:42::i;:::-;40951:236:::0;:::o;8497:157::-;8582:4;8621:25;8606:40;;;:11;:40;;;;8599:47;;8497:157;;;:::o;14153:98::-;14206:7;14233:10;14226:17;;14153:98;:::o;37443:380::-;37596:1;37579:19;;:5;:19;;;37571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37677:1;37658:21;;:7;:21;;;37650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37761:6;37731:11;:18;37743:5;37731:18;;;;;;;;;;;;;;;:27;37750:7;37731:27;;;;;;;;;;;;;;;:36;;;;37799:7;37783:32;;37792:5;37783:32;;;37808:6;37783:32;;;;;;:::i;:::-;;;;;;;;37443:380;;;:::o;32140:492::-;32280:4;32297:36;32307:6;32315:9;32326:6;32297:9;:36::i;:::-;32346:24;32373:11;:19;32385:6;32373:19;;;;;;;;;;;;;;;:33;32393:12;:10;:12::i;:::-;32373:33;;;;;;;;;;;;;;;;32346:60;;32445:6;32425:16;:26;;32417:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;32532:57;32541:6;32549:12;:10;:12::i;:::-;32582:6;32563:16;:25;32532:8;:57::i;:::-;32620:4;32613:11;;;32140:492;;;;;:::o;17534:497::-;17615:22;17623:4;17629:7;17615;:22::i;:::-;17610:414;;17803:41;17831:7;17803:41;;17841:2;17803:19;:41::i;:::-;17917:38;17945:4;17937:13;;17952:2;17917:19;:38::i;:::-;17708:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17654:358;;;;;;;;;;;:::i;:::-;;;;;;;;17610:414;17534:497;;:::o;21154:238::-;21238:22;21246:4;21252:7;21238;:22::i;:::-;21233:152;;21309:4;21277:6;:12;21284:4;21277:12;;;;;;;;;;;:20;;:29;21298:7;21277:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;21360:12;:10;:12::i;:::-;21333:40;;21351:7;21333:40;;21345:4;21333:40;;;;;;;;;;21233:152;21154:238;;:::o;21524:239::-;21608:22;21616:4;21622:7;21608;:22::i;:::-;21604:152;;;21679:5;21647:6;:12;21654:4;21647:12;;;;;;;;;;;:20;;:29;21668:7;21647:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;21731:12;:10;:12::i;:::-;21704:40;;21722:7;21704:40;;21716:4;21704:40;;;;;;;;;;21604:152;21524:239;;:::o;23841:120::-;23385:8;:6;:8::i;:::-;23377:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23910:5:::1;23900:7;;:15;;;;;;;;;;;;;;;;;;23931:22;23940:12;:10;:12::i;:::-;23931:22;;;;;;:::i;:::-;;;;;;;;23841:120::o:0;2828:98::-;2886:7;2917:1;2913;:5;;;;:::i;:::-;2906:12;;2828:98;;;;:::o;35682:399::-;35785:1;35766:21;;:7;:21;;;35758:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35836:49;35865:1;35869:7;35878:6;35836:20;:49::i;:::-;35914:6;35898:12;;:22;;;;;;;:::i;:::-;;;;;;;;35953:6;35931:9;:18;35941:7;35931:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;35996:7;35975:37;;35992:1;35975:37;;;36005:6;35975:37;;;;;;:::i;:::-;;;;;;;;36025:48;36053:1;36057:7;36066:6;36025:19;:48::i;:::-;35682:399;;:::o;36414:591::-;36517:1;36498:21;;:7;:21;;;36490:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36570:49;36591:7;36608:1;36612:6;36570:20;:49::i;:::-;36632:22;36657:9;:18;36667:7;36657:18;;;;;;;;;;;;;;;;36632:43;;36712:6;36694:14;:24;;36686:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36831:6;36814:14;:23;36793:9;:18;36803:7;36793:18;;;;;;;;;;;;;;;:44;;;;36875:6;36859:12;;:22;;;;;;;:::i;:::-;;;;;;;;36925:1;36899:37;;36908:7;36899:37;;;36929:6;36899:37;;;;;;:::i;:::-;;;;;;;;36949:48;36969:7;36986:1;36990:6;36949:19;:48::i;:::-;36479:526;36414:591;;:::o;23582:118::-;23108:8;:6;:8::i;:::-;23107:9;23099:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23652:4:::1;23642:7;;:14;;;;;;;;;;;;;;;;;;23672:20;23679:12;:10;:12::i;:::-;23672:20;;;;;;:::i;:::-;;;;;;;;23582:118::o:0;30953:175::-;31039:4;31056:42;31066:12;:10;:12::i;:::-;31080:9;31091:6;31056:9;:42::i;:::-;31116:4;31109:11;;30953:175;;;;:::o;34662:733::-;34820:1;34802:20;;:6;:20;;;34794:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;34904:1;34883:23;;:9;:23;;;34875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34959:47;34980:6;34988:9;34999:6;34959:20;:47::i;:::-;35019:21;35043:9;:17;35053:6;35043:17;;;;;;;;;;;;;;;;35019:41;;35096:6;35079:13;:23;;35071:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35217:6;35201:13;:22;35181:9;:17;35191:6;35181:17;;;;;;;;;;;;;;;:42;;;;35269:6;35245:9;:20;35255:9;35245:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;35310:9;35293:35;;35302:6;35293:35;;;35321:6;35293:35;;;;;;:::i;:::-;;;;;;;;35341:46;35361:6;35369:9;35380:6;35341:19;:46::i;:::-;34783:612;34662:733;;;:::o;10215:451::-;10290:13;10316:19;10361:1;10352:6;10348:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10338:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10316:47;;10374:15;:6;10381:1;10374:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10400;:6;10407:1;10400:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10431:9;10456:1;10447:6;10443:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10431:26;;10426:135;10463:1;10459;:5;10426:135;;;10498:12;10519:3;10511:5;:11;10498:25;;;;;;;:::i;:::-;;;;;10486:6;10493:1;10486:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;10548:1;10538:11;;;;;10466:3;;;;:::i;:::-;;;10426:135;;;;10588:1;10579:5;:10;10571:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10651:6;10637:21;;;10215:451;;;;:::o;38423:125::-;;;;:::o;39152:124::-;;;;:::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:::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:474::-;7871:6;7879;7928:2;7916:9;7907:7;7903:23;7899:32;7896:119;;;7934:79;;:::i;:::-;7896:119;8054:1;8079:53;8124:7;8115:6;8104:9;8100:22;8079:53;:::i;:::-;8069:63;;8025:117;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7803:474;;;;;:::o;8283:180::-;8331:77;8328:1;8321:88;8428:4;8425:1;8418:15;8452:4;8449:1;8442:15;8469:320;8513:6;8550:1;8544:4;8540:12;8530:22;;8597:1;8591:4;8587:12;8618:18;8608:81;;8674:4;8666:6;8662:17;8652:27;;8608:81;8736:2;8728:6;8725:14;8705:18;8702:38;8699:84;;8755:18;;:::i;:::-;8699:84;8520:269;8469:320;;;:::o;8795:234::-;8935:34;8931:1;8923:6;8919:14;8912:58;9004:17;8999:2;8991:6;8987:15;8980:42;8795:234;:::o;9035:366::-;9177:3;9198:67;9262:2;9257:3;9198:67;:::i;:::-;9191:74;;9274:93;9363:3;9274:93;:::i;:::-;9392:2;9387:3;9383:12;9376:19;;9035:366;;;:::o;9407:419::-;9573:4;9611:2;9600:9;9596:18;9588:26;;9660:9;9654:4;9650:20;9646:1;9635:9;9631:17;9624:47;9688:131;9814:4;9688:131;:::i;:::-;9680:139;;9407:419;;;:::o;9832:180::-;9880:77;9877:1;9870:88;9977:4;9974:1;9967:15;10001:4;9998:1;9991:15;10018:191;10058:3;10077:20;10095:1;10077:20;:::i;:::-;10072:25;;10111:20;10129:1;10111:20;:::i;:::-;10106:25;;10154:1;10151;10147:9;10140:16;;10175:3;10172:1;10169:10;10166:36;;;10182:18;;:::i;:::-;10166:36;10018:191;;;;:::o;10215:156::-;10355:8;10351:1;10343:6;10339:14;10332:32;10215:156;:::o;10377:365::-;10519:3;10540:66;10604:1;10599:3;10540:66;:::i;:::-;10533:73;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10377:365;;;:::o;10748:419::-;10914:4;10952:2;10941:9;10937:18;10929:26;;11001:9;10995:4;10991:20;10987:1;10976:9;10972:17;10965:47;11029:131;11155:4;11029:131;:::i;:::-;11021:139;;10748:419;;;:::o;11173:166::-;11313:18;11309:1;11301:6;11297:14;11290:42;11173:166;:::o;11345:366::-;11487:3;11508:67;11572:2;11567:3;11508:67;:::i;:::-;11501:74;;11584:93;11673:3;11584:93;:::i;:::-;11702:2;11697:3;11693:12;11686:19;;11345:366;;;:::o;11717:419::-;11883:4;11921:2;11910:9;11906:18;11898:26;;11970:9;11964:4;11960:20;11956:1;11945:9;11941:17;11934:47;11998:131;12124:4;11998:131;:::i;:::-;11990:139;;11717:419;;;:::o;12142:171::-;12282:23;12278:1;12270:6;12266:14;12259:47;12142:171;:::o;12319:366::-;12461:3;12482:67;12546:2;12541:3;12482:67;:::i;:::-;12475:74;;12558:93;12647:3;12558:93;:::i;:::-;12676:2;12671:3;12667:12;12660:19;;12319:366;;;:::o;12691:419::-;12857:4;12895:2;12884:9;12880:18;12872:26;;12944:9;12938:4;12934:20;12930:1;12919:9;12915:17;12908:47;12972:131;13098:4;12972:131;:::i;:::-;12964:139;;12691:419;;;:::o;13116:223::-;13256:34;13252:1;13244:6;13240:14;13233:58;13325:6;13320:2;13312:6;13308:15;13301:31;13116:223;:::o;13345:366::-;13487:3;13508:67;13572:2;13567:3;13508:67;:::i;:::-;13501:74;;13584:93;13673:3;13584:93;:::i;:::-;13702:2;13697:3;13693:12;13686:19;;13345:366;;;:::o;13717:419::-;13883:4;13921:2;13910:9;13906:18;13898:26;;13970:9;13964:4;13960:20;13956:1;13945:9;13941:17;13934:47;13998:131;14124:4;13998:131;:::i;:::-;13990:139;;13717:419;;;:::o;14142:224::-;14282:34;14278:1;14270:6;14266:14;14259:58;14351:7;14346:2;14338:6;14334:15;14327:32;14142:224;:::o;14372:366::-;14514:3;14535:67;14599:2;14594:3;14535:67;:::i;:::-;14528:74;;14611:93;14700:3;14611:93;:::i;:::-;14729:2;14724:3;14720:12;14713:19;;14372:366;;;:::o;14744:419::-;14910:4;14948:2;14937:9;14933:18;14925:26;;14997:9;14991:4;14987:20;14983:1;14972:9;14968:17;14961:47;15025:131;15151:4;15025:131;:::i;:::-;15017:139;;14744:419;;;:::o;15169:163::-;15309:15;15305:1;15297:6;15293:14;15286:39;15169:163;:::o;15338:366::-;15480:3;15501:67;15565:2;15560:3;15501:67;:::i;:::-;15494:74;;15577:93;15666:3;15577:93;:::i;:::-;15695:2;15690:3;15686:12;15679:19;;15338:366;;;:::o;15710:419::-;15876:4;15914:2;15903:9;15899:18;15891:26;;15963:9;15957:4;15953:20;15949:1;15938:9;15934:17;15927:47;15991:131;16117:4;15991:131;:::i;:::-;15983:139;;15710:419;;;:::o;16135:223::-;16275:34;16271:1;16263:6;16259:14;16252:58;16344:6;16339:2;16331:6;16327:15;16320:31;16135:223;:::o;16364:366::-;16506:3;16527:67;16591:2;16586:3;16527:67;:::i;:::-;16520:74;;16603:93;16692:3;16603:93;:::i;:::-;16721:2;16716:3;16712:12;16705:19;;16364:366;;;:::o;16736:419::-;16902:4;16940:2;16929:9;16925:18;16917:26;;16989:9;16983:4;16979:20;16975:1;16964:9;16960:17;16953:47;17017:131;17143:4;17017:131;:::i;:::-;17009:139;;16736:419;;;:::o;17161:221::-;17301:34;17297:1;17289:6;17285:14;17278:58;17370:4;17365:2;17357:6;17353:15;17346:29;17161:221;:::o;17388:366::-;17530:3;17551:67;17615:2;17610:3;17551:67;:::i;:::-;17544:74;;17627:93;17716:3;17627:93;:::i;:::-;17745:2;17740:3;17736:12;17729:19;;17388:366;;;:::o;17760:419::-;17926:4;17964:2;17953:9;17949:18;17941:26;;18013:9;18007:4;18003:20;17999:1;17988:9;17984:17;17977:47;18041:131;18167:4;18041:131;:::i;:::-;18033:139;;17760:419;;;:::o;18185:227::-;18325:34;18321:1;18313:6;18309:14;18302:58;18394:10;18389:2;18381:6;18377:15;18370:35;18185:227;:::o;18418:366::-;18560:3;18581:67;18645:2;18640:3;18581:67;:::i;:::-;18574:74;;18657:93;18746:3;18657:93;:::i;:::-;18775:2;18770:3;18766:12;18759:19;;18418:366;;;:::o;18790:419::-;18956:4;18994:2;18983:9;18979:18;18971:26;;19043:9;19037:4;19033:20;19029:1;19018:9;19014:17;19007:47;19071:131;19197:4;19071:131;:::i;:::-;19063:139;;18790:419;;;:::o;19215:148::-;19317:11;19354:3;19339:18;;19215:148;;;;:::o;19369:173::-;19509:25;19505:1;19497:6;19493:14;19486:49;19369:173;:::o;19548:402::-;19708:3;19729:85;19811:2;19806:3;19729:85;:::i;:::-;19722:92;;19823:93;19912:3;19823:93;:::i;:::-;19941:2;19936:3;19932:12;19925:19;;19548:402;;;:::o;19956:390::-;20062:3;20090:39;20123:5;20090:39;:::i;:::-;20145:89;20227:6;20222:3;20145:89;:::i;:::-;20138:96;;20243:65;20301:6;20296:3;20289:4;20282:5;20278:16;20243:65;:::i;:::-;20333:6;20328:3;20324:16;20317:23;;20066:280;19956:390;;;;:::o;20352:167::-;20492:19;20488:1;20480:6;20476:14;20469:43;20352:167;:::o;20525:402::-;20685:3;20706:85;20788:2;20783:3;20706:85;:::i;:::-;20699:92;;20800:93;20889:3;20800:93;:::i;:::-;20918:2;20913:3;20909:12;20902:19;;20525:402;;;:::o;20933:967::-;21315:3;21337:148;21481:3;21337:148;:::i;:::-;21330:155;;21502:95;21593:3;21584:6;21502:95;:::i;:::-;21495:102;;21614:148;21758:3;21614:148;:::i;:::-;21607:155;;21779:95;21870:3;21861:6;21779:95;:::i;:::-;21772:102;;21891:3;21884:10;;20933:967;;;;;:::o;21906:170::-;22046:22;22042:1;22034:6;22030:14;22023:46;21906:170;:::o;22082:366::-;22224:3;22245:67;22309:2;22304:3;22245:67;:::i;:::-;22238:74;;22321:93;22410:3;22321:93;:::i;:::-;22439:2;22434:3;22430:12;22423:19;;22082:366;;;:::o;22454:419::-;22620:4;22658:2;22647:9;22643:18;22635:26;;22707:9;22701:4;22697:20;22693:1;22682:9;22678:17;22671:47;22735:131;22861:4;22735:131;:::i;:::-;22727:139;;22454:419;;;:::o;22879:118::-;22966:24;22984:5;22966:24;:::i;:::-;22961:3;22954:37;22879:118;;:::o;23003:222::-;23096:4;23134:2;23123:9;23119:18;23111:26;;23147:71;23215:1;23204:9;23200:17;23191:6;23147:71;:::i;:::-;23003:222;;;;:::o;23231:181::-;23371:33;23367:1;23359:6;23355:14;23348:57;23231:181;:::o;23418:366::-;23560:3;23581:67;23645:2;23640:3;23581:67;:::i;:::-;23574:74;;23657:93;23746:3;23657:93;:::i;:::-;23775:2;23770:3;23766:12;23759:19;;23418:366;;;:::o;23790:419::-;23956:4;23994:2;23983:9;23979:18;23971:26;;24043:9;24037:4;24033:20;24029:1;24018:9;24014:17;24007:47;24071:131;24197:4;24071:131;:::i;:::-;24063:139;;23790:419;;;:::o;24215:220::-;24355:34;24351:1;24343:6;24339:14;24332:58;24424:3;24419:2;24411:6;24407:15;24400:28;24215:220;:::o;24441:366::-;24583:3;24604:67;24668:2;24663:3;24604:67;:::i;:::-;24597:74;;24680:93;24769:3;24680:93;:::i;:::-;24798:2;24793:3;24789:12;24782:19;;24441:366;;;:::o;24813:419::-;24979:4;25017:2;25006:9;25002:18;24994:26;;25066:9;25060:4;25056:20;25052:1;25041:9;25037:17;25030:47;25094:131;25220:4;25094:131;:::i;:::-;25086:139;;24813:419;;;:::o;25238:221::-;25378:34;25374:1;25366:6;25362:14;25355:58;25447:4;25442:2;25434:6;25430:15;25423:29;25238:221;:::o;25465:366::-;25607:3;25628:67;25692:2;25687:3;25628:67;:::i;:::-;25621:74;;25704:93;25793:3;25704:93;:::i;:::-;25822:2;25817:3;25813:12;25806:19;;25465:366;;;:::o;25837:419::-;26003:4;26041:2;26030:9;26026:18;26018:26;;26090:9;26084:4;26080:20;26076:1;26065:9;26061:17;26054:47;26118:131;26244:4;26118:131;:::i;:::-;26110:139;;25837:419;;;:::o;26262:194::-;26302:4;26322:20;26340:1;26322:20;:::i;:::-;26317:25;;26356:20;26374:1;26356:20;:::i;:::-;26351:25;;26400:1;26397;26393:9;26385:17;;26424:1;26418:4;26415:11;26412:37;;;26429:18;;:::i;:::-;26412:37;26262:194;;;;:::o;26462:224::-;26602:34;26598:1;26590:6;26586:14;26579:58;26671:7;26666:2;26658:6;26654:15;26647:32;26462:224;:::o;26692:366::-;26834:3;26855:67;26919:2;26914:3;26855:67;:::i;:::-;26848:74;;26931:93;27020:3;26931:93;:::i;:::-;27049:2;27044:3;27040:12;27033:19;;26692:366;;;:::o;27064:419::-;27230:4;27268:2;27257:9;27253:18;27245:26;;27317:9;27311:4;27307:20;27303:1;27292:9;27288:17;27281:47;27345:131;27471:4;27345:131;:::i;:::-;27337:139;;27064:419;;;:::o;27489:222::-;27629:34;27625:1;27617:6;27613:14;27606:58;27698:5;27693:2;27685:6;27681:15;27674:30;27489:222;:::o;27717:366::-;27859:3;27880:67;27944:2;27939:3;27880:67;:::i;:::-;27873:74;;27956:93;28045:3;27956:93;:::i;:::-;28074:2;28069:3;28065:12;28058:19;;27717:366;;;:::o;28089:419::-;28255:4;28293:2;28282:9;28278:18;28270:26;;28342:9;28336:4;28332:20;28328:1;28317:9;28313:17;28306:47;28370:131;28496:4;28370:131;:::i;:::-;28362:139;;28089:419;;;:::o;28514:225::-;28654:34;28650:1;28642:6;28638:14;28631:58;28723:8;28718:2;28710:6;28706:15;28699:33;28514:225;:::o;28745:366::-;28887:3;28908:67;28972:2;28967:3;28908:67;:::i;:::-;28901:74;;28984:93;29073:3;28984:93;:::i;:::-;29102:2;29097:3;29093:12;29086:19;;28745:366;;;:::o;29117:419::-;29283:4;29321:2;29310:9;29306:18;29298:26;;29370:9;29364:4;29360:20;29356:1;29345:9;29341:17;29334:47;29398:131;29524:4;29398:131;:::i;:::-;29390:139;;29117:419;;;:::o;29542:410::-;29582:7;29605:20;29623:1;29605:20;:::i;:::-;29600:25;;29639:20;29657:1;29639:20;:::i;:::-;29634:25;;29694:1;29691;29687:9;29716:30;29734:11;29716:30;:::i;:::-;29705:41;;29895:1;29886:7;29882:15;29879:1;29876:22;29856:1;29849:9;29829:83;29806:139;;29925:18;;:::i;:::-;29806:139;29590:362;29542:410;;;;:::o;29958:180::-;30006:77;30003:1;29996:88;30103:4;30100:1;30093:15;30127:4;30124:1;30117:15;30144:180;30192:77;30189:1;30182:88;30289:4;30286:1;30279:15;30313:4;30310:1;30303:15;30330:171;30369:3;30392:24;30410:5;30392:24;:::i;:::-;30383:33;;30438:4;30431:5;30428:15;30425:41;;30446:18;;:::i;:::-;30425:41;30493:1;30486:5;30482:13;30475:20;;30330:171;;;:::o;30507:182::-;30647:34;30643:1;30635:6;30631:14;30624:58;30507:182;:::o;30695:366::-;30837:3;30858:67;30922:2;30917:3;30858:67;:::i;:::-;30851:74;;30934:93;31023:3;30934:93;:::i;:::-;31052:2;31047:3;31043:12;31036:19;;30695:366;;;:::o;31067:419::-;31233:4;31271:2;31260:9;31256:18;31248:26;;31320:9;31314:4;31310:20;31306:1;31295:9;31291:17;31284:47;31348:131;31474:4;31348:131;:::i;:::-;31340:139;;31067:419;;;:::o

Swarm Source

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