ETH Price: $3,397.28 (+1.73%)

Token

Pepe Bismol (BISMO)
 

Overview

Max Total Supply

100,000,000 BISMO

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
352,645.159743721303377874 BISMO

Value
$0.00
0xa497e73f7398bd0443bf9ae8a51a62d83930986b
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:
PepeBismol

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Pepe Bismol.sol
/**

http://www.pepebismol.com
https://t.me/PepeBismol
https://twitter.com/pepe_bismol

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
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 {}
}
 
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }

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

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

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // 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;
    }

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

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;

        return c;
    }

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

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }
 
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
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;
}
 
contract PepeBismol is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD);
 
    bool private swapping;
 
    address public marketingWallet;
    address public devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public feeDenominator;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Pepe Bismol", "BISMO") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 15;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
        
        uint256 _sellMarketingFee = 45;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 _feeDenominator = 100;
 
        uint256 totalSupply = 100_000_000 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet


        feeDenominator = _feeDenominator;
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = address(0xC4b7dECeC2Bf38E517f127cc592e6d920f346C75); // set as marketing wallet
        devWallet = address(0xC4b7dECeC2Bf38E517f127cc592e6d920f346C75); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
  	}
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.5%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 10 / 1000)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees.div(feeDenominator) <= 15, "Must keep fees at 15% or less");
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees.div(feeDenominator) <= 45, "Must keep fees at 45% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled) {
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
		uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            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){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(feeDenominator);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(feeDenominator);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
        	amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    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
        );
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
 
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f50657065204269736d6f6c0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4249534d4f0000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000e6c565b5080600490816200010d919062000e6c565b505050600062000122620006bf60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001ed816001620006c760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000293919062000fbd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000fbd565b6040518363ffffffff1660e01b81526004016200034092919062001000565b6020604051808303816000875af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062000fbd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ce60a0516001620006c760201b60201c565b620003e360a0516001620007c460201b60201c565b6000600f90506000806000602d905060008060006064905060006a52b7d2dcc80cd2e400000090506103e86014826200041d91906200105c565b620004299190620010d6565b6008819055506103e86014826200044191906200105c565b6200044d9190620010d6565b600a81905550612710600a826200046591906200105c565b620004719190620010d6565b60098190555081601781905550876010819055508660118190555085601281905550601254601154601054620004a891906200110e565b620004b491906200110e565b600f81905550846014819055508360158190555082601681905550601654601554601454620004e491906200110e565b620004f091906200110e565b60138190555073c4b7decec2bf38e517f127cc592e6d920f346c75600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c4b7decec2bf38e517f127cc592e6d920f346c75600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c2620005b46200086560201b60201c565b60016200088f60201b60201c565b620005f7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088f60201b60201c565b6200060a3060016200088f60201b60201c565b6200061f61dead60016200088f60201b60201c565b62000641620006336200086560201b60201c565b6001620006c760201b60201c565b62000676600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006c760201b60201c565b62000689306001620006c760201b60201c565b6200069e61dead6001620006c760201b60201c565b620006b03382620009dc60201b60201c565b50505050505050505062001318565b600033905090565b620006d7620006bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076090620011aa565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200089f620006bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092890620011aa565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d09190620011e9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a459062001256565b60405180910390fd5b62000a626000838362000b8a60201b60201c565b62000a7e8160025462000b8f60201b620026111790919060201c565b60028190555062000adc816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b8f60201b620026111790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b7e919062001289565b60405180910390a35050565b505050565b600080828462000ba091906200110e565b90508381101562000be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bdf90620012f6565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7457607f821691505b60208210810362000c8a5762000c8962000c2c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cf47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb5565b62000d00868362000cb5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d4d62000d4762000d418462000d18565b62000d22565b62000d18565b9050919050565b6000819050919050565b62000d698362000d2c565b62000d8162000d788262000d54565b84845462000cc2565b825550505050565b600090565b62000d9862000d89565b62000da581848462000d5e565b505050565b5b8181101562000dcd5762000dc160008262000d8e565b60018101905062000dab565b5050565b601f82111562000e1c5762000de68162000c90565b62000df18462000ca5565b8101602085101562000e01578190505b62000e1962000e108562000ca5565b83018262000daa565b50505b505050565b600082821c905092915050565b600062000e416000198460080262000e21565b1980831691505092915050565b600062000e5c838362000e2e565b9150826002028217905092915050565b62000e778262000bf2565b67ffffffffffffffff81111562000e935762000e9262000bfd565b5b62000e9f825462000c5b565b62000eac82828562000dd1565b600060209050601f83116001811462000ee4576000841562000ecf578287015190505b62000edb858262000e4e565b86555062000f4b565b601f19841662000ef48662000c90565b60005b8281101562000f1e5784890151825560018201915060208501945060208101905062000ef7565b8683101562000f3e578489015162000f3a601f89168262000e2e565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f858262000f58565b9050919050565b62000f978162000f78565b811462000fa357600080fd5b50565b60008151905062000fb78162000f8c565b92915050565b60006020828403121562000fd65762000fd562000f53565b5b600062000fe68482850162000fa6565b91505092915050565b62000ffa8162000f78565b82525050565b600060408201905062001017600083018562000fef565b62001026602083018462000fef565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010698262000d18565b9150620010768362000d18565b9250828202620010868162000d18565b91508282048414831517620010a0576200109f6200102d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010e38262000d18565b9150620010f08362000d18565b925082620011035762001102620010a7565b5b828204905092915050565b60006200111b8262000d18565b9150620011288362000d18565b92508282019050808211156200114357620011426200102d565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200119260208362001149565b91506200119f826200115a565b602082019050919050565b60006020820190508181036000830152620011c58162001183565b9050919050565b60008115159050919050565b620011e381620011cc565b82525050565b6000602082019050620012006000830184620011d8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200123e601f8362001149565b91506200124b8262001206565b602082019050919050565b6000602082019050818103600083015262001271816200122f565b9050919050565b620012838162000d18565b82525050565b6000602082019050620012a0600083018462001278565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620012de601b8362001149565b9150620012eb82620012a6565b602082019050919050565b600060208201905081810360008301526200131181620012cf565b9050919050565b60805160a0516154ab620013766000396000818161125301528181611aa90152612bf5015260008181610df701528181612b9d01528181613d6d01528181613e4e01528181613e7501528181613f110152613f3801526154ab6000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600f611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b601381905550602d611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600a6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420343525206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006148af602283613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a884f705846085d6b781f733de9a12bddfe1e1ad0a8bba469d2a63dfa7a88df764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f0000000000000000000000007a65387e268e65753bd41d5576b28ee46d3b5ecf81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600f611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f0000000000000000000000007a65387e268e65753bd41d5576b28ee46d3b5ecf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b601381905550602d611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600a6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f0000000000000000000000007a65387e268e65753bd41d5576b28ee46d3b5ecf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420343525206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006148af602283613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a884f705846085d6b781f733de9a12bddfe1e1ad0a8bba469d2a63dfa7a88df764736f6c63430008120033

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.