ETH Price: $2,541.00 (+4.26%)

Token

BlockStar Token (BST)
 

Overview

Max Total Supply

100,000,000 BST

Holders

441 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.45037 BST

Value
$0.00
0xdaa8ccbbcc7de35abc0eff020b7b98d2bb0a6d1e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BlockStar is a decentralized ecosystem enabling people to engage in social media, create and share content and transact in cryptocurrency worldwide. BlockStar introduced an ecosystem that restricts access to user data and brings about a realm where content monetization favors the content originator.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BST

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_createInitialSupply}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

contract BST is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool public cooldownEnabled = true;
    uint256 public cooldownTimerInterval = 30 seconds;
    mapping(address => uint256) private cooldown;

    uint256 public marketingFee = 2; // marketing fee
    address public marketingWallet = 0xe6F30afeBbc17469AC7b243228aeA3524ecb6CC0; // marketing wallet address

    uint256 public maxTxAmount = 500000 * (10**18);

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isBlackListed;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20("BlockStar Token", "BST") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        ); // uniswap v2 router address
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);

        /*
            an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function setBlackList(address addr, bool value) external onlyOwner {
        _isBlackListed[addr] = value;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "BST: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "BST: The Uniswap pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "BST: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            !_isBlackListed[from] && !_isBlackListed[to],
            "Account is blacklisted"
        );
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (from != owner() && to != owner()) {
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFees[to] &&
                cooldownEnabled
            ) {
                // Cooldown
                require(cooldown[to] < block.timestamp);
                cooldown[to] = block.timestamp + (cooldownTimerInterval);
            }
        }

        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(
                amount <= maxTxAmount,
                "transaction amount must be less than equal to MaxTx amount"
            );
        }

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (
                automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]
            ) {
                uint256 fees = amount.mul(marketingFee).div(100);
                amount = amount.sub(fees);
                super._transfer(from, marketingWallet, fees);
            }
        }

        super._transfer(from, to, amount);
    }

    // owner can only decrease tax, he has no right to increase tax more than 2%
    function setFee(uint256 _marketingFee) public onlyOwner {
        require(_marketingFee <= 2, "fees must be less than or equal to 2%");
        marketingFee = _marketingFee;
    }

    function setMarketingWallet(address payable _newAddress) public onlyOwner {
        marketingWallet = _newAddress;
    }

    // change max transaction amount.
    function setMaxTxAmount(uint256 newAmount) public onlyOwner {
        maxTxAmount = newAmount * 10**18;
        require(
            newAmount * 10**18 >= totalSupply().div(50000),
            "transaction amount must be greater than or equal to 0.01% of supply"
        );
    }

    // enable cooldown between trades
    function changeCooldownSettings(bool newStatus, uint256 newInterval)
        external
        onlyOwner
    {
        cooldownEnabled = newStatus;
        cooldownTimerInterval = newInterval;
    }

    function updatePairAddress(address _routerAddress, address _pairAddress)
        public
        onlyOwner
    {
        uniswapV2Router = IUniswapV2Router02(_routerAddress);
        uniswapV2Pair = _pairAddress;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"","type":"address"}],"name":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"},{"internalType":"uint256","name":"newInterval","type":"uint256"}],"name":"changeCooldownSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownTimerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxTxAmount","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"updatePairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526007805460ff60a01b1916600160a01b179055601e6008556002600a55600b80546001600160a01b03191673e6f30afebbc17469ac7b243228aea3524ecb6cc01790556969e10de76676d0800000600c553480156200006257600080fd5b506040518060400160405280600f81526020016e213637b1b5a9ba30b9102a37b5b2b760891b815250604051806040016040528060038152602001621094d560ea1b8152508160039080519060200190620000bf929190620006b7565b508051620000d5906004906020840190620006b7565b505050620000f2620000ec6200033f60201b60201c565b62000343565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200014757600080fd5b505afa1580156200015c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018291906200075d565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001cb57600080fd5b505afa158015620001e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020691906200075d565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024f57600080fd5b505af115801562000264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028a91906200075d565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002c981600162000395565b620002e8620002e06005546001600160a01b031690565b600162000484565b600b5462000301906001600160a01b0316600162000484565b6200030e30600162000484565b62000337620003256005546001600160a01b031690565b6a52b7d2dcc80cd2e4000000620005c8565b5050620007f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600f602052604090205460ff1615158115151415620004305760405162461bcd60e51b815260206004820152603d60248201527f4253543a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c756500000060648201526084015b60405180910390fd5b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000427565b6001600160a01b0382166000908152600d602052604090205460ff1615158115151415620005695760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b606482015260840162000427565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200062a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a2063726561746520746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000427565b80600260008282546200063e91906200078f565b90915550506001600160a01b038216600090815260208190526040812080548392906200066d9084906200078f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c590620007b6565b90600052602060002090601f016020900481019282620006e9576000855562000734565b82601f106200070457805160ff191683800117855562000734565b8280016001018555821562000734579182015b828111156200073457825182559160200191906001019062000717565b506200074292915062000746565b5090565b5b8082111562000742576000815560010162000747565b6000602082840312156200077057600080fd5b81516001600160a01b03811681146200078857600080fd5b9392505050565b60008219821115620007b157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620007cb57607f821691505b60208210811415620007ed57634e487b7160e01b600052602260045260246000fd5b50919050565b611a0480620008036000396000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063d6becf8111610064578063d6becf81146105bd578063dd62ed3e146105dd578063ec28438a14610623578063f2fde38b1461064357600080fd5b8063a9059cbb1461052c578063a985ceef1461054c578063b62496f51461056d578063c02466681461059d57600080fd5b80638da5cb5b116100d15780638da5cb5b146104b957806395d89b41146104d75780639a7a23d6146104ec578063a457c2d71461050c57600080fd5b8063715018a614610458578063722b62ad1461046d57806375f0a874146104835780638c0b5e22146104a357600080fd5b806349bd5a5e1161017a57806369fe0e2d1161014957806369fe0e2d146103bc5780636b67c4df146103dc5780636c9bb93b146103f257806370a082311461042257600080fd5b806349bd5a5e146103235780634fbee193146103435780635d098b381461037c57806368092bd91461039c57600080fd5b806318160ddd116101b657806318160ddd146102a857806323b872dd146102c7578063313ce567146102e7578063395093511461030357600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630d45c0e31461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610663565b60405161021591906116a4565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461170e565b6106f5565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e61026936600461174f565b61070c565b005b34801561027c57600080fd5b50600654610290906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b3480156102b457600080fd5b506002545b604051908152602001610215565b3480156102d357600080fd5b5061023e6102e236600461176b565b610761565b3480156102f357600080fd5b5060405160128152602001610215565b34801561030f57600080fd5b5061023e61031e36600461170e565b61080b565b34801561032f57600080fd5b50600754610290906001600160a01b031681565b34801561034f57600080fd5b5061023e61035e3660046117ac565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561038857600080fd5b5061026e6103973660046117ac565b610847565b3480156103a857600080fd5b5061026e6103b73660046117c9565b610893565b3480156103c857600080fd5b5061026e6103d73660046117fe565b6108e8565b3480156103e857600080fd5b506102b9600a5481565b3480156103fe57600080fd5b5061023e61040d3660046117ac565b600e6020526000908152604090205460ff1681565b34801561042e57600080fd5b506102b961043d3660046117ac565b6001600160a01b031660009081526020819052604090205490565b34801561046457600080fd5b5061026e610976565b34801561047957600080fd5b506102b960085481565b34801561048f57600080fd5b50600b54610290906001600160a01b031681565b3480156104af57600080fd5b506102b9600c5481565b3480156104c557600080fd5b506005546001600160a01b0316610290565b3480156104e357600080fd5b506102086109ac565b3480156104f857600080fd5b5061026e6105073660046117c9565b6109bb565b34801561051857600080fd5b5061023e61052736600461170e565b610a86565b34801561053857600080fd5b5061023e61054736600461170e565b610b1f565b34801561055857600080fd5b5060075461023e90600160a01b900460ff1681565b34801561057957600080fd5b5061023e6105883660046117ac565b600f6020526000908152604090205460ff1681565b3480156105a957600080fd5b5061026e6105b83660046117c9565b610b2c565b3480156105c957600080fd5b5061026e6105d8366004611817565b610c3c565b3480156105e957600080fd5b506102b96105f8366004611817565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062f57600080fd5b5061026e61063e3660046117fe565b610c94565b34801561064f57600080fd5b5061026e61065e3660046117ac565b610d7d565b60606003805461067290611850565b80601f016020809104026020016040519081016040528092919081815260200182805461069e90611850565b80156106eb5780601f106106c0576101008083540402835291602001916106eb565b820191906000526020600020905b8154815290600101906020018083116106ce57829003601f168201915b5050505050905090565b6000610702338484610e15565b5060015b92915050565b6005546001600160a01b0316331461073f5760405162461bcd60e51b81526004016107369061188b565b60405180910390fd5b60078054921515600160a01b0260ff60a01b1990931692909217909155600855565b600061076e848484610f39565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107f35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610736565b6108008533858403610e15565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107029185906108429086906118d6565b610e15565b6005546001600160a01b031633146108715760405162461bcd60e51b81526004016107369061188b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108bd5760405162461bcd60e51b81526004016107369061188b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109125760405162461bcd60e51b81526004016107369061188b565b60028111156109715760405162461bcd60e51b815260206004820152602560248201527f66656573206d757374206265206c657373207468616e206f7220657175616c20604482015264746f20322560d81b6064820152608401610736565b600a55565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107369061188b565b6109aa60006112a2565b565b60606004805461067290611850565b6005546001600160a01b031633146109e55760405162461bcd60e51b81526004016107369061188b565b6007546001600160a01b0383811691161415610a785760405162461bcd60e51b815260206004820152604660248201527f4253543a2054686520556e697377617020706169722063616e6e6f742062652060448201527f72656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6560648201526572506169727360d01b608482015260a401610736565b610a8282826112f4565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610736565b610b153385858403610e15565b5060019392505050565b6000610702338484610f39565b6005546001600160a01b03163314610b565760405162461bcd60e51b81526004016107369061188b565b6001600160a01b0382166000908152600d602052604090205460ff1615158115151415610bdd5760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b6064820152608401610736565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c665760405162461bcd60e51b81526004016107369061188b565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107369061188b565b610cd081670de0b6b3a76400006118ee565b600c55610ce861c350610ce260025490565b906113dd565b610cfa82670de0b6b3a76400006118ee565b1015610d7a5760405162461bcd60e51b815260206004820152604360248201527f7472616e73616374696f6e20616d6f756e74206d75737420626520677265617460448201527f6572207468616e206f7220657175616c20746f20302e303125206f6620737570606482015262706c7960e81b608482015260a401610736565b50565b6005546001600160a01b03163314610da75760405162461bcd60e51b81526004016107369061188b565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610736565b610d7a816112a2565b6001600160a01b038316610e775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610736565b6001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610736565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5f5760405162461bcd60e51b81526004016107369061190d565b6001600160a01b038216610f855760405162461bcd60e51b815260040161073690611952565b6001600160a01b0383166000908152600e602052604090205460ff16158015610fc757506001600160a01b0382166000908152600e602052604090205460ff16155b61100c5760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b6044820152606401610736565b806110225761101d83836000611426565b505050565b6005546001600160a01b0384811691161480159061104e57506005546001600160a01b03838116911614155b15611108576007546001600160a01b03848116911614801561107e57506006546001600160a01b03838116911614155b80156110a357506001600160a01b0382166000908152600d602052604090205460ff16155b80156110b85750600754600160a01b900460ff165b15611108576001600160a01b03821660009081526009602052604090205442116110e157600080fd5b6008546110ee90426118d6565b6001600160a01b0383166000908152600960205260409020555b6001600160a01b0383166000908152600d602052604090205460ff1615801561114a57506001600160a01b0382166000908152600d602052604090205460ff16155b156111c757600c548111156111c75760405162461bcd60e51b815260206004820152603a60248201527f7472616e73616374696f6e20616d6f756e74206d757374206265206c6573732060448201527f7468616e20657175616c20746f204d6178547820616d6f756e740000000000006064820152608401610736565b6001600160a01b0383166000908152600d602052604090205460ff1615801561120957506001600160a01b0382166000908152600d602052604090205460ff16155b15611297576001600160a01b0383166000908152600f602052604090205460ff168061124d57506001600160a01b0382166000908152600f602052604090205460ff165b1561129757600061126e6064610ce2600a548561157b90919063ffffffff16565b905061127a82826115fa565b600b549092506112959085906001600160a01b031683611426565b505b61101d838383611426565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156113895760405162461bcd60e51b815260206004820152603d60248201527f4253543a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c75650000006064820152608401610736565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061141f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061163c565b9392505050565b6001600160a01b03831661144c5760405162461bcd60e51b81526004016107369061190d565b6001600160a01b0382166114725760405162461bcd60e51b815260040161073690611952565b6001600160a01b038316600090815260208190526040902054818110156114ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610736565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906115219084906118d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161156d91815260200190565b60405180910390a350505050565b60008261158a57506000610706565b600061159683856118ee565b9050826115a38583611995565b1461141f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610736565b600061141f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611673565b6000818361165d5760405162461bcd60e51b815260040161073691906116a4565b50600061166a8486611995565b95945050505050565b600081848411156116975760405162461bcd60e51b815260040161073691906116a4565b50600061166a84866119b7565b600060208083528351808285015260005b818110156116d1578581018301518582016040015282016116b5565b818111156116e3576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610d7a57600080fd5b6000806040838503121561172157600080fd5b823561172c816116f9565b946020939093013593505050565b8035801515811461174a57600080fd5b919050565b6000806040838503121561176257600080fd5b61172c8361173a565b60008060006060848603121561178057600080fd5b833561178b816116f9565b9250602084013561179b816116f9565b929592945050506040919091013590565b6000602082840312156117be57600080fd5b813561141f816116f9565b600080604083850312156117dc57600080fd5b82356117e7816116f9565b91506117f56020840161173a565b90509250929050565b60006020828403121561181057600080fd5b5035919050565b6000806040838503121561182a57600080fd5b8235611835816116f9565b91506020830135611845816116f9565b809150509250929050565b600181811c9082168061186457607f821691505b6020821081141561188557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118e9576118e96118c0565b500190565b6000816000190483118215151615611908576119086118c0565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826119b257634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156119c9576119c96118c0565b50039056fea2646970667358221220e6ae1f8f292032506be25e002f6408ace7485e07cb5d1d8b66e0ca8fe0f0942964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063d6becf8111610064578063d6becf81146105bd578063dd62ed3e146105dd578063ec28438a14610623578063f2fde38b1461064357600080fd5b8063a9059cbb1461052c578063a985ceef1461054c578063b62496f51461056d578063c02466681461059d57600080fd5b80638da5cb5b116100d15780638da5cb5b146104b957806395d89b41146104d75780639a7a23d6146104ec578063a457c2d71461050c57600080fd5b8063715018a614610458578063722b62ad1461046d57806375f0a874146104835780638c0b5e22146104a357600080fd5b806349bd5a5e1161017a57806369fe0e2d1161014957806369fe0e2d146103bc5780636b67c4df146103dc5780636c9bb93b146103f257806370a082311461042257600080fd5b806349bd5a5e146103235780634fbee193146103435780635d098b381461037c57806368092bd91461039c57600080fd5b806318160ddd116101b657806318160ddd146102a857806323b872dd146102c7578063313ce567146102e7578063395093511461030357600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630d45c0e31461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610663565b60405161021591906116a4565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461170e565b6106f5565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e61026936600461174f565b61070c565b005b34801561027c57600080fd5b50600654610290906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b3480156102b457600080fd5b506002545b604051908152602001610215565b3480156102d357600080fd5b5061023e6102e236600461176b565b610761565b3480156102f357600080fd5b5060405160128152602001610215565b34801561030f57600080fd5b5061023e61031e36600461170e565b61080b565b34801561032f57600080fd5b50600754610290906001600160a01b031681565b34801561034f57600080fd5b5061023e61035e3660046117ac565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561038857600080fd5b5061026e6103973660046117ac565b610847565b3480156103a857600080fd5b5061026e6103b73660046117c9565b610893565b3480156103c857600080fd5b5061026e6103d73660046117fe565b6108e8565b3480156103e857600080fd5b506102b9600a5481565b3480156103fe57600080fd5b5061023e61040d3660046117ac565b600e6020526000908152604090205460ff1681565b34801561042e57600080fd5b506102b961043d3660046117ac565b6001600160a01b031660009081526020819052604090205490565b34801561046457600080fd5b5061026e610976565b34801561047957600080fd5b506102b960085481565b34801561048f57600080fd5b50600b54610290906001600160a01b031681565b3480156104af57600080fd5b506102b9600c5481565b3480156104c557600080fd5b506005546001600160a01b0316610290565b3480156104e357600080fd5b506102086109ac565b3480156104f857600080fd5b5061026e6105073660046117c9565b6109bb565b34801561051857600080fd5b5061023e61052736600461170e565b610a86565b34801561053857600080fd5b5061023e61054736600461170e565b610b1f565b34801561055857600080fd5b5060075461023e90600160a01b900460ff1681565b34801561057957600080fd5b5061023e6105883660046117ac565b600f6020526000908152604090205460ff1681565b3480156105a957600080fd5b5061026e6105b83660046117c9565b610b2c565b3480156105c957600080fd5b5061026e6105d8366004611817565b610c3c565b3480156105e957600080fd5b506102b96105f8366004611817565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062f57600080fd5b5061026e61063e3660046117fe565b610c94565b34801561064f57600080fd5b5061026e61065e3660046117ac565b610d7d565b60606003805461067290611850565b80601f016020809104026020016040519081016040528092919081815260200182805461069e90611850565b80156106eb5780601f106106c0576101008083540402835291602001916106eb565b820191906000526020600020905b8154815290600101906020018083116106ce57829003601f168201915b5050505050905090565b6000610702338484610e15565b5060015b92915050565b6005546001600160a01b0316331461073f5760405162461bcd60e51b81526004016107369061188b565b60405180910390fd5b60078054921515600160a01b0260ff60a01b1990931692909217909155600855565b600061076e848484610f39565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107f35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610736565b6108008533858403610e15565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107029185906108429086906118d6565b610e15565b6005546001600160a01b031633146108715760405162461bcd60e51b81526004016107369061188b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108bd5760405162461bcd60e51b81526004016107369061188b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109125760405162461bcd60e51b81526004016107369061188b565b60028111156109715760405162461bcd60e51b815260206004820152602560248201527f66656573206d757374206265206c657373207468616e206f7220657175616c20604482015264746f20322560d81b6064820152608401610736565b600a55565b6005546001600160a01b031633146109a05760405162461bcd60e51b81526004016107369061188b565b6109aa60006112a2565b565b60606004805461067290611850565b6005546001600160a01b031633146109e55760405162461bcd60e51b81526004016107369061188b565b6007546001600160a01b0383811691161415610a785760405162461bcd60e51b815260206004820152604660248201527f4253543a2054686520556e697377617020706169722063616e6e6f742062652060448201527f72656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6560648201526572506169727360d01b608482015260a401610736565b610a8282826112f4565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610736565b610b153385858403610e15565b5060019392505050565b6000610702338484610f39565b6005546001600160a01b03163314610b565760405162461bcd60e51b81526004016107369061188b565b6001600160a01b0382166000908152600d602052604090205460ff1615158115151415610bdd5760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b6064820152608401610736565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c665760405162461bcd60e51b81526004016107369061188b565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016107369061188b565b610cd081670de0b6b3a76400006118ee565b600c55610ce861c350610ce260025490565b906113dd565b610cfa82670de0b6b3a76400006118ee565b1015610d7a5760405162461bcd60e51b815260206004820152604360248201527f7472616e73616374696f6e20616d6f756e74206d75737420626520677265617460448201527f6572207468616e206f7220657175616c20746f20302e303125206f6620737570606482015262706c7960e81b608482015260a401610736565b50565b6005546001600160a01b03163314610da75760405162461bcd60e51b81526004016107369061188b565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610736565b610d7a816112a2565b6001600160a01b038316610e775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610736565b6001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610736565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5f5760405162461bcd60e51b81526004016107369061190d565b6001600160a01b038216610f855760405162461bcd60e51b815260040161073690611952565b6001600160a01b0383166000908152600e602052604090205460ff16158015610fc757506001600160a01b0382166000908152600e602052604090205460ff16155b61100c5760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b6044820152606401610736565b806110225761101d83836000611426565b505050565b6005546001600160a01b0384811691161480159061104e57506005546001600160a01b03838116911614155b15611108576007546001600160a01b03848116911614801561107e57506006546001600160a01b03838116911614155b80156110a357506001600160a01b0382166000908152600d602052604090205460ff16155b80156110b85750600754600160a01b900460ff165b15611108576001600160a01b03821660009081526009602052604090205442116110e157600080fd5b6008546110ee90426118d6565b6001600160a01b0383166000908152600960205260409020555b6001600160a01b0383166000908152600d602052604090205460ff1615801561114a57506001600160a01b0382166000908152600d602052604090205460ff16155b156111c757600c548111156111c75760405162461bcd60e51b815260206004820152603a60248201527f7472616e73616374696f6e20616d6f756e74206d757374206265206c6573732060448201527f7468616e20657175616c20746f204d6178547820616d6f756e740000000000006064820152608401610736565b6001600160a01b0383166000908152600d602052604090205460ff1615801561120957506001600160a01b0382166000908152600d602052604090205460ff16155b15611297576001600160a01b0383166000908152600f602052604090205460ff168061124d57506001600160a01b0382166000908152600f602052604090205460ff165b1561129757600061126e6064610ce2600a548561157b90919063ffffffff16565b905061127a82826115fa565b600b549092506112959085906001600160a01b031683611426565b505b61101d838383611426565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156113895760405162461bcd60e51b815260206004820152603d60248201527f4253543a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c75650000006064820152608401610736565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061141f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061163c565b9392505050565b6001600160a01b03831661144c5760405162461bcd60e51b81526004016107369061190d565b6001600160a01b0382166114725760405162461bcd60e51b815260040161073690611952565b6001600160a01b038316600090815260208190526040902054818110156114ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610736565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906115219084906118d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161156d91815260200190565b60405180910390a350505050565b60008261158a57506000610706565b600061159683856118ee565b9050826115a38583611995565b1461141f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610736565b600061141f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611673565b6000818361165d5760405162461bcd60e51b815260040161073691906116a4565b50600061166a8486611995565b95945050505050565b600081848411156116975760405162461bcd60e51b815260040161073691906116a4565b50600061166a84866119b7565b600060208083528351808285015260005b818110156116d1578581018301518582016040015282016116b5565b818111156116e3576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610d7a57600080fd5b6000806040838503121561172157600080fd5b823561172c816116f9565b946020939093013593505050565b8035801515811461174a57600080fd5b919050565b6000806040838503121561176257600080fd5b61172c8361173a565b60008060006060848603121561178057600080fd5b833561178b816116f9565b9250602084013561179b816116f9565b929592945050506040919091013590565b6000602082840312156117be57600080fd5b813561141f816116f9565b600080604083850312156117dc57600080fd5b82356117e7816116f9565b91506117f56020840161173a565b90509250929050565b60006020828403121561181057600080fd5b5035919050565b6000806040838503121561182a57600080fd5b8235611835816116f9565b91506020830135611845816116f9565b809150509250929050565b600181811c9082168061186457607f821691505b6020821081141561188557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118e9576118e96118c0565b500190565b6000816000190483118215151615611908576119086118c0565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000826119b257634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156119c9576119c96118c0565b50039056fea2646970667358221220e6ae1f8f292032506be25e002f6408ace7485e07cb5d1d8b66e0ca8fe0f0942964736f6c63430008090033

Deployed Bytecode Sourcemap

30111:6298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5610:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7918:210;;;;;;;;;;-1:-1:-1;7918:210:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;7918:210:0;1072:187:1;35972:203:0;;;;;;;;;;-1:-1:-1;35972:203:0;;;;;:::i;:::-;;:::i;:::-;;30184:41;;;;;;;;;;-1:-1:-1;30184:41:0;;;;-1:-1:-1;;;;;30184:41:0;;;;;;-1:-1:-1;;;;;1873:32:1;;;1855:51;;1843:2;1828:18;30184:41:0;1682:230:1;6730:108:0;;;;;;;;;;-1:-1:-1;6818:12:0;;6730:108;;;2063:25:1;;;2051:2;2036:18;6730:108:0;1917:177:1;8610:529:0;;;;;;;;;;-1:-1:-1;8610:529:0;;;;;:::i;:::-;;:::i;6572:93::-;;;;;;;;;;-1:-1:-1;6572:93:0;;6655:2;2702:36:1;;2690:2;2675:18;6572:93:0;2560:184:1;9548:297:0;;;;;;;;;;-1:-1:-1;9548:297:0;;;;;:::i;:::-;;:::i;30232:28::-;;;;;;;;;;-1:-1:-1;30232:28:0;;;;-1:-1:-1;;;;;30232:28:0;;;33346:126;;;;;;;;;;-1:-1:-1;33346:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;33436:28:0;33412:4;33436:28;;;:19;:28;;;;;;;;;33346:126;35471:122;;;;;;;;;;-1:-1:-1;35471:122:0;;;;;:::i;:::-;;:::i;32207:114::-;;;;;;;;;;-1:-1:-1;32207:114:0;;;;;:::i;:::-;;:::i;35281:182::-;;;;;;;;;;-1:-1:-1;35281:182:0;;;;;:::i;:::-;;:::i;30419:31::-;;;;;;;;;;;;;;;;30753:46;;;;;;;;;;-1:-1:-1;30753:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6901:177;;;;;;;;;;-1:-1:-1;6901:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;7052:18:0;7020:7;7052:18;;;;;;;;;;;;6901:177;17618:94;;;;;;;;;;;;;:::i;30310:49::-;;;;;;;;;;;;;;;;30474:75;;;;;;;;;;-1:-1:-1;30474:75:0;;;;-1:-1:-1;;;;;30474:75:0;;;30586:46;;;;;;;;;;;;;;;;16967:87;;;;;;;;;;-1:-1:-1;17040:6:0;;-1:-1:-1;;;;;17040:6:0;16967:87;;5829:104;;;;;;;;;;;;;:::i;32667:315::-;;;;;;;;;;-1:-1:-1;32667:315:0;;;;;:::i;:::-;;:::i;10348:482::-;;;;;;;;;;-1:-1:-1;10348:482:0;;;;;:::i;:::-;;:::i;7291:216::-;;;;;;;;;;-1:-1:-1;7291:216:0;;;;;:::i;:::-;;:::i;30269:34::-;;;;;;;;;;-1:-1:-1;30269:34:0;;;;-1:-1:-1;;;30269:34:0;;;;;;30957:57;;;;;;;;;;-1:-1:-1;30957:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32329:330;;;;;;;;;;-1:-1:-1;32329:330:0;;;;;:::i;:::-;;:::i;36183:223::-;;;;;;;;;;-1:-1:-1;36183:223:0;;;;;:::i;:::-;;:::i;7570:201::-;;;;;;;;;;-1:-1:-1;7570:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;7736:18:0;;;7704:7;7736:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7570:201;35640:285;;;;;;;;;;-1:-1:-1;35640:285:0;;;;;:::i;:::-;;:::i;17867:229::-;;;;;;;;;;-1:-1:-1;17867:229:0;;;;;:::i;:::-;;:::i;5610:100::-;5664:13;5697:5;5690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5610:100;:::o;7918:210::-;8037:4;8059:39;181:10;8082:7;8091:6;8059:8;:39::i;:::-;-1:-1:-1;8116:4:0;7918:210;;;;;:::o;35972:203::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;;;;;;;;;36094:15:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;36094:27:0::1;-1:-1:-1::0;;;;36094:27:0;;::::1;::::0;;;::::1;::::0;;;36132:21:::1;:35:::0;35972:203::o;8610:529::-;8750:4;8767:36;8777:6;8785:9;8796:6;8767:9;:36::i;:::-;-1:-1:-1;;;;;8843:19:0;;8816:24;8843:19;;;:11;:19;;;;;;;;181:10;8843:33;;;;;;;;8909:26;;;;8887:116;;;;-1:-1:-1;;;8887:116:0;;5315:2:1;8887:116:0;;;5297:21:1;5354:2;5334:18;;;5327:30;5393:34;5373:18;;;5366:62;-1:-1:-1;;;5444:18:1;;;5437:38;5492:19;;8887:116:0;5113:404:1;8887:116:0;9039:57;9048:6;181:10;9089:6;9070:16;:25;9039:8;:57::i;:::-;-1:-1:-1;9127:4:0;;8610:529;-1:-1:-1;;;;8610:529:0:o;9548:297::-;181:10;9663:4;9757:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9757:34:0;;;;;;;;;;9663:4;;9685:130;;9735:7;;9757:47;;9794:10;;9757:47;:::i;:::-;9685:8;:130::i;35471:122::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;35556:15:::1;:29:::0;;-1:-1:-1;;;;;;35556:29:0::1;-1:-1:-1::0;;;;;35556:29:0;;;::::1;::::0;;;::::1;::::0;;35471:122::o;32207:114::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32285:20:0;;;::::1;;::::0;;;:14:::1;:20;::::0;;;;:28;;-1:-1:-1;;32285:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32207:114::o;35281:182::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;35373:1:::1;35356:13;:18;;35348:68;;;::::0;-1:-1:-1;;;35348:68:0;;5989:2:1;35348:68:0::1;::::0;::::1;5971:21:1::0;6028:2;6008:18;;;6001:30;6067:34;6047:18;;;6040:62;-1:-1:-1;;;6118:18:1;;;6111:35;6163:19;;35348:68:0::1;5787:401:1::0;35348:68:0::1;35427:12;:28:::0;35281:182::o;17618:94::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;17683:21:::1;17701:1;17683:9;:21::i;:::-;17618:94::o:0;5829:104::-;5885:13;5918:7;5911:14;;;;;:::i;32667:315::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;32811:13:::1;::::0;-1:-1:-1;;;;;32803:21:0;;::::1;32811:13:::0;::::1;32803:21;;32781:141;;;::::0;-1:-1:-1;;;32781:141:0;;6395:2:1;32781:141:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:34;6453:18;;;6446:62;6544:34;6524:18;;;6517:62;-1:-1:-1;;;6595:19:1;;;6588:37;6642:19;;32781:141:0::1;6193:474:1::0;32781:141:0::1;32933:41;32962:4;32968:5;32933:28;:41::i;:::-;32667:315:::0;;:::o;10348:482::-;181:10;10468:4;10517:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10517:34:0;;;;;;;;;;10584:35;;;;10562:122;;;;-1:-1:-1;;;10562:122:0;;6874:2:1;10562:122:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:35;7048:19;;10562:122:0;6672:401:1;10562:122:0;10720:67;181:10;10743:7;10771:15;10752:16;:34;10720:8;:67::i;:::-;-1:-1:-1;10818:4:0;;10348:482;-1:-1:-1;;;10348:482:0:o;7291:216::-;7413:4;7435:42;181:10;7459:9;7470:6;7435:9;:42::i;32329:330::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32436:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;32414:137;;;::::0;-1:-1:-1;;;32414:137:0;;7280:2:1;32414:137:0::1;::::0;::::1;7262:21:1::0;7319:2;7299:18;;;7292:30;7358:34;7338:18;;;7331:62;-1:-1:-1;;;7409:18:1;;;7402:45;7464:19;;32414:137:0::1;7078:411:1::0;32414:137:0::1;-1:-1:-1::0;;;;;32562:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32562:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32617:34;;1212:41:1;;;32617:34:0::1;::::0;1185:18:1;32617:34:0::1;;;;;;;32329:330:::0;;:::o;36183:223::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;36307:15:::1;:52:::0;;-1:-1:-1;;;;;36307:52:0;;::::1;-1:-1:-1::0;;;;;;36307:52:0;;::::1;;::::0;;;36370:13:::1;:28:::0;;;;;::::1;::::0;::::1;;::::0;;36183:223::o;35640:285::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;35725:18:::1;:9:::0;35737:6:::1;35725:18;:::i;:::-;35711:11;:32:::0;35798:24:::1;35816:5;35798:13;6818:12:::0;;;6730:108;35798:13:::1;:17:::0;::::1;:24::i;:::-;35776:18;:9:::0;35788:6:::1;35776:18;:::i;:::-;:46;;35754:163;;;::::0;-1:-1:-1;;;35754:163:0;;7869:2:1;35754:163:0::1;::::0;::::1;7851:21:1::0;7908:2;7888:18;;;7881:30;7947:34;7927:18;;;7920:62;8018:34;7998:18;;;7991:62;-1:-1:-1;;;8069:19:1;;;8062:34;8113:19;;35754:163:0::1;7667:471:1::0;35754:163:0::1;35640:285:::0;:::o;17867:229::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17970:22:0;::::1;17948:110;;;::::0;-1:-1:-1;;;17948:110:0;;8345:2:1;17948:110:0::1;::::0;::::1;8327:21:1::0;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:36;8520:19;;17948:110:0::1;8143:402:1::0;17948:110:0::1;18069:19;18079:8;18069:9;:19::i;14178:380::-:0;-1:-1:-1;;;;;14314:19:0;;14306:68;;;;-1:-1:-1;;;14306:68:0;;8752:2:1;14306:68:0;;;8734:21:1;8791:2;8771:18;;;8764:30;8830:34;8810:18;;;8803:62;-1:-1:-1;;;8881:18:1;;;8874:34;8925:19;;14306:68:0;8550:400:1;14306:68:0;-1:-1:-1;;;;;14393:21:0;;14385:68;;;;-1:-1:-1;;;14385:68:0;;9157:2:1;14385:68:0;;;9139:21:1;9196:2;9176:18;;;9169:30;9235:34;9215:18;;;9208:62;-1:-1:-1;;;9286:18:1;;;9279:32;9328:19;;14385:68:0;8955:398:1;14385:68:0;-1:-1:-1;;;;;14466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14518:32;;2063:25:1;;;14518:32:0;;2036:18:1;14518:32:0;;;;;;;14178:380;;;:::o;33480:1711::-;-1:-1:-1;;;;;33612:18:0;;33604:68;;;;-1:-1:-1;;;33604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33691:16:0;;33683:64;;;;-1:-1:-1;;;33683:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33781:20:0;;;;;;:14;:20;;;;;;;;33780:21;:44;;;;-1:-1:-1;;;;;;33806:18:0;;;;;;:14;:18;;;;;;;;33805:19;33780:44;33758:116;;;;-1:-1:-1;;;33758:116:0;;10370:2:1;33758:116:0;;;10352:21:1;10409:2;10389:18;;;10382:30;-1:-1:-1;;;10428:18:1;;;10421:52;10490:18;;33758:116:0;10168:346:1;33758:116:0;33889:11;33885:93;;33917:28;33933:4;33939:2;33943:1;33917:15;:28::i;:::-;33480:1711;;;:::o;33885:93::-;17040:6;;-1:-1:-1;;;;;33994:15:0;;;17040:6;;33994:15;;;;:32;;-1:-1:-1;17040:6:0;;-1:-1:-1;;;;;34013:13:0;;;17040:6;;34013:13;;33994:32;33990:433;;;34073:13;;-1:-1:-1;;;;;34065:21:0;;;34073:13;;34065:21;:72;;;;-1:-1:-1;34121:15:0;;-1:-1:-1;;;;;34107:30:0;;;34121:15;;34107:30;;34065:72;:117;;;;-1:-1:-1;;;;;;34159:23:0;;;;;;:19;:23;;;;;;;;34158:24;34065:117;:153;;;;-1:-1:-1;34203:15:0;;-1:-1:-1;;;34203:15:0;;;;34065:153;34043:369;;;-1:-1:-1;;;;;34290:12:0;;;;;;:8;:12;;;;;;34305:15;-1:-1:-1;34282:39:0;;;;;;34374:21;;34355:41;;:15;:41;:::i;:::-;-1:-1:-1;;;;;34340:12:0;;;;;;:8;:12;;;;;:56;34043:369;-1:-1:-1;;;;;34440:25:0;;;;;;:19;:25;;;;;;;;34439:26;:54;;;;-1:-1:-1;;;;;;34470:23:0;;;;;;:19;:23;;;;;;;;34469:24;34439:54;34435:228;;;34546:11;;34536:6;:21;;34510:141;;;;-1:-1:-1;;;34510:141:0;;10721:2:1;34510:141:0;;;10703:21:1;10760:2;10740:18;;;10733:30;10799:34;10779:18;;;10772:62;10870:28;10850:18;;;10843:56;10916:19;;34510:141:0;10519:422:1;34510:141:0;-1:-1:-1;;;;;34765:25:0;;;;;;:19;:25;;;;;;;;34764:26;:54;;;;-1:-1:-1;;;;;;34795:23:0;;;;;;:19;:23;;;;;;;;34794:24;34764:54;34760:378;;;-1:-1:-1;;;;;34857:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;34892:29:0;;;;;;:25;:29;;;;;;;;34857:64;34835:292;;;34956:12;34971:33;35000:3;34971:24;34982:12;;34971:6;:10;;:24;;;;:::i;:33::-;34956:48;-1:-1:-1;35032:16:0;:6;34956:48;35032:10;:16::i;:::-;35089:15;;35023:25;;-1:-1:-1;35067:44:0;;35083:4;;-1:-1:-1;;;;;35089:15:0;35106:4;35067:15;:44::i;:::-;34937:190;34835:292;35150:33;35166:4;35172:2;35176:6;35150:15;:33::i;18104:173::-;18179:6;;;-1:-1:-1;;;;;18196:17:0;;;-1:-1:-1;;;;;;18196:17:0;;;;;;;18229:40;;18179:6;;;18196:17;18179:6;;18229:40;;18160:16;;18229:40;18149:128;18104:173;:::o;32990:348::-;-1:-1:-1;;;;;33095:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;33073:151;;;;-1:-1:-1;;;33073:151:0;;11148:2:1;33073:151:0;;;11130:21:1;11187:2;11167:18;;;11160:30;11226:34;11206:18;;;11199:62;11297:31;11277:18;;;11270:59;11346:19;;33073:151:0;10946:425:1;33073:151:0;-1:-1:-1;;;;;33235:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33235:39:0;;;;;;;;;;33290:40;;33235:39;;:31;33290:40;;;32990:348;;:::o;27884:132::-;27942:7;27969:39;27973:1;27976;27969:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;27962:46;27884:132;-1:-1:-1;;;27884:132:0:o;11320:770::-;-1:-1:-1;;;;;11460:20:0;;11452:70;;;;-1:-1:-1;;;11452:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11541:23:0;;11533:71;;;;-1:-1:-1;;;11533:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11701:17:0;;11677:21;11701:17;;;;;;;;;;;11751:23;;;;11729:111;;;;-1:-1:-1;;;11729:111:0;;11578:2:1;11729:111:0;;;11560:21:1;11617:2;11597:18;;;11590:30;11656:34;11636:18;;;11629:62;-1:-1:-1;;;11707:18:1;;;11700:36;11753:19;;11729:111:0;11376:402:1;11729:111:0;-1:-1:-1;;;;;11876:17:0;;;:9;:17;;;;;;;;;;;11896:22;;;11876:42;;11940:20;;;;;;;;:30;;11912:6;;11876:9;11940:30;;11912:6;;11940:30;:::i;:::-;;;;;;;;12005:9;-1:-1:-1;;;;;11988:35:0;11997:6;-1:-1:-1;;;;;11988:35:0;;12016:6;11988:35;;;;2063:25:1;;2051:2;2036:18;;1917:177;11988:35:0;;;;;;;;11441:649;11320:770;;;:::o;26937:471::-;26995:7;27240:6;27236:47;;-1:-1:-1;27270:1:0;27263:8;;27236:47;27295:9;27307:5;27311:1;27307;:5;:::i;:::-;27295:17;-1:-1:-1;27340:1:0;27331:5;27335:1;27295:17;27331:5;:::i;:::-;:10;27323:56;;;;-1:-1:-1;;;27323:56:0;;12207:2:1;27323:56:0;;;12189:21:1;12246:2;12226:18;;;12219:30;12285:34;12265:18;;;12258:62;-1:-1:-1;;;12336:18:1;;;12329:31;12377:19;;27323:56:0;12005:397:1;26013:136:0;26071:7;26098:43;26102:1;26105;26098:43;;;;;;;;;;;;;;;;;:3;:43::i;28512:312::-;28632:7;28667:12;28660:5;28652:28;;;;-1:-1:-1;;;28652:28:0;;;;;;;;:::i;:::-;-1:-1:-1;28691:9:0;28703:5;28707:1;28703;:5;:::i;:::-;28691:17;28512:312;-1:-1:-1;;;;;28512:312:0:o;26452:226::-;26572:7;26608:12;26600:6;;;;26592:29;;;;-1:-1:-1;;;26592:29:0;;;;;;;;:::i;:::-;-1:-1:-1;26632:9:0;26644:5;26648:1;26644;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:160::-;1329:20;;1385:13;;1378:21;1368:32;;1358:60;;1414:1;1411;1404:12;1358:60;1264:160;;;:::o;1429:248::-;1494:6;1502;1555:2;1543:9;1534:7;1530:23;1526:32;1523:52;;;1571:1;1568;1561:12;1523:52;1594:26;1610:9;1594:26;:::i;2099:456::-;2176:6;2184;2192;2245:2;2233:9;2224:7;2220:23;2216:32;2213:52;;;2261:1;2258;2251:12;2213:52;2300:9;2287:23;2319:31;2344:5;2319:31;:::i;:::-;2369:5;-1:-1:-1;2426:2:1;2411:18;;2398:32;2439:33;2398:32;2439:33;:::i;:::-;2099:456;;2491:7;;-1:-1:-1;;;2545:2:1;2530:18;;;;2517:32;;2099:456::o;2957:247::-;3016:6;3069:2;3057:9;3048:7;3044:23;3040:32;3037:52;;;3085:1;3082;3075:12;3037:52;3124:9;3111:23;3143:31;3168:5;3143:31;:::i;3469:315::-;3534:6;3542;3595:2;3583:9;3574:7;3570:23;3566:32;3563:52;;;3611:1;3608;3601:12;3563:52;3650:9;3637:23;3669:31;3694:5;3669:31;:::i;:::-;3719:5;-1:-1:-1;3743:35:1;3774:2;3759:18;;3743:35;:::i;:::-;3733:45;;3469:315;;;;;:::o;3789:180::-;3848:6;3901:2;3889:9;3880:7;3876:23;3872:32;3869:52;;;3917:1;3914;3907:12;3869:52;-1:-1:-1;3940:23:1;;3789:180;-1:-1:-1;3789:180:1:o;3974:388::-;4042:6;4050;4103:2;4091:9;4082:7;4078:23;4074:32;4071:52;;;4119:1;4116;4109:12;4071:52;4158:9;4145:23;4177:31;4202:5;4177:31;:::i;:::-;4227:5;-1:-1:-1;4284:2:1;4269:18;;4256:32;4297:33;4256:32;4297:33;:::i;:::-;4349:7;4339:17;;;3974:388;;;;;:::o;4367:380::-;4446:1;4442:12;;;;4489;;;4510:61;;4564:4;4556:6;4552:17;4542:27;;4510:61;4617:2;4609:6;4606:14;4586:18;4583:38;4580:161;;;4663:10;4658:3;4654:20;4651:1;4644:31;4698:4;4695:1;4688:15;4726:4;4723:1;4716:15;4580:161;;4367:380;;;:::o;4752:356::-;4954:2;4936:21;;;4973:18;;;4966:30;5032:34;5027:2;5012:18;;5005:62;5099:2;5084:18;;4752:356::o;5522:127::-;5583:10;5578:3;5574:20;5571:1;5564:31;5614:4;5611:1;5604:15;5638:4;5635:1;5628:15;5654:128;5694:3;5725:1;5721:6;5718:1;5715:13;5712:39;;;5731:18;;:::i;:::-;-1:-1:-1;5767:9:1;;5654:128::o;7494:168::-;7534:7;7600:1;7596;7592:6;7588:14;7585:1;7582:21;7577:1;7570:9;7563:17;7559:45;7556:71;;;7607:18;;:::i;:::-;-1:-1:-1;7647:9:1;;7494:168::o;9358:401::-;9560:2;9542:21;;;9599:2;9579:18;;;9572:30;9638:34;9633:2;9618:18;;9611:62;-1:-1:-1;;;9704:2:1;9689:18;;9682:35;9749:3;9734:19;;9358:401::o;9764:399::-;9966:2;9948:21;;;10005:2;9985:18;;;9978:30;10044:34;10039:2;10024:18;;10017:62;-1:-1:-1;;;10110:2:1;10095:18;;10088:33;10153:3;10138:19;;9764:399::o;11783:217::-;11823:1;11849;11839:132;;11893:10;11888:3;11884:20;11881:1;11874:31;11928:4;11925:1;11918:15;11956:4;11953:1;11946:15;11839:132;-1:-1:-1;11985:9:1;;11783:217::o;12407:125::-;12447:4;12475:1;12472;12469:8;12466:34;;;12480:18;;:::i;:::-;-1:-1:-1;12517:9:1;;12407:125::o

Swarm Source

ipfs://e6ae1f8f292032506be25e002f6408ace7485e07cb5d1d8b66e0ca8fe0f09429
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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