ETH Price: $2,818.30 (+8.60%)
 

Overview

Max Total Supply

1,000,000,000 ROPE

Holders

102

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,525,078.394433415327630916 ROPE

Value
$0.00
0x1c8837013401E5C21FAe09BAFe8eC77830B8d0AD
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RobotPepe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-09
*/

// Telegram: https://t.me/RobotPepe


// SPDX-License-Identifier: MIT                                          
pragma solidity 0.8.19;


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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

interface IDividendDistributor {
    function setShare(address sender, uint256 amount, bool mode) external;
    function deposit(uint256 amount) external;
    function claimDividend(address shareholder) external;
    function getDividendsClaimedOf (address shareholder) external returns (uint256);
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    address public marketingWallet;

    uint256 public maxTxAmount;
    bool private swapping;
    uint256 public swapTokenThreashold;
    bool public swapEnabled = true;
    bool public tradingActive = false;

    uint256 public buyFee;
    uint256 public sellFee;
    uint256 public tokensForDistributor;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) private isBot;
    mapping (address => uint256) public lastDistributeTime;

    address private DividendDistributor;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    modifier inSwap() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }

    constructor() ERC20("RobotPepe.vip", "ROPE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000 * 1e18; // 1B
        swapTokenThreashold = totalSupply * 5 / 10000;
        maxTxAmount = totalSupply * 2 / 100;

        buyFee = 0;
        sellFee = 0;
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }
    
    function claimDividendFromDistributor() external {
        IDividendDistributor(DividendDistributor).claimDividend(msg.sender);
    }

    function getDividendsClaimedOfDistributor (address shareholder) external returns (uint256) {
        return IDividendDistributor(DividendDistributor).getDividendsClaimedOf(shareholder);
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function setDividendDistributor(address sender, address _dividendedDistributor) external onlyOwner {
        DividendDistributor = _dividendedDistributor;
        excludeFromFees(_dividendedDistributor, true);
        _approve(sender, _dividendedDistributor, type(uint).max);
    }
    
    function addBots(address[] memory isBot_) public onlyOwner {
        for (uint i = 0; i < isBot_.length; i++) {
            isBot[isBot_[i]] = true;
        }
    }

    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!tradingActive) {
            require(
                _isExcludedFromFees[from] || _isExcludedFromFees[to],
                "Trading is not active."
            );
        }
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!isBot[from] && !isBot[to], "You can't transfer tokens");
        
		uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokenThreashold;

        if(
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapForFees();
            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            if (automatedMarketMakerPairs[to]){
                fees = amount.mul(sellFee).div(100);
                IDividendDistributor(DividendDistributor)
                    .setShare(from, amount, automatedMarketMakerPairs[to]);
                tokensForDistributor += fees;
            }
            else if(automatedMarketMakerPairs[from]) {
        	    fees = amount.mul(buyFee).div(100);
                IDividendDistributor(DividendDistributor)
                    .setShare(from, amount, automatedMarketMakerPairs[to]);
                if(lastDistributeTime[to] == 0) lastDistributeTime[to] = block.timestamp;
                tokensForDistributor += fees;
            } else {
                IDividendDistributor(DividendDistributor)
                    .setShare(from, amount, !automatedMarketMakerPairs[to]);
            }
            
            if(fees > 0){
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }
    
    function updateMarketWallet(address newMarketWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketWallet, marketingWallet);
        marketingWallet = newMarketWallet;
    }

    function swapForFees() private inSwap {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDistributor;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        uint256 amountToSwapForETH = contractBalance;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForDividendDistributor = ethBalance.mul(tokensForDistributor).div(totalTokensToSwap);
    
        tokensForDistributor = 0;

        (success, ) = address(marketingWallet).call{
            value: ethForDividendDistributor
        }("");
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);
        
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    // fallbacks
    receive() external payable {

    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address[]","name":"isBot_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimDividendFromDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"shareholder","type":"address"}],"name":"getDividendsClaimedOfDistributor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastDistributeTime","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"_dividendedDistributor","type":"address"}],"name":"setDividendDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokenThreashold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDistributor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newMarketWallet","type":"address"}],"name":"updateMarketWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805461ffff191660011790553480156200001f57600080fd5b506040518060400160405280600d81526020016c0526f626f74506570652e76697609c1b81525060405180604001604052806004815260200163524f504560e01b8152508160039081620000749190620005d1565b506004620000838282620005d1565b5050506000620000986200031560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016391906200069d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d791906200069d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b91906200069d565b6001600160a01b031660a08190526000908152600f60205260409020805460ff191660011790556b033b2e3c9fd0803ce80000006127106200028f826005620006de565b6200029b9190620006f8565b6009556064620002ad826002620006de565b620002b99190620006f8565b6007556000600b819055600c55620002e5620002dd6005546001600160a01b031690565b600162000319565b620002f230600162000319565b6200030161dead600162000319565b6200030d3382620003d8565b505062000731565b3390565b6005546001600160a01b03163314620003795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004305760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000370565b6002546200043f9082620004c1565b6002556001600160a01b038216600090815260208190526040902054620004679082620004c1565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600080620004d083856200071b565b905083811015620005245760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000370565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055857607f821691505b6020821081036200057957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004bc57600081815260208120601f850160051c81016020861015620005a85750805b601f850160051c820191505b81811015620005c957828155600101620005b4565b505050505050565b81516001600160401b03811115620005ed57620005ed6200052d565b6200060581620005fe845462000543565b846200057f565b602080601f8311600181146200063d5760008415620006245750858301515b600019600386901b1c1916600185901b178555620005c9565b600085815260208120601f198616915b828110156200066e578886015182559484019460019091019084016200064d565b50858210156200068d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006b057600080fd5b81516001600160a01b03811681146200052457600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005275762000527620006c8565b6000826200071657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620005275762000527620006c8565b60805160a051611df26200076c600039600061037f0152600081816102960152818161176f0152818161182801526118640152611df26000f3fe6080604052600436106101fd5760003560e01c8063796caaf31161010d578063bbc0c742116100a0578063cc0151ee1161006f578063cc0151ee146105fb578063cc9f585d14610610578063d34628cc14610626578063dd62ed3e14610646578063f2fde38b1461068c57600080fd5b8063bbc0c74214610587578063c0246668146105a6578063c8c3d0d4146105c6578063c9567bf9146105e657600080fd5b8063a457c2d7116100dc578063a457c2d7146104ea578063a9059cbb1461050a578063a9d5d6c81461052a578063b62496f51461055757600080fd5b8063796caaf3146104815780638c0b5e22146104a15780638da5cb5b146104b757806395d89b41146104d557600080fd5b806339509351116101905780634fbee1931161015f5780634fbee193146103c35780636ddd1713146103fc57806370a0823114610416578063715018a61461044c57806375f0a8741461046157600080fd5b80633950935114610337578063470624021461035757806349bd5a5e1461036d5780634d474d42146103a157600080fd5b806318160ddd116101cc57806318160ddd146102d057806323b872dd146102e55780632b14ca5614610305578063313ce5671461031b57600080fd5b8063037bca141461020957806306fdde0314610232578063095ea7b3146102545780631694505e1461028457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021f60095481565b6040519081526020015b60405180910390f35b34801561023e57600080fd5b506102476106ac565b6040516102299190611948565b34801561026057600080fd5b5061027461026f3660046119be565b61073e565b6040519015158152602001610229565b34801561029057600080fd5b506102b87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610229565b3480156102dc57600080fd5b5060025461021f565b3480156102f157600080fd5b506102746103003660046119ea565b610755565b34801561031157600080fd5b5061021f600c5481565b34801561032757600080fd5b5060405160128152602001610229565b34801561034357600080fd5b506102746103523660046119be565b6107be565b34801561036357600080fd5b5061021f600b5481565b34801561037957600080fd5b506102b87f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ad57600080fd5b506103c16103bc366004611a2b565b6107f4565b005b3480156103cf57600080fd5b506102746103de366004611a2b565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561040857600080fd5b50600a546102749060ff1681565b34801561042257600080fd5b5061021f610431366004611a2b565b6001600160a01b031660009081526020819052604090205490565b34801561045857600080fd5b506103c1610884565b34801561046d57600080fd5b506006546102b8906001600160a01b031681565b34801561048d57600080fd5b506103c161049c366004611a48565b6108f8565b3480156104ad57600080fd5b5061021f60075481565b3480156104c357600080fd5b506005546001600160a01b03166102b8565b3480156104e157600080fd5b50610247610959565b3480156104f657600080fd5b506102746105053660046119be565b610968565b34801561051657600080fd5b506102746105253660046119be565b6109b7565b34801561053657600080fd5b5061021f610545366004611a2b565b60116020526000908152604090205481565b34801561056357600080fd5b50610274610572366004611a2b565b600f6020526000908152604090205460ff1681565b34801561059357600080fd5b50600a5461027490610100900460ff1681565b3480156105b257600080fd5b506103c16105c1366004611a81565b6109c4565b3480156105d257600080fd5b5061021f6105e1366004611a2b565b610a4d565b3480156105f257600080fd5b506103c1610abe565b34801561060757600080fd5b506103c1610af9565b34801561061c57600080fd5b5061021f600d5481565b34801561063257600080fd5b506103c1610641366004611aca565b610b58565b34801561065257600080fd5b5061021f610661366004611a48565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561069857600080fd5b506103c16106a7366004611a2b565b610bea565b6060600380546106bb90611b8f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e790611b8f565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600061074b338484610cd5565b5060015b92915050565b6000610762848484610dfa565b6107b484336107af85604051806060016040528060288152602001611d70602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611346565b610cd5565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161074b9185906107af9086611380565b6005546001600160a01b031633146108275760405162461bcd60e51b815260040161081e90611bc9565b60405180910390fd5b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108ae5760405162461bcd60e51b815260040161081e90611bc9565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109225760405162461bcd60e51b815260040161081e90611bc9565b601280546001600160a01b0319166001600160a01b0383161790556109488160016109c4565b6109558282600019610cd5565b5050565b6060600480546106bb90611b8f565b600061074b33846107af85604051806060016040528060258152602001611d98602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611346565b600061074b338484610dfa565b6005546001600160a01b031633146109ee5760405162461bcd60e51b815260040161081e90611bc9565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b601254604051631730cfdd60e21b81526001600160a01b0383811660048301526000921690635cc33f74906024016020604051808303816000875af1158015610a9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074f9190611bfe565b6005546001600160a01b03163314610ae85760405162461bcd60e51b815260040161081e90611bc9565b600a805461ffff1916610101179055565b601254604051630afbf02f60e11b81523360048201526001600160a01b03909116906315f7e05e90602401600060405180830381600087803b158015610b3e57600080fd5b505af1158015610b52573d6000803e3d6000fd5b50505050565b6005546001600160a01b03163314610b825760405162461bcd60e51b815260040161081e90611bc9565b60005b815181101561095557600160106000848481518110610ba657610ba6611c17565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610be281611c43565b915050610b85565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161081e90611bc9565b6001600160a01b038116610c795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081e565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610d375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081e565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600a54610100900460ff16610e8d576001600160a01b0383166000908152600e602052604090205460ff1680610e4857506001600160a01b0382166000908152600e602052604090205460ff165b610e8d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081e565b60008111610eef5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161081e565b6001600160a01b03831660009081526010602052604090205460ff16158015610f3157506001600160a01b03821660009081526010602052604090205460ff16155b610f7d5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774207472616e7366657220746f6b656e7300000000000000604482015260640161081e565b3060009081526020819052604090205460095481108015908190610fa35750600a5460ff165b8015610fb2575060085460ff16155b8015610fd757506001600160a01b0385166000908152600f602052604090205460ff16155b8015610ffc57506001600160a01b0385166000908152600e602052604090205460ff16155b801561102157506001600160a01b0384166000908152600e602052604090205460ff16155b15611046576008805460ff1916600117905561103b6113e6565b6008805460ff191690555b6008546001600160a01b0386166000908152600e602052604090205460ff9182161591168061108d57506001600160a01b0385166000908152600e602052604090205460ff165b15611096575060005b60008115611332576001600160a01b0386166000908152600f602052604090205460ff1615611182576110df60646110d9600c54886114d190919063ffffffff16565b90611553565b6012546001600160a01b038881166000908152600f6020526040908190205490516329cc05cf60e01b81528b83166004820152602481018a905260ff9091161515604482015292935016906329cc05cf90606401600060405180830381600087803b15801561114d57600080fd5b505af1158015611161573d6000803e3d6000fd5b5050505080600d60008282546111779190611c5c565b909155506113149050565b6001600160a01b0387166000908152600f602052604090205460ff1615611290576111bd60646110d9600b54886114d190919063ffffffff16565b6012546001600160a01b038881166000908152600f6020526040908190205490516329cc05cf60e01b81528b83166004820152602481018a905260ff9091161515604482015292935016906329cc05cf90606401600060405180830381600087803b15801561122b57600080fd5b505af115801561123f573d6000803e3d6000fd5b505050506001600160a01b038616600090815260116020526040812054900361127e576001600160a01b03861660009081526011602052604090204290555b80600d60008282546111779190611c5c565b6012546001600160a01b038781166000908152600f6020526040908190205490516329cc05cf60e01b81528a831660048201526024810189905260ff9091161560448201529116906329cc05cf90606401600060405180830381600087803b1580156112fb57600080fd5b505af115801561130f573d6000803e3d6000fd5b505050505b801561132557611325873083611595565b61132f8186611c6f565b94505b61133d878787611595565b50505050505050565b6000818484111561136a5760405162461bcd60e51b815260040161081e9190611948565b5060006113778486611c6f565b95945050505050565b60008061138d8385611c5c565b9050838110156113df5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161081e565b9392505050565b60085460ff166114cf576008805460ff1916600117905530600090815260208190526040812054600d549091506000821580611420575081155b1561142d575050506114c4565b824761143882611718565b600061144447836118d8565b90506000611461866110d9600d54856114d190919063ffffffff16565b6000600d8190556006546040519293506001600160a01b031691839181818185875af1925050503d80600081146114b4576040519150601f19603f3d011682016040523d82523d6000602084013e6114b9565b606091505b505050505050505050505b6008805460ff191690555b565b6000826000036114e35750600061074f565b60006114ef8385611c82565b9050826114fc8583611c99565b146113df5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161081e565b60006113df83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061191a565b6001600160a01b0383166115f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081e565b6001600160a01b03821661165b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081e565b61169881604051806060016040528060268152602001611d4a602691396001600160a01b0386166000908152602081905260409020549190611346565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546116c79082611380565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ded565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061174d5761174d611c17565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ef9190611cbb565b8160018151811061180257611802611c17565b60200260200101906001600160a01b031690816001600160a01b03168152505061184d307f000000000000000000000000000000000000000000000000000000000000000084610cd5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906118a2908590600090869030904290600401611cd8565b600060405180830381600087803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b505050505050565b60006113df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611346565b6000818361193b5760405162461bcd60e51b815260040161081e9190611948565b5060006113778486611c99565b600060208083528351808285015260005b8181101561197557858101830151858201604001528201611959565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146119ab57600080fd5b50565b80356119b981611996565b919050565b600080604083850312156119d157600080fd5b82356119dc81611996565b946020939093013593505050565b6000806000606084860312156119ff57600080fd5b8335611a0a81611996565b92506020840135611a1a81611996565b929592945050506040919091013590565b600060208284031215611a3d57600080fd5b81356113df81611996565b60008060408385031215611a5b57600080fd5b8235611a6681611996565b91506020830135611a7681611996565b809150509250929050565b60008060408385031215611a9457600080fd5b8235611a9f81611996565b915060208301358015158114611a7657600080fd5b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611add57600080fd5b823567ffffffffffffffff80821115611af557600080fd5b818501915085601f830112611b0957600080fd5b813581811115611b1b57611b1b611ab4565b8060051b604051601f19603f83011681018181108582111715611b4057611b40611ab4565b604052918252848201925083810185019188831115611b5e57600080fd5b938501935b82851015611b8357611b74856119ae565b84529385019392850192611b63565b98975050505050505050565b600181811c90821680611ba357607f821691505b602082108103611bc357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611c1057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c5557611c55611c2d565b5060010190565b8082018082111561074f5761074f611c2d565b8181038181111561074f5761074f611c2d565b808202811582820484141761074f5761074f611c2d565b600082611cb657634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611ccd57600080fd5b81516113df81611996565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d285784516001600160a01b031683529383019391830191600101611d03565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4c71efabfdd56fbb47a3979492f6fcae06220befc7fb913616dbeffc50f86a464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063796caaf31161010d578063bbc0c742116100a0578063cc0151ee1161006f578063cc0151ee146105fb578063cc9f585d14610610578063d34628cc14610626578063dd62ed3e14610646578063f2fde38b1461068c57600080fd5b8063bbc0c74214610587578063c0246668146105a6578063c8c3d0d4146105c6578063c9567bf9146105e657600080fd5b8063a457c2d7116100dc578063a457c2d7146104ea578063a9059cbb1461050a578063a9d5d6c81461052a578063b62496f51461055757600080fd5b8063796caaf3146104815780638c0b5e22146104a15780638da5cb5b146104b757806395d89b41146104d557600080fd5b806339509351116101905780634fbee1931161015f5780634fbee193146103c35780636ddd1713146103fc57806370a0823114610416578063715018a61461044c57806375f0a8741461046157600080fd5b80633950935114610337578063470624021461035757806349bd5a5e1461036d5780634d474d42146103a157600080fd5b806318160ddd116101cc57806318160ddd146102d057806323b872dd146102e55780632b14ca5614610305578063313ce5671461031b57600080fd5b8063037bca141461020957806306fdde0314610232578063095ea7b3146102545780631694505e1461028457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021f60095481565b6040519081526020015b60405180910390f35b34801561023e57600080fd5b506102476106ac565b6040516102299190611948565b34801561026057600080fd5b5061027461026f3660046119be565b61073e565b6040519015158152602001610229565b34801561029057600080fd5b506102b87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610229565b3480156102dc57600080fd5b5060025461021f565b3480156102f157600080fd5b506102746103003660046119ea565b610755565b34801561031157600080fd5b5061021f600c5481565b34801561032757600080fd5b5060405160128152602001610229565b34801561034357600080fd5b506102746103523660046119be565b6107be565b34801561036357600080fd5b5061021f600b5481565b34801561037957600080fd5b506102b87f000000000000000000000000858594c666e09c17e9080e6acf40221dae15679081565b3480156103ad57600080fd5b506103c16103bc366004611a2b565b6107f4565b005b3480156103cf57600080fd5b506102746103de366004611a2b565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561040857600080fd5b50600a546102749060ff1681565b34801561042257600080fd5b5061021f610431366004611a2b565b6001600160a01b031660009081526020819052604090205490565b34801561045857600080fd5b506103c1610884565b34801561046d57600080fd5b506006546102b8906001600160a01b031681565b34801561048d57600080fd5b506103c161049c366004611a48565b6108f8565b3480156104ad57600080fd5b5061021f60075481565b3480156104c357600080fd5b506005546001600160a01b03166102b8565b3480156104e157600080fd5b50610247610959565b3480156104f657600080fd5b506102746105053660046119be565b610968565b34801561051657600080fd5b506102746105253660046119be565b6109b7565b34801561053657600080fd5b5061021f610545366004611a2b565b60116020526000908152604090205481565b34801561056357600080fd5b50610274610572366004611a2b565b600f6020526000908152604090205460ff1681565b34801561059357600080fd5b50600a5461027490610100900460ff1681565b3480156105b257600080fd5b506103c16105c1366004611a81565b6109c4565b3480156105d257600080fd5b5061021f6105e1366004611a2b565b610a4d565b3480156105f257600080fd5b506103c1610abe565b34801561060757600080fd5b506103c1610af9565b34801561061c57600080fd5b5061021f600d5481565b34801561063257600080fd5b506103c1610641366004611aca565b610b58565b34801561065257600080fd5b5061021f610661366004611a48565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561069857600080fd5b506103c16106a7366004611a2b565b610bea565b6060600380546106bb90611b8f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e790611b8f565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600061074b338484610cd5565b5060015b92915050565b6000610762848484610dfa565b6107b484336107af85604051806060016040528060288152602001611d70602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611346565b610cd5565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161074b9185906107af9086611380565b6005546001600160a01b031633146108275760405162461bcd60e51b815260040161081e90611bc9565b60405180910390fd5b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108ae5760405162461bcd60e51b815260040161081e90611bc9565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146109225760405162461bcd60e51b815260040161081e90611bc9565b601280546001600160a01b0319166001600160a01b0383161790556109488160016109c4565b6109558282600019610cd5565b5050565b6060600480546106bb90611b8f565b600061074b33846107af85604051806060016040528060258152602001611d98602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611346565b600061074b338484610dfa565b6005546001600160a01b031633146109ee5760405162461bcd60e51b815260040161081e90611bc9565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b601254604051631730cfdd60e21b81526001600160a01b0383811660048301526000921690635cc33f74906024016020604051808303816000875af1158015610a9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074f9190611bfe565b6005546001600160a01b03163314610ae85760405162461bcd60e51b815260040161081e90611bc9565b600a805461ffff1916610101179055565b601254604051630afbf02f60e11b81523360048201526001600160a01b03909116906315f7e05e90602401600060405180830381600087803b158015610b3e57600080fd5b505af1158015610b52573d6000803e3d6000fd5b50505050565b6005546001600160a01b03163314610b825760405162461bcd60e51b815260040161081e90611bc9565b60005b815181101561095557600160106000848481518110610ba657610ba6611c17565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610be281611c43565b915050610b85565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161081e90611bc9565b6001600160a01b038116610c795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081e565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610d375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081e565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600a54610100900460ff16610e8d576001600160a01b0383166000908152600e602052604090205460ff1680610e4857506001600160a01b0382166000908152600e602052604090205460ff165b610e8d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081e565b60008111610eef5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161081e565b6001600160a01b03831660009081526010602052604090205460ff16158015610f3157506001600160a01b03821660009081526010602052604090205460ff16155b610f7d5760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774207472616e7366657220746f6b656e7300000000000000604482015260640161081e565b3060009081526020819052604090205460095481108015908190610fa35750600a5460ff165b8015610fb2575060085460ff16155b8015610fd757506001600160a01b0385166000908152600f602052604090205460ff16155b8015610ffc57506001600160a01b0385166000908152600e602052604090205460ff16155b801561102157506001600160a01b0384166000908152600e602052604090205460ff16155b15611046576008805460ff1916600117905561103b6113e6565b6008805460ff191690555b6008546001600160a01b0386166000908152600e602052604090205460ff9182161591168061108d57506001600160a01b0385166000908152600e602052604090205460ff165b15611096575060005b60008115611332576001600160a01b0386166000908152600f602052604090205460ff1615611182576110df60646110d9600c54886114d190919063ffffffff16565b90611553565b6012546001600160a01b038881166000908152600f6020526040908190205490516329cc05cf60e01b81528b83166004820152602481018a905260ff9091161515604482015292935016906329cc05cf90606401600060405180830381600087803b15801561114d57600080fd5b505af1158015611161573d6000803e3d6000fd5b5050505080600d60008282546111779190611c5c565b909155506113149050565b6001600160a01b0387166000908152600f602052604090205460ff1615611290576111bd60646110d9600b54886114d190919063ffffffff16565b6012546001600160a01b038881166000908152600f6020526040908190205490516329cc05cf60e01b81528b83166004820152602481018a905260ff9091161515604482015292935016906329cc05cf90606401600060405180830381600087803b15801561122b57600080fd5b505af115801561123f573d6000803e3d6000fd5b505050506001600160a01b038616600090815260116020526040812054900361127e576001600160a01b03861660009081526011602052604090204290555b80600d60008282546111779190611c5c565b6012546001600160a01b038781166000908152600f6020526040908190205490516329cc05cf60e01b81528a831660048201526024810189905260ff9091161560448201529116906329cc05cf90606401600060405180830381600087803b1580156112fb57600080fd5b505af115801561130f573d6000803e3d6000fd5b505050505b801561132557611325873083611595565b61132f8186611c6f565b94505b61133d878787611595565b50505050505050565b6000818484111561136a5760405162461bcd60e51b815260040161081e9190611948565b5060006113778486611c6f565b95945050505050565b60008061138d8385611c5c565b9050838110156113df5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161081e565b9392505050565b60085460ff166114cf576008805460ff1916600117905530600090815260208190526040812054600d549091506000821580611420575081155b1561142d575050506114c4565b824761143882611718565b600061144447836118d8565b90506000611461866110d9600d54856114d190919063ffffffff16565b6000600d8190556006546040519293506001600160a01b031691839181818185875af1925050503d80600081146114b4576040519150601f19603f3d011682016040523d82523d6000602084013e6114b9565b606091505b505050505050505050505b6008805460ff191690555b565b6000826000036114e35750600061074f565b60006114ef8385611c82565b9050826114fc8583611c99565b146113df5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161081e565b60006113df83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061191a565b6001600160a01b0383166115f95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081e565b6001600160a01b03821661165b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081e565b61169881604051806060016040528060268152602001611d4a602691396001600160a01b0386166000908152602081905260409020549190611346565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546116c79082611380565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ded565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061174d5761174d611c17565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ef9190611cbb565b8160018151811061180257611802611c17565b60200260200101906001600160a01b031690816001600160a01b03168152505061184d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906118a2908590600090869030904290600401611cd8565b600060405180830381600087803b1580156118bc57600080fd5b505af11580156118d0573d6000803e3d6000fd5b505050505050565b60006113df83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611346565b6000818361193b5760405162461bcd60e51b815260040161081e9190611948565b5060006113778486611c99565b600060208083528351808285015260005b8181101561197557858101830151858201604001528201611959565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146119ab57600080fd5b50565b80356119b981611996565b919050565b600080604083850312156119d157600080fd5b82356119dc81611996565b946020939093013593505050565b6000806000606084860312156119ff57600080fd5b8335611a0a81611996565b92506020840135611a1a81611996565b929592945050506040919091013590565b600060208284031215611a3d57600080fd5b81356113df81611996565b60008060408385031215611a5b57600080fd5b8235611a6681611996565b91506020830135611a7681611996565b809150509250929050565b60008060408385031215611a9457600080fd5b8235611a9f81611996565b915060208301358015158114611a7657600080fd5b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611add57600080fd5b823567ffffffffffffffff80821115611af557600080fd5b818501915085601f830112611b0957600080fd5b813581811115611b1b57611b1b611ab4565b8060051b604051601f19603f83011681018181108582111715611b4057611b40611ab4565b604052918252848201925083810185019188831115611b5e57600080fd5b938501935b82851015611b8357611b74856119ae565b84529385019392850192611b63565b98975050505050505050565b600181811c90821680611ba357607f821691505b602082108103611bc357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611c1057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c5557611c55611c2d565b5060010190565b8082018082111561074f5761074f611c2d565b8181038181111561074f5761074f611c2d565b808202811582820484141761074f5761074f611c2d565b600082611cb657634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611ccd57600080fd5b81516113df81611996565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d285784516001600160a01b031683529383019391830191600101611d03565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a4c71efabfdd56fbb47a3979492f6fcae06220befc7fb913616dbeffc50f86a464736f6c63430008130033

Deployed Bytecode Sourcemap

27730:7500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28014:34;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;28014:34:0;;;;;;;;13957:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16124:169::-;;;;;;;;;;-1:-1:-1;16124:169:0;;;;;:::i;:::-;;:::i;:::-;;;1509:14:1;;1502:22;1484:41;;1472:2;1457:18;16124:169:0;1344:187:1;27809:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1727:32:1;;;1709:51;;1697:2;1682:18;27809:51:0;1536:230:1;15077:108:0;;;;;;;;;;-1:-1:-1;15165:12:0;;15077:108;;16775:355;;;;;;;;;;-1:-1:-1;16775:355:0;;;;;:::i;:::-;;:::i;28162:22::-;;;;;;;;;;;;;;;;14919:93;;;;;;;;;;-1:-1:-1;14919:93:0;;15002:2;2374:36:1;;2362:2;2347:18;14919:93:0;2232:184:1;17539:218:0;;;;;;;;;;-1:-1:-1;17539:218:0;;;;;:::i;:::-;;:::i;28134:21::-;;;;;;;;;;;;;;;;27867:38;;;;;;;;;;;;;;;33517:219;;;;;;;;;;-1:-1:-1;33517:219:0;;;;;:::i;:::-;;:::i;:::-;;30260:125;;;;;;;;;;-1:-1:-1;30260:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;30349:28:0;30325:4;30349:28;;;:19;:28;;;;;;;;;30260:125;28055:30;;;;;;;;;;-1:-1:-1;28055:30:0;;;;;;;;15248:127;;;;;;;;;;-1:-1:-1;15248:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;15349:18:0;15322:7;15349:18;;;;;;;;;;;;15248:127;6389:148;;;;;;;;;;;;;:::i;27914:30::-;;;;;;;;;;-1:-1:-1;27914:30:0;;;;-1:-1:-1;;;;;27914:30:0;;;30531:285;;;;;;;;;;-1:-1:-1;30531:285:0;;;;;:::i;:::-;;:::i;27953:26::-;;;;;;;;;;;;;;;;5747:79;;;;;;;;;;-1:-1:-1;5812:6:0;;-1:-1:-1;;;;;5812:6:0;5747:79;;14176:104;;;;;;;;;;;;;:::i;18260:269::-;;;;;;;;;;-1:-1:-1;18260:269:0;;;;;:::i;:::-;;:::i;15588:175::-;;;;;;;;;;-1:-1:-1;15588:175:0;;;;;:::i;:::-;;:::i;28406:54::-;;;;;;;;;;-1:-1:-1;28406:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;28295:58;;;;;;;;;;-1:-1:-1;28295:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28092:33;;;;;;;;;;-1:-1:-1;28092:33:0;;;;;;;;;;;30070:182;;;;;;;;;;-1:-1:-1;30070:182:0;;;;;:::i;:::-;;:::i;29865:193::-;;;;;;;;;;-1:-1:-1;29865:193:0;;;;;:::i;:::-;;:::i;31004:110::-;;;;;;;;;;;;;:::i;29722:135::-;;;;;;;;;;;;;:::i;28191:35::-;;;;;;;;;;;;;;;;30828:168;;;;;;;;;;-1:-1:-1;30828:168:0;;;;;:::i;:::-;;:::i;15826:151::-;;;;;;;;;;-1:-1:-1;15826:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;15942:18:0;;;15915:7;15942:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15826:151;6692:244;;;;;;;;;;-1:-1:-1;6692:244:0;;;;;:::i;:::-;;:::i;13957:100::-;14011:13;14044:5;14037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13957:100;:::o;16124:169::-;16207:4;16224:39;4981:10;16247:7;16256:6;16224:8;:39::i;:::-;-1:-1:-1;16281:4:0;16124:169;;;;;:::o;16775:355::-;16915:4;16932:36;16942:6;16950:9;16961:6;16932:9;:36::i;:::-;16979:121;16988:6;4981:10;17010:89;17048:6;17010:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17010:19:0;;;;;;:11;:19;;;;;;;;4981:10;17010:33;;;;;;;;;;:37;:89::i;:::-;16979:8;:121::i;:::-;-1:-1:-1;17118:4:0;16775:355;;;;;:::o;17539:218::-;4981:10;17627:4;17676:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17676:34:0;;;;;;;;;;17627:4;;17644:83;;17667:7;;17676:50;;17715:10;17676:38;:50::i;33517:219::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;;;;;;;;;33668:15:::1;::::0;33628:56:::1;::::0;-1:-1:-1;;;;;33668:15:0;;::::1;::::0;33628:56;::::1;::::0;::::1;::::0;33668:15:::1;::::0;33628:56:::1;33695:15;:33:::0;;-1:-1:-1;;;;;;33695:33:0::1;-1:-1:-1::0;;;;;33695:33:0;;;::::1;::::0;;;::::1;::::0;;33517:219::o;6389:148::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;6480:6:::1;::::0;6459:40:::1;::::0;6496:1:::1;::::0;-1:-1:-1;;;;;6480:6:0::1;::::0;6459:40:::1;::::0;6496:1;;6459:40:::1;6510:6;:19:::0;;-1:-1:-1;;;;;;6510:19:0::1;::::0;;6389:148::o;30531:285::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;30641:19:::1;:44:::0;;-1:-1:-1;;;;;;30641:44:0::1;-1:-1:-1::0;;;;;30641:44:0;::::1;;::::0;;30696:45:::1;30641:44:::0;-1:-1:-1;30696:15:0::1;:45::i;:::-;30752:56;30761:6;30769:22;-1:-1:-1::0;;30752:8:0::1;:56::i;:::-;30531:285:::0;;:::o;14176:104::-;14232:13;14265:7;14258:14;;;;;:::i;18260:269::-;18353:4;18370:129;4981:10;18393:7;18402:96;18441:15;18402:96;;;;;;;;;;;;;;;;;4981:10;18402:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18402:34:0;;;;;;;;;;;;:38;:96::i;15588:175::-;15674:4;15691:42;4981:10;15715:9;15726:6;15691:9;:42::i;30070:182::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30155:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30155:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30210:34;;1484:41:1;;;30210:34:0::1;::::0;1457:18:1;30210:34:0::1;;;;;;;30070:182:::0;;:::o;29865:193::-;29995:19;;29974:76;;-1:-1:-1;;;29974:76:0;;-1:-1:-1;;;;;1727:32:1;;;29974:76:0;;;1709:51:1;29947:7:0;;29995:19;;29974:63;;1682:18:1;;29974:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;31004:110::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;31057:13:::1;:20:::0;;-1:-1:-1;;31088:18:0;;;;;31004:110::o;29722:135::-;29803:19;;29782:67;;-1:-1:-1;;;29782:67:0;;29838:10;29782:67;;;1709:51:1;-1:-1:-1;;;;;29803:19:0;;;;29782:55;;1682:18:1;;29782:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29722:135::o;30828:168::-;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;30903:6:::1;30898:91;30919:6;:13;30915:1;:17;30898:91;;;30973:4;30954:5;:16;30960:6;30967:1;30960:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;30954:16:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;30954:16:0;:23;;-1:-1:-1;;30954:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30934:3;::::1;::::0;::::1;:::i;:::-;;;;30898:91;;6692:244:::0;5959:6;;-1:-1:-1;;;;;5959:6:0;4981:10;5959:22;5951:67;;;;-1:-1:-1;;;5951:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6781:22:0;::::1;6773:73;;;::::0;-1:-1:-1;;;6773:73:0;;6494:2:1;6773:73:0::1;::::0;::::1;6476:21:1::0;6533:2;6513:18;;;6506:30;6572:34;6552:18;;;6545:62;-1:-1:-1;;;6623:18:1;;;6616:36;6669:19;;6773:73:0::1;6292:402:1::0;6773:73:0::1;6883:6;::::0;6862:38:::1;::::0;-1:-1:-1;;;;;6862:38:0;;::::1;::::0;6883:6:::1;::::0;6862:38:::1;::::0;6883:6:::1;::::0;6862:38:::1;6911:6;:17:::0;;-1:-1:-1;;;;;;6911:17:0::1;-1:-1:-1::0;;;;;6911:17:0;;;::::1;::::0;;;::::1;::::0;;6692:244::o;21446:380::-;-1:-1:-1;;;;;21582:19:0;;21574:68;;;;-1:-1:-1;;;21574:68:0;;6901:2:1;21574:68:0;;;6883:21:1;6940:2;6920:18;;;6913:30;6979:34;6959:18;;;6952:62;-1:-1:-1;;;7030:18:1;;;7023:34;7074:19;;21574:68:0;6699:400:1;21574:68:0;-1:-1:-1;;;;;21661:21:0;;21653:68;;;;-1:-1:-1;;;21653:68:0;;7306:2:1;21653:68:0;;;7288:21:1;7345:2;7325:18;;;7318:30;7384:34;7364:18;;;7357:62;-1:-1:-1;;;7435:18:1;;;7428:32;7477:19;;21653:68:0;7104:398:1;21653:68:0;-1:-1:-1;;;;;21734:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21786:32;;160:25:1;;;21786:32:0;;133:18:1;21786:32:0;;;;;;;;21446:380;;;:::o;31126:2379::-;31255:13;;;;;;;31250:183;;-1:-1:-1;;;;;31311:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31340:23:0;;;;;;:19;:23;;;;;;;;31311:52;31285:136;;;;-1:-1:-1;;;31285:136:0;;7709:2:1;31285:136:0;;;7691:21:1;7748:2;7728:18;;;7721:30;-1:-1:-1;;;7767:18:1;;;7760:52;7829:18;;31285:136:0;7507:346:1;31285:136:0;31460:1;31451:6;:10;31443:64;;;;-1:-1:-1;;;31443:64:0;;8060:2:1;31443:64:0;;;8042:21:1;8099:2;8079:18;;;8072:30;8138:34;8118:18;;;8111:62;-1:-1:-1;;;8189:18:1;;;8182:39;8238:19;;31443:64:0;7858:405:1;31443:64:0;-1:-1:-1;;;;;31527:11:0;;;;;;:5;:11;;;;;;;;31526:12;:26;;;;-1:-1:-1;;;;;;31543:9:0;;;;;;:5;:9;;;;;;;;31542:10;31526:26;31518:64;;;;-1:-1:-1;;;31518:64:0;;8470:2:1;31518:64:0;;;8452:21:1;8509:2;8489:18;;;8482:30;8548:27;8528:18;;;8521:55;8593:18;;31518:64:0;8268:349:1;31518:64:0;31646:4;31597:28;15349:18;;;;;;;;;;;31702:19;;31678:43;;;;;;;31751:35;;-1:-1:-1;31775:11:0;;;;31751:35;:61;;;;-1:-1:-1;31804:8:0;;;;31803:9;31751:61;:110;;;;-1:-1:-1;;;;;;31830:31:0;;;;;;:25;:31;;;;;;;;31829:32;31751:110;:153;;;;-1:-1:-1;;;;;;31879:25:0;;;;;;:19;:25;;;;;;;;31878:26;31751:153;:194;;;;-1:-1:-1;;;;;;31922:23:0;;;;;;:19;:23;;;;;;;;31921:24;31751:194;31734:324;;;31972:8;:15;;-1:-1:-1;;31972:15:0;31983:4;31972:15;;;32002:13;:11;:13::i;:::-;32030:8;:16;;-1:-1:-1;;32030:16:0;;;31734:324;32094:8;;-1:-1:-1;;;;;32203:25:0;;32078:12;32203:25;;;:19;:25;;;;;;32094:8;;;;32093:9;;32203:25;;:52;;-1:-1:-1;;;;;;32232:23:0;;;;;;:19;:23;;;;;;;;32203:52;32200:99;;;-1:-1:-1;32282:5:0;32200:99;32319:12;32423:7;32420:1032;;;-1:-1:-1;;;;;32450:29:0;;;;;;:25;:29;;;;;;;;32446:841;;;32506:28;32530:3;32506:19;32517:7;;32506:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;32574:19;;-1:-1:-1;;;;;32640:29:0;;;32574:19;32640:29;;;:25;:29;;;;;;;;32553:117;;-1:-1:-1;;;32553:117:0;;8836:32:1;;;32553:117:0;;;8818:51:1;8885:18;;;8878:34;;;32640:29:0;;;;8955:14:1;8948:22;8928:18;;;8921:50;32499:35:0;;-1:-1:-1;32574:19:0;;32553:72;;8791:18:1;;32553:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32713:4;32689:20;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;32446:841:0;;-1:-1:-1;32446:841:0;;-1:-1:-1;;;;;32755:31:0;;;;;;:25;:31;;;;;;;;32752:535;;;32811:27;32834:3;32811:18;32822:6;;32811;:10;;:18;;;;:::i;:27::-;32878:19;;-1:-1:-1;;;;;32944:29:0;;;32878:19;32944:29;;;:25;:29;;;;;;;;32857:117;;-1:-1:-1;;;32857:117:0;;8836:32:1;;;32857:117:0;;;8818:51:1;8885:18;;;8878:34;;;32944:29:0;;;;8955:14:1;8948:22;8928:18;;;8921:50;32804:34:0;;-1:-1:-1;32878:19:0;;32857:72;;8791:18:1;;32857:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;32996:22:0;;;;;;:18;:22;;;;;;:27;;32993:72;;-1:-1:-1;;;;;33025:22:0;;;;;;:18;:22;;;;;33050:15;33025:40;;32993:72;33108:4;33084:20;;:28;;;;;;;:::i;32752:535::-;33174:19;;-1:-1:-1;;;;;33241:29:0;;;33174:19;33241:29;;;:25;:29;;;;;;;;33153:118;;-1:-1:-1;;;33153:118:0;;8836:32:1;;;33153:118:0;;;8818:51:1;8885:18;;;8878:34;;;33241:29:0;;;;33240:30;8928:18:1;;;8921:50;33174:19:0;;;33153:72;;8791:18:1;;33153:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32752:535;33318:8;;33315:89;;33346:42;33362:4;33376;33383;33346:15;:42::i;:::-;33426:14;33436:4;33426:14;;:::i;:::-;;;32420:1032;33464:33;33480:4;33486:2;33490:6;33464:15;:33::i;:::-;31239:2266;;;;31126:2379;;;:::o;1311:192::-;1397:7;1433:12;1425:6;;;;1417:29;;;;-1:-1:-1;;;1417:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1457:9:0;1469:5;1473:1;1469;:5;:::i;:::-;1457:17;1311:192;-1:-1:-1;;;;;1311:192:0:o;408:181::-;466:7;;498:5;502:1;498;:5;:::i;:::-;486:17;;527:1;522;:6;;514:46;;;;-1:-1:-1;;;514:46:0;;9447:2:1;514:46:0;;;9429:21:1;9486:2;9466:18;;;9459:30;9525:29;9505:18;;;9498:57;9572:18;;514:46:0;9245:351:1;514:46:0;580:1;408:181;-1:-1:-1;;;408:181:0:o;33744:815::-;28735:8;;;;28730:104;;28760:8;:15;;-1:-1:-1;;28760:15:0;28771:4;28760:15;;;33837:4:::1;-1:-1:-1::0;15349:18:0;;;;;;;;;;;33882:20:::1;::::0;33793:50;;-1:-1:-1;33854:25:0::1;33949:20:::0;;;:46:::1;;-1:-1:-1::0;33973:22:0;;33949:46:::1;33946:60;;;33998:7;;;;;33946:60;34055:15:::0;34119:21:::1;34153:36;34055:15:::0;34153:16:::1;:36::i;:::-;34211:18;34232:44;:21;34258:17:::0;34232:25:::1;:44::i;:::-;34211:65;;34297:33;34333:59;34374:17;34333:36;34348:20;;34333:10;:14;;:36;;;;:::i;:59::-;34432:1;34409:20;:24:::0;;;34468:15:::1;::::0;34460:91:::1;::::0;34297:95;;-1:-1:-1;;;;;;34468:15:0::1;::::0;34297:95;;34460:91;34432:1;34460:91;34297:95;34468:15;34460:91:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;;;;28790:1:0::1;28806:8:::0;:16;;-1:-1:-1;;28806:16:0;;;28730:104;33744:815::o;1762:471::-;1820:7;2065:1;2070;2065:6;2061:47;;-1:-1:-1;2095:1:0;2088:8;;2061:47;2120:9;2132:5;2136:1;2132;:5;:::i;:::-;2120:17;-1:-1:-1;2165:1:0;2156:5;2160:1;2120:17;2156:5;:::i;:::-;:10;2148:56;;;;-1:-1:-1;;;2148:56:0;;10408:2:1;2148:56:0;;;10390:21:1;10447:2;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;-1:-1:-1;;;10537:18:1;;;10530:31;10578:19;;2148:56:0;10206:397:1;2709:132:0;2767:7;2794:39;2798:1;2801;2794:39;;;;;;;;;;;;;;;;;:3;:39::i;19019:573::-;-1:-1:-1;;;;;19159:20:0;;19151:70;;;;-1:-1:-1;;;19151:70:0;;10810:2:1;19151:70:0;;;10792:21:1;10849:2;10829:18;;;10822:30;10888:34;10868:18;;;10861:62;-1:-1:-1;;;10939:18:1;;;10932:35;10984:19;;19151:70:0;10608:401:1;19151:70:0;-1:-1:-1;;;;;19240:23:0;;19232:71;;;;-1:-1:-1;;;19232:71:0;;11216:2:1;19232:71:0;;;11198:21:1;11255:2;11235:18;;;11228:30;11294:34;11274:18;;;11267:62;-1:-1:-1;;;11345:18:1;;;11338:33;11388:19;;19232:71:0;11014:399:1;19232:71:0;19396;19418:6;19396:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19396:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19376:17:0;;;:9;:17;;;;;;;;;;;:91;;;;19501:20;;;;;;;:32;;19526:6;19501:24;:32::i;:::-;-1:-1:-1;;;;;19478:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19549:35;160:25:1;;;19478:20:0;;19549:35;;;;;;133:18:1;19549:35:0;14:177:1;34567:597:0;34717:16;;;34731:1;34717:16;;;;;;;;34693:21;;34717:16;;;;;;;;;;-1:-1:-1;34717:16:0;34693:40;;34762:4;34744;34749:1;34744:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34744:23:0;;;-1:-1:-1;;;;;34744:23:0;;;;;34788:15;-1:-1:-1;;;;;34788:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34778:4;34783:1;34778:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34778:32:0;;;-1:-1:-1;;;;;34778:32:0;;;;;34823:62;34840:4;34855:15;34873:11;34823:8;:62::i;:::-;34932:224;;-1:-1:-1;;;34932:224:0;;-1:-1:-1;;;;;34932:15:0;:66;;;;:224;;35013:11;;35039:1;;35083:4;;35110;;35130:15;;34932:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34622:542;34567:597;:::o;872:136::-;930:7;957:43;961:1;964;957:43;;;;;;;;;;;;;;;;;:3;:43::i;3337:278::-;3423:7;3458:12;3451:5;3443:28;;;;-1:-1:-1;;;3443:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3482:9:0;3494:5;3498:1;3494;:5;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:134::-;953:20;;982:31;953:20;982:31;:::i;:::-;885:134;;;:::o;1024:315::-;1092:6;1100;1153:2;1141:9;1132:7;1128:23;1124:32;1121:52;;;1169:1;1166;1159:12;1121:52;1208:9;1195:23;1227:31;1252:5;1227:31;:::i;:::-;1277:5;1329:2;1314:18;;;;1301:32;;-1:-1:-1;;;1024:315:1:o;1771:456::-;1848:6;1856;1864;1917:2;1905:9;1896:7;1892:23;1888:32;1885:52;;;1933:1;1930;1923:12;1885:52;1972:9;1959:23;1991:31;2016:5;1991:31;:::i;:::-;2041:5;-1:-1:-1;2098:2:1;2083:18;;2070:32;2111:33;2070:32;2111:33;:::i;:::-;1771:456;;2163:7;;-1:-1:-1;;;2217:2:1;2202:18;;;;2189:32;;1771:456::o;2629:247::-;2688:6;2741:2;2729:9;2720:7;2716:23;2712:32;2709:52;;;2757:1;2754;2747:12;2709:52;2796:9;2783:23;2815:31;2840:5;2815:31;:::i;2881:388::-;2949:6;2957;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:31;3109:5;3084:31;:::i;:::-;3134:5;-1:-1:-1;3191:2:1;3176:18;;3163:32;3204:33;3163:32;3204:33;:::i;:::-;3256:7;3246:17;;;2881:388;;;;;:::o;3274:416::-;3339:6;3347;3400:2;3388:9;3379:7;3375:23;3371:32;3368:52;;;3416:1;3413;3406:12;3368:52;3455:9;3442:23;3474:31;3499:5;3474:31;:::i;:::-;3524:5;-1:-1:-1;3581:2:1;3566:18;;3553:32;3623:15;;3616:23;3604:36;;3594:64;;3654:1;3651;3644:12;3695:127;3756:10;3751:3;3747:20;3744:1;3737:31;3787:4;3784:1;3777:15;3811:4;3808:1;3801:15;3827:1121;3911:6;3942:2;3985;3973:9;3964:7;3960:23;3956:32;3953:52;;;4001:1;3998;3991:12;3953:52;4041:9;4028:23;4070:18;4111:2;4103:6;4100:14;4097:34;;;4127:1;4124;4117:12;4097:34;4165:6;4154:9;4150:22;4140:32;;4210:7;4203:4;4199:2;4195:13;4191:27;4181:55;;4232:1;4229;4222:12;4181:55;4268:2;4255:16;4290:2;4286;4283:10;4280:36;;;4296:18;;:::i;:::-;4342:2;4339:1;4335:10;4374:2;4368:9;4437:2;4433:7;4428:2;4424;4420:11;4416:25;4408:6;4404:38;4492:6;4480:10;4477:22;4472:2;4460:10;4457:18;4454:46;4451:72;;;4503:18;;:::i;:::-;4539:2;4532:22;4589:18;;;4623:15;;;;-1:-1:-1;4665:11:1;;;4661:20;;;4693:19;;;4690:39;;;4725:1;4722;4715:12;4690:39;4749:11;;;;4769:148;4785:6;4780:3;4777:15;4769:148;;;4851:23;4870:3;4851:23;:::i;:::-;4839:36;;4802:12;;;;4895;;;;4769:148;;;4936:6;3827:1121;-1:-1:-1;;;;;;;;3827:1121:1:o;4953:380::-;5032:1;5028:12;;;;5075;;;5096:61;;5150:4;5142:6;5138:17;5128:27;;5096:61;5203:2;5195:6;5192:14;5172:18;5169:38;5166:161;;5249:10;5244:3;5240:20;5237:1;5230:31;5284:4;5281:1;5274:15;5312:4;5309:1;5302:15;5166:161;;4953:380;;;:::o;5338:356::-;5540:2;5522:21;;;5559:18;;;5552:30;5618:34;5613:2;5598:18;;5591:62;5685:2;5670:18;;5338:356::o;5699:184::-;5769:6;5822:2;5810:9;5801:7;5797:23;5793:32;5790:52;;;5838:1;5835;5828:12;5790:52;-1:-1:-1;5861:16:1;;5699:184;-1:-1:-1;5699:184:1:o;5888:127::-;5949:10;5944:3;5940:20;5937:1;5930:31;5980:4;5977:1;5970:15;6004:4;6001:1;5994:15;6020:127;6081:10;6076:3;6072:20;6069:1;6062:31;6112:4;6109:1;6102:15;6136:4;6133:1;6126:15;6152:135;6191:3;6212:17;;;6209:43;;6232:18;;:::i;:::-;-1:-1:-1;6279:1:1;6268:13;;6152:135::o;8982:125::-;9047:9;;;9068:10;;;9065:36;;;9081:18;;:::i;9112:128::-;9179:9;;;9200:11;;;9197:37;;;9214:18;;:::i;9811:168::-;9884:9;;;9915;;9932:15;;;9926:22;;9912:37;9902:71;;9953:18;;:::i;9984:217::-;10024:1;10050;10040:132;;10094:10;10089:3;10085:20;10082:1;10075:31;10129:4;10126:1;10119:15;10157:4;10154:1;10147:15;10040:132;-1:-1:-1;10186:9:1;;9984:217::o;11418:251::-;11488:6;11541:2;11529:9;11520:7;11516:23;11512:32;11509:52;;;11557:1;11554;11547:12;11509:52;11589:9;11583:16;11608:31;11633:5;11608:31;:::i;11674:980::-;11936:4;11984:3;11973:9;11969:19;12015:6;12004:9;11997:25;12041:2;12079:6;12074:2;12063:9;12059:18;12052:34;12122:3;12117:2;12106:9;12102:18;12095:31;12146:6;12181;12175:13;12212:6;12204;12197:22;12250:3;12239:9;12235:19;12228:26;;12289:2;12281:6;12277:15;12263:29;;12310:1;12320:195;12334:6;12331:1;12328:13;12320:195;;;12399:13;;-1:-1:-1;;;;;12395:39:1;12383:52;;12490:15;;;;12455:12;;;;12431:1;12349:9;12320:195;;;-1:-1:-1;;;;;;;12571:32:1;;;;12566:2;12551:18;;12544:60;-1:-1:-1;;;12635:3:1;12620:19;12613:35;12532:3;11674:980;-1:-1:-1;;;11674:980:1:o

Swarm Source

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