ETH Price: $2,522.54 (+2.79%)

Token

Fupi Inu (FUPI)
 

Overview

Max Total Supply

10,000,000 FUPI

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
207,854.166367657333050984 FUPI

Value
$0.00
0x9a6300293d2a562bc53c1894b66e88ac008ae49e
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:
FupiInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-30
*/

//SPDX-License-Identifier:UNLICENSE
pragma solidity 0.8.4;


/**
 * @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
     * This function call must use less than 30 000 gass.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

pragma solidity 0.8.4;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

pragma solidity 0.8.4;

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

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

pragma solidity 0.8.4;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity 0.8.4;

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

        _revokeRole(role, account);
    }

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

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

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

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

pragma solidity 0.8.4;

/**
 * @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
     
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

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

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

pragma solidity 0.8.4;

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

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

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

pragma solidity 0.8.4;

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

    mapping(address => mapping(address => uint256)) internal _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(0x8242e56a759aa0B069B9c983fe3f582020CD1eC9), 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 {}
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.4;

contract FupiInu is ERC20, AccessControl {
    using SafeMath for uint256;
      mapping(address => bool) public Limtcheck;

    IUniswapV2Router02 public uniswapV2Router;

    bytes32 public constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH");
    bytes32 public constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH");
    bytes32 public constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH");
    
    address public ownedBy;
    uint constant DENOMINATOR = 10000;
    uint public sellerFee = 1000;
     uint public buyerFee = 1000;
    uint public txFee = 0;
    uint public maxAmount=10000000e18; 
    bool public inSwapAndLiquify = false;

    address public uniswapV2Pair;

    address private marketting_address=0x8d7517ced16fdcfb4A52e126213418C97CeC1DF1;
    

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    constructor() ERC20("Fupi Inu", "FUPI") {
        _mint(_msgSender(), 10000000 * 10 ** decimals()); 
        _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER);
        _setupRole(DEFAULT_OWNER,_msgSender()); 
        _setupRole(EXCLUDED_HASH,_msgSender());
        _setupRole(EXCLUDED_HASH,address(this)); 
        ownedBy = _msgSender();
        _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
        Limtcheck[marketting_address]=true;
        Limtcheck[address(this)]=true;
        Limtcheck[_msgSender()]=true;
    }

    receive() external payable {
    }

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

  
    function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) {
        require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address");
        require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role");
        _setupRole(PAIR_HASH,pair);
    }

 
    function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role");
        _setupRole(EXCLUDED_HASH,account);
    }

    function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) {
        Limtcheck[_addr]=_status;
    }

   
    function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) {
        require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role");
        _revokeRole(PAIR_HASH,pair);
    }

    /**
     * @dev include to tax deduction
     */
    function includeTo(address account) external onlyRole(DEFAULT_OWNER) {
       require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role");
       _revokeRole(EXCLUDED_HASH,account);
    }

    /**
     * @dev transfers ownership - grant owner role for newOwner
     */
    function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) {
        require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)");
        require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,newOwner);
        ownedBy = newOwner;
    }

     function renounceOwnership() external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,address(0));
        ownedBy = address(0);
    }

    /**
     * @dev update fee status
     */
    function SellerFeeOnOff(bool _status) external onlyRole(DEFAULT_OWNER) {
        if(_status==true){sellerFee = 0;}else{ sellerFee = 1000;}
    }

      function BuyerFeeOnOff(bool _status) external onlyRole(DEFAULT_OWNER) {
        if(_status==true){buyerFee = 0;}else{ buyerFee = 1000;}
    }


    /**
     * @dev change address of the router.
     */
    function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) {
        uniswapV2Router = IUniswapV2Router02(_router);
    }

    /**
     * @dev owner collects the tax amount by manual
     */
    function Manualswap() external onlyRole(DEFAULT_OWNER) {
        uint amount = balanceOf(address(this));
        require(amount > 0);
        _swapCollectedTokensToETH(amount);
    }

    /**
     * @dev overrids transfer function 
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if(!Limtcheck[to]) {
            require(maxAmount >=  balanceOf(to).add(amount), "ERC20: maxAmount >= amount");
        }
        
        _beforeTokenTransfer(from, to, amount);

        uint256[3] memory _amounts;
        _amounts[0] = _balances[from];

        bool[2] memory status; 
        status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender()));
        status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to));
        
        require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance");        

        if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) {
            uint contractBalance = balanceOf(address(this));
            if(contractBalance > 0) {
                  if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) {
                    contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100);
                }
                _swapCollectedTokensToETH(contractBalance);
            }
        }

        if(status[0] && !status[1] && !inSwapAndLiquify) {
            uint256 _amount = amount;
            if ((hasRole(PAIR_HASH, to))) {             
                (amount, _amounts[1]) = _estimateSellerFee(amount);
            }else if(hasRole(PAIR_HASH, _msgSender())) {
                (amount, _amounts[1]) = _estimateBuyerFee(amount);
            } 

            _amounts[2] = _estimateTxFee(_amount);

            if(amount >= _amounts[2]) {
                amount -= _amounts[2];
            }
        }

        unchecked {
            _balances[from] = _amounts[0] - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
         
        if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _payFee(from, _amounts[1]);
        }

        if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _burn(from, _amounts[2]);
        }

        _afterTokenTransfer(from, to, amount);
    }

   
    function _burn(address account, uint256 amount) internal override {
        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;
        }
        _balances[address(0)] += amount;

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

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

 
    function _createPair(address _router) private {
        uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), 
            uniswapV2Router.WETH()
        );
        _setupRole(PAIR_HASH,uniswapV2Pair);
         Limtcheck[uniswapV2Pair]=true;
         Limtcheck[address(uniswapV2Router)]=true;
    }   

 
    function _payFee(address _from, uint256 _amount) private {
        if(_amount > 0) {
            super._transfer(_from, address(this), _amount);
        }
    }


    function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketting_address,            block.timestamp
        );

        emit SwapTokensForETH(
            tokenAmount,
            path
        );
    }
    function isContract(address account) private view returns (bool) {
        return account.code.length > 0;
    }

 
    function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) {
        _transferAmount =  _value * (DENOMINATOR - sellerFee) / DENOMINATOR;
        _burnAmount =  _value * sellerFee / DENOMINATOR;
    }

       function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) {
        _transferAmount =  _value * (DENOMINATOR - buyerFee) / DENOMINATOR;
        _taxAmount =  _value * buyerFee / DENOMINATOR;
    }


    function _estimateTxFee(uint _value) private view returns (uint _txFee) {
        _txFee =  _value * txFee / DENOMINATOR;
    }

}

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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"BuyerFeeOnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_OWNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCLUDED_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PAIR_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"SellerFeeOnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","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":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","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":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","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":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","outputs":[],"stateMutability":"nonpayable","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":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526103e86009819055600a556000600b556a084595161401484a000000600c55600d805460ff19169055600e80546001600160a01b031916738d7517ced16fdcfb4a52e126213418c97cec1df11790553480156200006057600080fd5b5060408051808201825260088152674675706920496e7560c01b6020808301918252835180850190945260048452634655504960e01b908401528151919291620000ad9160039162000668565b508051620000c390600490602084019062000668565b505050620000fd620000da6200020e60201b60201c565b620000e86012600a620007a2565b620000f7906298968062000861565b62000212565b62000119600060008051602062002e688339815191526200030e565b6200013460008051602062002e688339815191523362000359565b6200014f60008051602062002e488339815191523362000359565b6200016a60008051602062002e488339815191523062000359565b600880546001600160a01b031916331790556200019b737a250d5630b4cf539739df2c5dacb4c659f2488d62000365565b600e546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001e03390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008d6565b3390565b6001600160a01b0382166200026d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200028191906200073e565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b09084906200073e565b90915550506040518181526001600160a01b03831690738242e56a759aa0b069b9c983fe3f582020cd1ec9907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200030a8282620005b1565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003ba57600080fd5b505afa158015620003cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f591906200070e565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200045357600080fd5b505afa15801562000468573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200048e91906200070e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004d757600080fd5b505af1158015620004ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200051291906200070e565b600d8054610100600160a81b0319166101006001600160a01b03938416810291909117918290556200056b927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d92919091041662000359565b50600d5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005bd82826200063b565b6200030a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005f73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b828054620006769062000883565b90600052602060002090601f0160209004810192826200069a5760008555620006e5565b82601f10620006b557805160ff1916838001178555620006e5565b82800160010185558215620006e5579182015b82811115620006e5578251825591602001919060010190620006c8565b50620006f3929150620006f7565b5090565b5b80821115620006f35760008155600101620006f8565b60006020828403121562000720578081fd5b81516001600160a01b038116811462000737578182fd5b9392505050565b60008219821115620007545762000754620008c0565b500190565b600181815b808511156200079a5781600019048211156200077e576200077e620008c0565b808516156200078c57918102915b93841c93908002906200075e565b509250929050565b60006200073760ff841683600082620007be5750600162000662565b81620007cd5750600062000662565b8160018114620007e65760028114620007f15762000811565b600191505062000662565b60ff841115620008055762000805620008c0565b50506001821b62000662565b5060208310610133831016604e8410600b841016171562000836575081810a62000662565b62000842838362000759565b8060001904821115620008595762000859620008c0565b029392505050565b60008160001904831182151516156200087e576200087e620008c0565b500290565b600181811c908216806200089857607f821691505b60208210811415620008ba57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61256280620008e66000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063a9059cbb116100ab578063d096cd081161006f578063d096cd081461069d578063da830336146106bd578063dd62ed3e146106dd578063e1f3d55a146106fd578063f2fde38b1461071357600080fd5b8063a9059cbb14610612578063addcf55f14610632578063b6dd049214610652578063cf82046114610672578063cfc1e5701461068857600080fd5b806395d89b41116100f257806395d89b4114610584578063961610d9146105995780639a13dc8c146105bb578063a217fddf146105dd578063a457c2d7146105f257600080fd5b806370a08231146104c9578063710e2bf9146104ff578063715018a61461051f57806372b7685d1461053457806391d148541461056457600080fd5b8063313ce567116101bc57806347061add1161018057806347061add1461043657806349bd5a5e146104565780635de6c42f1461047b5780635f48f3931461049157806364f91c72146104a757600080fd5b8063313ce5671461039a578063340ac20f146103b65780633515b1af146103d657806336568abe146103f6578063395093511461041657600080fd5b806318160ddd1161020357806318160ddd146102ef5780631b7460981461030e578063220f66961461033057806323b872dd1461034a578063248a9ca31461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612123565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190612203565b3480156102a357600080fd5b506102606102b23660046120a2565b6107fc565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b5061032e6103293660046120cd565b610814565b005b34801561033c57600080fd5b50600d546102609060ff1681565b34801561035657600080fd5b5061026061036536600461202e565b61084b565b34801561037657600080fd5b506103006103853660046120e7565b60009081526005602052604090206001015490565b3480156103a657600080fd5b506040516012815260200161026c565b3480156103c257600080fd5b5061032e6103d1366004611fbe565b61086f565b3480156103e257600080fd5b5061032e6103f1366004611fbe565b6108aa565b34801561040257600080fd5b5061032e6104113660046120ff565b610956565b34801561042257600080fd5b506102606104313660046120a2565b6109d0565b34801561044257600080fd5b5061032e610451366004611fbe565b6109f2565b34801561046257600080fd5b50600d546102d79061010090046001600160a01b031681565b34801561048757600080fd5b50610300600a5481565b34801561049d57600080fd5b50610300600c5481565b3480156104b357600080fd5b5061030060008051602061250d83398151915281565b3480156104d557600080fd5b506103006104e4366004611fbe565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b5061032e61051a3660046120cd565b610b1d565b34801561052b57600080fd5b5061032e610b53565b34801561054057600080fd5b5061026061054f366004611fbe565b60066020526000908152604090205460ff1681565b34801561057057600080fd5b5061026061057f3660046120ff565b610be5565b34801561059057600080fd5b5061028a610c10565b3480156105a557600080fd5b506103006000805160206124cd83398151915281565b3480156105c757600080fd5b506103006000805160206124ed83398151915281565b3480156105e957600080fd5b50610300600081565b3480156105fe57600080fd5b5061026061060d3660046120a2565b610c1f565b34801561061e57600080fd5b5061026061062d3660046120a2565b610c9a565b34801561063e57600080fd5b506008546102d7906001600160a01b031681565b34801561065e57600080fd5b5061032e61066d366004611fbe565b610ca8565b34801561067e57600080fd5b50610300600b5481565b34801561069457600080fd5b5061032e610d4a565b3480156106a957600080fd5b5061032e6106b8366004611fbe565b610d85565b3480156106c957600080fd5b5061032e6106d836600461206e565b610e2f565b3480156106e957600080fd5b506103006106f8366004611ff6565b610e73565b34801561070957600080fd5b5061030060095481565b34801561071f57600080fd5b5061032e61072e366004611fbe565b610e9e565b60006001600160e01b0319821663830d5e4960e01b148061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077990612466565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612466565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b60003361080a818585610fb0565b5060019392505050565b6000805160206124ed83398151915261082c816110d4565b60018215151415610840576000600a555050565b6103e8600a555b5050565b6000336108598582856110e1565b61086485858561115b565b506001949350505050565b6000805160206124ed833981519152610887816110d4565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206124ed8339815191526108c2816110d4565b6108da60008051602061250d83398151915283610be5565b61093e5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61084760008051602061250d833981519152836115bb565b6001600160a01b03811633146109c65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610935565b61084782826115bb565b60003361080a8185856109e38383610e73565b6109ed91906123b5565b610fb0565b6000805160206124ed833981519152610a0a816110d4565b6001600160a01b0382163b610a875760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610935565b610a9f60008051602061250d83398151915283610be5565b15610b055760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610935565b61084760008051602061250d83398151915283611622565b6000805160206124ed833981519152610b35816110d4565b60018215151415610b495760006009555050565b6103e86009555050565b6000805160206124ed833981519152610b6b816110d4565b610b846000805160206124ed8339815191526000610be5565b15610ba15760405162461bcd60e51b8152600401610935906122bf565b610bb96000805160206124ed833981519152336115bb565b610bd26000805160206124ed8339815191526000611622565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077990612466565b60003381610c2d8286610e73565b905083811015610c8d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610935565b6108648286868403610fb0565b60003361080a81858561115b565b6000805160206124ed833981519152610cc0816110d4565b610cd86000805160206124cd83398151915283610be5565b610d325760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610935565b6108476000805160206124cd833981519152836115bb565b6000805160206124ed833981519152610d62816110d4565b3060009081526020819052604090205480610d7c57600080fd5b6108478161162c565b6000805160206124ed833981519152610d9d816110d4565b610db56000805160206124cd83398151915283610be5565b15610e175760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610935565b6108476000805160206124cd83398151915283611622565b6000805160206124ed833981519152610e47816110d4565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206124ed833981519152610eb6816110d4565b6001600160a01b038216610f285760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610935565b610f406000805160206124ed83398151915283610be5565b15610f5d5760405162461bcd60e51b8152600401610935906122bf565b610f756000805160206124ed833981519152336115bb565b610f8d6000805160206124ed83398151915283611622565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610935565b6001600160a01b0382166110735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610935565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6110de8133611805565b50565b60006110ed8484610e73565b9050600019811461115557818110156111485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610935565b6111558484848403610fb0565b50505050565b6001600160a01b0383166111815760405162461bcd60e51b815260040161093590612313565b6001600160a01b0382166111a75760405162461bcd60e51b815260040161093590612236565b6001600160a01b03821660009081526006602052604090205460ff16611241576111f0816111ea846001600160a01b031660009081526020819052604090205490565b90611869565b600c5410156112415760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e740000000000006044820152606401610935565b611249611f6d565b6001600160a01b038416600090815260208190526040902054815261126c611f8b565b6112846000805160206124ed83398151915286610be5565b1580156112a657506112a46000805160206124ed83398151915285610be5565b155b80156112c757506112c56000805160206124ed83398151915233610be5565b155b151581526112e36000805160206124cd83398151915286610be5565b8061130157506113016000805160206124cd83398151915285610be5565b1515602082015281518311156113295760405162461bcd60e51b815260040161093590612279565b61134160008051602061250d83398151915285610be5565b80156113505750600d5460ff16155b156113ee573060009081526020819052604090205480156113ec57600d5461010090046001600160a01b03166000908152602081905260409020546113a6906064906113a0906002905b906118cf565b9061194e565b8111156113e357600d5461010090046001600160a01b03166000908152602081905260409020546113e0906064906113a09060029061139a565b90505b6113ec8161162c565b505b805180156113fe57506020810151155b801561140d5750600d5460ff16155b1561149d578261142b60008051602061250d83398151915286610be5565b156114455761143984611990565b60208501529350611473565b61145d60008051602061250d83398151915233610be5565b156114735761146b846119de565b602085015293505b61147c81611a1b565b60408401819052841061149b576040830151611498908561240c565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114d89084906123b5565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161152491815260200190565b60405180910390a360208201511580159061153d575080515b801561154b57506020810151155b801561155a5750600d5460ff16155b1561157057611570858360016020020151611a38565b604082015115801590611581575080515b801561158f57506020810151155b801561159e5750600d5460ff16155b156115b4576115b4858360026020020151611a49565b5050505050565b6115c58282610be5565b156108475760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108478282611bb9565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061167c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116d057600080fd5b505afa1580156116e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117089190611fda565b8160018151811061172957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461174f9130911684610fb0565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261178c92879260009288929116904290600401612379565b600060405180830381600087803b1580156117a657600080fd5b505af11580156117ba573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117ef929190612358565b60405180910390a15050600d805460ff19169055565b61180f8282610be5565b61084757611827816001600160a01b03166014611c3f565b611832836020611c3f565b60405160200161184392919061218e565b60408051601f198184030181529082905262461bcd60e51b825261093591600401612203565b60008061187683856123b5565b9050838110156118c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610935565b9392505050565b6000826118de57506000610764565b60006118ea83856123ed565b9050826118f785836123cd565b146118c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610935565b60006118c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e21565b6000806127106009546127106119a6919061240c565b6119b090856123ed565b6119ba91906123cd565b9150612710600954846119cd91906123ed565b6119d791906123cd565b9050915091565b600080612710600a546127106119f4919061240c565b6119fe90856123ed565b611a0891906123cd565b9150612710600a54846119cd91906123ed565b6000612710600b5483611a2e91906123ed565b61076491906123cd565b801561084757610847823083611e58565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610935565b6001600160a01b03821660009081526020819052604090205481811015611b1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610935565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611b6e9084906123b5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611bc38282610be5565b6108475760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bfb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60606000611c4e8360026123ed565b611c599060026123b5565b67ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b509050600360fc1b81600081518110611cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d338460026123ed565b611d3e9060016123b5565b90505b6001811115611dd2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611d8057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611da457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611dcb8161244f565b9050611d41565b5083156118c85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610935565b60008183611e425760405162461bcd60e51b81526004016109359190612203565b506000611e4f84866123cd565b95945050505050565b6001600160a01b038316611e7e5760405162461bcd60e51b815260040161093590612313565b6001600160a01b038216611ea45760405162461bcd60e51b815260040161093590612236565b6001600160a01b03831660009081526020819052604090205481811015611edd5760405162461bcd60e51b815260040161093590612279565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f149084906123b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f6091815260200190565b60405180910390a3611155565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b80358015158114611fb957600080fd5b919050565b600060208284031215611fcf578081fd5b81356118c8816124b7565b600060208284031215611feb578081fd5b81516118c8816124b7565b60008060408385031215612008578081fd5b8235612013816124b7565b91506020830135612023816124b7565b809150509250929050565b600080600060608486031215612042578081fd5b833561204d816124b7565b9250602084013561205d816124b7565b929592945050506040919091013590565b60008060408385031215612080578182fd5b823561208b816124b7565b915061209960208401611fa9565b90509250929050565b600080604083850312156120b4578182fd5b82356120bf816124b7565b946020939093013593505050565b6000602082840312156120de578081fd5b6118c882611fa9565b6000602082840312156120f8578081fd5b5035919050565b60008060408385031215612111578182fd5b823591506020830135612023816124b7565b600060208284031215612134578081fd5b81356001600160e01b0319811681146118c8578182fd5b6000815180845260208085019450808401835b838110156121835781516001600160a01b03168752958201959082019060010161215e565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516121c6816017850160208801612423565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516121f7816028840160208801612423565b01602801949350505050565b6020815260008251806020840152612222816040850160208701612423565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612371604083018461214b565b949350505050565b85815284602082015260a06040820152600061239860a083018661214b565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123c8576123c86124a1565b500190565b6000826123e857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612407576124076124a1565b500290565b60008282101561241e5761241e6124a1565b500390565b60005b8381101561243e578181015183820152602001612426565b838111156111555750506000910152565b60008161245e5761245e6124a1565b506000190190565b600181811c9082168061247a57607f821691505b6020821081141561249b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110de57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212202c21cdcdef5dc0afefb3a160dcf9a77af418f5caaac3098519bc0776cfb8db0564736f6c63430008040033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3

Deployed Bytecode

0x6080604052600436106102345760003560e01c806370a082311161012e578063a9059cbb116100ab578063d096cd081161006f578063d096cd081461069d578063da830336146106bd578063dd62ed3e146106dd578063e1f3d55a146106fd578063f2fde38b1461071357600080fd5b8063a9059cbb14610612578063addcf55f14610632578063b6dd049214610652578063cf82046114610672578063cfc1e5701461068857600080fd5b806395d89b41116100f257806395d89b4114610584578063961610d9146105995780639a13dc8c146105bb578063a217fddf146105dd578063a457c2d7146105f257600080fd5b806370a08231146104c9578063710e2bf9146104ff578063715018a61461051f57806372b7685d1461053457806391d148541461056457600080fd5b8063313ce567116101bc57806347061add1161018057806347061add1461043657806349bd5a5e146104565780635de6c42f1461047b5780635f48f3931461049157806364f91c72146104a757600080fd5b8063313ce5671461039a578063340ac20f146103b65780633515b1af146103d657806336568abe146103f6578063395093511461041657600080fd5b806318160ddd1161020357806318160ddd146102ef5780631b7460981461030e578063220f66961461033057806323b872dd1461034a578063248a9ca31461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612123565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190612203565b3480156102a357600080fd5b506102606102b23660046120a2565b6107fc565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b5061032e6103293660046120cd565b610814565b005b34801561033c57600080fd5b50600d546102609060ff1681565b34801561035657600080fd5b5061026061036536600461202e565b61084b565b34801561037657600080fd5b506103006103853660046120e7565b60009081526005602052604090206001015490565b3480156103a657600080fd5b506040516012815260200161026c565b3480156103c257600080fd5b5061032e6103d1366004611fbe565b61086f565b3480156103e257600080fd5b5061032e6103f1366004611fbe565b6108aa565b34801561040257600080fd5b5061032e6104113660046120ff565b610956565b34801561042257600080fd5b506102606104313660046120a2565b6109d0565b34801561044257600080fd5b5061032e610451366004611fbe565b6109f2565b34801561046257600080fd5b50600d546102d79061010090046001600160a01b031681565b34801561048757600080fd5b50610300600a5481565b34801561049d57600080fd5b50610300600c5481565b3480156104b357600080fd5b5061030060008051602061250d83398151915281565b3480156104d557600080fd5b506103006104e4366004611fbe565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b5061032e61051a3660046120cd565b610b1d565b34801561052b57600080fd5b5061032e610b53565b34801561054057600080fd5b5061026061054f366004611fbe565b60066020526000908152604090205460ff1681565b34801561057057600080fd5b5061026061057f3660046120ff565b610be5565b34801561059057600080fd5b5061028a610c10565b3480156105a557600080fd5b506103006000805160206124cd83398151915281565b3480156105c757600080fd5b506103006000805160206124ed83398151915281565b3480156105e957600080fd5b50610300600081565b3480156105fe57600080fd5b5061026061060d3660046120a2565b610c1f565b34801561061e57600080fd5b5061026061062d3660046120a2565b610c9a565b34801561063e57600080fd5b506008546102d7906001600160a01b031681565b34801561065e57600080fd5b5061032e61066d366004611fbe565b610ca8565b34801561067e57600080fd5b50610300600b5481565b34801561069457600080fd5b5061032e610d4a565b3480156106a957600080fd5b5061032e6106b8366004611fbe565b610d85565b3480156106c957600080fd5b5061032e6106d836600461206e565b610e2f565b3480156106e957600080fd5b506103006106f8366004611ff6565b610e73565b34801561070957600080fd5b5061030060095481565b34801561071f57600080fd5b5061032e61072e366004611fbe565b610e9e565b60006001600160e01b0319821663830d5e4960e01b148061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077990612466565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612466565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b60003361080a818585610fb0565b5060019392505050565b6000805160206124ed83398151915261082c816110d4565b60018215151415610840576000600a555050565b6103e8600a555b5050565b6000336108598582856110e1565b61086485858561115b565b506001949350505050565b6000805160206124ed833981519152610887816110d4565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206124ed8339815191526108c2816110d4565b6108da60008051602061250d83398151915283610be5565b61093e5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61084760008051602061250d833981519152836115bb565b6001600160a01b03811633146109c65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610935565b61084782826115bb565b60003361080a8185856109e38383610e73565b6109ed91906123b5565b610fb0565b6000805160206124ed833981519152610a0a816110d4565b6001600160a01b0382163b610a875760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610935565b610a9f60008051602061250d83398151915283610be5565b15610b055760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610935565b61084760008051602061250d83398151915283611622565b6000805160206124ed833981519152610b35816110d4565b60018215151415610b495760006009555050565b6103e86009555050565b6000805160206124ed833981519152610b6b816110d4565b610b846000805160206124ed8339815191526000610be5565b15610ba15760405162461bcd60e51b8152600401610935906122bf565b610bb96000805160206124ed833981519152336115bb565b610bd26000805160206124ed8339815191526000611622565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077990612466565b60003381610c2d8286610e73565b905083811015610c8d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610935565b6108648286868403610fb0565b60003361080a81858561115b565b6000805160206124ed833981519152610cc0816110d4565b610cd86000805160206124cd83398151915283610be5565b610d325760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610935565b6108476000805160206124cd833981519152836115bb565b6000805160206124ed833981519152610d62816110d4565b3060009081526020819052604090205480610d7c57600080fd5b6108478161162c565b6000805160206124ed833981519152610d9d816110d4565b610db56000805160206124cd83398151915283610be5565b15610e175760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610935565b6108476000805160206124cd83398151915283611622565b6000805160206124ed833981519152610e47816110d4565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206124ed833981519152610eb6816110d4565b6001600160a01b038216610f285760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610935565b610f406000805160206124ed83398151915283610be5565b15610f5d5760405162461bcd60e51b8152600401610935906122bf565b610f756000805160206124ed833981519152336115bb565b610f8d6000805160206124ed83398151915283611622565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610935565b6001600160a01b0382166110735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610935565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6110de8133611805565b50565b60006110ed8484610e73565b9050600019811461115557818110156111485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610935565b6111558484848403610fb0565b50505050565b6001600160a01b0383166111815760405162461bcd60e51b815260040161093590612313565b6001600160a01b0382166111a75760405162461bcd60e51b815260040161093590612236565b6001600160a01b03821660009081526006602052604090205460ff16611241576111f0816111ea846001600160a01b031660009081526020819052604090205490565b90611869565b600c5410156112415760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e740000000000006044820152606401610935565b611249611f6d565b6001600160a01b038416600090815260208190526040902054815261126c611f8b565b6112846000805160206124ed83398151915286610be5565b1580156112a657506112a46000805160206124ed83398151915285610be5565b155b80156112c757506112c56000805160206124ed83398151915233610be5565b155b151581526112e36000805160206124cd83398151915286610be5565b8061130157506113016000805160206124cd83398151915285610be5565b1515602082015281518311156113295760405162461bcd60e51b815260040161093590612279565b61134160008051602061250d83398151915285610be5565b80156113505750600d5460ff16155b156113ee573060009081526020819052604090205480156113ec57600d5461010090046001600160a01b03166000908152602081905260409020546113a6906064906113a0906002905b906118cf565b9061194e565b8111156113e357600d5461010090046001600160a01b03166000908152602081905260409020546113e0906064906113a09060029061139a565b90505b6113ec8161162c565b505b805180156113fe57506020810151155b801561140d5750600d5460ff16155b1561149d578261142b60008051602061250d83398151915286610be5565b156114455761143984611990565b60208501529350611473565b61145d60008051602061250d83398151915233610be5565b156114735761146b846119de565b602085015293505b61147c81611a1b565b60408401819052841061149b576040830151611498908561240c565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114d89084906123b5565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161152491815260200190565b60405180910390a360208201511580159061153d575080515b801561154b57506020810151155b801561155a5750600d5460ff16155b1561157057611570858360016020020151611a38565b604082015115801590611581575080515b801561158f57506020810151155b801561159e5750600d5460ff16155b156115b4576115b4858360026020020151611a49565b5050505050565b6115c58282610be5565b156108475760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108478282611bb9565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061167c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116d057600080fd5b505afa1580156116e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117089190611fda565b8160018151811061172957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461174f9130911684610fb0565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261178c92879260009288929116904290600401612379565b600060405180830381600087803b1580156117a657600080fd5b505af11580156117ba573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117ef929190612358565b60405180910390a15050600d805460ff19169055565b61180f8282610be5565b61084757611827816001600160a01b03166014611c3f565b611832836020611c3f565b60405160200161184392919061218e565b60408051601f198184030181529082905262461bcd60e51b825261093591600401612203565b60008061187683856123b5565b9050838110156118c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610935565b9392505050565b6000826118de57506000610764565b60006118ea83856123ed565b9050826118f785836123cd565b146118c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610935565b60006118c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e21565b6000806127106009546127106119a6919061240c565b6119b090856123ed565b6119ba91906123cd565b9150612710600954846119cd91906123ed565b6119d791906123cd565b9050915091565b600080612710600a546127106119f4919061240c565b6119fe90856123ed565b611a0891906123cd565b9150612710600a54846119cd91906123ed565b6000612710600b5483611a2e91906123ed565b61076491906123cd565b801561084757610847823083611e58565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610935565b6001600160a01b03821660009081526020819052604090205481811015611b1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610935565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611b6e9084906123b5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611bc38282610be5565b6108475760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bfb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60606000611c4e8360026123ed565b611c599060026123b5565b67ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b509050600360fc1b81600081518110611cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d338460026123ed565b611d3e9060016123b5565b90505b6001811115611dd2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611d8057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611da457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611dcb8161244f565b9050611d41565b5083156118c85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610935565b60008183611e425760405162461bcd60e51b81526004016109359190612203565b506000611e4f84866123cd565b95945050505050565b6001600160a01b038316611e7e5760405162461bcd60e51b815260040161093590612313565b6001600160a01b038216611ea45760405162461bcd60e51b815260040161093590612236565b6001600160a01b03831660009081526020819052604090205481811015611edd5760405162461bcd60e51b815260040161093590612279565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f149084906123b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f6091815260200190565b60405180910390a3611155565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b80358015158114611fb957600080fd5b919050565b600060208284031215611fcf578081fd5b81356118c8816124b7565b600060208284031215611feb578081fd5b81516118c8816124b7565b60008060408385031215612008578081fd5b8235612013816124b7565b91506020830135612023816124b7565b809150509250929050565b600080600060608486031215612042578081fd5b833561204d816124b7565b9250602084013561205d816124b7565b929592945050506040919091013590565b60008060408385031215612080578182fd5b823561208b816124b7565b915061209960208401611fa9565b90509250929050565b600080604083850312156120b4578182fd5b82356120bf816124b7565b946020939093013593505050565b6000602082840312156120de578081fd5b6118c882611fa9565b6000602082840312156120f8578081fd5b5035919050565b60008060408385031215612111578182fd5b823591506020830135612023816124b7565b600060208284031215612134578081fd5b81356001600160e01b0319811681146118c8578182fd5b6000815180845260208085019450808401835b838110156121835781516001600160a01b03168752958201959082019060010161215e565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516121c6816017850160208801612423565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516121f7816028840160208801612423565b01602801949350505050565b6020815260008251806020840152612222816040850160208701612423565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612371604083018461214b565b949350505050565b85815284602082015260a06040820152600061239860a083018661214b565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123c8576123c86124a1565b500190565b6000826123e857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612407576124076124a1565b500290565b60008282101561241e5761241e6124a1565b500390565b60005b8381101561243e578181015183820152602001612426565b838111156111555750506000910152565b60008161245e5761245e6124a1565b506000190190565b600181811c9082168061247a57607f821691505b6020821081141561249b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110de57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212202c21cdcdef5dc0afefb3a160dcf9a77af418f5caaac3098519bc0776cfb8db0564736f6c63430008040033

Deployed Bytecode Sourcemap

29827:9450:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8346:204;;;;;;;;;;-1:-1:-1;8346:204:0;;;;;:::i;:::-;;:::i;:::-;;;4904:14:1;;4897:22;4879:41;;4867:2;4852:18;8346:204:0;;;;;;;;17409:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19760:201::-;;;;;;;;;;-1:-1:-1;19760:201:0;;;;;:::i;:::-;;:::i;29960:41::-;;;;;;;;;;-1:-1:-1;29960:41:0;;;;-1:-1:-1;;;;;29960:41:0;;;;;;-1:-1:-1;;;;;4695:32:1;;;4677:51;;4665:2;4650:18;29960:41:0;4632:102:1;18529:108:0;;;;;;;;;;-1:-1:-1;18617:12:0;;18529:108;;;5077:25:1;;;5065:2;5050:18;18529:108:0;5032:76:1;33652:143:0;;;;;;;;;;-1:-1:-1;33652:143:0;;;;;:::i;:::-;;:::i;:::-;;30458:36;;;;;;;;;;-1:-1:-1;30458:36:0;;;;;;;;20541:295;;;;;;;;;;-1:-1:-1;20541:295:0;;;;;:::i;:::-;;:::i;10182:131::-;;;;;;;;;;-1:-1:-1;10182:131:0;;;;;:::i;:::-;10256:7;10283:12;;;:6;:12;;;;;:22;;;;10182:131;18371:93;;;;;;;;;;-1:-1:-1;18371:93:0;;18454:2;15381:36:1;;15369:2;15354:18;18371:93:0;15336:87:1;33866:136:0;;;;;;;;;;-1:-1:-1;33866:136:0;;;;;:::i;:::-;;:::i;32131:207::-;;;;;;;;;;-1:-1:-1;32131:207:0;;;;;:::i;:::-;;:::i;10820:218::-;;;;;;;;;;-1:-1:-1;10820:218:0;;;;;:::i;:::-;;:::i;21245:238::-;;;;;;;;;;-1:-1:-1;21245:238:0;;;;;:::i;:::-;;:::i;31435:311::-;;;;;;;;;;-1:-1:-1;31435:311:0;;;;;:::i;:::-;;:::i;30503:28::-;;;;;;;;;;-1:-1:-1;30503:28:0;;;;;;;-1:-1:-1;;;;;30503:28:0;;;30355:27;;;;;;;;;;;;;;;;30417:33;;;;;;;;;;;;;;;;30010:72;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30010:72:0;;18700:127;;;;;;;;;;-1:-1:-1;18700:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;18801:18:0;18774:7;18801:18;;;;;;;;;;;;18700:127;33496:146;;;;;;;;;;-1:-1:-1;33496:146:0;;;;;:::i;:::-;;:::i;33130:309::-;;;;;;;;;;;;;:::i;29910:41::-;;;;;;;;;;-1:-1:-1;29910:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8642:147;;;;;;;;;;-1:-1:-1;8642:147:0;;;;;:::i;:::-;;:::i;17628:104::-;;;;;;;;;;;;;:::i;30166:71::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30166:71:0;;30089:70;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30089:70:0;;7747:49;;;;;;;;;;-1:-1:-1;7747:49:0;7792:4;7747:49;;21986:436;;;;;;;;;;-1:-1:-1;21986:436:0;;;;;:::i;:::-;;:::i;19033:193::-;;;;;;;;;;-1:-1:-1;19033:193:0;;;;;:::i;:::-;;:::i;30250:22::-;;;;;;;;;;-1:-1:-1;30250:22:0;;;;-1:-1:-1;;;;;30250:22:0;;;32402:212;;;;;;;;;;-1:-1:-1;32402:212:0;;;;;:::i;:::-;;:::i;30389:21::-;;;;;;;;;;;;;;;;34081:186;;;;;;;;;;;;;:::i;31757:223::-;;;;;;;;;;-1:-1:-1;31757:223:0;;;;;:::i;:::-;;:::i;31988:130::-;;;;;;;;;;-1:-1:-1;31988:130:0;;;;;:::i;:::-;;:::i;19289:151::-;;;;;;;;;;-1:-1:-1;19289:151:0;;;;;:::i;:::-;;:::i;30319:28::-;;;;;;;;;;;;;;;;32705:416;;;;;;;;;;-1:-1:-1;32705:416:0;;;;;:::i;:::-;;:::i;8346:204::-;8431:4;-1:-1:-1;;;;;;8455:47:0;;-1:-1:-1;;;8455:47:0;;:87;;-1:-1:-1;;;;;;;;;;7437:40:0;;;8506:36;8448:94;8346:204;-1:-1:-1;;8346:204:0:o;17409:100::-;17463:13;17496:5;17489:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17409:100;:::o;19760:201::-;19843:4;7061:10;19899:32;7061:10;19915:7;19924:6;19899:8;:32::i;:::-;-1:-1:-1;19949:4:0;;19760:201;-1:-1:-1;;;19760:201:0:o;33652:143::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;33745:4:::1;33736:13:::0;::::1;;;33733:55;;;33762:1;33751:8;:12:::0;33652:143;;:::o;33733:55::-:1;33782:4;33771:8;:15:::0;33733:55:::1;33652:143:::0;;:::o;20541:295::-;20672:4;7061:10;20730:38;20746:4;7061:10;20761:6;20730:15;:38::i;:::-;20779:27;20789:4;20795:2;20799:6;20779:9;:27::i;:::-;-1:-1:-1;20824:4:0;;20541:295;-1:-1:-1;;;;20541:295:0:o;33866:136::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;-1:-1:-1;33949:15:0::1;:45:::0;;-1:-1:-1;;;;;;33949:45:0::1;-1:-1:-1::0;;;;;33949:45:0;;;::::1;::::0;;;::::1;::::0;;33866:136::o;32131:207::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;32221:24:::1;-1:-1:-1::0;;;;;;;;;;;32240:4:0::1;32221:7;:24::i;:::-;32213:79;;;::::0;-1:-1:-1;;;32213:79:0;;13102:2:1;32213:79:0::1;::::0;::::1;13084:21:1::0;13141:2;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;-1:-1:-1;;;13231:18:1;;;13224:40;13281:19;;32213:79:0::1;;;;;;;;;32303:27;-1:-1:-1::0;;;;;;;;;;;32325:4:0::1;32303:11;:27::i;10820:218::-:0;-1:-1:-1;;;;;10916:23:0;;7061:10;10916:23;10908:83;;;;-1:-1:-1;;;10908:83:0;;13919:2:1;10908:83:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:34;13977:18;;;13970:62;-1:-1:-1;;;14048:18:1;;;14041:45;14103:19;;10908:83:0;13891:237:1;10908:83:0;11004:26;11016:4;11022:7;11004:11;:26::i;21245:238::-;21333:4;7061:10;21389:64;7061:10;21405:7;21442:10;21414:25;7061:10;21405:7;21414:9;:25::i;:::-;:38;;;;:::i;:::-;21389:8;:64::i;31435:311::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;-1:-1:-1;;;;;38591:19:0;;;31518:86:::1;;;::::0;-1:-1:-1;;;31518:86:0;;7105:2:1;31518:86:0::1;::::0;::::1;7087:21:1::0;7144:2;7124:18;;;7117:30;7183:34;7163:18;;;7156:62;7254:27;7234:18;;;7227:55;7299:19;;31518:86:0::1;7077:247:1::0;31518:86:0::1;31624:24;-1:-1:-1::0;;;;;;;;;;;31643:4:0::1;31624:7;:24::i;:::-;31623:25;31615:86;;;::::0;-1:-1:-1;;;31615:86:0;;10649:2:1;31615:86:0::1;::::0;::::1;10631:21:1::0;10688:2;10668:18;;;10661:30;10727:34;10707:18;;;10700:62;-1:-1:-1;;;10778:18:1;;;10771:46;10834:19;;31615:86:0::1;10621:238:1::0;31615:86:0::1;31712:26;-1:-1:-1::0;;;;;;;;;;;31733:4:0::1;31712:10;:26::i;33496:146::-:0;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;33590:4:::1;33581:13:::0;::::1;;;33578:57;;;33608:1;33596:9;:13:::0;33652:143;;:::o;33578:57::-:1;33629:4;33617:9;:16:::0;33496:146;;:::o;33130:309::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;33212:34:::1;-1:-1:-1::0;;;;;;;;;;;33243:1:0::1;33212:7;:34::i;:::-;33211:35;33203:100;;;;-1:-1:-1::0;;;33203:100:0::1;;;;;;;:::i;:::-;33314:39;-1:-1:-1::0;;;;;;;;;;;7061:10:0;33314:11:::1;:39::i;:::-;33364:36;-1:-1:-1::0;;;;;;;;;;;33397:1:0::1;33364:10;:36::i;:::-;-1:-1:-1::0;33411:7:0::1;:20:::0;;-1:-1:-1;;;;;;33411:20:0::1;::::0;;33130:309::o;8642:147::-;8728:4;8752:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;8752:29:0;;;;;;;;;;;;;;;8642:147::o;17628:104::-;17684:13;17717:7;17710:14;;;;;:::i;21986:436::-;22079:4;7061:10;22079:4;22162:25;7061:10;22179:7;22162:9;:25::i;:::-;22135:52;;22226:15;22206:16;:35;;22198:85;;;;-1:-1:-1;;;22198:85:0;;13513:2:1;22198:85:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:35;13687:19;;22198:85:0;13485:227:1;22198:85:0;22319:60;22328:5;22335:7;22363:15;22344:16;:34;22319:8;:60::i;19033:193::-;19112:4;7061:10;19168:28;7061:10;19185:2;19189:6;19168:9;:28::i;32402:212::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;32489:31:::1;-1:-1:-1::0;;;;;;;;;;;32512:7:0::1;32489;:31::i;:::-;32481:81;;;::::0;-1:-1:-1;;;32481:81:0;;9423:2:1;32481:81:0::1;::::0;::::1;9405:21:1::0;9462:2;9442:18;;;9435:30;9501:34;9481:18;;;9474:62;-1:-1:-1;;;9552:18:1;;;9545:35;9597:19;;32481:81:0::1;9395:227:1::0;32481:81:0::1;32572:34;-1:-1:-1::0;;;;;;;;;;;32598:7:0::1;32572:11;:34::i;34081:186::-:0;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;34179:4:::1;34147:11;18801:18:::0;;;;;;;;;;;34204:10;34196:19:::1;;;::::0;::::1;;34226:33;34252:6;34226:25;:33::i;31757:223::-:0;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;31848:31:::1;-1:-1:-1::0;;;;;;;;;;;31871:7:0::1;31848;:31::i;:::-;31847:32;31839:89;;;::::0;-1:-1:-1;;;31839:89:0;;10236:2:1;31839:89:0::1;::::0;::::1;10218:21:1::0;10275:2;10255:18;;;10248:30;10314:34;10294:18;;;10287:62;-1:-1:-1;;;10365:18:1;;;10358:42;10417:19;;31839:89:0::1;10208:234:1::0;31839:89:0::1;31939:33;-1:-1:-1::0;;;;;;;;;;;31964:7:0::1;31939:10;:33::i;31988:130::-:0;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;-1:-1:-1;;;;;;32086:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;32086:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31988:130::o;19289:151::-;-1:-1:-1;;;;;19405:18:0;;;19378:7;19405:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19289:151::o;32705:416::-;-1:-1:-1;;;;;;;;;;;8238:16:0;8249:4;8238:10;:16::i;:::-;-1:-1:-1;;;;;32802:22:0;::::1;32794:86;;;::::0;-1:-1:-1;;;32794:86:0;;9003:2:1;32794:86:0::1;::::0;::::1;8985:21:1::0;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:1;;;9125:49;9191:19;;32794:86:0::1;8975:241:1::0;32794:86:0::1;32900:32;-1:-1:-1::0;;;;;;;;;;;32923:8:0::1;32900:7;:32::i;:::-;32899:33;32891:98;;;;-1:-1:-1::0;;;32891:98:0::1;;;;;;;:::i;:::-;33000:39;-1:-1:-1::0;;;;;;;;;;;7061:10:0;33314:11:::1;:39::i;33000:::-;33050:34;-1:-1:-1::0;;;;;;;;;;;33075:8:0::1;33050:10;:34::i;:::-;-1:-1:-1::0;33095:7:0::1;:18:::0;;-1:-1:-1;;;;;;33095:18:0::1;-1:-1:-1::0;;;;;33095:18:0;;;::::1;::::0;;;::::1;::::0;;32705:416::o;25661:380::-;-1:-1:-1;;;;;25797:19:0;;25789:68;;;;-1:-1:-1;;;25789:68:0;;12697:2:1;25789:68:0;;;12679:21:1;12736:2;12716:18;;;12709:30;12775:34;12755:18;;;12748:62;-1:-1:-1;;;12826:18:1;;;12819:34;12870:19;;25789:68:0;12669:226:1;25789:68:0;-1:-1:-1;;;;;25876:21:0;;25868:68;;;;-1:-1:-1;;;25868:68:0;;7531:2:1;25868:68:0;;;7513:21:1;7570:2;7550:18;;;7543:30;7609:34;7589:18;;;7582:62;-1:-1:-1;;;7660:18:1;;;7653:32;7702:19;;25868:68:0;7503:224:1;25868:68:0;-1:-1:-1;;;;;25949:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26001:32;;5077:25:1;;;26001:32:0;;5050:18:1;26001:32:0;;;;;;;25661:380;;;:::o;9093:105::-;9160:30;9171:4;7061:10;9160;:30::i;:::-;9093:105;:::o;26332:453::-;26467:24;26494:25;26504:5;26511:7;26494:9;:25::i;:::-;26467:52;;-1:-1:-1;;26534:16:0;:37;26530:248;;26616:6;26596:16;:26;;26588:68;;;;-1:-1:-1;;;26588:68:0;;8645:2:1;26588:68:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:31;8703:18;;;8696:59;8772:18;;26588:68:0;8617:179:1;26588:68:0;26700:51;26709:5;26716:7;26744:6;26725:16;:25;26700:8;:51::i;:::-;26332:453;;;;:::o;34334:2358::-;-1:-1:-1;;;;;34466:18:0;;34458:68;;;;-1:-1:-1;;;34458:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34545:16:0;;34537:64;;;;-1:-1:-1;;;34537:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34618:13:0;;;;;;:9;:13;;;;;;;;34614:124;;34670:25;34688:6;34670:13;34680:2;-1:-1:-1;;;;;18801:18:0;18774:7;18801:18;;;;;;;;;;;;18700:127;34670:13;:17;;:25::i;:::-;34656:9;;:39;;34648:78;;;;-1:-1:-1;;;34648:78:0;;8290:2:1;34648:78:0;;;8272:21:1;8329:2;8309:18;;;8302:30;8368:28;8348:18;;;8341:56;8414:18;;34648:78:0;8262:176:1;34648:78:0;34809:26;;:::i;:::-;-1:-1:-1;;;;;34860:15:0;;:9;:15;;;;;;;;;;;34846:29;;34888:21;;:::i;:::-;34935:28;-1:-1:-1;;;;;;;;;;;34958:4:0;34935:7;:28::i;:::-;34934:29;34933:64;;;;;34970:26;-1:-1:-1;;;;;;;;;;;34993:2:0;34970:7;:26::i;:::-;34969:27;34933:64;:107;;;;-1:-1:-1;35003:36:0;-1:-1:-1;;;;;;;;;;;7061:10:0;8642:147;:::i;35003:36::-;35002:37;34933:107;34921:119;;;;35064:28;-1:-1:-1;;;;;;;;;;;35087:4:0;35064:7;:28::i;:::-;35063:62;;;;35098:26;-1:-1:-1;;;;;;;;;;;35121:2:0;35098:7;:26::i;:::-;35051:74;;:9;;;:74;35154:11;;:21;-1:-1:-1;35154:21:0;35146:72;;;;-1:-1:-1;;;35146:72:0;;;;;;;:::i;:::-;35242:22;-1:-1:-1;;;;;;;;;;;35261:2:0;35242:7;:22::i;:::-;:43;;;;-1:-1:-1;35269:16:0;;;;35268:17;35242:43;35239:421;;;35343:4;35302:20;18801:18;;;;;;;;;;;35367:19;;35364:285;;35440:13;;;;;-1:-1:-1;;;;;35440:13:0;18774:7;18801:18;;;;;;;;;;;35430:40;;35466:3;;35430:31;;35459:1;;35430:24;:28;;:31::i;:::-;:35;;:40::i;:::-;35412:15;:58;35409:164;;;35523:13;;;;;-1:-1:-1;;;;;35523:13:0;18774:7;18801:18;;;;;;;;;;;35513:40;;35549:3;;35513:31;;35542:1;;35513:24;18700:127;35513:40;35495:58;;35409:164;35591:42;35617:15;35591:25;:42::i;:::-;35239:421;;35675:9;;:23;;;;-1:-1:-1;35689:9:0;;;;35688:10;35675:23;:44;;;;-1:-1:-1;35703:16:0;;;;35702:17;35675:44;35672:521;;;35754:6;35780:22;-1:-1:-1;;;;;;;;;;;35799:2:0;35780:7;:22::i;:::-;35775:254;;;35861:26;35880:6;35861:18;:26::i;:::-;35846:11;;;35837:50;;-1:-1:-1;35775:254:0;;;35911:32;-1:-1:-1;;;;;;;;;;;7061:10:0;8642:147;:::i;35911:32::-;35908:121;;;35988:25;36006:6;35988:17;:25::i;:::-;35973:11;;;35964:49;;-1:-1:-1;35908:121:0;36060:23;36075:7;36060:14;:23::i;:::-;36046:11;;;:37;;;36103:21;;36100:82;;36155:11;;;;36145:21;;;;:::i;:::-;;;36100:82;35672:521;;36248:11;;-1:-1:-1;;;;;36230:15:0;;;36257:1;36230:15;;;36248:11;36230:15;;;;;;;36248:20;;;;36230:38;;;36290:13;;;;;;;;:23;;36262:6;;36257:1;36290:23;;36262:6;;36290:23;:::i;:::-;;;;;;;;36346:2;-1:-1:-1;;;;;36331:26:0;36340:4;-1:-1:-1;;;;;36331:26:0;;36350:6;36331:26;;;;5077:25:1;;5065:2;5050:18;;5032:76;36331:26:0;;;;;;;;36383:11;;;;:15;;;;36382:30;;-1:-1:-1;36403:9:0;;36382:30;:44;;;;-1:-1:-1;36417:9:0;;;;36416:10;36382:44;:65;;;;-1:-1:-1;36431:16:0;;;;36430:17;36382:65;36379:123;;;36464:26;36472:4;36478:8;36487:1;36478:11;;;;36464:7;:26::i;:::-;36518:11;;;;:15;;;;36517:30;;-1:-1:-1;36538:9:0;;36517:30;:44;;;;-1:-1:-1;36552:9:0;;;;36551:10;36517:44;:65;;;;-1:-1:-1;36566:16:0;;;;36565:17;36517:65;36514:121;;;36599:24;36605:4;36611:8;36620:1;36611:11;;;;36599:5;:24::i;:::-;34334:2358;;;;;:::o;12691:239::-;12775:22;12783:4;12789:7;12775;:22::i;:::-;12771:152;;;12846:5;12814:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;12814:29:0;;;;;;;;;;:37;;-1:-1:-1;;12814:37:0;;;12871:40;7061:10;;12814:12;;12871:40;;12846:5;12871:40;12691:239;;:::o;11697:112::-;11776:25;11787:4;11793:7;11776:10;:25::i;37913:589::-;31345:16;:23;;-1:-1:-1;;31345:23:0;31364:4;31345:23;;;38024:16:::1;::::0;;38038:1:::1;38024:16:::0;;;;;::::1;::::0;;-1:-1:-1;;38024:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;38024:16:0::1;38000:40;;38069:4;38051;38056:1;38051:7;;;;;;-1:-1:-1::0;;;38051:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;38051:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;38095:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;38095:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;38051:7;;38095:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38085:4;38090:1;38085:7;;;;;;-1:-1:-1::0;;;38085:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;38085:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;38162:15:::1;::::0;38130:62:::1;::::0;38147:4:::1;::::0;38162:15:::1;38180:11:::0;38130:8:::1;:62::i;:::-;38205:15;::::0;38347:18:::1;::::0;38205:199:::1;::::0;-1:-1:-1;;;38205:199:0;;-1:-1:-1;;;;;38205:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;38286:11;;38205:15:::1;::::0;38328:4;;38347:18;::::1;::::0;38378:15:::1;::::0;38205:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;38422:72;38453:11;38479:4;38422:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;31391:16:0;:24;;-1:-1:-1;;31391:24:0;;;37913:589::o;9488:505::-;9577:22;9585:4;9591:7;9577;:22::i;:::-;9572:414;;9765:41;9793:7;-1:-1:-1;;;;;9765:41:0;9803:2;9765:19;:41::i;:::-;9879:38;9907:4;9914:2;9879:19;:38::i;:::-;9670:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;9670:270:0;;;;;;;;;;-1:-1:-1;;;9616:358:0;;;;;;;:::i;28271:181::-;28329:7;;28361:5;28365:1;28361;:5;:::i;:::-;28349:17;;28390:1;28385;:6;;28377:46;;;;-1:-1:-1;;;28377:46:0;;7934:2:1;28377:46:0;;;7916:21:1;7973:2;7953:18;;;7946:30;8012:29;7992:18;;;7985:57;8059:18;;28377:46:0;7906:177:1;28377:46:0;28443:1;28271:181;-1:-1:-1;;;28271:181:0:o;28804:250::-;28862:7;28886:6;28882:47;;-1:-1:-1;28916:1:0;28909:8;;28882:47;28941:9;28953:5;28957:1;28953;:5;:::i;:::-;28941:17;-1:-1:-1;28986:1:0;28977:5;28981:1;28941:17;28977:5;:::i;:::-;:10;28969:56;;;;-1:-1:-1;;;28969:56:0;;11066:2:1;28969:56:0;;;11048:21:1;11105:2;11085:18;;;11078:30;11144:34;11124:18;;;11117:62;-1:-1:-1;;;11195:18:1;;;11188:31;11236:19;;28969:56:0;11038:223:1;29064:132:0;29122:7;29149:39;29153:1;29156;29149:39;;;;;;;;;;;;;;;;;:3;:39::i;38633:247::-;38696:20;38718:16;30307:5;38790:9;;30307:5;38776:23;;;;:::i;:::-;38766:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;38747:67;;30307:5;38849:9;;38840:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;38825:47;;38633:247;;;:::o;38891:242::-;38953:20;38975:15;30307:5;39046:8;;30307:5;39032:22;;;;:::i;:::-;39022:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;39003:66;;30307:5;39103:8;;39094:6;:17;;;;:::i;39143:129::-;39202:11;30307:5;39245;;39236:6;:14;;;;:::i;:::-;:28;;;;:::i;37739:164::-;37810:11;;37807:89;;37838:46;37854:5;37869:4;37876:7;37838:15;:46::i;36705:601::-;-1:-1:-1;;;;;36790:21:0;;36782:67;;;;-1:-1:-1;;;36782:67:0;;11889:2:1;36782:67:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:34;11947:18;;;11940:62;-1:-1:-1;;;12018:18:1;;;12011:31;12059:19;;36782:67:0;11861:223:1;36782:67:0;-1:-1:-1;;;;;36949:18:0;;36924:22;36949:18;;;;;;;;;;;36986:24;;;;36978:71;;;;-1:-1:-1;;;36978:71:0;;6702:2:1;36978:71:0;;;6684:21:1;6741:2;6721:18;;;6714:30;6780:34;6760:18;;;6753:62;-1:-1:-1;;;6831:18:1;;;6824:32;6873:19;;36978:71:0;6674:224:1;36978:71:0;-1:-1:-1;;;;;37085:18:0;;:9;:18;;;;;;;;;;37106:23;;;37085:44;;37151:21;;;;:31;;37123:6;;37085:9;37151:31;;37123:6;;37151:31;:::i;:::-;;;;-1:-1:-1;;37200:37:0;;5077:25:1;;;37226:1:0;;-1:-1:-1;;;;;37200:37:0;;;;;5065:2:1;5050:18;37200:37:0;;;;;;;27385:125;;;:::o;12321:238::-;12405:22;12413:4;12419:7;12405;:22::i;:::-;12400:152;;12444:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;12444:29:0;;;;;;;;;:36;;-1:-1:-1;;12444:36:0;12476:4;12444:36;;;12527:12;7061:10;;6981:98;12527:12;-1:-1:-1;;;;;12500:40:0;12518:7;-1:-1:-1;;;;;12500:40:0;12512:4;12500:40;;;;;;;;;;12321:238;;:::o;14373:451::-;14448:13;14474:19;14506:10;14510:6;14506:1;:10;:::i;:::-;:14;;14519:1;14506:14;:::i;:::-;14496:25;;;;;;-1:-1:-1;;;14496:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14496:25:0;;14474:47;;-1:-1:-1;;;14532:6:0;14539:1;14532:9;;;;;;-1:-1:-1;;;14532:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;14532:15:0;;;;;;;;;-1:-1:-1;;;14558:6:0;14565:1;14558:9;;;;;;-1:-1:-1;;;14558:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;14558:15:0;;;;;;;;-1:-1:-1;14589:9:0;14601:10;14605:6;14601:1;:10;:::i;:::-;:14;;14614:1;14601:14;:::i;:::-;14589:26;;14584:135;14621:1;14617;:5;14584:135;;;-1:-1:-1;;;14669:5:0;14677:3;14669:11;14656:25;;;;;-1:-1:-1;;;14656:25:0;;;;;;;;;;;;14644:6;14651:1;14644:9;;;;;;-1:-1:-1;;;14644:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;14644:37:0;;;;;;;;-1:-1:-1;14706:1:0;14696:11;;;;;14624:3;;;:::i;:::-;;;14584:135;;;-1:-1:-1;14737:10:0;;14729:55;;;;-1:-1:-1;;;14729:55:0;;5937:2:1;14729:55:0;;;5919:21:1;;;5956:18;;;5949:30;6015:34;5995:18;;;5988:62;6067:18;;14729:55:0;5909:182:1;29204:278:0;29290:7;29325:12;29318:5;29310:28;;;;-1:-1:-1;;;29310:28:0;;;;;;;;:::i;:::-;-1:-1:-1;29349:9:0;29361:5;29365:1;29361;:5;:::i;:::-;29349:17;29204:278;-1:-1:-1;;;;;29204:278:0:o;22901:671::-;-1:-1:-1;;;;;23032:18:0;;23024:68;;;;-1:-1:-1;;;23024:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23111:16:0;;23103:64;;;;-1:-1:-1;;;23103:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23253:15:0;;23231:19;23253:15;;;;;;;;;;;23287:21;;;;23279:72;;;;-1:-1:-1;;;23279:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23387:15:0;;;:9;:15;;;;;;;;;;;23405:20;;;23387:38;;23447:13;;;;;;;;:23;;23419:6;;23387:9;23447:23;;23419:6;;23447:23;:::i;:::-;;;;;;;;23503:2;-1:-1:-1;;;;;23488:26:0;23497:4;-1:-1:-1;;;;;23488:26:0;;23507:6;23488:26;;;;5077:25:1;;5065:2;5050:18;;5032:76;23488:26:0;;;;;;;;23527:37;27385:125;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1646:6;1654;1707:2;1695:9;1686:7;1682:23;1678:32;1675:2;;;1728:6;1720;1713:22;1675:2;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;-1:-1:-1;1865:35:1;1896:2;1881:18;;1865:35;:::i;:::-;1855:45;;1665:241;;;;;:::o;1911:325::-;1979:6;1987;2040:2;2028:9;2019:7;2015:23;2011:32;2008:2;;;2061:6;2053;2046:22;2008:2;2105:9;2092:23;2124:31;2149:5;2124:31;:::i;:::-;2174:5;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1998:238:1:o;2241:190::-;2297:6;2350:2;2338:9;2329:7;2325:23;2321:32;2318:2;;;2371:6;2363;2356:22;2318:2;2399:26;2415:9;2399:26;:::i;2436:190::-;2495:6;2548:2;2536:9;2527:7;2523:23;2519:32;2516:2;;;2569:6;2561;2554:22;2516:2;-1:-1:-1;2597:23:1;;2506:120;-1:-1:-1;2506:120:1:o;2631:325::-;2699:6;2707;2760:2;2748:9;2739:7;2735:23;2731:32;2728:2;;;2781:6;2773;2766:22;2728:2;2822:9;2809:23;2799:33;;2882:2;2871:9;2867:18;2854:32;2895:31;2920:5;2895:31;:::i;2961:306::-;3019:6;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3093:6;3085;3078:22;3040:2;3124:23;;-1:-1:-1;;;;;;3176:32:1;;3166:43;;3156:2;;3228:6;3220;3213:22;3272:463;3325:3;3363:5;3357:12;3390:6;3385:3;3378:19;3416:4;3445:2;3440:3;3436:12;3429:19;;3482:2;3475:5;3471:14;3503:3;3515:195;3529:6;3526:1;3523:13;3515:195;;;3594:13;;-1:-1:-1;;;;;3590:39:1;3578:52;;3650:12;;;;3685:15;;;;3626:1;3544:9;3515:195;;;-1:-1:-1;3726:3:1;;3333:402;-1:-1:-1;;;;;3333:402:1:o;3740:786::-;4151:25;4146:3;4139:38;4121:3;4206:6;4200:13;4222:62;4277:6;4272:2;4267:3;4263:12;4256:4;4248:6;4244:17;4222:62;:::i;:::-;-1:-1:-1;;;4343:2:1;4303:16;;;4335:11;;;4328:40;4393:13;;4415:63;4393:13;4464:2;4456:11;;4449:4;4437:17;;4415:63;:::i;:::-;4498:17;4517:2;4494:26;;4129:397;-1:-1:-1;;;;4129:397:1:o;5347:383::-;5496:2;5485:9;5478:21;5459:4;5528:6;5522:13;5571:6;5566:2;5555:9;5551:18;5544:34;5587:66;5646:6;5641:2;5630:9;5626:18;5621:2;5613:6;5609:15;5587:66;:::i;:::-;5714:2;5693:15;-1:-1:-1;;5689:29:1;5674:45;;;;5721:2;5670:54;;5468:262;-1:-1:-1;;5468:262:1:o;6096:399::-;6298:2;6280:21;;;6337:2;6317:18;;;6310:30;6376:34;6371:2;6356:18;;6349:62;-1:-1:-1;;;6442:2:1;6427:18;;6420:33;6485:3;6470:19;;6270:225::o;9627:402::-;9829:2;9811:21;;;9868:2;9848:18;;;9841:30;9907:34;9902:2;9887:18;;9880:62;-1:-1:-1;;;9973:2:1;9958:18;;9951:36;10019:3;10004:19;;9801:228::o;11266:416::-;11468:2;11450:21;;;11507:2;11487:18;;;11480:30;11546:34;11541:2;11526:18;;11519:62;-1:-1:-1;;;11612:2:1;11597:18;;11590:50;11672:3;11657:19;;11440:242::o;12089:401::-;12291:2;12273:21;;;12330:2;12310:18;;;12303:30;12369:34;12364:2;12349:18;;12342:62;-1:-1:-1;;;12435:2:1;12420:18;;12413:35;12480:3;12465:19;;12263:227::o;14315:332::-;14522:6;14511:9;14504:25;14565:2;14560;14549:9;14545:18;14538:30;14485:4;14585:56;14637:2;14626:9;14622:18;14614:6;14585:56;:::i;:::-;14577:64;14494:153;-1:-1:-1;;;;14494:153:1:o;14652:582::-;14951:6;14940:9;14933:25;14994:6;14989:2;14978:9;14974:18;14967:34;15037:3;15032:2;15021:9;15017:18;15010:31;14914:4;15058:57;15110:3;15099:9;15095:19;15087:6;15058:57;:::i;:::-;-1:-1:-1;;;;;15151:32:1;;;;15146:2;15131:18;;15124:60;-1:-1:-1;15215:3:1;15200:19;15193:35;15050:65;14923:311;-1:-1:-1;;;14923:311:1:o;15428:128::-;15468:3;15499:1;15495:6;15492:1;15489:13;15486:2;;;15505:18;;:::i;:::-;-1:-1:-1;15541:9:1;;15476:80::o;15561:217::-;15601:1;15627;15617:2;;-1:-1:-1;;;15652:31:1;;15706:4;15703:1;15696:15;15734:4;15659:1;15724:15;15617:2;-1:-1:-1;15763:9:1;;15607:171::o;15783:168::-;15823:7;15889:1;15885;15881:6;15877:14;15874:1;15871:21;15866:1;15859:9;15852:17;15848:45;15845:2;;;15896:18;;:::i;:::-;-1:-1:-1;15936:9:1;;15835:116::o;15956:125::-;15996:4;16024:1;16021;16018:8;16015:2;;;16029:18;;:::i;:::-;-1:-1:-1;16066:9:1;;16005:76::o;16086:258::-;16158:1;16168:113;16182:6;16179:1;16176:13;16168:113;;;16258:11;;;16252:18;16239:11;;;16232:39;16204:2;16197:10;16168:113;;;16299:6;16296:1;16293:13;16290:2;;;-1:-1:-1;;16334:1:1;16316:16;;16309:27;16139:205::o;16349:136::-;16388:3;16416:5;16406:2;;16425:18;;:::i;:::-;-1:-1:-1;;;16461:18:1;;16396:89::o;16490:380::-;16569:1;16565:12;;;;16612;;;16633:2;;16687:4;16679:6;16675:17;16665:27;;16633:2;16740;16732:6;16729:14;16709:18;16706:38;16703:2;;;16786:10;16781:3;16777:20;16774:1;16767:31;16821:4;16818:1;16811:15;16849:4;16846:1;16839:15;16703:2;;16545:325;;;:::o;16875:127::-;16936:10;16931:3;16927:20;16924:1;16917:31;16967:4;16964:1;16957:15;16991:4;16988:1;16981:15;17007:131;-1:-1:-1;;;;;17082:31:1;;17072:42;;17062:2;;17128:1;17125;17118:12

Swarm Source

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