ETH Price: $3,365.12 (-2.31%)
Gas: 2 Gwei

Token

PureFi Token (UFI)
 

Overview

Max Total Supply

100,000,000 UFI

Holders

2,249 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.006588295590278113 UFI

Value
$0.00
0xd4036b33d3bc92f7026741943d9aa70bf5e31918
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PureFi Protocol - the one-stop compliance protocol for DeFi

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 UFI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PureFiToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-26
*/

// SPDX-License-Identifier: MIT

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




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




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




interface IBotProtector {
    function isPotentialBot(address account) external returns (bool);
    function isPotentialBotTransfer(address from, address to) external returns (bool);
}















/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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







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



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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







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

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

    bool private _paused;

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

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

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

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

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

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


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}













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


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

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

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

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

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

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

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

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

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `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}.
     * ====
     */
    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);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}



contract PureFiToken is ERC20Pausable, AccessControl {

    address botProtector;

    constructor(address _admin) 
    ERC20("PureFi Token", "UFI") {
        _mint(_admin, 100000000 * (10 ** uint(decimals())));
        _setupRole(DEFAULT_ADMIN_ROLE, _admin);
    }

    modifier onlyAdmin() {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not the Admin");
        _;
    }

    //admin functions
    function pause() onlyAdmin public {
        super._pause();
    }

    function unpause() onlyAdmin public {
        super._unpause();
    }

    function setBotProtector(address _botProtector) onlyAdmin public{
        botProtector = _botProtector;
    }

    //internal functions
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if(botProtector != address(0)){
            require(!IBotProtector(botProtector).isPotentialBotTransfer(sender, recipient), "PureFiToken: Bot transaction debounced");
        }
        super._transfer(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_botProtector","type":"address"}],"name":"setBotProtector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620018ae380380620018ae8339810160408190526200003491620003d3565b6040518060400160405280600c81526020016b283ab932a334902a37b5b2b760a11b8152506040518060400160405280600381526020016255464960e81b81525081600390805190602001906200008d9291906200032d565b508051620000a39060049060208401906200032d565b50506005805460ff1916905550620000d981620000c36012600a62000469565b620000d3906305f5e10062000525565b620000ed565b620000e6600082620001e5565b506200059a565b6001600160a01b038216620001495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200015760008383620001f1565b80600260008282546200016b919062000405565b90915550506001600160a01b038216600090815260208190526040812080548392906200019a90849062000405565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b620001e1828262000276565b620002098383836200027160201b620004c91760201c565b60055460ff1615620002715760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840162000140565b505050565b62000282828262000300565b620001e15760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002bc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200033b9062000547565b90600052602060002090601f0160209004810192826200035f5760008555620003aa565b82601f106200037a57805160ff1916838001178555620003aa565b82800160010185558215620003aa579182015b82811115620003aa5782518255916020019190600101906200038d565b50620003b8929150620003bc565b5090565b5b80821115620003b85760008155600101620003bd565b600060208284031215620003e657600080fd5b81516001600160a01b0381168114620003fe57600080fd5b9392505050565b600082198211156200041b576200041b62000584565b500190565b600181815b808511156200046157816000190482111562000445576200044562000584565b808516156200045357918102915b93841c939080029062000425565b509250929050565b6000620003fe8383600082620004825750600162000327565b81620004915750600062000327565b8160018114620004aa5760028114620004b557620004d5565b600191505062000327565b60ff841115620004c957620004c962000584565b50506001821b62000327565b5060208310610133831016604e8410600b8410161715620004fa575081810a62000327565b62000506838362000420565b80600019048211156200051d576200051d62000584565b029392505050565b600081600019048311821515161562000542576200054262000584565b500290565b600181811c908216806200055c57607f821691505b602082108114156200057e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61130480620005aa6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80635c975abb116100b8578063a217fddf1161007c578063a217fddf14610288578063a457c2d714610290578063a9059cbb146102a3578063d547741f146102b6578063da78291b146102c9578063dd62ed3e146102dc57600080fd5b80635c975abb1461023157806370a082311461023c5780638456cb591461026557806391d148541461026d57806395d89b411461028057600080fd5b8063248a9ca31161010a578063248a9ca3146101bc5780632f2ff15d146101df578063313ce567146101f457806336568abe1461020357806339509351146102165780633f4ba83a1461022957600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a6101553660046110ce565b610315565b60405190151581526020015b60405180910390f35b61017761034c565b604051610166919061116d565b61015a610192366004611046565b6103de565b6002545b604051908152602001610166565b61015a6101b736600461100a565b6103f4565b61019b6101ca366004611092565b60009081526006602052604090206001015490565b6101f26101ed3660046110ab565b6104a3565b005b60405160128152602001610166565b6101f26102113660046110ab565b6104ce565b61015a610224366004611046565b61054c565b6101f2610588565b60055460ff1661015a565b61019b61024a366004610fbc565b6001600160a01b031660009081526020819052604090205490565b6101f26105b9565b61015a61027b3660046110ab565b6105e8565b610177610613565b61019b600081565b61015a61029e366004611046565b610622565b61015a6102b1366004611046565b6106bb565b6101f26102c43660046110ab565b6106c8565b6101f26102d7366004610fbc565b6106ee565b61019b6102ea366004610fd7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061034657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461035b90611251565b80601f016020809104026020016040519081016040528092919081815260200182805461038790611251565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b60006103eb338484610737565b50600192915050565b600061040184848461085b565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561048b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104988533858403610737565b506001949350505050565b6000828152600660205260409020600101546104bf813361095d565b6104c983836109c1565b505050565b6001600160a01b038116331461053e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610482565b6105488282610a47565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103eb9185906105839086906111d7565b610737565b6105936000336105e8565b6105af5760405162461bcd60e51b8152600401610482906111a0565b6105b7610aae565b565b6105c46000336105e8565b6105e05760405162461bcd60e51b8152600401610482906111a0565b6105b7610b41565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461035b90611251565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610482565b6106b13385858403610737565b5060019392505050565b60006103eb33848461085b565b6000828152600660205260409020600101546106e4813361095d565b6104c98383610a47565b6106f96000336105e8565b6107155760405162461bcd60e51b8152600401610482906111a0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b0382166107fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546001600160a01b03161561095257600754604051600162309a0760e01b031981526001600160a01b03858116600483015284811660248301529091169063ffcf65f990604401602060405180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f69190611070565b156109525760405162461bcd60e51b815260206004820152602660248201527f507572654669546f6b656e3a20426f74207472616e73616374696f6e206465626044820152651bdd5b98d95960d21b6064820152608401610482565b6104c9838383610bbc565b61096782826105e8565b6105485761097f816001600160a01b03166014610d97565b61098a836020610d97565b60405160200161099b9291906110f8565b60408051601f198184030181529082905262461bcd60e51b82526104829160040161116d565b6109cb82826105e8565b6105485760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a033390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a5182826105e8565b156105485760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff16610af75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610482565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60055460ff1615610b875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610482565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b243390565b6001600160a01b038316610c205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b038216610c825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b610c8d838383610f3a565b6001600160a01b03831660009081526020819052604090205481811015610d055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610482565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d3c9084906111d7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8891815260200190565b60405180910390a35b50505050565b60606000610da68360026111ef565b610db19060026111d7565b67ffffffffffffffff811115610dc957610dc96112b8565b6040519080825280601f01601f191660200182016040528015610df3576020820181803683370190505b509050600360fc1b81600081518110610e0e57610e0e6112a2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3d57610e3d6112a2565b60200101906001600160f81b031916908160001a9053506000610e618460026111ef565b610e6c9060016111d7565b90505b6001811115610ee4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ea057610ea06112a2565b1a60f81b828281518110610eb657610eb66112a2565b60200101906001600160f81b031916908160001a90535060049490941c93610edd8161123a565b9050610e6f565b508315610f335760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610482565b9392505050565b60055460ff16156104c95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610482565b80356001600160a01b0381168114610fb757600080fd5b919050565b600060208284031215610fce57600080fd5b610f3382610fa0565b60008060408385031215610fea57600080fd5b610ff383610fa0565b915061100160208401610fa0565b90509250929050565b60008060006060848603121561101f57600080fd5b61102884610fa0565b925061103660208501610fa0565b9150604084013590509250925092565b6000806040838503121561105957600080fd5b61106283610fa0565b946020939093013593505050565b60006020828403121561108257600080fd5b81518015158114610f3357600080fd5b6000602082840312156110a457600080fd5b5035919050565b600080604083850312156110be57600080fd5b8235915061100160208401610fa0565b6000602082840312156110e057600080fd5b81356001600160e01b031981168114610f3357600080fd5b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161113081601785016020880161120e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161116181602884016020880161120e565b01602801949350505050565b602081526000825180602084015261118c81604085016020870161120e565b601f01601f19169190910160400192915050565b60208082526017908201527f43616c6c6572206973206e6f74207468652041646d696e000000000000000000604082015260600190565b600082198211156111ea576111ea61128c565b500190565b60008160001904831182151516156112095761120961128c565b500290565b60005b83811015611229578181015183820152602001611211565b83811115610d915750506000910152565b6000816112495761124961128c565b506000190190565b600181811c9082168061126557607f821691505b6020821081141561128657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b9b965fd177a5b9e12438645c38eeb2b10676da58bda6872f934091b4181b24d64736f6c63430008060033000000000000000000000000ce14bda2d2bcec5247c97b65dbe6e6e570c4bb6d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80635c975abb116100b8578063a217fddf1161007c578063a217fddf14610288578063a457c2d714610290578063a9059cbb146102a3578063d547741f146102b6578063da78291b146102c9578063dd62ed3e146102dc57600080fd5b80635c975abb1461023157806370a082311461023c5780638456cb591461026557806391d148541461026d57806395d89b411461028057600080fd5b8063248a9ca31161010a578063248a9ca3146101bc5780632f2ff15d146101df578063313ce567146101f457806336568abe1461020357806339509351146102165780633f4ba83a1461022957600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b31461018457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015a6101553660046110ce565b610315565b60405190151581526020015b60405180910390f35b61017761034c565b604051610166919061116d565b61015a610192366004611046565b6103de565b6002545b604051908152602001610166565b61015a6101b736600461100a565b6103f4565b61019b6101ca366004611092565b60009081526006602052604090206001015490565b6101f26101ed3660046110ab565b6104a3565b005b60405160128152602001610166565b6101f26102113660046110ab565b6104ce565b61015a610224366004611046565b61054c565b6101f2610588565b60055460ff1661015a565b61019b61024a366004610fbc565b6001600160a01b031660009081526020819052604090205490565b6101f26105b9565b61015a61027b3660046110ab565b6105e8565b610177610613565b61019b600081565b61015a61029e366004611046565b610622565b61015a6102b1366004611046565b6106bb565b6101f26102c43660046110ab565b6106c8565b6101f26102d7366004610fbc565b6106ee565b61019b6102ea366004610fd7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061034657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461035b90611251565b80601f016020809104026020016040519081016040528092919081815260200182805461038790611251565b80156103d45780601f106103a9576101008083540402835291602001916103d4565b820191906000526020600020905b8154815290600101906020018083116103b757829003601f168201915b5050505050905090565b60006103eb338484610737565b50600192915050565b600061040184848461085b565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561048b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104988533858403610737565b506001949350505050565b6000828152600660205260409020600101546104bf813361095d565b6104c983836109c1565b505050565b6001600160a01b038116331461053e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610482565b6105488282610a47565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103eb9185906105839086906111d7565b610737565b6105936000336105e8565b6105af5760405162461bcd60e51b8152600401610482906111a0565b6105b7610aae565b565b6105c46000336105e8565b6105e05760405162461bcd60e51b8152600401610482906111a0565b6105b7610b41565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461035b90611251565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610482565b6106b13385858403610737565b5060019392505050565b60006103eb33848461085b565b6000828152600660205260409020600101546106e4813361095d565b6104c98383610a47565b6106f96000336105e8565b6107155760405162461bcd60e51b8152600401610482906111a0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610482565b6001600160a01b0382166107fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610482565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6007546001600160a01b03161561095257600754604051600162309a0760e01b031981526001600160a01b03858116600483015284811660248301529091169063ffcf65f990604401602060405180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f69190611070565b156109525760405162461bcd60e51b815260206004820152602660248201527f507572654669546f6b656e3a20426f74207472616e73616374696f6e206465626044820152651bdd5b98d95960d21b6064820152608401610482565b6104c9838383610bbc565b61096782826105e8565b6105485761097f816001600160a01b03166014610d97565b61098a836020610d97565b60405160200161099b9291906110f8565b60408051601f198184030181529082905262461bcd60e51b82526104829160040161116d565b6109cb82826105e8565b6105485760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610a033390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a5182826105e8565b156105485760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff16610af75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610482565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60055460ff1615610b875760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610482565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b243390565b6001600160a01b038316610c205760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610482565b6001600160a01b038216610c825760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610482565b610c8d838383610f3a565b6001600160a01b03831660009081526020819052604090205481811015610d055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610482565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d3c9084906111d7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8891815260200190565b60405180910390a35b50505050565b60606000610da68360026111ef565b610db19060026111d7565b67ffffffffffffffff811115610dc957610dc96112b8565b6040519080825280601f01601f191660200182016040528015610df3576020820181803683370190505b509050600360fc1b81600081518110610e0e57610e0e6112a2565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610e3d57610e3d6112a2565b60200101906001600160f81b031916908160001a9053506000610e618460026111ef565b610e6c9060016111d7565b90505b6001811115610ee4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610ea057610ea06112a2565b1a60f81b828281518110610eb657610eb66112a2565b60200101906001600160f81b031916908160001a90535060049490941c93610edd8161123a565b9050610e6f565b508315610f335760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610482565b9392505050565b60055460ff16156104c95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610482565b80356001600160a01b0381168114610fb757600080fd5b919050565b600060208284031215610fce57600080fd5b610f3382610fa0565b60008060408385031215610fea57600080fd5b610ff383610fa0565b915061100160208401610fa0565b90509250929050565b60008060006060848603121561101f57600080fd5b61102884610fa0565b925061103660208501610fa0565b9150604084013590509250925092565b6000806040838503121561105957600080fd5b61106283610fa0565b946020939093013593505050565b60006020828403121561108257600080fd5b81518015158114610f3357600080fd5b6000602082840312156110a457600080fd5b5035919050565b600080604083850312156110be57600080fd5b8235915061100160208401610fa0565b6000602082840312156110e057600080fd5b81356001600160e01b031981168114610f3357600080fd5b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161113081601785016020880161120e565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161116181602884016020880161120e565b01602801949350505050565b602081526000825180602084015261118c81604085016020870161120e565b601f01601f19169190910160400192915050565b60208082526017908201527f43616c6c6572206973206e6f74207468652041646d696e000000000000000000604082015260600190565b600082198211156111ea576111ea61128c565b500190565b60008160001904831182151516156112095761120961128c565b500290565b60005b83811015611229578181015183820152602001611211565b83811115610d915750506000910152565b6000816112495761124961128c565b506000190190565b600181811c9082168061126557607f821691505b6020821081141561128657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b9b965fd177a5b9e12438645c38eeb2b10676da58bda6872f934091b4181b24d64736f6c63430008060033

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

000000000000000000000000ce14bda2d2bcec5247c97b65dbe6e6e570c4bb6d

-----Decoded View---------------
Arg [0] : _admin (address): 0xcE14bda2d2BceC5247C97B65DBE6e6E570c4Bb6D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ce14bda2d2bcec5247c97b65dbe6e6e570c4bb6d


Deployed Bytecode Sourcemap

31499:1080:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26873:204;;;;;;:::i;:::-;;:::i;:::-;;;3730:14:1;;3723:22;3705:41;;3693:2;3678:18;26873:204:0;;;;;;;;9063:100;;;:::i;:::-;;;;;;;:::i;11230:169::-;;;;;;:::i;:::-;;:::i;10183:108::-;10271:12;;10183:108;;;3903:25:1;;;3891:2;3876:18;10183:108:0;3858:76:1;11881:492:0;;;;;;:::i;:::-;;:::i;28284:123::-;;;;;;:::i;:::-;28350:7;28377:12;;;:6;:12;;;;;:22;;;;28284:123;28669:147;;;;;;:::i;:::-;;:::i;:::-;;10025:93;;;10108:2;10132:36:1;;10120:2;10105:18;10025:93:0;10087:87:1;29717:218:0;;;;;;:::i;:::-;;:::i;12782:215::-;;;;;;:::i;:::-;;:::i;32015:71::-;;;:::i;20019:86::-;20090:7;;;;20019:86;;10354:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10455:18:0;10428:7;10455:18;;;;;;;;;;;;10354:127;31940:67;;;:::i;27169:139::-;;;;;;:::i;:::-;;:::i;9282:104::-;;;:::i;25147:49::-;;25192:4;25147:49;;13500:413;;;;;;:::i;:::-;;:::i;10694:175::-;;;;;;:::i;:::-;;:::i;29061:149::-;;;;;;:::i;:::-;;:::i;32094:111::-;;;;;;:::i;:::-;;:::i;10932:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11048:18:0;;;11021:7;11048:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10932:151;26873:204;26958:4;-1:-1:-1;;;;;;26982:47:0;;-1:-1:-1;;;26982:47:0;;:87;;-1:-1:-1;;;;;;;;;;22798:40:0;;;27033:36;26975:94;26873:204;-1:-1:-1;;26873:204:0:o;9063:100::-;9117:13;9150:5;9143:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9063:100;:::o;11230:169::-;11313:4;11330:39;1437:10;11353:7;11362:6;11330:8;:39::i;:::-;-1:-1:-1;11387:4:0;11230:169;;;;:::o;11881:492::-;12021:4;12038:36;12048:6;12056:9;12067:6;12038:9;:36::i;:::-;-1:-1:-1;;;;;12114:19:0;;12087:24;12114:19;;;:11;:19;;;;;;;;1437:10;12114:33;;;;;;;;12166:26;;;;12158:79;;;;-1:-1:-1;;;12158:79:0;;7150:2:1;12158:79:0;;;7132:21:1;7189:2;7169:18;;;7162:30;7228:34;7208:18;;;7201:62;-1:-1:-1;;;7279:18:1;;;7272:38;7327:19;;12158:79:0;;;;;;;;;12273:57;12282:6;1437:10;12323:6;12304:16;:25;12273:8;:57::i;:::-;-1:-1:-1;12361:4:0;;11881:492;-1:-1:-1;;;;11881:492:0:o;28669:147::-;28350:7;28377:12;;;:6;:12;;;;;:22;;;26751:30;26762:4;1437:10;26751;:30::i;:::-;28783:25:::1;28794:4;28800:7;28783:10;:25::i;:::-;28669:147:::0;;;:::o;29717:218::-;-1:-1:-1;;;;;29813:23:0;;1437:10;29813:23;29805:83;;;;-1:-1:-1;;;29805:83:0;;9183:2:1;29805:83:0;;;9165:21:1;9222:2;9202:18;;;9195:30;9261:34;9241:18;;;9234:62;-1:-1:-1;;;9312:18:1;;;9305:45;9367:19;;29805:83:0;9155:237:1;29805:83:0;29901:26;29913:4;29919:7;29901:11;:26::i;:::-;29717:218;;:::o;12782:215::-;1437:10;12870:4;12919:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12919:34:0;;;;;;;;;;12870:4;;12887:80;;12910:7;;12919:47;;12956:10;;12919:47;:::i;:::-;12887:8;:80::i;32015:71::-;31820:41;25192:4;1437:10;27169:139;:::i;31820:41::-;31812:77;;;;-1:-1:-1;;;31812:77:0;;;;;;;:::i;:::-;32062:16:::1;:14;:16::i;:::-;32015:71::o:0;31940:67::-;31820:41;25192:4;1437:10;27169:139;:::i;31820:41::-;31812:77;;;;-1:-1:-1;;;31812:77:0;;;;;;;:::i;:::-;31985:14:::1;:12;:14::i;27169:139::-:0;27247:4;27271:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27271:29:0;;;;;;;;;;;;;;;27169:139::o;9282:104::-;9338:13;9371:7;9364:14;;;;;:::i;13500:413::-;1437:10;13593:4;13637:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13637:34:0;;;;;;;;;;13690:35;;;;13682:85;;;;-1:-1:-1;;;13682:85:0;;8777:2:1;13682:85:0;;;8759:21:1;8816:2;8796:18;;;8789:30;8855:34;8835:18;;;8828:62;-1:-1:-1;;;8906:18:1;;;8899:35;8951:19;;13682:85:0;8749:227:1;13682:85:0;13803:67;1437:10;13826:7;13854:15;13835:16;:34;13803:8;:67::i;:::-;-1:-1:-1;13901:4:0;;13500:413;-1:-1:-1;;;13500:413:0:o;10694:175::-;10780:4;10797:42;1437:10;10821:9;10832:6;10797:9;:42::i;29061:149::-;28350:7;28377:12;;;:6;:12;;;;;:22;;;26751:30;26762:4;1437:10;26751;:30::i;:::-;29176:26:::1;29188:4;29194:7;29176:11;:26::i;32094:111::-:0;31820:41;25192:4;1437:10;27169:139;:::i;31820:41::-;31812:77;;;;-1:-1:-1;;;31812:77:0;;;;;;;:::i;:::-;32169:12:::1;:28:::0;;-1:-1:-1;;;;;;32169:28:0::1;-1:-1:-1::0;;;;;32169:28:0;;;::::1;::::0;;;::::1;::::0;;32094:111::o;17184:380::-;-1:-1:-1;;;;;17320:19:0;;17312:68;;;;-1:-1:-1;;;17312:68:0;;7965:2:1;17312:68:0;;;7947:21:1;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;-1:-1:-1;;;8094:18:1;;;8087:34;8138:19;;17312:68:0;7937:226:1;17312:68:0;-1:-1:-1;;;;;17399:21:0;;17391:68;;;;-1:-1:-1;;;17391:68:0;;5643:2:1;17391:68:0;;;5625:21:1;5682:2;5662:18;;;5655:30;5721:34;5701:18;;;5694:62;-1:-1:-1;;;5772:18:1;;;5765:32;5814:19;;17391:68:0;5615:224:1;17391:68:0;-1:-1:-1;;;;;17472:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17524:32;;3903:25:1;;;17524:32:0;;3876:18:1;17524:32:0;;;;;;;17184:380;;;:::o;32239:337::-;32341:12;;-1:-1:-1;;;;;32341:12:0;:26;32338:178;;32406:12;;32392:69;;-1:-1:-1;;;;;;32392:69:0;;-1:-1:-1;;;;;3486:15:1;;;32392:69:0;;;3468:34:1;3538:15;;;3518:18;;;3511:43;32406:12:0;;;;32392:50;;3403:18:1;;32392:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32391:70;32383:121;;;;-1:-1:-1;;;32383:121:0;;8370:2:1;32383:121:0;;;8352:21:1;8409:2;8389:18;;;8382:30;8448:34;8428:18;;;8421:62;-1:-1:-1;;;8499:18:1;;;8492:36;8545:19;;32383:121:0;8342:228:1;32383:121:0;32526:42;32542:6;32550:9;32561:6;32526:15;:42::i;27598:497::-;27679:22;27687:4;27693:7;27679;:22::i;:::-;27674:414;;27867:41;27895:7;-1:-1:-1;;;;;27867:41:0;27905:2;27867:19;:41::i;:::-;27981:38;28009:4;28016:2;27981:19;:38::i;:::-;27772:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;27772:270:0;;;;;;;;;;-1:-1:-1;;;27718:358:0;;;;;;;:::i;31021:229::-;31096:22;31104:4;31110:7;31096;:22::i;:::-;31091:152;;31135:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31135:29:0;;;;;;;;;:36;;-1:-1:-1;;31135:36:0;31167:4;31135:36;;;31218:12;1437:10;;1357:98;31218:12;-1:-1:-1;;;;;31191:40:0;31209:7;-1:-1:-1;;;;;31191:40:0;31203:4;31191:40;;;;;;;;;;31021:229;;:::o;31258:230::-;31333:22;31341:4;31347:7;31333;:22::i;:::-;31329:152;;;31404:5;31372:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31372:29:0;;;;;;;;;;:37;;-1:-1:-1;;31372:37:0;;;31429:40;1437:10;;31372:12;;31429:40;;31404:5;31429:40;31258:230;;:::o;21078:120::-;20090:7;;;;20614:41;;;;-1:-1:-1;;;20614:41:0;;5294:2:1;20614:41:0;;;5276:21:1;5333:2;5313:18;;;5306:30;-1:-1:-1;;;5352:18:1;;;5345:50;5412:18;;20614:41:0;5266:170:1;20614:41:0;21137:7:::1;:15:::0;;-1:-1:-1;;21137:15:0::1;::::0;;21168:22:::1;1437:10:::0;21177:12:::1;21168:22;::::0;-1:-1:-1;;;;;3212:32:1;;;3194:51;;3182:2;3167:18;21168:22:0::1;;;;;;;21078:120::o:0;20819:118::-;20090:7;;;;20344:9;20336:38;;;;-1:-1:-1;;;20336:38:0;;6805:2:1;20336:38:0;;;6787:21:1;6844:2;6824:18;;;6817:30;-1:-1:-1;;;6863:18:1;;;6856:46;6919:18;;20336:38:0;6777:166:1;20336:38:0;20879:7:::1;:14:::0;;-1:-1:-1;;20879:14:0::1;20889:4;20879:14;::::0;;20909:20:::1;20916:12;1437:10:::0;;1357:98;14403:733;-1:-1:-1;;;;;14543:20:0;;14535:70;;;;-1:-1:-1;;;14535:70:0;;7559:2:1;14535:70:0;;;7541:21:1;7598:2;7578:18;;;7571:30;7637:34;7617:18;;;7610:62;-1:-1:-1;;;7688:18:1;;;7681:35;7733:19;;14535:70:0;7531:227:1;14535:70:0;-1:-1:-1;;;;;14624:23:0;;14616:71;;;;-1:-1:-1;;;14616:71:0;;4890:2:1;14616:71:0;;;4872:21:1;4929:2;4909:18;;;4902:30;4968:34;4948:18;;;4941:62;-1:-1:-1;;;5019:18:1;;;5012:33;5062:19;;14616:71:0;4862:225:1;14616:71:0;14700:47;14721:6;14729:9;14740:6;14700:20;:47::i;:::-;-1:-1:-1;;;;;14784:17:0;;14760:21;14784:17;;;;;;;;;;;14820:23;;;;14812:74;;;;-1:-1:-1;;;14812:74:0;;6398:2:1;14812:74:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:1;;;6520:36;6573:19;;14812:74:0;6370:228:1;14812:74:0;-1:-1:-1;;;;;14922:17:0;;;:9;:17;;;;;;;;;;;14942:22;;;14922:42;;14986:20;;;;;;;;:30;;14958:6;;14922:9;14986:30;;14958:6;;14986:30;:::i;:::-;;;;;;;;15051:9;-1:-1:-1;;;;;15034:35:0;15043:6;-1:-1:-1;;;;;15034:35:0;;15062:6;15034:35;;;;3903:25:1;;3891:2;3876:18;;3858:76;15034:35:0;;;;;;;;15082:46;14524:612;14403:733;;;:::o;3104:451::-;3179:13;3205:19;3237:10;3241:6;3237:1;:10;:::i;:::-;:14;;3250:1;3237:14;:::i;:::-;3227:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3227:25:0;;3205:47;;-1:-1:-1;;;3263:6:0;3270:1;3263:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3263:15:0;;;;;;;;;-1:-1:-1;;;3289:6:0;3296:1;3289:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;3289:15:0;;;;;;;;-1:-1:-1;3320:9:0;3332:10;3336:6;3332:1;:10;:::i;:::-;:14;;3345:1;3332:14;:::i;:::-;3320:26;;3315:135;3352:1;3348;:5;3315:135;;;-1:-1:-1;;;3400:5:0;3408:3;3400:11;3387:25;;;;;;;:::i;:::-;;;;3375:6;3382:1;3375:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;3375:37:0;;;;;;;;-1:-1:-1;3437:1:0;3427:11;;;;;3355:3;;;:::i;:::-;;;3315:135;;;-1:-1:-1;3468:10:0;;3460:55;;;;-1:-1:-1;;;3460:55:0;;4529:2:1;3460:55:0;;;4511:21:1;;;4548:18;;;4541:30;4607:34;4587:18;;;4580:62;4659:18;;3460:55:0;4501:182:1;3460:55:0;3540:6;3104:451;-1:-1:-1;;;3104:451:0:o;21688:272::-;20090:7;;;;21896:9;21888:64;;;;-1:-1:-1;;;21888:64:0;;9599:2:1;21888:64:0;;;9581:21:1;9638:2;9618:18;;;9611:30;9677:34;9657:18;;;9650:62;-1:-1:-1;;;9728:18:1;;;9721:40;9778:19;;21888:64:0;9571:232:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:2;;;1376:1;1373;1366:12;1328:2;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:2;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:2;;;1650:1;1647;1640:12;1602:2;-1:-1:-1;1673:23:1;;1592:110;-1:-1:-1;1592:110:1:o;1707:254::-;1775:6;1783;1836:2;1824:9;1815:7;1811:23;1807:32;1804:2;;;1852:1;1849;1842:12;1804:2;1888:9;1875:23;1865:33;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;1966:286::-;2024:6;2077:2;2065:9;2056:7;2052:23;2048:32;2045:2;;;2093:1;2090;2083:12;2045:2;2119:23;;-1:-1:-1;;;;;;2171:32:1;;2161:43;;2151:2;;2218:1;2215;2208:12;2257:786;2668:25;2663:3;2656:38;2638:3;2723:6;2717:13;2739:62;2794:6;2789:2;2784:3;2780:12;2773:4;2765:6;2761:17;2739:62;:::i;:::-;-1:-1:-1;;;2860:2:1;2820:16;;;2852:11;;;2845:40;2910:13;;2932:63;2910:13;2981:2;2973:11;;2966:4;2954:17;;2932:63;:::i;:::-;3015:17;3034:2;3011:26;;2646:397;-1:-1:-1;;;;2646:397:1:o;3939:383::-;4088:2;4077:9;4070:21;4051:4;4120:6;4114:13;4163:6;4158:2;4147:9;4143:18;4136:34;4179:66;4238:6;4233:2;4222:9;4218:18;4213:2;4205:6;4201:15;4179:66;:::i;:::-;4306:2;4285:15;-1:-1:-1;;4281:29:1;4266:45;;;;4313:2;4262:54;;4060:262;-1:-1:-1;;4060:262:1:o;5844:347::-;6046:2;6028:21;;;6085:2;6065:18;;;6058:30;6124:25;6119:2;6104:18;;6097:53;6182:2;6167:18;;6018:173::o;10179:128::-;10219:3;10250:1;10246:6;10243:1;10240:13;10237:2;;;10256:18;;:::i;:::-;-1:-1:-1;10292:9:1;;10227:80::o;10312:168::-;10352:7;10418:1;10414;10410:6;10406:14;10403:1;10400:21;10395:1;10388:9;10381:17;10377:45;10374:2;;;10425:18;;:::i;:::-;-1:-1:-1;10465:9:1;;10364:116::o;10485:258::-;10557:1;10567:113;10581:6;10578:1;10575:13;10567:113;;;10657:11;;;10651:18;10638:11;;;10631:39;10603:2;10596:10;10567:113;;;10698:6;10695:1;10692:13;10689:2;;;-1:-1:-1;;10733:1:1;10715:16;;10708:27;10538:205::o;10748:136::-;10787:3;10815:5;10805:2;;10824:18;;:::i;:::-;-1:-1:-1;;;10860:18:1;;10795:89::o;10889:380::-;10968:1;10964:12;;;;11011;;;11032:2;;11086:4;11078:6;11074:17;11064:27;;11032:2;11139;11131:6;11128:14;11108:18;11105:38;11102:2;;;11185:10;11180:3;11176:20;11173:1;11166:31;11220:4;11217:1;11210:15;11248:4;11245:1;11238:15;11102:2;;10944:325;;;:::o;11274:127::-;11335:10;11330:3;11326:20;11323:1;11316:31;11366:4;11363:1;11356:15;11390:4;11387:1;11380:15;11406:127;11467:10;11462:3;11458:20;11455:1;11448:31;11498:4;11495:1;11488:15;11522:4;11519:1;11512:15;11538:127;11599:10;11594:3;11590:20;11587:1;11580:31;11630:4;11627:1;11620:15;11654:4;11651:1;11644:15

Swarm Source

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