ETH Price: $2,970.74 (-1.64%)
Gas: 2 Gwei

Token

Friendchips.tech (FRIENDCHIPS)
 

Overview

Max Total Supply

503,121,459.970158688 FRIENDCHIPS

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
425.810937376 FRIENDCHIPS

Value
$0.00
0x5d1cad77d4b5e672fc17c4bb175eadcf932aae2b
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:
Friendchips

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

//  ________  _______   ______  ________  __    __  _______    ______   __    __  ______  _______    ______  
// /        |/       \ /      |/        |/  \  /  |/       \  /      \ /  |  /  |/      |/       \  /      \ 
// $$$$$$$$/ $$$$$$$  |$$$$$$/ $$$$$$$$/ $$  \ $$ |$$$$$$$  |/$$$$$$  |$$ |  $$ |$$$$$$/ $$$$$$$  |/$$$$$$  |
// $$ |__    $$ |__$$ |  $$ |  $$ |__    $$$  \$$ |$$ |  $$ |$$ |  $$/ $$ |__$$ |  $$ |  $$ |__$$ |$$ \__$$/ 
// $$    |   $$    $$<   $$ |  $$    |   $$$$  $$ |$$ |  $$ |$$ |      $$    $$ |  $$ |  $$    $$/ $$      \ 
// $$$$$/    $$$$$$$  |  $$ |  $$$$$/    $$ $$ $$ |$$ |  $$ |$$ |   __ $$$$$$$$ |  $$ |  $$$$$$$/   $$$$$$  |
// $$ |      $$ |  $$ | _$$ |_ $$ |_____ $$ |$$$$ |$$ |__$$ |$$ \__/  |$$ |  $$ | _$$ |_ $$ |      /  \__$$ |
// $$ |      $$ |  $$ |/ $$   |$$       |$$ | $$$ |$$    $$/ $$    $$/ $$ |  $$ |/ $$   |$$ |      $$    $$/ 
// $$/       $$/   $$/ $$$$$$/ $$$$$$$$/ $$/   $$/ $$$$$$$/   $$$$$$/  $$/   $$/ $$$$$$/ $$/        $$$$$$/  
                                                                                                                             
// The Mutual Fund of Friend Tech

// Friendchips gives you exposure to the Friend Tech ecosystem and airdrop, without all the hard work.
// We manage the bridging and buying, we all share the rewards.

// website - https://www.friendchips.tech/
// Telegram - https://t.me/friendchipstoken
// Docs - https://friendchips.gitbook.io/friendchips/
// Twitter - https://twitter.com/FriendChipsTech


pragma solidity 0.6.12;

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 IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

/**
 * @title MinterRole
 * @dev Implementation of the {MinterRole} interface.
 */
contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function removeMinter(address account) public onlyMinter {
        _removeMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

contract ERC20 is Context, IERC20, Ownable {
    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;
    uint8 private _decimals;

    uint8 private _setupDecimals = 9;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = _setupDecimals;
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address) {
        return owner();
    }

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

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

    /**
    * @dev Returns the number of decimals used to get its user representation.
    */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

    /**
     * @dev See {ERC20-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) virtual public 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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero'));
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        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) virtual internal {
        require(sender != address(0), 'ERC20: transfer from the zero address');
        require(recipient != address(0), 'ERC20: transfer to the zero address');

        _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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) virtual internal {
        require(account != address(0), 'ERC20: mint to the zero address');

        _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) virtual internal {
        require(account != address(0), 'ERC20: burn from the zero address');

        _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 is 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) virtual internal {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    // function _burnFrom(address account, uint256 amount) virtual internal {
    //     _burn(account, amount);
    //     _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'ERC20: burn amount exceeds allowance'));
    // }
}

contract Friendchips is ERC20, MinterRole {
    
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    // The operator is NOT the owner, is the operator of the machine
    address public operator;

    // Addresses excluded from fees
    mapping (address => bool) public isExcludedFromFee;
    mapping (address => bool) public automatedMarketMakerPairs;

    // tax Fee Wallet address
    address public teamWallet;
    uint256 public teamBuyFee = 5;
    uint256 public teamSellFee = 5;
    uint256 public liquidityBuyFee = 1;
    uint256 public liquiditySellFee = 1;
    uint256 public buyFee = teamBuyFee.add(liquidityBuyFee);
    uint256 public sellFee = teamSellFee.add(liquiditySellFee);
    uint256 public totalFee = buyFee.add(sellFee);

    uint256 public minSwapAmount = 100000000000;
    // Trading bool
    bool public tradingOpen; 
    // In swap and liquify
    bool private _inSwapForETH;

    // Burn address
    address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // INMUTABLE
    address public constant V2ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public constant deadAddress = address(0xdead);

    // Events before Governance
    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event UpdateTeamWallet(address indexed walletAddress);
    event UpdateBuyFee(uint256 buyFee);
    event UpdateSellFee(uint256 sellFee);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    // Lock the swap on SwapAndLiquify
    modifier lockTheSwap {
        _inSwapForETH = true;
        _;
        _inSwapForETH = false;
    }

    // Operator CAN do modifier
    modifier onlyOperator() {
        require(operator == msg.sender, "operator: caller is not the operator");
        _;
    }
    receive() external payable {}

    /**
     * @notice Constructs the FRIENDCHIPS token contract.
     */
    constructor(address _teamWallet) public ERC20("Friendchips.tech", "FRIENDCHIPS") {
        operator = _msgSender();
        emit OperatorTransferred(address(0), operator);
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        require(_teamWallet != address(0), "wallet address is zero");
        teamWallet = _teamWallet;

        setExcludeFromFee(msg.sender, true);
        setExcludeFromFee(address(this), true);
        setExcludeFromFee(address(BURN_ADDRESS), true);
    }



    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyMinter {
        _mint(_to, _amount);
    }

    function burn(uint256 amount) public virtual {
        _burn(msg.sender, amount);
    }
     
    function burnFrom(address account_, uint256 amount_) public virtual {
        _burnFrom(account_, amount_);
    }

    function _burnFrom(address account_, uint256 amount_) public virtual {
        uint256 decreasedAllowance_ =
            allowance(account_, msg.sender).sub(
                amount_,
                "ERC20: burn amount exceeds allowance"
            );

        _approve(account_, msg.sender, decreasedAllowance_);
        _burn(account_, amount_);
    }

    /// @dev overrides transfer function to meet tokenomics of FRIENDCHIPS
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        // Pre-flight checks
        require(amount > 0, "Transfer amount must be greater than zero");

        uint256 contractBalance = balanceOf(address(this));
        bool canSwap  = contractBalance >= minSwapAmount;
        if( 
            tradingOpen == true
            && _inSwapForETH == false
            && canSwap
            && !automatedMarketMakerPairs[sender]
            && sender != owner() 
        ) {
            uint256 feeAmount = contractBalance.mul(teamBuyFee.add(teamSellFee)).div(totalFee);
            uint256 liquidityTokens = (contractBalance.sub(feeAmount)).div(2);
            uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
            uint256 initialETHBalance = address(this).balance;
            swapTokensForEth(amountToSwapForETH);
            uint256 ethBalance = address(this).balance.sub(initialETHBalance);
            uint256 ethForTeam = ethBalance.mul(teamBuyFee.add(teamSellFee)).div(
                totalFee
            );

            uint256 ethForLiquidity = ethBalance.sub(ethForTeam);
            if (liquidityTokens > 0 && ethForLiquidity > 0) {
                addLiquidity(liquidityTokens, ethForLiquidity);
                emit SwapAndLiquify(
                    amountToSwapForETH,
                    ethForLiquidity,
                    liquidityTokens
                );
            }
            payable(address(teamWallet)).transfer(address(this).balance);
        }
        if (sender == owner() || recipient == owner() || isExcludedFromFee[sender] || isExcludedFromFee[recipient]) {
            super._transfer(sender, recipient, amount);
        } else {
            require(tradingOpen == true, "Trading is not yet open.");

            uint256 sendAmount = amount;
            uint256 feeAmount;
            //Buy Token
            if(automatedMarketMakerPairs[sender] && buyFee > 0) {
                feeAmount = amount.mul(buyFee).div(100);
                sendAmount = amount.sub(feeAmount);
            }
            //Sell Token
            if(automatedMarketMakerPairs[recipient] && sellFee > 0) {
                feeAmount = amount.mul(sellFee).div(100);
                sendAmount = amount.sub(feeAmount);
            }
            if(feeAmount > 0) {
                super._transfer(sender, address(this), feeAmount);
            }
            super._transfer(sender, recipient, sendAmount);
        }
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private lockTheSwap{
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            deadAddress,
            block.timestamp + 400
        );
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {

        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,
            path,
            address(this),
            block.timestamp + 400
        );
    }


    function transferOperator(address newOperator) public onlyOperator {
        require(newOperator != address(0), "FRIENDCHIPS::transferOperator: new operator is the zero address");
        emit OperatorTransferred(operator, newOperator);
        operator = newOperator;
    }
    
    function openTrading(bool bOpen) public onlyOperator {
        // Can open trading only once!
        tradingOpen = bOpen;
        _approve(address(this), V2ROUTER, type(uint).max);
    }

    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 setExcludeFromFee(address _account, bool _bool) public onlyOperator {
        isExcludedFromFee[_account] = _bool;
    }

    /** 
     * @dev Update the dev wallet Address.
     * Can only be called by the current operator.
     */
    function updateTeamWallet(address payable _teamWallet) public onlyOwner {
        require( _teamWallet != address(0), "FRIENDCHIPS:: tax fee address is zero" );
        emit UpdateTeamWallet(_teamWallet);
        teamWallet = _teamWallet;
    }

    function updateBuyFee(uint256 _teamFee, uint256 _liquidityFee) public onlyOwner {
        require( _teamFee.add(_liquidityFee) <= 100, "FRIENDCHIPS:: Buy Fee can't exceed 100%" );
        emit UpdateBuyFee(_teamFee.add(_liquidityFee));
        teamBuyFee = _teamFee;
        liquidityBuyFee = _liquidityFee;
        buyFee = _teamFee.add(_liquidityFee);
        totalFee = buyFee.add(sellFee);
    }

    function updateSellFee(uint256 _teamFee, uint256 _liquidityFee) public onlyOwner {
        require( _teamFee.add(_liquidityFee) <= 100, "FRIENDCHIPS:: Sell Fee can't exceed 100%");
        emit UpdateSellFee(_teamFee.add(_liquidityFee));
        teamSellFee = _teamFee;
        liquiditySellFee = _liquidityFee;
        sellFee = _teamFee.add(_liquidityFee);
        totalFee = buyFee.add(sellFee);
    }

    function updateMinSwapAmount(uint256 _minSwapAmount) public onlyOperator {
        minSwapAmount = _minSwapAmount;
    }

    function approveToRouter(uint256 _amount) public onlyOperator {
        _approve(address(this), V2ROUTER, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"tokensIntoLiqudity","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":false,"internalType":"uint256","name":"buyFee","type":"uint256"}],"name":"UpdateBuyFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"UpdateSellFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"walletAddress","type":"address"}],"name":"UpdateTeamWallet","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"V2ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"_burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"approveToRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"bOpen","type":"bool"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFee","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":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"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":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwapAmount","type":"uint256"}],"name":"updateMinSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_teamWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009600660016101000a81548160ff021916908360ff1602179055506005600e556005600f556001601055600160115562000052601054600e54620006fe60201b62002a271790919060201c565b60125562000073601154600f54620006fe60201b62002a271790919060201c565b60135562000094601354601254620006fe60201b62002a271790919060201c565b60145564174876e800601555348015620000ad57600080fd5b506040516200539d3803806200539d83398181016040526020811015620000d357600080fd5b81019080805190602001909291905050506040518060400160405280601081526020017f467269656e6463686970732e74656368000000000000000000000000000000008152506040518060400160405280600b81526020017f465249454e4443484950530000000000000000000000000000000000000000008152506000620001626200078760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600490805190602001906200021892919062000b58565b5080600590805190602001906200023192919062000b58565b50600660019054906101000a900460ff16600660006101000a81548160ff021916908360ff16021790555050506200026f336200078f60201b60201c565b6200027f6200078760201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a36000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620003dd57600080fd5b505afa158015620003f2573d6000803e3d6000fd5b505050506040513d60208110156200040957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200047d57600080fd5b505afa15801562000492573d6000803e3d6000fd5b505050506040513d6020811015620004a957600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200052457600080fd5b505af115801562000539573d6000803e3d6000fd5b505050506040513d60208110156200055057600080fd5b8101908080519060200190929190505050600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005d6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007f060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200067a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f77616c6c65742061646472657373206973207a65726f0000000000000000000081525060200191505060405180910390fd5b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006ce3360016200089160201b60201c565b620006e13060016200089160201b60201c565b620006f661dead60016200089160201b60201c565b505062000bfe565b6000808284019050838110156200077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b620007aa8160076200099460201b62002aaf1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180620053796024913960400191505060405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620009a6828262000a7860201b60201c565b1562000a1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620053576022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b9b57805160ff191683800117855562000bcc565b8280016001018555821562000bcc579182015b8281111562000bcb57825182559160200191906001019062000bae565b5b50905062000bdb919062000bdf565b5090565b5b8082111562000bfa57600081600090555060010162000be0565b5090565b6147498062000c0e6000396000f3fe6080604052600436106102e85760003560e01c8063610e34b911610190578063a22b35ce116100dc578063beffc7d411610095578063dd62ed3e1161006f578063dd62ed3e146110c2578063f2fde38b14611147578063fccc281314611198578063ffb54a99146111d9576102ef565b8063beffc7d414611017578063ccb613581461105c578063d818359514611087576102ef565b8063a22b35ce14610daf578063a457c2d714610e0a578063a9059cbb14610e7b578063aa271e1a14610eec578063af9549e014610f53578063b62496f514610fb0576102ef565b8063893d20e811610149578063983b2d5611610123578063983b2d5614610c995780639865027514610cea5780639a7a23d614610d01578063a0712d6814610d5e576102ef565b8063893d20e814610b875780638da5cb5b14610bc857806395d89b4114610c09576102ef565b8063610e34b9146109df57806370a0823114610a24578063713d8a7814610a89578063715018a614610ac457806379cc679014610adb5780637cb332bb14610b36576102ef565b80632a9b80721161024f57806340c10f191161020857806349bd5a5e116101e257806349bd5a5e146108b55780635342acb4146108f6578063570ca7351461095d578063599270441461099e576102ef565b806340c10f19146107f457806342966c681461084f578063470624021461088a576102ef565b80632a9b8072146106715780632b14ca56146106ae5780633092afd5146106d9578063313ce5671461072a578063338246e2146107585780633950935114610783576102ef565b806319998bbb116102a157806319998bbb146104cd5780631d38ff96146104f85780631df4ccfc1461052357806323b872dd1461054e57806327c8f835146105df57806329605e7714610620576102ef565b806305dd47d7146102f457806306fdde0314610335578063095ea7b3146103c5578063099d0d30146104365780631694505e1461046157806318160ddd146104a2576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309611206565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561034157600080fd5b5061034a61121e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038a57808201518184015260208101905061036f565b50505050905090810190601f1680156103b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d157600080fd5b5061041e600480360360408110156103e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112c0565b60405180821515815260200191505060405180910390f35b34801561044257600080fd5b5061044b6112de565b6040518082815260200191505060405180910390f35b34801561046d57600080fd5b506104766112e4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104ae57600080fd5b506104b761130a565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b506104e2611314565b6040518082815260200191505060405180910390f35b34801561050457600080fd5b5061050d61131a565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b50610538611320565b6040518082815260200191505060405180910390f35b34801561055a57600080fd5b506105c76004803603606081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611326565b60405180821515815260200191505060405180910390f35b3480156105eb57600080fd5b506105f46113ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062c57600080fd5b5061066f6004803603602081101561064357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611405565b005b34801561067d57600080fd5b506106ac6004803603602081101561069457600080fd5b810190808035151590602001909291905050506115f1565b005b3480156106ba57600080fd5b506106c36116f3565b6040518082815260200191505060405180910390f35b3480156106e557600080fd5b50610728600480360360208110156106fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f9565b005b34801561073657600080fd5b5061073f611763565b604051808260ff16815260200191505060405180910390f35b34801561076457600080fd5b5061076d61177a565b6040518082815260200191505060405180910390f35b34801561078f57600080fd5b506107dc600480360360408110156107a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611780565b60405180821515815260200191505060405180910390f35b34801561080057600080fd5b5061084d6004803603604081101561081757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611833565b005b34801561085b57600080fd5b506108886004803603602081101561087257600080fd5b810190808035906020019092919050505061189f565b005b34801561089657600080fd5b5061089f6118ac565b6040518082815260200191505060405180910390f35b3480156108c157600080fd5b506108ca6118b2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090257600080fd5b506109456004803603602081101561091957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118d8565b60405180821515815260200191505060405180910390f35b34801561096957600080fd5b506109726118f8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109aa57600080fd5b506109b361191e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109eb57600080fd5b50610a2260048036036040811015610a0257600080fd5b810190808035906020019092919080359060200190929190505050611944565b005b348015610a3057600080fd5b50610a7360048036036020811015610a4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af0565b6040518082815260200191505060405180910390f35b348015610a9557600080fd5b50610ac260048036036020811015610aac57600080fd5b8101908080359060200190929190505050611b39565b005b348015610ad057600080fd5b50610ad9611c01565b005b348015610ae757600080fd5b50610b3460048036036040811015610afe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d6e565b005b348015610b4257600080fd5b50610b8560048036036020811015610b5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7c565b005b348015610b9357600080fd5b50610b9c611f38565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd611f47565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c1557600080fd5b50610c1e611f70565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c5e578082015181840152602081019050610c43565b50505050905090810190601f168015610c8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ca557600080fd5b50610ce860048036036020811015610cbc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612012565b005b348015610cf657600080fd5b50610cff61207c565b005b348015610d0d57600080fd5b50610d5c60048036036040811015610d2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612087565b005b348015610d6a57600080fd5b50610d9760048036036020811015610d8157600080fd5b81019080803590602001909291905050506121eb565b60405180821515815260200191505060405180910390f35b348015610dbb57600080fd5b50610e0860048036036040811015610dd257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122b6565b005b348015610e1657600080fd5b50610e6360048036036040811015610e2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061230a565b60405180821515815260200191505060405180910390f35b348015610e8757600080fd5b50610ed460048036036040811015610e9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123d7565b60405180821515815260200191505060405180910390f35b348015610ef857600080fd5b50610f3b60048036036020811015610f0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f5565b60405180821515815260200191505060405180910390f35b348015610f5f57600080fd5b50610fae60048036036040811015610f7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612412565b005b348015610fbc57600080fd5b50610fff60048036036020811015610fd357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612513565b60405180821515815260200191505060405180910390f35b34801561102357600080fd5b5061105a6004803603604081101561103a57600080fd5b810190808035906020019092919080359060200190929190505050612533565b005b34801561106857600080fd5b506110716126df565b6040518082815260200191505060405180910390f35b34801561109357600080fd5b506110c0600480360360208110156110aa57600080fd5b81019080803590602001909291905050506126e5565b005b3480156110ce57600080fd5b50611131600480360360408110156110e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612795565b6040518082815260200191505060405180910390f35b34801561115357600080fd5b506111966004803603602081101561116a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061281c565b005b3480156111a457600080fd5b506111ad612a0e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156111e557600080fd5b506111ee612a14565b60405180821515815260200191505060405180910390f35b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112b65780601f1061128b576101008083540402835291602001916112b6565b820191906000526020600020905b81548152906001019060200180831161129957829003601f168201915b5050505050905090565b60006112d46112cd612b8a565b8484612b92565b6001905092915050565b60115481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600f5481565b600e5481565b60145481565b6000611333848484612d89565b6113f48461133f612b8a565b6113ef856040518060600160405280602881526020016145a360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113a5612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b612b92565b600190509392505050565b61dead81565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f8152602001806144f2603f913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b80601660006101000a81548160ff0219169083151502179055506116f030737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612b92565b50565b60135481565b611702336123f5565b611757576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b6117608161348d565b50565b6000600660009054906101000a900460ff16905090565b60155481565b600061182961178d612b8a565b84611824856002600061179e612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b612b92565b6001905092915050565b61183c336123f5565b611891576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b61189b82826134e7565b5050565b6118a933826136a4565b50565b60125481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61194c612b8a565b73ffffffffffffffffffffffffffffffffffffffff1661196a611f47565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064611a088284612a2790919063ffffffff16565b1115611a5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806146a46027913960400191505060405180910390fd5b7fa480a3a15a511fbdc37ae77ae3f490e03ab3688adde11456ce779e6c1e0abaa2611a938284612a2790919063ffffffff16565b6040518082815260200191505060405180910390a181600e8190555080601081905550611ac98183612a2790919063ffffffff16565b601281905550611ae6601354601254612a2790919063ffffffff16565b6014819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b611bfe30737a250d5630b4cf539739df2c5dacb4c659f2488d83612b92565b50565b611c09612b8a565b73ffffffffffffffffffffffffffffffffffffffff16611c27611f47565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d7882826122b6565b5050565b611d84612b8a565b73ffffffffffffffffffffffffffffffffffffffff16611da2611f47565b73ffffffffffffffffffffffffffffffffffffffff1614611e2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143b96025913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f88b8edda57af64d7425b090e9e8d925c96d2cc1360afdc15f0da29752103e70560405160405180910390a280600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611f42611f47565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120085780601f10611fdd57610100808354040283529160200191612008565b820191906000526020600020905b815481529060010190602001808311611feb57829003601f168201915b5050505050905090565b61201b336123f5565b612070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b6120798161385e565b50565b6120853361348d565b565b61208f612b8a565b73ffffffffffffffffffffffffffffffffffffffff166120ad611f47565b73ffffffffffffffffffffffffffffffffffffffff1614612136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061446b6039913960400191505060405180910390fd5b6121e782826138b8565b5050565b60006121f5612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612213611f47565b73ffffffffffffffffffffffffffffffffffffffff161461229c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6122ad6122a7612b8a565b836134e7565b60019050919050565b60006122ee82604051806060016040528060248152602001614616602491396122df8633612795565b6133d39092919063ffffffff16565b90506122fb833383612b92565b61230583836136a4565b505050565b60006123cd612317612b8a565b846123c8856040518060600160405280602581526020016146ef6025913960026000612341612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b612b92565b6001905092915050565b60006123eb6123e4612b8a565b8484612d89565b6001905092915050565b600061240b82600761395990919063ffffffff16565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b61253b612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612559611f47565b73ffffffffffffffffffffffffffffffffffffffff16146125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60646125f78284612a2790919063ffffffff16565b111561264e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806144ca6028913960400191505060405180910390fd5b7f7d59573ec4acab62b908b5c1cde109eb12273d011506abaa850256636a42d54a6126828284612a2790919063ffffffff16565b6040518082815260200191505060405180910390a181600f81905550806011819055506126b88183612a2790919063ffffffff16565b6013819055506126d5601354601254612a2790919063ffffffff16565b6014819055505050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b8060158190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612824612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612842611f47565b73ffffffffffffffffffffffffffffffffffffffff16146128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144236026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61dead81565b601660009054906101000a900460ff1681565b600080828401905083811015612aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612ab98282613959565b15612b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146cb6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144496022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008111612de2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145ed6029913960400191505060405180910390fd5b6000612ded30611af0565b90506000601554821015905060011515601660009054906101000a900460ff161515148015612e2f575060001515601660019054906101000a900460ff161515145b8015612e385750805b8015612e8e5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ecd5750612e9d611f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156130a9576000612f11601454612f03612ef4600f54600e54612a2790919063ffffffff16565b86613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506000612f3b6002612f2d8487613b4690919063ffffffff16565b613abd90919063ffffffff16565b90506000612f528286613b4690919063ffffffff16565b90506000479050612f6282613bc9565b6000612f778247613b4690919063ffffffff16565b90506000612fb8601454612faa612f9b600f54600e54612a2790919063ffffffff16565b85613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506000612fcf8284613b4690919063ffffffff16565b9050600086118015612fe15750600081115b1561303857612ff08682613eb7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828860405180848152602001838152602001828152602001935050505060405180910390a15b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156130a0573d6000803e3d6000fd5b50505050505050505b6130b1611f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061311c57506130ed611f47565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806131705750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806131c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131d9576131d4858585614041565b6133cc565b60011515601660009054906101000a900460ff16151514613262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206973206e6f7420796574206f70656e2e000000000000000081525060200191505060405180910390fd5b60008390506000600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132c457506000601254115b15613309576132f160646132e360125488613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506133068186613b4690919063ffffffff16565b91505b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561336457506000601354115b156133a957613391606461338360135488613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506133a68186613b4690919063ffffffff16565b91505b60008111156133be576133bd873083614041565b5b6133c9878784614041565b50505b5050505050565b6000838311158290613480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561344557808201518184015260208101905061342a565b50505050905090810190601f1680156134725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6134a18160076142fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61359f81600354612a2790919063ffffffff16565b6003819055506135f781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561372a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061465e6021913960400191505060405180910390fd5b6137968160405180606001604052806022815260200161440160229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137ee81600354613b4690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613872816007612aaf90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145cb6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080831415613a4a5760009050613ab7565b6000828402905082848281613a5b57fe5b0414613ab2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145826021913960400191505060405180910390fd5b809150505b92915050565b6000808211613b34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613b3d57fe5b04905092915050565b600082821115613bbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6001601660016101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613bfe57600080fd5b50604051908082528060200260200182016040528015613c2d5781602001602082028036833780820191505090505b5090503081600081518110613c3e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613ce057600080fd5b505afa158015613cf4573d6000803e3d6000fd5b505050506040513d6020811015613d0a57600080fd5b810190808051906020019092919050505081600181518110613d2857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d8f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612b92565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061019042016040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613e57578082015181840152602081019050613e3c565b505050509050019650505050505050600060405180830381600087803b158015613e8057600080fd5b505af1158015613e94573d6000803e3d6000fd5b50505050506000601660016101000a81548160ff02191690831515021790555050565b6001601660016101000a81548160ff021916908315150217905550613eff30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612b92565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead61019042016040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613fcf57600080fd5b505af1158015613fe3573d6000803e3d6000fd5b50505050506040513d6060811015613ffa57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000601660016101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061467f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561414d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143de6023913960400191505060405180910390fd5b6141b9816040518060600160405280602681526020016144a460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061424e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6143058282613959565b61435a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145616021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe465249454e4443484950533a3a20746178206665652061646472657373206973207a65726f45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354686520706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365465249454e4443484950533a3a2053656c6c204665652063616e2774206578636565642031303025465249454e4443484950533a3a7472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373465249454e4443484950533a3a20427579204665652063616e277420657863656564203130302545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205cadc5d6af1e09c2b03039b3ee730e55948fc7ac01fba658f76b6db5dd1e7c8964736f6c634300060c0033526f6c65733a206163636f756e7420697320746865207a65726f20616464726573736f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7200000000000000000000000099856ab39bdd02a260df43a608c82da33aa10b33

Deployed Bytecode

0x6080604052600436106102e85760003560e01c8063610e34b911610190578063a22b35ce116100dc578063beffc7d411610095578063dd62ed3e1161006f578063dd62ed3e146110c2578063f2fde38b14611147578063fccc281314611198578063ffb54a99146111d9576102ef565b8063beffc7d414611017578063ccb613581461105c578063d818359514611087576102ef565b8063a22b35ce14610daf578063a457c2d714610e0a578063a9059cbb14610e7b578063aa271e1a14610eec578063af9549e014610f53578063b62496f514610fb0576102ef565b8063893d20e811610149578063983b2d5611610123578063983b2d5614610c995780639865027514610cea5780639a7a23d614610d01578063a0712d6814610d5e576102ef565b8063893d20e814610b875780638da5cb5b14610bc857806395d89b4114610c09576102ef565b8063610e34b9146109df57806370a0823114610a24578063713d8a7814610a89578063715018a614610ac457806379cc679014610adb5780637cb332bb14610b36576102ef565b80632a9b80721161024f57806340c10f191161020857806349bd5a5e116101e257806349bd5a5e146108b55780635342acb4146108f6578063570ca7351461095d578063599270441461099e576102ef565b806340c10f19146107f457806342966c681461084f578063470624021461088a576102ef565b80632a9b8072146106715780632b14ca56146106ae5780633092afd5146106d9578063313ce5671461072a578063338246e2146107585780633950935114610783576102ef565b806319998bbb116102a157806319998bbb146104cd5780631d38ff96146104f85780631df4ccfc1461052357806323b872dd1461054e57806327c8f835146105df57806329605e7714610620576102ef565b806305dd47d7146102f457806306fdde0314610335578063095ea7b3146103c5578063099d0d30146104365780631694505e1461046157806318160ddd146104a2576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309611206565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561034157600080fd5b5061034a61121e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038a57808201518184015260208101905061036f565b50505050905090810190601f1680156103b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d157600080fd5b5061041e600480360360408110156103e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112c0565b60405180821515815260200191505060405180910390f35b34801561044257600080fd5b5061044b6112de565b6040518082815260200191505060405180910390f35b34801561046d57600080fd5b506104766112e4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104ae57600080fd5b506104b761130a565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b506104e2611314565b6040518082815260200191505060405180910390f35b34801561050457600080fd5b5061050d61131a565b6040518082815260200191505060405180910390f35b34801561052f57600080fd5b50610538611320565b6040518082815260200191505060405180910390f35b34801561055a57600080fd5b506105c76004803603606081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611326565b60405180821515815260200191505060405180910390f35b3480156105eb57600080fd5b506105f46113ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062c57600080fd5b5061066f6004803603602081101561064357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611405565b005b34801561067d57600080fd5b506106ac6004803603602081101561069457600080fd5b810190808035151590602001909291905050506115f1565b005b3480156106ba57600080fd5b506106c36116f3565b6040518082815260200191505060405180910390f35b3480156106e557600080fd5b50610728600480360360208110156106fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f9565b005b34801561073657600080fd5b5061073f611763565b604051808260ff16815260200191505060405180910390f35b34801561076457600080fd5b5061076d61177a565b6040518082815260200191505060405180910390f35b34801561078f57600080fd5b506107dc600480360360408110156107a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611780565b60405180821515815260200191505060405180910390f35b34801561080057600080fd5b5061084d6004803603604081101561081757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611833565b005b34801561085b57600080fd5b506108886004803603602081101561087257600080fd5b810190808035906020019092919050505061189f565b005b34801561089657600080fd5b5061089f6118ac565b6040518082815260200191505060405180910390f35b3480156108c157600080fd5b506108ca6118b2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090257600080fd5b506109456004803603602081101561091957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118d8565b60405180821515815260200191505060405180910390f35b34801561096957600080fd5b506109726118f8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109aa57600080fd5b506109b361191e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109eb57600080fd5b50610a2260048036036040811015610a0257600080fd5b810190808035906020019092919080359060200190929190505050611944565b005b348015610a3057600080fd5b50610a7360048036036020811015610a4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af0565b6040518082815260200191505060405180910390f35b348015610a9557600080fd5b50610ac260048036036020811015610aac57600080fd5b8101908080359060200190929190505050611b39565b005b348015610ad057600080fd5b50610ad9611c01565b005b348015610ae757600080fd5b50610b3460048036036040811015610afe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d6e565b005b348015610b4257600080fd5b50610b8560048036036020811015610b5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7c565b005b348015610b9357600080fd5b50610b9c611f38565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bd457600080fd5b50610bdd611f47565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c1557600080fd5b50610c1e611f70565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c5e578082015181840152602081019050610c43565b50505050905090810190601f168015610c8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ca557600080fd5b50610ce860048036036020811015610cbc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612012565b005b348015610cf657600080fd5b50610cff61207c565b005b348015610d0d57600080fd5b50610d5c60048036036040811015610d2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612087565b005b348015610d6a57600080fd5b50610d9760048036036020811015610d8157600080fd5b81019080803590602001909291905050506121eb565b60405180821515815260200191505060405180910390f35b348015610dbb57600080fd5b50610e0860048036036040811015610dd257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122b6565b005b348015610e1657600080fd5b50610e6360048036036040811015610e2d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061230a565b60405180821515815260200191505060405180910390f35b348015610e8757600080fd5b50610ed460048036036040811015610e9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123d7565b60405180821515815260200191505060405180910390f35b348015610ef857600080fd5b50610f3b60048036036020811015610f0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f5565b60405180821515815260200191505060405180910390f35b348015610f5f57600080fd5b50610fae60048036036040811015610f7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612412565b005b348015610fbc57600080fd5b50610fff60048036036020811015610fd357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612513565b60405180821515815260200191505060405180910390f35b34801561102357600080fd5b5061105a6004803603604081101561103a57600080fd5b810190808035906020019092919080359060200190929190505050612533565b005b34801561106857600080fd5b506110716126df565b6040518082815260200191505060405180910390f35b34801561109357600080fd5b506110c0600480360360208110156110aa57600080fd5b81019080803590602001909291905050506126e5565b005b3480156110ce57600080fd5b50611131600480360360408110156110e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612795565b6040518082815260200191505060405180910390f35b34801561115357600080fd5b506111966004803603602081101561116a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061281c565b005b3480156111a457600080fd5b506111ad612a0e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156111e557600080fd5b506111ee612a14565b60405180821515815260200191505060405180910390f35b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112b65780601f1061128b576101008083540402835291602001916112b6565b820191906000526020600020905b81548152906001019060200180831161129957829003601f168201915b5050505050905090565b60006112d46112cd612b8a565b8484612b92565b6001905092915050565b60115481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600f5481565b600e5481565b60145481565b6000611333848484612d89565b6113f48461133f612b8a565b6113ef856040518060600160405280602881526020016145a360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113a5612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b612b92565b600190509392505050565b61dead81565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f8152602001806144f2603f913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b80601660006101000a81548160ff0219169083151502179055506116f030737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612b92565b50565b60135481565b611702336123f5565b611757576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b6117608161348d565b50565b6000600660009054906101000a900460ff16905090565b60155481565b600061182961178d612b8a565b84611824856002600061179e612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b612b92565b6001905092915050565b61183c336123f5565b611891576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b61189b82826134e7565b5050565b6118a933826136a4565b50565b60125481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61194c612b8a565b73ffffffffffffffffffffffffffffffffffffffff1661196a611f47565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064611a088284612a2790919063ffffffff16565b1115611a5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806146a46027913960400191505060405180910390fd5b7fa480a3a15a511fbdc37ae77ae3f490e03ab3688adde11456ce779e6c1e0abaa2611a938284612a2790919063ffffffff16565b6040518082815260200191505060405180910390a181600e8190555080601081905550611ac98183612a2790919063ffffffff16565b601281905550611ae6601354601254612a2790919063ffffffff16565b6014819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b611bfe30737a250d5630b4cf539739df2c5dacb4c659f2488d83612b92565b50565b611c09612b8a565b73ffffffffffffffffffffffffffffffffffffffff16611c27611f47565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d7882826122b6565b5050565b611d84612b8a565b73ffffffffffffffffffffffffffffffffffffffff16611da2611f47565b73ffffffffffffffffffffffffffffffffffffffff1614611e2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143b96025913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f88b8edda57af64d7425b090e9e8d925c96d2cc1360afdc15f0da29752103e70560405160405180910390a280600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611f42611f47565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120085780601f10611fdd57610100808354040283529160200191612008565b820191906000526020600020905b815481529060010190602001808311611feb57829003601f168201915b5050505050905090565b61201b336123f5565b612070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806145316030913960400191505060405180910390fd5b6120798161385e565b50565b6120853361348d565b565b61208f612b8a565b73ffffffffffffffffffffffffffffffffffffffff166120ad611f47565b73ffffffffffffffffffffffffffffffffffffffff1614612136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603981526020018061446b6039913960400191505060405180910390fd5b6121e782826138b8565b5050565b60006121f5612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612213611f47565b73ffffffffffffffffffffffffffffffffffffffff161461229c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6122ad6122a7612b8a565b836134e7565b60019050919050565b60006122ee82604051806060016040528060248152602001614616602491396122df8633612795565b6133d39092919063ffffffff16565b90506122fb833383612b92565b61230583836136a4565b505050565b60006123cd612317612b8a565b846123c8856040518060600160405280602581526020016146ef6025913960026000612341612b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b612b92565b6001905092915050565b60006123eb6123e4612b8a565b8484612d89565b6001905092915050565b600061240b82600761395990919063ffffffff16565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b61253b612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612559611f47565b73ffffffffffffffffffffffffffffffffffffffff16146125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60646125f78284612a2790919063ffffffff16565b111561264e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806144ca6028913960400191505060405180910390fd5b7f7d59573ec4acab62b908b5c1cde109eb12273d011506abaa850256636a42d54a6126828284612a2790919063ffffffff16565b6040518082815260200191505060405180910390a181600f81905550806011819055506126b88183612a2790919063ffffffff16565b6013819055506126d5601354601254612a2790919063ffffffff16565b6014819055505050565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061463a6024913960400191505060405180910390fd5b8060158190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612824612b8a565b73ffffffffffffffffffffffffffffffffffffffff16612842611f47565b73ffffffffffffffffffffffffffffffffffffffff16146128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806144236026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61dead81565b601660009054906101000a900460ff1681565b600080828401905083811015612aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612ab98282613959565b15612b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146cb6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144496022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008111612de2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806145ed6029913960400191505060405180910390fd5b6000612ded30611af0565b90506000601554821015905060011515601660009054906101000a900460ff161515148015612e2f575060001515601660019054906101000a900460ff161515145b8015612e385750805b8015612e8e5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ecd5750612e9d611f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156130a9576000612f11601454612f03612ef4600f54600e54612a2790919063ffffffff16565b86613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506000612f3b6002612f2d8487613b4690919063ffffffff16565b613abd90919063ffffffff16565b90506000612f528286613b4690919063ffffffff16565b90506000479050612f6282613bc9565b6000612f778247613b4690919063ffffffff16565b90506000612fb8601454612faa612f9b600f54600e54612a2790919063ffffffff16565b85613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506000612fcf8284613b4690919063ffffffff16565b9050600086118015612fe15750600081115b1561303857612ff08682613eb7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828860405180848152602001838152602001828152602001935050505060405180910390a15b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156130a0573d6000803e3d6000fd5b50505050505050505b6130b1611f47565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061311c57506130ed611f47565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806131705750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806131c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131d9576131d4858585614041565b6133cc565b60011515601660009054906101000a900460ff16151514613262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206973206e6f7420796574206f70656e2e000000000000000081525060200191505060405180910390fd5b60008390506000600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132c457506000601254115b15613309576132f160646132e360125488613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506133068186613b4690919063ffffffff16565b91505b600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561336457506000601354115b156133a957613391606461338360135488613a3790919063ffffffff16565b613abd90919063ffffffff16565b90506133a68186613b4690919063ffffffff16565b91505b60008111156133be576133bd873083614041565b5b6133c9878784614041565b50505b5050505050565b6000838311158290613480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561344557808201518184015260208101905061342a565b50505050905090810190601f1680156134725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6134a18160076142fb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61359f81600354612a2790919063ffffffff16565b6003819055506135f781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561372a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061465e6021913960400191505060405180910390fd5b6137968160405180606001604052806022815260200161440160229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137ee81600354613b4690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613872816007612aaf90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145cb6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080831415613a4a5760009050613ab7565b6000828402905082848281613a5b57fe5b0414613ab2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145826021913960400191505060405180910390fd5b809150505b92915050565b6000808211613b34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613b3d57fe5b04905092915050565b600082821115613bbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6001601660016101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613bfe57600080fd5b50604051908082528060200260200182016040528015613c2d5781602001602082028036833780820191505090505b5090503081600081518110613c3e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613ce057600080fd5b505afa158015613cf4573d6000803e3d6000fd5b505050506040513d6020811015613d0a57600080fd5b810190808051906020019092919050505081600181518110613d2857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d8f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612b92565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061019042016040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613e57578082015181840152602081019050613e3c565b505050509050019650505050505050600060405180830381600087803b158015613e8057600080fd5b505af1158015613e94573d6000803e3d6000fd5b50505050506000601660016101000a81548160ff02191690831515021790555050565b6001601660016101000a81548160ff021916908315150217905550613eff30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612b92565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead61019042016040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613fcf57600080fd5b505af1158015613fe3573d6000803e3d6000fd5b50505050506040513d6060811015613ffa57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000601660016101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061467f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561414d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143de6023913960400191505060405180910390fd5b6141b9816040518060600160405280602681526020016144a460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133d39092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061424e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a2790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6143058282613959565b61435a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145616021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe465249454e4443484950533a3a20746178206665652061646472657373206973207a65726f45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354686520706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365465249454e4443484950533a3a2053656c6c204665652063616e2774206578636565642031303025465249454e4443484950533a3a7472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373465249454e4443484950533a3a20427579204665652063616e277420657863656564203130302545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205cadc5d6af1e09c2b03039b3ee730e55948fc7ac01fba658f76b6db5dd1e7c8964736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000099856ab39bdd02a260df43a608c82da33aa10b33

-----Decoded View---------------
Arg [0] : _teamWallet (address): 0x99856ab39BdD02a260df43A608c82da33AA10b33

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000099856ab39bdd02a260df43a608c82da33aa10b33


Deployed Bytecode Sourcemap

33113:9878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34207:77;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25309:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26885:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33697:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33168:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25850:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33619:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33583:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33866:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27525:372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34291:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40457:278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40747:191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33801:58;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23766:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25703:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33920:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28305:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36187:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36295:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33739:55;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33216:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33396:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33327:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33551:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41902:406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26012:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42865:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14129:148;;;;;;;;;;;;;:::i;:::-;;36397:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41646:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25154:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13478:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25511;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23666:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23872:77;;;;;;;;;;;;;:::i;:::-;;40946:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29496:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36520:363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29017:261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26351:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23549:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41392:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33453:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42316:411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33656:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42735:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26588:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14432:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34106:81;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33991:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34207:77;34242:42;34207:77;:::o;25309:83::-;25346:13;25379:5;25372:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25309:83;:::o;26885:169::-;26968:4;26985:39;26994:12;:10;:12::i;:::-;27008:7;27017:6;26985:8;:39::i;:::-;27042:4;27035:11;;26885:169;;;;:::o;33697:35::-;;;;:::o;33168:41::-;;;;;;;;;;;;;:::o;25850:100::-;25903:7;25930:12;;25923:19;;25850:100;:::o;33619:30::-;;;;:::o;33583:29::-;;;;:::o;33866:45::-;;;;:::o;27525:372::-;27632:4;27649:36;27659:6;27667:9;27678:6;27649:9;:36::i;:::-;27696:171;27719:6;27740:12;:10;:12::i;:::-;27767:89;27805:6;27767:89;;;;;;;;;;;;;;;;;:11;:19;27779:6;27767:19;;;;;;;;;;;;;;;:33;27787:12;:10;:12::i;:::-;27767:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;27696:8;:171::i;:::-;27885:4;27878:11;;27525:372;;;;;:::o;34291:53::-;34337:6;34291:53;:::o;40457:278::-;35084:10;35072:22;;:8;;;;;;;;;;;:22;;;35064:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40566:1:::1;40543:25;;:11;:25;;;;40535:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40682:11;40652:42;;40672:8;;;;;;;;;;;40652:42;;;;;;;;;;;;40716:11;40705:8;;:22;;;;;;;;;;;;;;;;;;40457:278:::0;:::o;40747:191::-;35084:10;35072:22;;:8;;;;;;;;;;;:22;;;35064:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40865:5:::1;40851:11;;:19;;;;;;;;;;;;;;;;;;40881:49;40898:4;34242:42;40915:14;40881:8;:49::i;:::-;40747:191:::0;:::o;33801:58::-;;;;:::o;23766:98::-;23448:20;23457:10;23448:8;:20::i;:::-;23440:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23834:22:::1;23848:7;23834:13;:22::i;:::-;23766:98:::0;:::o;25703:83::-;25744:5;25769:9;;;;;;;;;;;25762:16;;25703:83;:::o;33920:43::-;;;;:::o;28305:210::-;28385:4;28402:83;28411:12;:10;:12::i;:::-;28425:7;28434:50;28473:10;28434:11;:25;28446:12;:10;:12::i;:::-;28434:25;;;;;;;;;;;;;;;:34;28460:7;28434:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;28402:8;:83::i;:::-;28503:4;28496:11;;28305:210;;;;:::o;36187:100::-;23448:20;23457:10;23448:8;:20::i;:::-;23440:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36260:19:::1;36266:3;36271:7;36260:5;:19::i;:::-;36187:100:::0;;:::o;36295:89::-;36351:25;36357:10;36369:6;36351:5;:25::i;:::-;36295:89;:::o;33739:55::-;;;;:::o;33216:28::-;;;;;;;;;;;;;:::o;33396:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;33327:23::-;;;;;;;;;;;;;:::o;33551:25::-;;;;;;;;;;;;;:::o;41902:406::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42033:3:::1;42002:27;42015:13;42002:8;:12;;:27;;;;:::i;:::-;:34;;41993:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42097:41;42110:27;42123:13;42110:8;:12;;:27;;;;:::i;:::-;42097:41;;;;;;;;;;;;;;;;;;42162:8;42149:10;:21;;;;42199:13;42181:15;:31;;;;42232:27;42245:13;42232:8;:12;;:27;;;;:::i;:::-;42223:6;:36;;;;42281:19;42292:7;;42281:6;;:10;;:19;;;;:::i;:::-;42270:8;:30;;;;41902:406:::0;;:::o;26012:127::-;26086:7;26113:9;:18;26123:7;26113:18;;;;;;;;;;;;;;;;26106:25;;26012:127;;;:::o;42865:123::-;35084:10;35072:22;;:8;;;;;;;;;;;:22;;;35064:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42938:42:::1;42955:4;34242:42;42972:7;42938:8;:42::i;:::-;42865:123:::0;:::o;14129:148::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14236:1:::1;14199:40;;14220:6;::::0;::::1;;;;;;;;14199:40;;;;;;;;;;;;14267:1;14250:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;14129:148::o:0;36397:115::-;36476:28;36486:8;36496:7;36476:9;:28::i;:::-;36397:115;;:::o;41646:248::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41761:1:::1;41738:25;;:11;:25;;;;41729:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41839:11;41822:29;;;;;;;;;;;;41875:11;41862:10;;:24;;;;;;;;;;;;;;;;;;41646:248:::0;:::o;25154:85::-;25197:7;25224;:5;:7::i;:::-;25217:14;;25154:85;:::o;13478:87::-;13524:7;13551:6;;;;;;;;;;;13544:13;;13478:87;:::o;25511:::-;25550:13;25583:7;25576:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25511:87;:::o;23666:92::-;23448:20;23457:10;23448:8;:20::i;:::-;23440:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23731:19:::1;23742:7;23731:10;:19::i;:::-;23666:92:::0;:::o;23872:77::-;23916:25;23930:10;23916:13;:25::i;:::-;23872:77::o;40946:244::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41053:13:::1;;;;;;;;;;;41045:21;;:4;:21;;;;41037:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41141:41;41170:4;41176:5;41141:28;:41::i;:::-;40946:244:::0;;:::o;29496:130::-;29552:4;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29569:27:::1;29575:12;:10;:12::i;:::-;29589:6;29569:5;:27::i;:::-;29614:4;29607:11;;29496:130:::0;;;:::o;36520:363::-;36600:27;36643:133;36697:7;36643:133;;;;;;;;;;;;;;;;;:31;36653:8;36663:10;36643:9;:31::i;:::-;:35;;:133;;;;;:::i;:::-;36600:176;;36789:51;36798:8;36808:10;36820:19;36789:8;:51::i;:::-;36851:24;36857:8;36867:7;36851:5;:24::i;:::-;36520:363;;;:::o;29017:261::-;29102:4;29119:129;29128:12;:10;:12::i;:::-;29142:7;29151:96;29190:15;29151:96;;;;;;;;;;;;;;;;;:11;:25;29163:12;:10;:12::i;:::-;29151:25;;;;;;;;;;;;;;;:34;29177:7;29151:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29119:8;:129::i;:::-;29266:4;29259:11;;29017:261;;;;:::o;26351:175::-;26437:4;26454:42;26464:12;:10;:12::i;:::-;26478:9;26489:6;26454:9;:42::i;:::-;26514:4;26507:11;;26351:175;;;;:::o;23549:109::-;23605:4;23629:21;23642:7;23629:8;:12;;:21;;;;:::i;:::-;23622:28;;23549:109;;;:::o;41392:131::-;35084:10;35072:22;;:8;;;;;;;;;;;:22;;;35064:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41510:5:::1;41480:17;:27;41498:8;41480:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;41392:131:::0;;:::o;33453:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;42316:411::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42448:3:::1;42417:27;42430:13;42417:8;:12;;:27;;;;:::i;:::-;:34;;42408:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42512:42;42526:27;42539:13;42526:8;:12;;:27;;;;:::i;:::-;42512:42;;;;;;;;;;;;;;;;;;42579:8;42565:11;:22;;;;42617:13;42598:16;:32;;;;42651:27;42664:13;42651:8;:12;;:27;;;;:::i;:::-;42641:7;:37;;;;42700:19;42711:7;;42700:6;;:10;;:19;;;;:::i;:::-;42689:8;:30;;;;42316:411:::0;;:::o;33656:34::-;;;;:::o;42735:122::-;35084:10;35072:22;;:8;;;;;;;;;;;:22;;;35064:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42835:14:::1;42819:13;:30;;;;42735:122:::0;:::o;26588:151::-;26677:7;26704:11;:18;26716:5;26704:18;;;;;;;;;;;;;;;:27;26723:7;26704:27;;;;;;;;;;;;;;;;26697:34;;26588:151;;;;:::o;14432:244::-;13709:12;:10;:12::i;:::-;13698:23;;:7;:5;:7::i;:::-;:23;;;13690:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14541:1:::1;14521:22;;:8;:22;;;;14513:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14631:8;14602:38;;14623:6;::::0;::::1;;;;;;;;14602:38;;;;;;;;;;;;14660:8;14651:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;14432:244:::0;:::o;34106:81::-;34145:42;34106:81;:::o;33991:23::-;;;;;;;;;;;;;:::o;17387:179::-;17445:7;17465:9;17481:1;17477;:5;17465:17;;17506:1;17501;:6;;17493:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17557:1;17550:8;;;17387:179;;;;:::o;22301:178::-;22379:18;22383:4;22389:7;22379:3;:18::i;:::-;22378:19;22370:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22467:4;22444;:11;;:20;22456:7;22444:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;22301:178;;:::o;12107:106::-;12160:15;12195:10;12188:17;;12107:106;:::o;32321:347::-;32441:1;32424:19;;:5;:19;;;;32416:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32522:1;32503:21;;:7;:21;;;;32495:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32606:6;32576:11;:18;32588:5;32576:18;;;;;;;;;;;;;;;:27;32595:7;32576:27;;;;;;;;;;;;;;;:36;;;;32644:7;32628:32;;32637:5;32628:32;;;32653:6;32628:32;;;;;;;;;;;;;;;;;;32321:347;;;:::o;36967:2560::-;37121:1;37112:6;:10;37104:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37181:23;37207:24;37225:4;37207:9;:24::i;:::-;37181:50;;37242:12;37277:13;;37258:15;:32;;37242:48;;37334:4;37319:19;;:11;;;;;;;;;;;:19;;;:58;;;;;37372:5;37355:22;;:13;;;;;;;;;;;:22;;;37319:58;:82;;;;;37394:7;37319:82;:133;;;;;37419:25;:33;37445:6;37419:33;;;;;;;;;;;;;;;;;;;;;;;;;37418:34;37319:133;:167;;;;;37479:7;:5;:7::i;:::-;37469:17;;:6;:17;;;;37319:167;37301:1248;;;37514:17;37534:62;37587:8;;37534:48;37554:27;37569:11;;37554:10;;:14;;:27;;;;:::i;:::-;37534:15;:19;;:48;;;;:::i;:::-;:52;;:62;;;;:::i;:::-;37514:82;;37611:23;37637:39;37674:1;37638:30;37658:9;37638:15;:19;;:30;;;;:::i;:::-;37637:36;;:39;;;;:::i;:::-;37611:65;;37691:26;37720:36;37740:15;37720;:19;;:36;;;;:::i;:::-;37691:65;;37771:25;37799:21;37771:49;;37835:36;37852:18;37835:16;:36::i;:::-;37886:18;37907:44;37933:17;37907:21;:25;;:44;;;;:::i;:::-;37886:65;;37966:18;37987:89;38053:8;;37987:43;38002:27;38017:11;;38002:10;;:14;;:27;;;;:::i;:::-;37987:10;:14;;:43;;;;:::i;:::-;:47;;:89;;;;:::i;:::-;37966:110;;38093:23;38119:26;38134:10;38119;:14;;:26;;;;:::i;:::-;38093:52;;38182:1;38164:15;:19;:42;;;;;38205:1;38187:15;:19;38164:42;38160:303;;;38227:46;38240:15;38257;38227:12;:46::i;:::-;38297:150;38334:18;38375:15;38413;38297:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38160:303;38493:10;;;;;;;;;;;38477:37;;:60;38515:21;38477:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37301:1248;;;;;;;;38573:7;:5;:7::i;:::-;38563:17;;:6;:17;;;:41;;;;38597:7;:5;:7::i;:::-;38584:20;;:9;:20;;;38563:41;:70;;;;38608:17;:25;38626:6;38608:25;;;;;;;;;;;;;;;;;;;;;;;;;38563:70;:102;;;;38637:17;:28;38655:9;38637:28;;;;;;;;;;;;;;;;;;;;;;;;;38563:102;38559:961;;;38682:42;38698:6;38706:9;38717:6;38682:15;:42::i;:::-;38559:961;;;38780:4;38765:19;;:11;;;;;;;;;;;:19;;;38757:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38830:18;38851:6;38830:27;;38872:17;38932:25;:33;38958:6;38932:33;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;;38978:1;38969:6;;:10;38932:47;38929:179;;;39012:27;39035:3;39012:18;39023:6;;39012;:10;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;39000:39;;39071:21;39082:9;39071:6;:10;;:21;;;;:::i;:::-;39058:34;;38929:179;39151:25;:36;39177:9;39151:36;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39201:1;39191:7;;:11;39151:51;39148:184;;;39235:28;39259:3;39235:19;39246:7;;39235:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;39223:40;;39295:21;39306:9;39295:6;:10;;:21;;;;:::i;:::-;39282:34;;39148:184;39361:1;39349:9;:13;39346:102;;;39383:49;39399:6;39415:4;39422:9;39383:15;:49::i;:::-;39346:102;39462:46;39478:6;39486:9;39497:10;39462:15;:46::i;:::-;38559:961;;;36967:2560;;;;;:::o;20214:166::-;20300:7;20333:1;20328;:6;;20336:12;20320:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20371:1;20367;:5;20360:12;;20214:166;;;;;:::o;24087:130::-;24147:24;24163:7;24147:8;:15;;:24;;;;:::i;:::-;24201:7;24187:22;;;;;;;;;;;;24087:130;:::o;30877:316::-;30980:1;30961:21;;:7;:21;;;;30953:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31046:24;31063:6;31046:12;;:16;;:24;;;;:::i;:::-;31031:12;:39;;;;31102:30;31125:6;31102:9;:18;31112:7;31102:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;31081:9;:18;31091:7;31081:18;;;;;;;;;;;;;;;:51;;;;31169:7;31148:37;;31165:1;31148:37;;;31178:6;31148:37;;;;;;;;;;;;;;;;;;30877:316;;:::o;31525:356::-;31628:1;31609:21;;:7;:21;;;;31601:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31702:68;31725:6;31702:68;;;;;;;;;;;;;;;;;:9;:18;31712:7;31702:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;31681:9;:18;31691:7;31681:18;;;;;;;;;;;;;;;:89;;;;31796:24;31813:6;31796:12;;:16;;:24;;;;:::i;:::-;31781:12;:39;;;;31862:1;31836:37;;31845:7;31836:37;;;31866:6;31836:37;;;;;;;;;;;;;;;;;;31525:356;;:::o;23957:122::-;24014:21;24027:7;24014:8;:12;;:21;;;;:::i;:::-;24063:7;24051:20;;;;;;;;;;;;23957:122;:::o;41198:188::-;41315:5;41281:25;:31;41307:4;41281:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41372:5;41338:40;;41366:4;41338:40;;;;;;;;;;;;41198:188;;:::o;22837:203::-;22909:4;22953:1;22934:21;;:7;:21;;;;22926:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23012:4;:11;;:20;23024:7;23012:20;;;;;;;;;;;;;;;;;;;;;;;;;23005:27;;22837:203;;;;:::o;18266:220::-;18324:7;18353:1;18348;:6;18344:20;;;18363:1;18356:8;;;;18344:20;18375:9;18391:1;18387;:5;18375:17;;18420:1;18415;18411;:5;;;;;;:10;18403:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18477:1;18470:8;;;18266:220;;;;;:::o;18964:153::-;19022:7;19054:1;19050;:5;19042:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19108:1;19104;:5;;;;;;19097:12;;18964:153;;;;:::o;17849:158::-;17907:7;17940:1;17935;:6;;17927:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17998:1;17994;:5;17987:12;;17849:158;;;;:::o;39926:521::-;34932:4;34916:13;;:20;;;;;;;;;;;;;;;;;;40006:21:::1;40044:1;40030:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40006:40;;40075:4;40057;40062:1;40057:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;40101:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;40091:4;40096:1;40091:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;40136:62;40153:4;40168:15;;;;;;;;;;;40186:11;40136:8;:62::i;:::-;40237:15;;;;;;;;;;;:66;;;40318:11;40344:1;40360:4;40387;40425:3;40407:15;:21;40237:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34947:1;34975:5:::0;34959:13;;:21;;;;;;;;;;;;;;;;;;39926:521;:::o;39535:383::-;34932:4;34916:13;;:20;;;;;;;;;;;;;;;;;;39627:62:::1;39644:4;39659:15;;;;;;;;;;;39677:11;39627:8;:62::i;:::-;39702:15;;;;;;;;;;;:31;;;39741:9;39774:4;39794:11;39820:1;39836::::0;34337:6:::1;39896:3;39878:15;:21;39702:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34975:5:::0;34959:13;;:21;;;;;;;;;;;;;;;;;;39535:383;;:::o;30116:480::-;30241:1;30223:20;;:6;:20;;;;30215:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30325:1;30304:23;;:9;:23;;;;30296:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30400;30422:6;30400:71;;;;;;;;;;;;;;;;;:9;:17;30410:6;30400:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;30380:9;:17;30390:6;30380:17;;;;;;;;;;;;;;;:91;;;;30505:32;30530:6;30505:9;:20;30515:9;30505:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;30482:9;:20;30492:9;30482:20;;;;;;;;;;;;;;;:55;;;;30570:9;30553:35;;30562:6;30553:35;;;30581:6;30553:35;;;;;;;;;;;;;;;;;;30116:480;;;:::o;22559:183::-;22639:18;22643:4;22649:7;22639:3;:18::i;:::-;22631:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22729:5;22706:4;:11;;:20;22718:7;22706:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22559:183;;:::o

Swarm Source

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