ETH Price: $3,588.07 (+3.66%)
 

Overview

Max Total Supply

5,504,051.27 DSK

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
742,608.51 DSK

Value
$0.00
0x2447e639b9a2c930ab4268a929ae25c92e158eb5
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:
DSKToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-02
*/

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;




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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    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());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

// File: contracts/DSKToken.sol
//SPDX-License-Identifier: MIT
  pragma solidity ^0.8.0;


  contract DSKToken is ERC20, AccessControl {
    string private __name = "Darussafaka Spor Kulubu Token";
    string private __symbol = "DSK";
    uint8 private __decimals = 2;
    uint private __INITIAL_SUPPLY = 560000000;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    event Minted(address addr, uint256 amount);
    event Burned(address addr, uint256 amount);

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

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

    function mint(address to, uint256 amount) public {
        require(hasRole(MINTER_ROLE, _msgSender()), "DSK Token: Caller is not a minter");
        _mint(to, amount);
        emit Minted(to, amount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601d81526020017f4461727573736166616b612053706f72204b756c75627520546f6b656e0000008152506006908051906020019062000051929190620005bc565b506040518060400160405280600381526020017f44534b0000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f929190620005bc565b506002600860006101000a81548160ff021916908360ff160217905550632160ec00600955348015620000d157600080fd5b5060068054620000e1906200069b565b80601f01602080910402602001604051908101604052809291908181526020018280546200010f906200069b565b8015620001605780601f10620001345761010080835404028352916020019162000160565b820191906000526020600020905b8154815290600101906020018083116200014257829003601f168201915b50505050506007805462000174906200069b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a2906200069b565b8015620001f35780601f10620001c757610100808354040283529160200191620001f3565b820191906000526020600020905b815481529060010190602001808311620001d557829003601f168201915b5050505050816003908051906020019062000210929190620005bc565b50806004908051906020019062000229929190620005bc565b505050620002416000801b33620002bf60201b60201c565b620002737f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002bf60201b60201c565b620002a57f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620002bf60201b60201c565b620002b933600954620002d560201b60201c565b62000817565b620002d182826200044d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e9062000731565b60405180910390fd5b6200035b600083836200053f60201b60201c565b80600260008282546200036f91906200078c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003c691906200078c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200042d9190620007fa565b60405180910390a362000449600083836200054460201b60201c565b5050565b6200045f82826200054960201b60201c565b6200053b5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e0620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620005ca906200069b565b90600052602060002090601f016020900481019282620005ee57600085556200063a565b82601f106200060957805160ff19168380011785556200063a565b828001600101855582156200063a579182015b82811115620006395782518255916020019190600101906200061c565b5b5090506200064991906200064d565b5090565b5b80821115620006685760008160009055506001016200064e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b457607f821691505b602082108103620006ca57620006c96200066c565b5b50919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000719601f83620006d0565b91506200072682620006e1565b602082019050919050565b600060208201905081810360008301526200074c816200070a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007998262000753565b9150620007a68362000753565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007de57620007dd6200075d565b5b828201905092915050565b620007f48162000753565b82525050565b6000602082019050620008116000830184620007e9565b92915050565b6127b580620008276000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906118d5565b610485565b60405161016e919061191d565b60405180910390f35b61017f6104ff565b60405161018c91906119d1565b60405180910390f35b6101af60048036038101906101aa9190611a87565b610591565b6040516101bc919061191d565b60405180910390f35b6101cd6105b4565b6040516101da9190611ad6565b60405180910390f35b6101fd60048036038101906101f89190611af1565b6105be565b60405161020a919061191d565b60405180910390f35b61022d60048036038101906102289190611b7a565b6105ed565b60405161023a9190611bb6565b60405180910390f35b61024b61060d565b6040516102589190611bb6565b60405180910390f35b61027b60048036038101906102769190611bd1565b610631565b005b610285610652565b6040516102929190611c2d565b60405180910390f35b6102b560048036038101906102b09190611bd1565b610669565b005b6102d160048036038101906102cc9190611a87565b6106ec565b6040516102de919061191d565b60405180910390f35b61030160048036038101906102fc9190611a87565b610723565b005b61031d60048036038101906103189190611c48565b6107da565b60405161032a9190611ad6565b60405180910390f35b61034d60048036038101906103489190611bd1565b610822565b60405161035a919061191d565b60405180910390f35b61036b61088d565b60405161037891906119d1565b60405180910390f35b61039b60048036038101906103969190611a87565b61091f565b005b6103a56109d6565b6040516103b29190611bb6565b60405180910390f35b6103d560048036038101906103d09190611a87565b6109dd565b6040516103e2919061191d565b60405180910390f35b61040560048036038101906104009190611a87565b610a54565b604051610412919061191d565b60405180910390f35b610423610a77565b6040516104309190611bb6565b60405180910390f35b610453600480360381019061044e9190611bd1565b610a9b565b005b61046f600480360381019061046a9190611c75565b610abc565b60405161047c9190611ad6565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610b43565b5b9050919050565b60606003805461050e90611ce4565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611ce4565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610bad565b90506105a9818585610bb5565b600191505092915050565b6000600254905090565b6000806105c9610bad565b90506105d6858285610d7e565b6105e1858585610e0a565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064381611089565b61064d838361109d565b505050565b6000600860009054906101000a900460ff16905090565b610671610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611d87565b60405180910390fd5b6106e8828261117e565b5050565b6000806106f7610bad565b90506107188185856107098589610abc565b6107139190611dd6565b610bb5565b600191505092915050565b6107547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661074f610bad565b610822565b610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078a90611e9e565b60405180910390fd5b61079d8282611260565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe82826040516107ce929190611ecd565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461089c90611ce4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c890611ce4565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b6109507f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861094b610bad565b610822565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690611f68565b60405180910390fd5b61099982826113bf565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df782826040516109ca929190611ecd565b60405180910390a15050565b6000801b81565b6000806109e8610bad565b905060006109f68286610abc565b905083811015610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611ffa565b60405180910390fd5b610a488286868403610bb5565b60019250505092915050565b600080610a5f610bad565b9050610a6c818585610e0a565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610aa4826105ed565b610aad81611089565b610ab7838361117e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061208c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061211e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d719190611ad6565b60405180910390a3505050565b6000610d8a8484610abc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e045781811015610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061218a565b60405180910390fd5b610e038484848403610bb5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e709061221c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906122ae565b60405180910390fd5b610ef3838383611595565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090612340565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100c9190611dd6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110709190611ad6565b60405180910390a361108384848461159a565b50505050565b61109a81611095610bad565b61159f565b50565b6110a78282610822565b61117a5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061111f610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6111888282610822565b1561125c5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611201610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906123ac565b60405180910390fd5b6112db60008383611595565b80600260008282546112ed9190611dd6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113429190611dd6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a79190611ad6565b60405180910390a36113bb6000838361159a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061243e565b60405180910390fd5b61143a82600083611595565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b7906124d0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461151791906124f0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157c9190611ad6565b60405180910390a36115908360008461159a565b505050565b505050565b505050565b6115a98282610822565b611638576115ce8173ffffffffffffffffffffffffffffffffffffffff16601461163c565b6115dc8360001c602061163c565b6040516020016115ed9291906125f8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f91906119d1565b60405180910390fd5b5050565b60606000600283600261164f9190612632565b6116599190611dd6565b67ffffffffffffffff8111156116725761167161268c565b5b6040519080825280601f01601f1916602001820160405280156116a45781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106116dc576116db6126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106117405761173f6126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026117809190612632565b61178a9190611dd6565b90505b600181111561182a577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106117cc576117cb6126bb565b5b1a60f81b8282815181106117e3576117e26126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611823906126ea565b905061178d565b506000841461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061275f565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118b28161187d565b81146118bd57600080fd5b50565b6000813590506118cf816118a9565b92915050565b6000602082840312156118eb576118ea611878565b5b60006118f9848285016118c0565b91505092915050565b60008115159050919050565b61191781611902565b82525050565b6000602082019050611932600083018461190e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611972578082015181840152602081019050611957565b83811115611981576000848401525b50505050565b6000601f19601f8301169050919050565b60006119a382611938565b6119ad8185611943565b93506119bd818560208601611954565b6119c681611987565b840191505092915050565b600060208201905081810360008301526119eb8184611998565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a1e826119f3565b9050919050565b611a2e81611a13565b8114611a3957600080fd5b50565b600081359050611a4b81611a25565b92915050565b6000819050919050565b611a6481611a51565b8114611a6f57600080fd5b50565b600081359050611a8181611a5b565b92915050565b60008060408385031215611a9e57611a9d611878565b5b6000611aac85828601611a3c565b9250506020611abd85828601611a72565b9150509250929050565b611ad081611a51565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b600080600060608486031215611b0a57611b09611878565b5b6000611b1886828701611a3c565b9350506020611b2986828701611a3c565b9250506040611b3a86828701611a72565b9150509250925092565b6000819050919050565b611b5781611b44565b8114611b6257600080fd5b50565b600081359050611b7481611b4e565b92915050565b600060208284031215611b9057611b8f611878565b5b6000611b9e84828501611b65565b91505092915050565b611bb081611b44565b82525050565b6000602082019050611bcb6000830184611ba7565b92915050565b60008060408385031215611be857611be7611878565b5b6000611bf685828601611b65565b9250506020611c0785828601611a3c565b9150509250929050565b600060ff82169050919050565b611c2781611c11565b82525050565b6000602082019050611c426000830184611c1e565b92915050565b600060208284031215611c5e57611c5d611878565b5b6000611c6c84828501611a3c565b91505092915050565b60008060408385031215611c8c57611c8b611878565b5b6000611c9a85828601611a3c565b9250506020611cab85828601611a3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611cfc57607f821691505b602082108103611d0f57611d0e611cb5565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611d71602f83611943565b9150611d7c82611d15565b604082019050919050565b60006020820190508181036000830152611da081611d64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de182611a51565b9150611dec83611a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e2157611e20611da7565b5b828201905092915050565b7f44534b20546f6b656e3a2043616c6c6572206973206e6f742061206d696e746560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e88602183611943565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b611ec781611a13565b82525050565b6000604082019050611ee26000830185611ebe565b611eef6020830184611ac7565b9392505050565b7f44534b20546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f52602183611943565b9150611f5d82611ef6565b604082019050919050565b60006020820190508181036000830152611f8181611f45565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fe4602583611943565b9150611fef82611f88565b604082019050919050565b6000602082019050818103600083015261201381611fd7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612076602483611943565b91506120818261201a565b604082019050919050565b600060208201905081810360008301526120a581612069565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612108602283611943565b9150612113826120ac565b604082019050919050565b60006020820190508181036000830152612137816120fb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612174601d83611943565b915061217f8261213e565b602082019050919050565b600060208201905081810360008301526121a381612167565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612206602583611943565b9150612211826121aa565b604082019050919050565b60006020820190508181036000830152612235816121f9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612298602383611943565b91506122a38261223c565b604082019050919050565b600060208201905081810360008301526122c78161228b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061232a602683611943565b9150612335826122ce565b604082019050919050565b600060208201905081810360008301526123598161231d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612396601f83611943565b91506123a182612360565b602082019050919050565b600060208201905081810360008301526123c581612389565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612428602183611943565b9150612433826123cc565b604082019050919050565b600060208201905081810360008301526124578161241b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ba602283611943565b91506124c58261245e565b604082019050919050565b600060208201905081810360008301526124e9816124ad565b9050919050565b60006124fb82611a51565b915061250683611a51565b92508282101561251957612518611da7565b5b828203905092915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612565601783612524565b91506125708261252f565b601782019050919050565b600061258682611938565b6125908185612524565b93506125a0818560208601611954565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006125e2601183612524565b91506125ed826125ac565b601182019050919050565b600061260382612558565b915061260f828561257b565b915061261a826125d5565b9150612626828461257b565b91508190509392505050565b600061263d82611a51565b915061264883611a51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561268157612680611da7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006126f582611a51565b91506000820361270857612707611da7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612749602083611943565b915061275482612713565b602082019050919050565b600060208201905081810360008301526127788161273c565b905091905056fea26469706673582212208ffe63ec71665675e9e2487965284cba744984c09c2e6b839a8ffe4dcd93616164736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806340c10f19116100b8578063a217fddf1161007c578063a217fddf1461039d578063a457c2d7146103bb578063a9059cbb146103eb578063d53913931461041b578063d547741f14610439578063dd62ed3e1461045557610142565b806340c10f19146102e757806370a082311461030357806391d148541461033357806395d89b41146103635780639dc29fac1461038157610142565b8063248a9ca31161010a578063248a9ca314610213578063282c51f3146102435780632f2ff15d14610261578063313ce5671461027d57806336568abe1461029b57806339509351146102b757610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c91906118d5565b610485565b60405161016e919061191d565b60405180910390f35b61017f6104ff565b60405161018c91906119d1565b60405180910390f35b6101af60048036038101906101aa9190611a87565b610591565b6040516101bc919061191d565b60405180910390f35b6101cd6105b4565b6040516101da9190611ad6565b60405180910390f35b6101fd60048036038101906101f89190611af1565b6105be565b60405161020a919061191d565b60405180910390f35b61022d60048036038101906102289190611b7a565b6105ed565b60405161023a9190611bb6565b60405180910390f35b61024b61060d565b6040516102589190611bb6565b60405180910390f35b61027b60048036038101906102769190611bd1565b610631565b005b610285610652565b6040516102929190611c2d565b60405180910390f35b6102b560048036038101906102b09190611bd1565b610669565b005b6102d160048036038101906102cc9190611a87565b6106ec565b6040516102de919061191d565b60405180910390f35b61030160048036038101906102fc9190611a87565b610723565b005b61031d60048036038101906103189190611c48565b6107da565b60405161032a9190611ad6565b60405180910390f35b61034d60048036038101906103489190611bd1565b610822565b60405161035a919061191d565b60405180910390f35b61036b61088d565b60405161037891906119d1565b60405180910390f35b61039b60048036038101906103969190611a87565b61091f565b005b6103a56109d6565b6040516103b29190611bb6565b60405180910390f35b6103d560048036038101906103d09190611a87565b6109dd565b6040516103e2919061191d565b60405180910390f35b61040560048036038101906104009190611a87565b610a54565b604051610412919061191d565b60405180910390f35b610423610a77565b6040516104309190611bb6565b60405180910390f35b610453600480360381019061044e9190611bd1565b610a9b565b005b61046f600480360381019061046a9190611c75565b610abc565b60405161047c9190611ad6565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f857506104f782610b43565b5b9050919050565b60606003805461050e90611ce4565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611ce4565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610bad565b90506105a9818585610bb5565b600191505092915050565b6000600254905090565b6000806105c9610bad565b90506105d6858285610d7e565b6105e1858585610e0a565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61063a826105ed565b61064381611089565b61064d838361109d565b505050565b6000600860009054906101000a900460ff16905090565b610671610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611d87565b60405180910390fd5b6106e8828261117e565b5050565b6000806106f7610bad565b90506107188185856107098589610abc565b6107139190611dd6565b610bb5565b600191505092915050565b6107547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661074f610bad565b610822565b610793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078a90611e9e565b60405180910390fd5b61079d8282611260565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe82826040516107ce929190611ecd565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461089c90611ce4565b80601f01602080910402602001604051908101604052809291908181526020018280546108c890611ce4565b80156109155780601f106108ea57610100808354040283529160200191610915565b820191906000526020600020905b8154815290600101906020018083116108f857829003601f168201915b5050505050905090565b6109507f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861094b610bad565b610822565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690611f68565b60405180910390fd5b61099982826113bf565b7f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df782826040516109ca929190611ecd565b60405180910390a15050565b6000801b81565b6000806109e8610bad565b905060006109f68286610abc565b905083811015610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611ffa565b60405180910390fd5b610a488286868403610bb5565b60019250505092915050565b600080610a5f610bad565b9050610a6c818585610e0a565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610aa4826105ed565b610aad81611089565b610ab7838361117e565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061208c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061211e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d719190611ad6565b60405180910390a3505050565b6000610d8a8484610abc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e045781811015610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded9061218a565b60405180910390fd5b610e038484848403610bb5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e709061221c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906122ae565b60405180910390fd5b610ef3838383611595565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090612340565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100c9190611dd6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110709190611ad6565b60405180910390a361108384848461159a565b50505050565b61109a81611095610bad565b61159f565b50565b6110a78282610822565b61117a5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061111f610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6111888282610822565b1561125c5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611201610bad565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906123ac565b60405180910390fd5b6112db60008383611595565b80600260008282546112ed9190611dd6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113429190611dd6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a79190611ad6565b60405180910390a36113bb6000838361159a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061243e565b60405180910390fd5b61143a82600083611595565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b7906124d0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461151791906124f0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157c9190611ad6565b60405180910390a36115908360008461159a565b505050565b505050565b505050565b6115a98282610822565b611638576115ce8173ffffffffffffffffffffffffffffffffffffffff16601461163c565b6115dc8360001c602061163c565b6040516020016115ed9291906125f8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f91906119d1565b60405180910390fd5b5050565b60606000600283600261164f9190612632565b6116599190611dd6565b67ffffffffffffffff8111156116725761167161268c565b5b6040519080825280601f01601f1916602001820160405280156116a45781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106116dc576116db6126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106117405761173f6126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026117809190612632565b61178a9190611dd6565b90505b600181111561182a577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106117cc576117cb6126bb565b5b1a60f81b8282815181106117e3576117e26126bb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611823906126ea565b905061178d565b506000841461186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118659061275f565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118b28161187d565b81146118bd57600080fd5b50565b6000813590506118cf816118a9565b92915050565b6000602082840312156118eb576118ea611878565b5b60006118f9848285016118c0565b91505092915050565b60008115159050919050565b61191781611902565b82525050565b6000602082019050611932600083018461190e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611972578082015181840152602081019050611957565b83811115611981576000848401525b50505050565b6000601f19601f8301169050919050565b60006119a382611938565b6119ad8185611943565b93506119bd818560208601611954565b6119c681611987565b840191505092915050565b600060208201905081810360008301526119eb8184611998565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a1e826119f3565b9050919050565b611a2e81611a13565b8114611a3957600080fd5b50565b600081359050611a4b81611a25565b92915050565b6000819050919050565b611a6481611a51565b8114611a6f57600080fd5b50565b600081359050611a8181611a5b565b92915050565b60008060408385031215611a9e57611a9d611878565b5b6000611aac85828601611a3c565b9250506020611abd85828601611a72565b9150509250929050565b611ad081611a51565b82525050565b6000602082019050611aeb6000830184611ac7565b92915050565b600080600060608486031215611b0a57611b09611878565b5b6000611b1886828701611a3c565b9350506020611b2986828701611a3c565b9250506040611b3a86828701611a72565b9150509250925092565b6000819050919050565b611b5781611b44565b8114611b6257600080fd5b50565b600081359050611b7481611b4e565b92915050565b600060208284031215611b9057611b8f611878565b5b6000611b9e84828501611b65565b91505092915050565b611bb081611b44565b82525050565b6000602082019050611bcb6000830184611ba7565b92915050565b60008060408385031215611be857611be7611878565b5b6000611bf685828601611b65565b9250506020611c0785828601611a3c565b9150509250929050565b600060ff82169050919050565b611c2781611c11565b82525050565b6000602082019050611c426000830184611c1e565b92915050565b600060208284031215611c5e57611c5d611878565b5b6000611c6c84828501611a3c565b91505092915050565b60008060408385031215611c8c57611c8b611878565b5b6000611c9a85828601611a3c565b9250506020611cab85828601611a3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611cfc57607f821691505b602082108103611d0f57611d0e611cb5565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000611d71602f83611943565b9150611d7c82611d15565b604082019050919050565b60006020820190508181036000830152611da081611d64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de182611a51565b9150611dec83611a51565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e2157611e20611da7565b5b828201905092915050565b7f44534b20546f6b656e3a2043616c6c6572206973206e6f742061206d696e746560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e88602183611943565b9150611e9382611e2c565b604082019050919050565b60006020820190508181036000830152611eb781611e7b565b9050919050565b611ec781611a13565b82525050565b6000604082019050611ee26000830185611ebe565b611eef6020830184611ac7565b9392505050565b7f44534b20546f6b656e3a2043616c6c6572206973206e6f742061206275726e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f52602183611943565b9150611f5d82611ef6565b604082019050919050565b60006020820190508181036000830152611f8181611f45565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fe4602583611943565b9150611fef82611f88565b604082019050919050565b6000602082019050818103600083015261201381611fd7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612076602483611943565b91506120818261201a565b604082019050919050565b600060208201905081810360008301526120a581612069565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612108602283611943565b9150612113826120ac565b604082019050919050565b60006020820190508181036000830152612137816120fb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612174601d83611943565b915061217f8261213e565b602082019050919050565b600060208201905081810360008301526121a381612167565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612206602583611943565b9150612211826121aa565b604082019050919050565b60006020820190508181036000830152612235816121f9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612298602383611943565b91506122a38261223c565b604082019050919050565b600060208201905081810360008301526122c78161228b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061232a602683611943565b9150612335826122ce565b604082019050919050565b600060208201905081810360008301526123598161231d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612396601f83611943565b91506123a182612360565b602082019050919050565b600060208201905081810360008301526123c581612389565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612428602183611943565b9150612433826123cc565b604082019050919050565b600060208201905081810360008301526124578161241b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ba602283611943565b91506124c58261245e565b604082019050919050565b600060208201905081810360008301526124e9816124ad565b9050919050565b60006124fb82611a51565b915061250683611a51565b92508282101561251957612518611da7565b5b828203905092915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612565601783612524565b91506125708261252f565b601782019050919050565b600061258682611938565b6125908185612524565b93506125a0818560208601611954565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006125e2601183612524565b91506125ed826125ac565b601182019050919050565b600061260382612558565b915061260f828561257b565b915061261a826125d5565b9150612626828461257b565b91508190509392505050565b600061263d82611a51565b915061264883611a51565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561268157612680611da7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006126f582611a51565b91506000820361270857612707611da7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000612749602083611943565b915061275482612713565b602082019050919050565b600060208201905081810360008301526127788161273c565b905091905056fea26469706673582212208ffe63ec71665675e9e2487965284cba744984c09c2e6b839a8ffe4dcd93616164736f6c634300080d0033

Deployed Bytecode Sourcemap

32590:1270:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10563:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21697:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24048:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22817:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24829:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12399:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32891:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12792:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33754:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13840:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25533:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33536:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22988:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10859:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21916:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33312:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9964:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26274:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23321:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32822:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13184:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23577:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10563:204;10648:4;10687:32;10672:47;;;:11;:47;;;;:87;;;;10723:36;10747:11;10723:23;:36::i;:::-;10672:87;10665:94;;10563:204;;;:::o;21697:100::-;21751:13;21784:5;21777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21697:100;:::o;24048:201::-;24131:4;24148:13;24164:12;:10;:12::i;:::-;24148:28;;24187:32;24196:5;24203:7;24212:6;24187:8;:32::i;:::-;24237:4;24230:11;;;24048:201;;;;:::o;22817:108::-;22878:7;22905:12;;22898:19;;22817:108;:::o;24829:295::-;24960:4;24977:15;24995:12;:10;:12::i;:::-;24977:30;;25018:38;25034:4;25040:7;25049:6;25018:15;:38::i;:::-;25067:27;25077:4;25083:2;25087:6;25067:9;:27::i;:::-;25112:4;25105:11;;;24829:295;;;;;:::o;12399:131::-;12473:7;12500:6;:12;12507:4;12500:12;;;;;;;;;;;:22;;;12493:29;;12399:131;;;:::o;32891:62::-;32929:24;32891:62;:::o;12792:147::-;12875:18;12888:4;12875:12;:18::i;:::-;10455:16;10466:4;10455:10;:16::i;:::-;12906:25:::1;12917:4;12923:7;12906:10;:25::i;:::-;12792:147:::0;;;:::o;33754:101::-;33812:5;33837:10;;;;;;;;;;;33830:17;;33754:101;:::o;13840:218::-;13947:12;:10;:12::i;:::-;13936:23;;:7;:23;;;13928:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;14024:26;14036:4;14042:7;14024:11;:26::i;:::-;13840:218;;:::o;25533:238::-;25621:4;25638:13;25654:12;:10;:12::i;:::-;25638:28;;25677:64;25686:5;25693:7;25730:10;25702:25;25712:5;25719:7;25702:9;:25::i;:::-;:38;;;;:::i;:::-;25677:8;:64::i;:::-;25759:4;25752:11;;;25533:238;;;;:::o;33536:210::-;33604:34;32860:24;33625:12;:10;:12::i;:::-;33604:7;:34::i;:::-;33596:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33687:17;33693:2;33697:6;33687:5;:17::i;:::-;33720:18;33727:2;33731:6;33720:18;;;;;;;:::i;:::-;;;;;;;;33536:210;;:::o;22988:127::-;23062:7;23089:9;:18;23099:7;23089:18;;;;;;;;;;;;;;;;23082:25;;22988:127;;;:::o;10859:147::-;10945:4;10969:6;:12;10976:4;10969:12;;;;;;;;;;;:20;;:29;10990:7;10969:29;;;;;;;;;;;;;;;;;;;;;;;;;10962:36;;10859:147;;;;:::o;21916:104::-;21972:13;22005:7;21998:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21916:104;:::o;33312:216::-;33382:34;32929:24;33403:12;:10;:12::i;:::-;33382:7;:34::i;:::-;33374:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33465:19;33471:4;33477:6;33465:5;:19::i;:::-;33500:20;33507:4;33513:6;33500:20;;;;;;;:::i;:::-;;;;;;;;33312:216;;:::o;9964:49::-;10009:4;9964:49;;;:::o;26274:436::-;26367:4;26384:13;26400:12;:10;:12::i;:::-;26384:28;;26423:24;26450:25;26460:5;26467:7;26450:9;:25::i;:::-;26423:52;;26514:15;26494:16;:35;;26486:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:60;26616:5;26623:7;26651:15;26632:16;:34;26607:8;:60::i;:::-;26698:4;26691:11;;;;26274:436;;;;:::o;23321:193::-;23400:4;23417:13;23433:12;:10;:12::i;:::-;23417:28;;23456;23466:5;23473:2;23477:6;23456:9;:28::i;:::-;23502:4;23495:11;;;23321:193;;;;:::o;32822:62::-;32860:24;32822:62;:::o;13184:149::-;13268:18;13281:4;13268:12;:18::i;:::-;10455:16;10466:4;10455:10;:16::i;:::-;13299:26:::1;13311:4;13317:7;13299:11;:26::i;:::-;13184:149:::0;;;:::o;23577:151::-;23666:7;23693:11;:18;23705:5;23693:18;;;;;;;;;;;;;;;:27;23712:7;23693:27;;;;;;;;;;;;;;;;23686:34;;23577:151;;;;:::o;7824:157::-;7909:4;7948:25;7933:40;;;:11;:40;;;;7926:47;;7824:157;;;:::o;3714:98::-;3767:7;3794:10;3787:17;;3714:98;:::o;29908:380::-;30061:1;30044:19;;:5;:19;;;30036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:1;30123:21;;:7;:21;;;30115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30226:6;30196:11;:18;30208:5;30196:18;;;;;;;;;;;;;;;:27;30215:7;30196:27;;;;;;;;;;;;;;;:36;;;;30264:7;30248:32;;30257:5;30248:32;;;30273:6;30248:32;;;;;;:::i;:::-;;;;;;;;29908:380;;;:::o;30579:453::-;30714:24;30741:25;30751:5;30758:7;30741:9;:25::i;:::-;30714:52;;30801:17;30781:16;:37;30777:248;;30863:6;30843:16;:26;;30835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30947:51;30956:5;30963:7;30991:6;30972:16;:25;30947:8;:51::i;:::-;30777:248;30703:329;30579:453;;;:::o;27189:671::-;27336:1;27320:18;;:4;:18;;;27312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27413:1;27399:16;;:2;:16;;;27391:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27468:38;27489:4;27495:2;27499:6;27468:20;:38::i;:::-;27519:19;27541:9;:15;27551:4;27541:15;;;;;;;;;;;;;;;;27519:37;;27590:6;27575:11;:21;;27567:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27707:6;27693:11;:20;27675:9;:15;27685:4;27675:15;;;;;;;;;;;;;;;:38;;;;27752:6;27735:9;:13;27745:2;27735:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;27791:2;27776:26;;27785:4;27776:26;;;27795:6;27776:26;;;;;;:::i;:::-;;;;;;;;27815:37;27835:4;27841:2;27845:6;27815:19;:37::i;:::-;27301:559;27189:671;;;:::o;11310:105::-;11377:30;11388:4;11394:12;:10;:12::i;:::-;11377:10;:30::i;:::-;11310:105;:::o;15341:238::-;15425:22;15433:4;15439:7;15425;:22::i;:::-;15420:152;;15496:4;15464:6;:12;15471:4;15464:12;;;;;;;;;;;:20;;:29;15485:7;15464:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15547:12;:10;:12::i;:::-;15520:40;;15538:7;15520:40;;15532:4;15520:40;;;;;;;;;;15420:152;15341:238;;:::o;15711:239::-;15795:22;15803:4;15809:7;15795;:22::i;:::-;15791:152;;;15866:5;15834:6;:12;15841:4;15834:12;;;;;;;;;;;:20;;:29;15855:7;15834:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15918:12;:10;:12::i;:::-;15891:40;;15909:7;15891:40;;15903:4;15891:40;;;;;;;;;;15791:152;15711:239;;:::o;28147:399::-;28250:1;28231:21;;:7;:21;;;28223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28301:49;28330:1;28334:7;28343:6;28301:20;:49::i;:::-;28379:6;28363:12;;:22;;;;;;;:::i;:::-;;;;;;;;28418:6;28396:9;:18;28406:7;28396:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;28461:7;28440:37;;28457:1;28440:37;;;28470:6;28440:37;;;;;;:::i;:::-;;;;;;;;28490:48;28518:1;28522:7;28531:6;28490:19;:48::i;:::-;28147:399;;:::o;28879:591::-;28982:1;28963:21;;:7;:21;;;28955:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29035:49;29056:7;29073:1;29077:6;29035:20;:49::i;:::-;29097:22;29122:9;:18;29132:7;29122:18;;;;;;;;;;;;;;;;29097:43;;29177:6;29159:14;:24;;29151:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29296:6;29279:14;:23;29258:9;:18;29268:7;29258:18;;;;;;;;;;;;;;;:44;;;;29340:6;29324:12;;:22;;;;;;;:::i;:::-;;;;;;;;29390:1;29364:37;;29373:7;29364:37;;;29394:6;29364:37;;;;;;:::i;:::-;;;;;;;;29414:48;29434:7;29451:1;29455:6;29414:19;:48::i;:::-;28944:526;28879:591;;:::o;31632:125::-;;;;:::o;32361:124::-;;;;:::o;11705:505::-;11794:22;11802:4;11808:7;11794;:22::i;:::-;11789:414;;11982:41;12010:7;11982:41;;12020:2;11982:19;:41::i;:::-;12096:38;12124:4;12116:13;;12131:2;12096:19;:38::i;:::-;11887:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11833:358;;;;;;;;;;;:::i;:::-;;;;;;;;11789:414;11705:505;;:::o;5590:451::-;5665:13;5691:19;5736:1;5727:6;5723:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5713:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5691:47;;5749:15;:6;5756:1;5749:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5775;:6;5782:1;5775:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5806:9;5831:1;5822:6;5818:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5806:26;;5801:135;5838:1;5834;:5;5801:135;;;5873:12;5894:3;5886:5;:11;5873:25;;;;;;;:::i;:::-;;;;;5861:6;5868:1;5861:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;5923:1;5913:11;;;;;5841:3;;;;:::i;:::-;;;5801:135;;;;5963:1;5954:5;:10;5946:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;6026:6;6012:21;;;5590:451;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:474::-;7584:6;7592;7641:2;7629:9;7620:7;7616:23;7612:32;7609:119;;;7647:79;;:::i;:::-;7609:119;7767:1;7792:53;7837:7;7828:6;7817:9;7813:22;7792:53;:::i;:::-;7782:63;;7738:117;7894:2;7920:53;7965:7;7956:6;7945:9;7941:22;7920:53;:::i;:::-;7910:63;;7865:118;7516:474;;;;;:::o;7996:180::-;8044:77;8041:1;8034:88;8141:4;8138:1;8131:15;8165:4;8162:1;8155:15;8182:320;8226:6;8263:1;8257:4;8253:12;8243:22;;8310:1;8304:4;8300:12;8331:18;8321:81;;8387:4;8379:6;8375:17;8365:27;;8321:81;8449:2;8441:6;8438:14;8418:18;8415:38;8412:84;;8468:18;;:::i;:::-;8412:84;8233:269;8182:320;;;:::o;8508:234::-;8648:34;8644:1;8636:6;8632:14;8625:58;8717:17;8712:2;8704:6;8700:15;8693:42;8508:234;:::o;8748:366::-;8890:3;8911:67;8975:2;8970:3;8911:67;:::i;:::-;8904:74;;8987:93;9076:3;8987:93;:::i;:::-;9105:2;9100:3;9096:12;9089:19;;8748:366;;;:::o;9120:419::-;9286:4;9324:2;9313:9;9309:18;9301:26;;9373:9;9367:4;9363:20;9359:1;9348:9;9344:17;9337:47;9401:131;9527:4;9401:131;:::i;:::-;9393:139;;9120:419;;;:::o;9545:180::-;9593:77;9590:1;9583:88;9690:4;9687:1;9680:15;9714:4;9711:1;9704:15;9731:305;9771:3;9790:20;9808:1;9790:20;:::i;:::-;9785:25;;9824:20;9842:1;9824:20;:::i;:::-;9819:25;;9978:1;9910:66;9906:74;9903:1;9900:81;9897:107;;;9984:18;;:::i;:::-;9897:107;10028:1;10025;10021:9;10014:16;;9731:305;;;;:::o;10042:220::-;10182:34;10178:1;10170:6;10166:14;10159:58;10251:3;10246:2;10238:6;10234:15;10227:28;10042:220;:::o;10268:366::-;10410:3;10431:67;10495:2;10490:3;10431:67;:::i;:::-;10424:74;;10507:93;10596:3;10507:93;:::i;:::-;10625:2;10620:3;10616:12;10609:19;;10268:366;;;:::o;10640:419::-;10806:4;10844:2;10833:9;10829:18;10821:26;;10893:9;10887:4;10883:20;10879:1;10868:9;10864:17;10857:47;10921:131;11047:4;10921:131;:::i;:::-;10913:139;;10640:419;;;:::o;11065:118::-;11152:24;11170:5;11152:24;:::i;:::-;11147:3;11140:37;11065:118;;:::o;11189:332::-;11310:4;11348:2;11337:9;11333:18;11325:26;;11361:71;11429:1;11418:9;11414:17;11405:6;11361:71;:::i;:::-;11442:72;11510:2;11499:9;11495:18;11486:6;11442:72;:::i;:::-;11189:332;;;;;:::o;11527:220::-;11667:34;11663:1;11655:6;11651:14;11644:58;11736:3;11731:2;11723:6;11719:15;11712:28;11527:220;:::o;11753:366::-;11895:3;11916:67;11980:2;11975:3;11916:67;:::i;:::-;11909:74;;11992:93;12081:3;11992:93;:::i;:::-;12110:2;12105:3;12101:12;12094:19;;11753:366;;;:::o;12125:419::-;12291:4;12329:2;12318:9;12314:18;12306:26;;12378:9;12372:4;12368:20;12364:1;12353:9;12349:17;12342:47;12406:131;12532:4;12406:131;:::i;:::-;12398:139;;12125:419;;;:::o;12550:224::-;12690:34;12686:1;12678:6;12674:14;12667:58;12759:7;12754:2;12746:6;12742:15;12735:32;12550:224;:::o;12780:366::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:419::-;13318:4;13356:2;13345:9;13341:18;13333:26;;13405:9;13399:4;13395:20;13391:1;13380:9;13376:17;13369:47;13433:131;13559:4;13433:131;:::i;:::-;13425:139;;13152:419;;;:::o;13577:223::-;13717:34;13713:1;13705:6;13701:14;13694:58;13786:6;13781:2;13773:6;13769:15;13762:31;13577:223;:::o;13806:366::-;13948:3;13969:67;14033:2;14028:3;13969:67;:::i;:::-;13962:74;;14045:93;14134:3;14045:93;:::i;:::-;14163:2;14158:3;14154:12;14147:19;;13806:366;;;:::o;14178:419::-;14344:4;14382:2;14371:9;14367:18;14359:26;;14431:9;14425:4;14421:20;14417:1;14406:9;14402:17;14395:47;14459:131;14585:4;14459:131;:::i;:::-;14451:139;;14178:419;;;:::o;14603:221::-;14743:34;14739:1;14731:6;14727:14;14720:58;14812:4;14807:2;14799:6;14795:15;14788:29;14603:221;:::o;14830:366::-;14972:3;14993:67;15057:2;15052:3;14993:67;:::i;:::-;14986:74;;15069:93;15158:3;15069:93;:::i;:::-;15187:2;15182:3;15178:12;15171:19;;14830:366;;;:::o;15202:419::-;15368:4;15406:2;15395:9;15391:18;15383:26;;15455:9;15449:4;15445:20;15441:1;15430:9;15426:17;15419:47;15483:131;15609:4;15483:131;:::i;:::-;15475:139;;15202:419;;;:::o;15627:179::-;15767:31;15763:1;15755:6;15751:14;15744:55;15627:179;:::o;15812:366::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15812:366;;;:::o;16184:419::-;16350:4;16388:2;16377:9;16373:18;16365:26;;16437:9;16431:4;16427:20;16423:1;16412:9;16408:17;16401:47;16465:131;16591:4;16465:131;:::i;:::-;16457:139;;16184:419;;;:::o;16609:224::-;16749:34;16745:1;16737:6;16733:14;16726:58;16818:7;16813:2;16805:6;16801:15;16794:32;16609:224;:::o;16839:366::-;16981:3;17002:67;17066:2;17061:3;17002:67;:::i;:::-;16995:74;;17078:93;17167:3;17078:93;:::i;:::-;17196:2;17191:3;17187:12;17180:19;;16839:366;;;:::o;17211:419::-;17377:4;17415:2;17404:9;17400:18;17392:26;;17464:9;17458:4;17454:20;17450:1;17439:9;17435:17;17428:47;17492:131;17618:4;17492:131;:::i;:::-;17484:139;;17211:419;;;:::o;17636:222::-;17776:34;17772:1;17764:6;17760:14;17753:58;17845:5;17840:2;17832:6;17828:15;17821:30;17636:222;:::o;17864:366::-;18006:3;18027:67;18091:2;18086:3;18027:67;:::i;:::-;18020:74;;18103:93;18192:3;18103:93;:::i;:::-;18221:2;18216:3;18212:12;18205:19;;17864:366;;;:::o;18236:419::-;18402:4;18440:2;18429:9;18425:18;18417:26;;18489:9;18483:4;18479:20;18475:1;18464:9;18460:17;18453:47;18517:131;18643:4;18517:131;:::i;:::-;18509:139;;18236:419;;;:::o;18661:225::-;18801:34;18797:1;18789:6;18785:14;18778:58;18870:8;18865:2;18857:6;18853:15;18846:33;18661:225;:::o;18892:366::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:419::-;19430:4;19468:2;19457:9;19453:18;19445:26;;19517:9;19511:4;19507:20;19503:1;19492:9;19488:17;19481:47;19545:131;19671:4;19545:131;:::i;:::-;19537:139;;19264:419;;;:::o;19689:181::-;19829:33;19825:1;19817:6;19813:14;19806:57;19689:181;:::o;19876:366::-;20018:3;20039:67;20103:2;20098:3;20039:67;:::i;:::-;20032:74;;20115:93;20204:3;20115:93;:::i;:::-;20233:2;20228:3;20224:12;20217:19;;19876:366;;;:::o;20248:419::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20501:9;20495:4;20491:20;20487:1;20476:9;20472:17;20465:47;20529:131;20655:4;20529:131;:::i;:::-;20521:139;;20248:419;;;:::o;20673:220::-;20813:34;20809:1;20801:6;20797:14;20790:58;20882:3;20877:2;20869:6;20865:15;20858:28;20673:220;:::o;20899:366::-;21041:3;21062:67;21126:2;21121:3;21062:67;:::i;:::-;21055:74;;21138:93;21227:3;21138:93;:::i;:::-;21256:2;21251:3;21247:12;21240:19;;20899:366;;;:::o;21271:419::-;21437:4;21475:2;21464:9;21460:18;21452:26;;21524:9;21518:4;21514:20;21510:1;21499:9;21495:17;21488:47;21552:131;21678:4;21552:131;:::i;:::-;21544:139;;21271:419;;;:::o;21696:221::-;21836:34;21832:1;21824:6;21820:14;21813:58;21905:4;21900:2;21892:6;21888:15;21881:29;21696:221;:::o;21923:366::-;22065:3;22086:67;22150:2;22145:3;22086:67;:::i;:::-;22079:74;;22162:93;22251:3;22162:93;:::i;:::-;22280:2;22275:3;22271:12;22264:19;;21923:366;;;:::o;22295:419::-;22461:4;22499:2;22488:9;22484:18;22476:26;;22548:9;22542:4;22538:20;22534:1;22523:9;22519:17;22512:47;22576:131;22702:4;22576:131;:::i;:::-;22568:139;;22295:419;;;:::o;22720:191::-;22760:4;22780:20;22798:1;22780:20;:::i;:::-;22775:25;;22814:20;22832:1;22814:20;:::i;:::-;22809:25;;22853:1;22850;22847:8;22844:34;;;22858:18;;:::i;:::-;22844:34;22903:1;22900;22896:9;22888:17;;22720:191;;;;:::o;22917:148::-;23019:11;23056:3;23041:18;;22917:148;;;;:::o;23071:173::-;23211:25;23207:1;23199:6;23195:14;23188:49;23071:173;:::o;23250:402::-;23410:3;23431:85;23513:2;23508:3;23431:85;:::i;:::-;23424:92;;23525:93;23614:3;23525:93;:::i;:::-;23643:2;23638:3;23634:12;23627:19;;23250:402;;;:::o;23658:377::-;23764:3;23792:39;23825:5;23792:39;:::i;:::-;23847:89;23929:6;23924:3;23847:89;:::i;:::-;23840:96;;23945:52;23990:6;23985:3;23978:4;23971:5;23967:16;23945:52;:::i;:::-;24022:6;24017:3;24013:16;24006:23;;23768:267;23658:377;;;;:::o;24041:167::-;24181:19;24177:1;24169:6;24165:14;24158:43;24041:167;:::o;24214:402::-;24374:3;24395:85;24477:2;24472:3;24395:85;:::i;:::-;24388:92;;24489:93;24578:3;24489:93;:::i;:::-;24607:2;24602:3;24598:12;24591:19;;24214:402;;;:::o;24622:967::-;25004:3;25026:148;25170:3;25026:148;:::i;:::-;25019:155;;25191:95;25282:3;25273:6;25191:95;:::i;:::-;25184:102;;25303:148;25447:3;25303:148;:::i;:::-;25296:155;;25468:95;25559:3;25550:6;25468:95;:::i;:::-;25461:102;;25580:3;25573:10;;24622:967;;;;;:::o;25595:348::-;25635:7;25658:20;25676:1;25658:20;:::i;:::-;25653:25;;25692:20;25710:1;25692:20;:::i;:::-;25687:25;;25880:1;25812:66;25808:74;25805:1;25802:81;25797:1;25790:9;25783:17;25779:105;25776:131;;;25887:18;;:::i;:::-;25776:131;25935:1;25932;25928:9;25917:20;;25595:348;;;;:::o;25949:180::-;25997:77;25994:1;25987:88;26094:4;26091:1;26084:15;26118:4;26115:1;26108:15;26135:180;26183:77;26180:1;26173:88;26280:4;26277:1;26270:15;26304:4;26301:1;26294:15;26321:171;26360:3;26383:24;26401:5;26383:24;:::i;:::-;26374:33;;26429:4;26422:5;26419:15;26416:41;;26437:18;;:::i;:::-;26416:41;26484:1;26477:5;26473:13;26466:20;;26321:171;;;:::o;26498:182::-;26638:34;26634:1;26626:6;26622:14;26615:58;26498:182;:::o;26686:366::-;26828:3;26849:67;26913:2;26908:3;26849:67;:::i;:::-;26842:74;;26925:93;27014:3;26925:93;:::i;:::-;27043:2;27038:3;27034:12;27027:19;;26686:366;;;:::o;27058:419::-;27224:4;27262:2;27251:9;27247:18;27239:26;;27311:9;27305:4;27301:20;27297:1;27286:9;27282:17;27275:47;27339:131;27465:4;27339:131;:::i;:::-;27331:139;;27058:419;;;:::o

Swarm Source

ipfs://8ffe63ec71665675e9e2487965284cba744984c09c2e6b839a8ffe4dcd936161
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.