ETH Price: $3,423.94 (-1.48%)
Gas: 6 Gwei

Token

HOTBTC (HBTC)
 

Overview

Max Total Supply

21,000,000 HBTC

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
590,329.418826475054149212 HBTC

Value
$0.00
0xb220d6a739461164218a0d33d133d440380c8717
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:
HOTBTC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity 0.8.17;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

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


/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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


/**
 * @dev Implementation of the {IERC20} interface.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     */
    function _createTotalSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

   
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two signed integers. Reverts on
     * division by zero. The result is rounded towards zero.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        return a / b;
    }

    /**
     * @dev Returns the subtraction of two signed integers, reverting on
     * overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        return a - b;
    }

    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        return a + b;
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            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.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            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.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

contract HOTBTC is ERC20, Ownable {

    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public liquidityTokens;
    uint256 public devTokens;
    uint256 public burnBuyFee = 2; 
    uint256 public devBuyFee = 5; 
    uint256 public devSellFee = 5; 
    uint256 public burnSellFee = 2;
    uint256 public maxBuyTransactionAmount = 630000 * (10**18);
    uint256 public maxSellTransactionAmount = 630000 * (10**18);
    uint256 public swapTokensAtAmount = 630000 * (10**18);
    uint256 public maxWalletToken = 630000 * (10**18);

    address payable public devWallet = payable(0x67Bb064d57a1866Bb41633263345006073D8f7f1);
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
  
    // exlcude from fees
    mapping (address => bool) private _isExcludedFromFees;
    
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapEthForTokens(uint256 amountIn, address[] path);
    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event MaxWalletAmountUpdated(uint256 prevValue, uint256 newValue);

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

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;


        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(devWallet, true);
        
        /*
            internal function  that is only called here,
            and CANNOT be called ever again
        */
        _createTotalSupply(owner(), 21000000 * (10**18));
    }

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

        if (from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to] && from==uniswapV2Pair){
            require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount.");
        }

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to] && to==uniswapV2Pair){
            require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount.");
        }
    
        if(!inSwapAndLiquify && to==uniswapV2Pair && 
            swapAndLiquifyEnabled && 
            (devTokens >= swapTokensAtAmount ||
            liquidityTokens >= swapTokensAtAmount))
        {
            swapAndLiquify();
        }
             

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 devShare;
            uint256 liquidityShare;
            uint256 burnShare;
            
            if(from==uniswapV2Pair) {
                
                if(devBuyFee > 0) {
                    devShare = amount.mul(devBuyFee).div(100);
                    devTokens += devShare;
                    super._transfer(from, address(this), devShare);
                }

                if(burnBuyFee > 0) {
                    burnShare = amount.mul(burnBuyFee).div(100);
                    super._transfer(from, deadWallet, burnShare);
                }

            }

            if(to==uniswapV2Pair) {
               
                if(devSellFee > 0) {
                    devShare = amount.mul(devSellFee).div(100);
                    devTokens += devShare;
                    super._transfer(from, address(this), devShare);
                }

                if(burnSellFee > 0) {
                    burnShare = amount.mul(burnSellFee).div(100);
                    super._transfer(from, deadWallet, burnShare);
                }

            }

            amount = amount.sub(devShare.add(liquidityShare).add(burnShare));

        }

        super._transfer(from, to, amount);

    }

    function swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        if(liquidityTokens >= swapTokensAtAmount && contractTokenBalance >= swapTokensAtAmount) {
            // split the contract balance into halves
            uint256 half = swapTokensAtAmount.div(2);
            uint256 otherHalf = swapTokensAtAmount.sub(half);

            // capture the contract's current ETH balance.
            uint256 initialBalance = address(this).balance;

            // swap tokens for ETH
            swapTokensForEth(half, address(this));

            // how much ETH did we just swap into?
            uint256 newBalance = address(this).balance.sub(initialBalance);

            // add liquidity to uniswap
            addLiquidity(otherHalf, newBalance);
            emit SwapAndLiquify(half, newBalance, otherHalf);
            liquidityTokens -= swapTokensAtAmount;
        }

        if(devTokens >= swapTokensAtAmount && contractTokenBalance >= swapTokensAtAmount) {
            swapTokensForEth(swapTokensAtAmount, devWallet);
            devTokens -= swapTokensAtAmount;
        }

    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

    function removeBuyFee(uint256 _devFee, uint256 _burnFee) public onlyOwner() {
        require(_devFee.add(_burnFee) <= 5, "tax too high");
        burnBuyFee = _burnFee;
        devBuyFee = _devFee;
    }

    function removeSellFee(uint256 _devFee, uint256 _burnFee) public onlyOwner() {
        require(_devFee.add(_burnFee) <= 5, "tax too high");
        devSellFee = _devFee;
        burnSellFee = _burnFee;
    }

    function updateDevWallet(address payable _devWallet) public onlyOwner {  
        devWallet = _devWallet;
    }

    function setMaxBuyTransactionAmount(uint256 _maxTxAmount) public onlyOwner {
        maxBuyTransactionAmount = _maxTxAmount;
        require(maxBuyTransactionAmount >= totalSupply().div(500), "value too low");
    }

    function setMaxSellTransactionAmount(uint256 _maxTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxTxAmount;
        require(maxSellTransactionAmount >= totalSupply().div(500), "value too low");
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function SetSwapTokensAtAmount(uint256 newLimit) external onlyOwner {
        swapTokensAtAmount = newLimit;
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setMaxWalletToken(uint256 _newValue) external onlyOwner {
        uint256 prevValue = maxWalletToken;
  	    maxWalletToken = _newValue;
        require(maxWalletToken >= totalSupply().div(500), "value too low");
        emit MaxWalletAmountUpdated(prevValue, _newValue);
  	}

    receive() external payable {

  	}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapEthForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"SetSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","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":"devBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"removeBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"removeSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxBuyTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxSellTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260026009556005600a556005600b556002600c556985685e51a4f1ddc00000600d556985685e51a4f1ddc00000600e556985685e51a4f1ddc00000600f556985685e51a4f1ddc000006010557367bb064d57a1866bb41633263345006073d8f7f1601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260156101000a81548160ff0219169083151502179055503480156200011057600080fd5b506040518060400160405280600681526020017f484f5442544300000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484254430000000000000000000000000000000000000000000000000000000081525081600390816200018e919062000ae3565b508060049081620001a0919062000ae3565b505050620001c3620001b76200045860201b60201c565b6200046060201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000250919062000c34565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002de919062000c34565b6040518363ffffffff1660e01b8152600401620002fd92919062000c77565b6020604051808303816000875af11580156200031d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000343919062000c34565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc620003ce6200052660201b60201c565b60016200055060201b60201c565b620003ef3060016200055060201b60201c565b62000424601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200055060201b60201c565b62000450620004386200052660201b60201c565b6a115eec47f6cf7e35000000620006e760201b60201c565b505062000e6b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005606200045860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005866200052660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d69062000d05565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200063c57600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006db919062000d44565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007509062000db1565b60405180910390fd5b6200076d600083836200085f60201b60201c565b806002600082825462000781919062000e02565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007d8919062000e02565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200083f919062000e4e565b60405180910390a36200085b600083836200086460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008eb57607f821691505b602082108103620009015762000900620008a3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200096b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200092c565b6200097786836200092c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009c4620009be620009b8846200098f565b62000999565b6200098f565b9050919050565b6000819050919050565b620009e083620009a3565b620009f8620009ef82620009cb565b84845462000939565b825550505050565b600090565b62000a0f62000a00565b62000a1c818484620009d5565b505050565b5b8181101562000a445762000a3860008262000a05565b60018101905062000a22565b5050565b601f82111562000a935762000a5d8162000907565b62000a68846200091c565b8101602085101562000a78578190505b62000a9062000a87856200091c565b83018262000a21565b50505b505050565b600082821c905092915050565b600062000ab86000198460080262000a98565b1980831691505092915050565b600062000ad3838362000aa5565b9150826002028217905092915050565b62000aee8262000869565b67ffffffffffffffff81111562000b0a5762000b0962000874565b5b62000b168254620008d2565b62000b2382828562000a48565b600060209050601f83116001811462000b5b576000841562000b46578287015190505b62000b52858262000ac5565b86555062000bc2565b601f19841662000b6b8662000907565b60005b8281101562000b955784890151825560018201915060208501945060208101905062000b6e565b8683101562000bb5578489015162000bb1601f89168262000aa5565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bfc8262000bcf565b9050919050565b62000c0e8162000bef565b811462000c1a57600080fd5b50565b60008151905062000c2e8162000c03565b92915050565b60006020828403121562000c4d5762000c4c62000bca565b5b600062000c5d8482850162000c1d565b91505092915050565b62000c718162000bef565b82525050565b600060408201905062000c8e600083018562000c66565b62000c9d602083018462000c66565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ced60208362000ca4565b915062000cfa8262000cb5565b602082019050919050565b6000602082019050818103600083015262000d208162000cde565b9050919050565b60008115159050919050565b62000d3e8162000d27565b82525050565b600060208201905062000d5b600083018462000d33565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d99601f8362000ca4565b915062000da68262000d61565b602082019050919050565b6000602082019050818103600083015262000dcc8162000d8a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e0f826200098f565b915062000e1c836200098f565b925082820190508082111562000e375762000e3662000dd3565b5b92915050565b62000e48816200098f565b82525050565b600060208201905062000e65600083018462000e3d565b92915050565b608051613dda62000eb160003960008181610ee001528181611c3201528181611e3c01528181611f82015281816120350152818161217801526122890152613dda6000f3fe6080604052600436106102345760003560e01c806370105c3b1161012e578063a457c2d7116100ab578063dd62ed3e1161006f578063dd62ed3e14610850578063e2f456051461088d578063e6c75f71146108b8578063f2fde38b146108e3578063f5b01e151461090c5761023b565b8063a457c2d714610759578063a9059cbb14610796578063b45e83f8146107d3578063c0246668146107fe578063c49b9a80146108275761023b565b806385141a77116100f257806385141a77146106845780638da5cb5b146106af5780638ea5220f146106da57806391d55f411461070557806395d89b411461072e5761023b565b806370105c3b146105b157806370a08231146105da578063715018a6146106175780637ae3ff471461062e5780637e761377146106595761023b565b80631816467f116101bc5780634a74bb02116101805780634a74bb02146104c85780634b8ce602146104f35780634fbee1931461051e578063556482091461055b5780635aa821a9146105865761023b565b80631816467f146103cf57806323b872dd146103f8578063313ce56714610435578063395093511461046057806349bd5a5e1461049d5761023b565b806309e89af71161020357806309e89af7146102fe5780631127ae3b1461032757806316216e5f146103505780631694505e1461037957806318160ddd146103a45761023b565b806301143fea1461024057806302259e9e1461026b57806306fdde0314610296578063095ea7b3146102c15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610935565b6040516102629190612c5d565b60405180910390f35b34801561027757600080fd5b5061028061093b565b60405161028d9190612c5d565b60405180910390f35b3480156102a257600080fd5b506102ab610941565b6040516102b89190612d08565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612db9565b6109d3565b6040516102f59190612e14565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190612e2f565b6109f1565b005b34801561033357600080fd5b5061034e60048036038101906103499190612e5c565b610a77565b005b34801561035c57600080fd5b5061037760048036038101906103729190612e2f565b610b5b565b005b34801561038557600080fd5b5061038e610c41565b60405161039b9190612efb565b60405180910390f35b3480156103b057600080fd5b506103b9610c67565b6040516103c69190612c5d565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612f54565b610c71565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f81565b610d31565b60405161042c9190612e14565b60405180910390f35b34801561044157600080fd5b5061044a610e29565b6040516104579190612ff0565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612db9565b610e32565b6040516104949190612e14565b60405180910390f35b3480156104a957600080fd5b506104b2610ede565b6040516104bf919061301a565b60405180910390f35b3480156104d457600080fd5b506104dd610f02565b6040516104ea9190612e14565b60405180910390f35b3480156104ff57600080fd5b50610508610f15565b6040516105159190612c5d565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190613035565b610f1b565b6040516105529190612e14565b60405180910390f35b34801561056757600080fd5b50610570610f71565b60405161057d9190612c5d565b60405180910390f35b34801561059257600080fd5b5061059b610f77565b6040516105a89190612c5d565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612e5c565b610f7d565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613035565b611061565b60405161060e9190612c5d565b60405180910390f35b34801561062357600080fd5b5061062c6110a9565b005b34801561063a57600080fd5b50610643611131565b6040516106509190612c5d565b60405180910390f35b34801561066557600080fd5b5061066e611137565b60405161067b9190612c5d565b60405180910390f35b34801561069057600080fd5b5061069961113d565b6040516106a6919061301a565b60405180910390f35b3480156106bb57600080fd5b506106c4611163565b6040516106d1919061301a565b60405180910390f35b3480156106e657600080fd5b506106ef61118d565b6040516106fc9190613071565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612e2f565b6111b3565b005b34801561073a57600080fd5b506107436112da565b6040516107509190612d08565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190612db9565b61136c565b60405161078d9190612e14565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612db9565b611457565b6040516107ca9190612e14565b60405180910390f35b3480156107df57600080fd5b506107e8611475565b6040516107f59190612c5d565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906130b8565b61147b565b005b34801561083357600080fd5b5061084e600480360381019061084991906130f8565b6115fc565b005b34801561085c57600080fd5b5061087760048036038101906108729190613125565b6116cc565b6040516108849190612c5d565b60405180910390f35b34801561089957600080fd5b506108a2611753565b6040516108af9190612c5d565b60405180910390f35b3480156108c457600080fd5b506108cd611759565b6040516108da9190612c5d565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613035565b61175f565b005b34801561091857600080fd5b50610933600480360381019061092e9190612e2f565b611856565b005b600a5481565b600e5481565b60606003805461095090613194565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90613194565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b60006109e76109e061193c565b8484611944565b6001905092915050565b6109f961193c565b73ffffffffffffffffffffffffffffffffffffffff16610a17611163565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490613211565b60405180910390fd5b80600f8190555050565b610a7f61193c565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611163565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613211565b60405180910390fd5b6005610b088284611b0d90919063ffffffff16565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061327d565b60405180910390fd5b8060098190555081600a819055505050565b610b6361193c565b73ffffffffffffffffffffffffffffffffffffffff16610b81611163565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613211565b60405180910390fd5b80600e81905550610bfa6101f4610bec610c67565b611b2390919063ffffffff16565b600e541015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c35906132e9565b60405180910390fd5b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610c7961193c565b73ffffffffffffffffffffffffffffffffffffffff16610c97611163565b73ffffffffffffffffffffffffffffffffffffffff1614610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613211565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d3e848484611b39565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d8961193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061337b565b60405180910390fd5b610e1d85610e1561193c565b858403611944565b60019150509392505050565b60006012905090565b6000610ed4610e3f61193c565b848460016000610e4d61193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecf91906133ca565b611944565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260159054906101000a900460ff1681565b60075481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60085481565b600d5481565b610f8561193c565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611163565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613211565b60405180910390fd5b600561100e8284611b0d90919063ffffffff16565b111561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110469061327d565b60405180910390fd5b81600b8190555080600c819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b161193c565b73ffffffffffffffffffffffffffffffffffffffff166110cf611163565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613211565b60405180910390fd5b61112f60006123e6565b565b60095481565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111bb61193c565b73ffffffffffffffffffffffffffffffffffffffff166111d9611163565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613211565b60405180910390fd5b60006010549050816010819055506112596101f461124b610c67565b611b2390919063ffffffff16565b601054101561129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906132e9565b60405180910390fd5b7f0a7c714b6801281a6e2610a6371ac6a5da9a5947616d74f4aa3ad1d289278e7381836040516112ce9291906133fe565b60405180910390a15050565b6060600480546112e990613194565b80601f016020809104026020016040519081016040528092919081815260200182805461131590613194565b80156113625780601f1061133757610100808354040283529160200191611362565b820191906000526020600020905b81548152906001019060200180831161134557829003601f168201915b5050505050905090565b6000806001600061137b61193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613499565b60405180910390fd5b61144c61144361193c565b85858403611944565b600191505092915050565b600061146b61146461193c565b8484611b39565b6001905092915050565b600b5481565b61148361193c565b73ffffffffffffffffffffffffffffffffffffffff166114a1611163565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613211565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361155357600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115f09190612e14565b60405180910390a25050565b61160461193c565b73ffffffffffffffffffffffffffffffffffffffff16611622611163565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613211565b60405180910390fd5b80601260156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516116c19190612e14565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b60105481565b61176761193c565b73ffffffffffffffffffffffffffffffffffffffff16611785611163565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613211565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061352b565b60405180910390fd5b611853816123e6565b50565b61185e61193c565b73ffffffffffffffffffffffffffffffffffffffff1661187c611163565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613211565b60405180910390fd5b80600d819055506118f56101f46118e7610c67565b611b2390919063ffffffff16565b600d541015611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906132e9565b60405180910390fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa906135bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a199061364f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b009190612c5d565b60405180910390a3505050565b60008183611b1b91906133ca565b905092915050565b60008183611b31919061369e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906137d3565b60405180910390fd5b60008103611c3057611c2b838360006124ac565b6123e1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611cd55750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d2b5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d8f576000611d3b83611061565b90506010548282611d4c91906133ca565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613865565b60405180910390fd5b505b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e335750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e8a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611ed557600d54811115611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb906138f7565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f795750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fd057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561201b57600e5481111561201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613989565b60405180910390fd5b5b601260149054906101000a900460ff1615801561208357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561209b5750601260159054906101000a900460ff165b80156120ba5750600f546008541015806120b95750600f5460075410155b5b156120c8576120c761272b565b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561216c5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123d55760008060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603612287576000600a541115612223576121fc60646121ee600a54876128af90919063ffffffff16565b611b2390919063ffffffff16565b9250826008600082825461221091906133ca565b925050819055506122228630856124ac565b5b60006009541115612286576122566064612248600954876128af90919063ffffffff16565b611b2390919063ffffffff16565b905061228586601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124ac565b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612398576000600b5411156123345761230d60646122ff600b54876128af90919063ffffffff16565b611b2390919063ffffffff16565b9250826008600082825461232191906133ca565b925050819055506123338630856124ac565b5b6000600c541115612397576123676064612359600c54876128af90919063ffffffff16565b611b2390919063ffffffff16565b905061239686601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124ac565b5b5b6123cf6123c0826123b28587611b0d90919063ffffffff16565b611b0d90919063ffffffff16565b856128c590919063ffffffff16565b93505050505b6123e08383836124ac565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906137d3565b60405180910390fd5b6125958383836128db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290613a1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ae91906133ca565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127129190612c5d565b60405180910390a36127258484846128e0565b50505050565b6001601260146101000a81548160ff021916908315150217905550600061275130611061565b9050600f54600754101580156127695750600f548110155b1561282c5760006127866002600f54611b2390919063ffffffff16565b9050600061279f82600f546128c590919063ffffffff16565b905060004790506127b083306128e5565b60006127c582476128c590919063ffffffff16565b90506127d18382612b5f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161280493929190613a3b565b60405180910390a1600f54600760008282546128209190613a72565b92505081905550505050505b600f54600854101580156128425750600f548110155b1561289157612875600f54601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128e5565b600f54600860008282546128899190613a72565b925050819055505b506000601260146101000a81548160ff021916908315150217905550565b600081836128bd9190613aa6565b905092915050565b600081836128d39190613a72565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561290257612901613ae8565b5b6040519080825280602002602001820160405280156129305781602001602082028036833780820191505090505b509050308160008151811061294857612947613b17565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a139190613b5b565b81600181518110612a2757612a26613b17565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505082612a8e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116cc565b1015612ac457612ac330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019611944565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b8152600401612b28959493929190613c81565b600060405180830381600087803b158015612b4257600080fd5b505af1158015612b56573d6000803e3d6000fd5b50505050505050565b612b8c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611944565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612bd8611163565b426040518863ffffffff1660e01b8152600401612bfa96959493929190613cdb565b60606040518083038185885af1158015612c18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c3d9190613d51565b5050505050565b6000819050919050565b612c5781612c44565b82525050565b6000602082019050612c726000830184612c4e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb2578082015181840152602081019050612c97565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cda82612c78565b612ce48185612c83565b9350612cf4818560208601612c94565b612cfd81612cbe565b840191505092915050565b60006020820190508181036000830152612d228184612ccf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5a82612d2f565b9050919050565b612d6a81612d4f565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b612d9681612c44565b8114612da157600080fd5b50565b600081359050612db381612d8d565b92915050565b60008060408385031215612dd057612dcf612d2a565b5b6000612dde85828601612d78565b9250506020612def85828601612da4565b9150509250929050565b60008115159050919050565b612e0e81612df9565b82525050565b6000602082019050612e296000830184612e05565b92915050565b600060208284031215612e4557612e44612d2a565b5b6000612e5384828501612da4565b91505092915050565b60008060408385031215612e7357612e72612d2a565b5b6000612e8185828601612da4565b9250506020612e9285828601612da4565b9150509250929050565b6000819050919050565b6000612ec1612ebc612eb784612d2f565b612e9c565b612d2f565b9050919050565b6000612ed382612ea6565b9050919050565b6000612ee582612ec8565b9050919050565b612ef581612eda565b82525050565b6000602082019050612f106000830184612eec565b92915050565b6000612f2182612d2f565b9050919050565b612f3181612f16565b8114612f3c57600080fd5b50565b600081359050612f4e81612f28565b92915050565b600060208284031215612f6a57612f69612d2a565b5b6000612f7884828501612f3f565b91505092915050565b600080600060608486031215612f9a57612f99612d2a565b5b6000612fa886828701612d78565b9350506020612fb986828701612d78565b9250506040612fca86828701612da4565b9150509250925092565b600060ff82169050919050565b612fea81612fd4565b82525050565b60006020820190506130056000830184612fe1565b92915050565b61301481612d4f565b82525050565b600060208201905061302f600083018461300b565b92915050565b60006020828403121561304b5761304a612d2a565b5b600061305984828501612d78565b91505092915050565b61306b81612f16565b82525050565b60006020820190506130866000830184613062565b92915050565b61309581612df9565b81146130a057600080fd5b50565b6000813590506130b28161308c565b92915050565b600080604083850312156130cf576130ce612d2a565b5b60006130dd85828601612d78565b92505060206130ee858286016130a3565b9150509250929050565b60006020828403121561310e5761310d612d2a565b5b600061311c848285016130a3565b91505092915050565b6000806040838503121561313c5761313b612d2a565b5b600061314a85828601612d78565b925050602061315b85828601612d78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ac57607f821691505b6020821081036131bf576131be613165565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131fb602083612c83565b9150613206826131c5565b602082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b7f74617820746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613267600c83612c83565b915061327282613231565b602082019050919050565b600060208201905081810360008301526132968161325a565b9050919050565b7f76616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b60006132d3600d83612c83565b91506132de8261329d565b602082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613365602883612c83565b915061337082613309565b604082019050919050565b6000602082019050818103600083015261339481613358565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d582612c44565b91506133e083612c44565b92508282019050808211156133f8576133f761339b565b5b92915050565b60006040820190506134136000830185612c4e565b6134206020830184612c4e565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613483602583612c83565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613515602683612c83565b9150613520826134b9565b604082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135a7602483612c83565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613639602283612c83565b9150613644826135dd565b604082019050919050565b600060208201905081810360008301526136688161362c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136a982612c44565b91506136b483612c44565b9250826136c4576136c361366f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061372b602583612c83565b9150613736826136cf565b604082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137bd602383612c83565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061384f602483612c83565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006138e1602b83612c83565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b6000613973602c83612c83565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a05602683612c83565b9150613a10826139a9565b604082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b6000606082019050613a506000830186612c4e565b613a5d6020830185612c4e565b613a6a6040830184612c4e565b949350505050565b6000613a7d82612c44565b9150613a8883612c44565b9250828203905081811115613aa057613a9f61339b565b5b92915050565b6000613ab182612c44565b9150613abc83612c44565b9250828202613aca81612c44565b91508282048414831517613ae157613ae061339b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613b5581612d61565b92915050565b600060208284031215613b7157613b70612d2a565b5b6000613b7f84828501613b46565b91505092915050565b6000819050919050565b6000613bad613ba8613ba384613b88565b612e9c565b612c44565b9050919050565b613bbd81613b92565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf881612d4f565b82525050565b6000613c0a8383613bef565b60208301905092915050565b6000602082019050919050565b6000613c2e82613bc3565b613c388185613bce565b9350613c4383613bdf565b8060005b83811015613c74578151613c5b8882613bfe565b9750613c6683613c16565b925050600181019050613c47565b5085935050505092915050565b600060a082019050613c966000830188612c4e565b613ca36020830187613bb4565b8181036040830152613cb58186613c23565b9050613cc4606083018561300b565b613cd16080830184612c4e565b9695505050505050565b600060c082019050613cf0600083018961300b565b613cfd6020830188612c4e565b613d0a6040830187613bb4565b613d176060830186613bb4565b613d24608083018561300b565b613d3160a0830184612c4e565b979650505050505050565b600081519050613d4b81612d8d565b92915050565b600080600060608486031215613d6a57613d69612d2a565b5b6000613d7886828701613d3c565b9350506020613d8986828701613d3c565b9250506040613d9a86828701613d3c565b915050925092509256fea2646970667358221220af923a323b7a4dbb66ad921a034c6e63ea1bef942af9e1210227ccf03f46101564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806370105c3b1161012e578063a457c2d7116100ab578063dd62ed3e1161006f578063dd62ed3e14610850578063e2f456051461088d578063e6c75f71146108b8578063f2fde38b146108e3578063f5b01e151461090c5761023b565b8063a457c2d714610759578063a9059cbb14610796578063b45e83f8146107d3578063c0246668146107fe578063c49b9a80146108275761023b565b806385141a77116100f257806385141a77146106845780638da5cb5b146106af5780638ea5220f146106da57806391d55f411461070557806395d89b411461072e5761023b565b806370105c3b146105b157806370a08231146105da578063715018a6146106175780637ae3ff471461062e5780637e761377146106595761023b565b80631816467f116101bc5780634a74bb02116101805780634a74bb02146104c85780634b8ce602146104f35780634fbee1931461051e578063556482091461055b5780635aa821a9146105865761023b565b80631816467f146103cf57806323b872dd146103f8578063313ce56714610435578063395093511461046057806349bd5a5e1461049d5761023b565b806309e89af71161020357806309e89af7146102fe5780631127ae3b1461032757806316216e5f146103505780631694505e1461037957806318160ddd146103a45761023b565b806301143fea1461024057806302259e9e1461026b57806306fdde0314610296578063095ea7b3146102c15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610935565b6040516102629190612c5d565b60405180910390f35b34801561027757600080fd5b5061028061093b565b60405161028d9190612c5d565b60405180910390f35b3480156102a257600080fd5b506102ab610941565b6040516102b89190612d08565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612db9565b6109d3565b6040516102f59190612e14565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190612e2f565b6109f1565b005b34801561033357600080fd5b5061034e60048036038101906103499190612e5c565b610a77565b005b34801561035c57600080fd5b5061037760048036038101906103729190612e2f565b610b5b565b005b34801561038557600080fd5b5061038e610c41565b60405161039b9190612efb565b60405180910390f35b3480156103b057600080fd5b506103b9610c67565b6040516103c69190612c5d565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612f54565b610c71565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f81565b610d31565b60405161042c9190612e14565b60405180910390f35b34801561044157600080fd5b5061044a610e29565b6040516104579190612ff0565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612db9565b610e32565b6040516104949190612e14565b60405180910390f35b3480156104a957600080fd5b506104b2610ede565b6040516104bf919061301a565b60405180910390f35b3480156104d457600080fd5b506104dd610f02565b6040516104ea9190612e14565b60405180910390f35b3480156104ff57600080fd5b50610508610f15565b6040516105159190612c5d565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190613035565b610f1b565b6040516105529190612e14565b60405180910390f35b34801561056757600080fd5b50610570610f71565b60405161057d9190612c5d565b60405180910390f35b34801561059257600080fd5b5061059b610f77565b6040516105a89190612c5d565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612e5c565b610f7d565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613035565b611061565b60405161060e9190612c5d565b60405180910390f35b34801561062357600080fd5b5061062c6110a9565b005b34801561063a57600080fd5b50610643611131565b6040516106509190612c5d565b60405180910390f35b34801561066557600080fd5b5061066e611137565b60405161067b9190612c5d565b60405180910390f35b34801561069057600080fd5b5061069961113d565b6040516106a6919061301a565b60405180910390f35b3480156106bb57600080fd5b506106c4611163565b6040516106d1919061301a565b60405180910390f35b3480156106e657600080fd5b506106ef61118d565b6040516106fc9190613071565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612e2f565b6111b3565b005b34801561073a57600080fd5b506107436112da565b6040516107509190612d08565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190612db9565b61136c565b60405161078d9190612e14565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612db9565b611457565b6040516107ca9190612e14565b60405180910390f35b3480156107df57600080fd5b506107e8611475565b6040516107f59190612c5d565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906130b8565b61147b565b005b34801561083357600080fd5b5061084e600480360381019061084991906130f8565b6115fc565b005b34801561085c57600080fd5b5061087760048036038101906108729190613125565b6116cc565b6040516108849190612c5d565b60405180910390f35b34801561089957600080fd5b506108a2611753565b6040516108af9190612c5d565b60405180910390f35b3480156108c457600080fd5b506108cd611759565b6040516108da9190612c5d565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613035565b61175f565b005b34801561091857600080fd5b50610933600480360381019061092e9190612e2f565b611856565b005b600a5481565b600e5481565b60606003805461095090613194565b80601f016020809104026020016040519081016040528092919081815260200182805461097c90613194565b80156109c95780601f1061099e576101008083540402835291602001916109c9565b820191906000526020600020905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b60006109e76109e061193c565b8484611944565b6001905092915050565b6109f961193c565b73ffffffffffffffffffffffffffffffffffffffff16610a17611163565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490613211565b60405180910390fd5b80600f8190555050565b610a7f61193c565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611163565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613211565b60405180910390fd5b6005610b088284611b0d90919063ffffffff16565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061327d565b60405180910390fd5b8060098190555081600a819055505050565b610b6361193c565b73ffffffffffffffffffffffffffffffffffffffff16610b81611163565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613211565b60405180910390fd5b80600e81905550610bfa6101f4610bec610c67565b611b2390919063ffffffff16565b600e541015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c35906132e9565b60405180910390fd5b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610c7961193c565b73ffffffffffffffffffffffffffffffffffffffff16610c97611163565b73ffffffffffffffffffffffffffffffffffffffff1614610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490613211565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610d3e848484611b39565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d8961193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061337b565b60405180910390fd5b610e1d85610e1561193c565b858403611944565b60019150509392505050565b60006012905090565b6000610ed4610e3f61193c565b848460016000610e4d61193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecf91906133ca565b611944565b6001905092915050565b7f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6281565b601260159054906101000a900460ff1681565b60075481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60085481565b600d5481565b610f8561193c565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611163565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613211565b60405180910390fd5b600561100e8284611b0d90919063ffffffff16565b111561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110469061327d565b60405180910390fd5b81600b8190555080600c819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b161193c565b73ffffffffffffffffffffffffffffffffffffffff166110cf611163565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90613211565b60405180910390fd5b61112f60006123e6565b565b60095481565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111bb61193c565b73ffffffffffffffffffffffffffffffffffffffff166111d9611163565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613211565b60405180910390fd5b60006010549050816010819055506112596101f461124b610c67565b611b2390919063ffffffff16565b601054101561129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906132e9565b60405180910390fd5b7f0a7c714b6801281a6e2610a6371ac6a5da9a5947616d74f4aa3ad1d289278e7381836040516112ce9291906133fe565b60405180910390a15050565b6060600480546112e990613194565b80601f016020809104026020016040519081016040528092919081815260200182805461131590613194565b80156113625780601f1061133757610100808354040283529160200191611362565b820191906000526020600020905b81548152906001019060200180831161134557829003601f168201915b5050505050905090565b6000806001600061137b61193c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613499565b60405180910390fd5b61144c61144361193c565b85858403611944565b600191505092915050565b600061146b61146461193c565b8484611b39565b6001905092915050565b600b5481565b61148361193c565b73ffffffffffffffffffffffffffffffffffffffff166114a1611163565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613211565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361155357600080fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115f09190612e14565b60405180910390a25050565b61160461193c565b73ffffffffffffffffffffffffffffffffffffffff16611622611163565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613211565b60405180910390fd5b80601260156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516116c19190612e14565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b60105481565b61176761193c565b73ffffffffffffffffffffffffffffffffffffffff16611785611163565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d290613211565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061352b565b60405180910390fd5b611853816123e6565b50565b61185e61193c565b73ffffffffffffffffffffffffffffffffffffffff1661187c611163565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990613211565b60405180910390fd5b80600d819055506118f56101f46118e7610c67565b611b2390919063ffffffff16565b600d541015611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906132e9565b60405180910390fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa906135bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a199061364f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b009190612c5d565b60405180910390a3505050565b60008183611b1b91906133ca565b905092915050565b60008183611b31919061369e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906137d3565b60405180910390fd5b60008103611c3057611c2b838360006124ac565b6123e1565b7f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611cd55750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d2b5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d8f576000611d3b83611061565b90506010548282611d4c91906133ca565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613865565b60405180910390fd5b505b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e335750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e8a57507f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611ed557600d54811115611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb906138f7565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f795750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fd057507f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561201b57600e5481111561201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190613989565b60405180910390fd5b5b601260149054906101000a900460ff1615801561208357507f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561209b5750601260159054906101000a900460ff165b80156120ba5750600f546008541015806120b95750600f5460075410155b5b156120c8576120c761272b565b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561216c5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123d55760008060007f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603612287576000600a541115612223576121fc60646121ee600a54876128af90919063ffffffff16565b611b2390919063ffffffff16565b9250826008600082825461221091906133ca565b925050819055506122228630856124ac565b5b60006009541115612286576122566064612248600954876128af90919063ffffffff16565b611b2390919063ffffffff16565b905061228586601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124ac565b5b5b7f000000000000000000000000650a8a087655768bfe8b59ccd1c02bc8064cbe6273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612398576000600b5411156123345761230d60646122ff600b54876128af90919063ffffffff16565b611b2390919063ffffffff16565b9250826008600082825461232191906133ca565b925050819055506123338630856124ac565b5b6000600c541115612397576123676064612359600c54876128af90919063ffffffff16565b611b2390919063ffffffff16565b905061239686601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836124ac565b5b5b6123cf6123c0826123b28587611b0d90919063ffffffff16565b611b0d90919063ffffffff16565b856128c590919063ffffffff16565b93505050505b6123e08383836124ac565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906137d3565b60405180910390fd5b6125958383836128db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290613a1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ae91906133ca565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127129190612c5d565b60405180910390a36127258484846128e0565b50505050565b6001601260146101000a81548160ff021916908315150217905550600061275130611061565b9050600f54600754101580156127695750600f548110155b1561282c5760006127866002600f54611b2390919063ffffffff16565b9050600061279f82600f546128c590919063ffffffff16565b905060004790506127b083306128e5565b60006127c582476128c590919063ffffffff16565b90506127d18382612b5f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161280493929190613a3b565b60405180910390a1600f54600760008282546128209190613a72565b92505081905550505050505b600f54600854101580156128425750600f548110155b1561289157612875600f54601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128e5565b600f54600860008282546128899190613a72565b925050819055505b506000601260146101000a81548160ff021916908315150217905550565b600081836128bd9190613aa6565b905092915050565b600081836128d39190613a72565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561290257612901613ae8565b5b6040519080825280602002602001820160405280156129305781602001602082028036833780820191505090505b509050308160008151811061294857612947613b17565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a139190613b5b565b81600181518110612a2757612a26613b17565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505082612a8e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166116cc565b1015612ac457612ac330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019611944565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008486426040518663ffffffff1660e01b8152600401612b28959493929190613c81565b600060405180830381600087803b158015612b4257600080fd5b505af1158015612b56573d6000803e3d6000fd5b50505050505050565b612b8c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611944565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612bd8611163565b426040518863ffffffff1660e01b8152600401612bfa96959493929190613cdb565b60606040518083038185885af1158015612c18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c3d9190613d51565b5050505050565b6000819050919050565b612c5781612c44565b82525050565b6000602082019050612c726000830184612c4e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb2578082015181840152602081019050612c97565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cda82612c78565b612ce48185612c83565b9350612cf4818560208601612c94565b612cfd81612cbe565b840191505092915050565b60006020820190508181036000830152612d228184612ccf565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5a82612d2f565b9050919050565b612d6a81612d4f565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b612d9681612c44565b8114612da157600080fd5b50565b600081359050612db381612d8d565b92915050565b60008060408385031215612dd057612dcf612d2a565b5b6000612dde85828601612d78565b9250506020612def85828601612da4565b9150509250929050565b60008115159050919050565b612e0e81612df9565b82525050565b6000602082019050612e296000830184612e05565b92915050565b600060208284031215612e4557612e44612d2a565b5b6000612e5384828501612da4565b91505092915050565b60008060408385031215612e7357612e72612d2a565b5b6000612e8185828601612da4565b9250506020612e9285828601612da4565b9150509250929050565b6000819050919050565b6000612ec1612ebc612eb784612d2f565b612e9c565b612d2f565b9050919050565b6000612ed382612ea6565b9050919050565b6000612ee582612ec8565b9050919050565b612ef581612eda565b82525050565b6000602082019050612f106000830184612eec565b92915050565b6000612f2182612d2f565b9050919050565b612f3181612f16565b8114612f3c57600080fd5b50565b600081359050612f4e81612f28565b92915050565b600060208284031215612f6a57612f69612d2a565b5b6000612f7884828501612f3f565b91505092915050565b600080600060608486031215612f9a57612f99612d2a565b5b6000612fa886828701612d78565b9350506020612fb986828701612d78565b9250506040612fca86828701612da4565b9150509250925092565b600060ff82169050919050565b612fea81612fd4565b82525050565b60006020820190506130056000830184612fe1565b92915050565b61301481612d4f565b82525050565b600060208201905061302f600083018461300b565b92915050565b60006020828403121561304b5761304a612d2a565b5b600061305984828501612d78565b91505092915050565b61306b81612f16565b82525050565b60006020820190506130866000830184613062565b92915050565b61309581612df9565b81146130a057600080fd5b50565b6000813590506130b28161308c565b92915050565b600080604083850312156130cf576130ce612d2a565b5b60006130dd85828601612d78565b92505060206130ee858286016130a3565b9150509250929050565b60006020828403121561310e5761310d612d2a565b5b600061311c848285016130a3565b91505092915050565b6000806040838503121561313c5761313b612d2a565b5b600061314a85828601612d78565b925050602061315b85828601612d78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ac57607f821691505b6020821081036131bf576131be613165565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131fb602083612c83565b9150613206826131c5565b602082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b7f74617820746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613267600c83612c83565b915061327282613231565b602082019050919050565b600060208201905081810360008301526132968161325a565b9050919050565b7f76616c756520746f6f206c6f7700000000000000000000000000000000000000600082015250565b60006132d3600d83612c83565b91506132de8261329d565b602082019050919050565b60006020820190508181036000830152613302816132c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613365602883612c83565b915061337082613309565b604082019050919050565b6000602082019050818103600083015261339481613358565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133d582612c44565b91506133e083612c44565b92508282019050808211156133f8576133f761339b565b5b92915050565b60006040820190506134136000830185612c4e565b6134206020830184612c4e565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613483602583612c83565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613515602683612c83565b9150613520826134b9565b604082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135a7602483612c83565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613639602283612c83565b9150613644826135dd565b604082019050919050565b600060208201905081810360008301526136688161362c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136a982612c44565b91506136b483612c44565b9250826136c4576136c361366f565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061372b602583612c83565b9150613736826136cf565b604082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137bd602383612c83565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061384f602483612c83565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006138e1602b83612c83565b91506138ec82613885565b604082019050919050565b60006020820190508181036000830152613910816138d4565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b6000613973602c83612c83565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a05602683612c83565b9150613a10826139a9565b604082019050919050565b60006020820190508181036000830152613a34816139f8565b9050919050565b6000606082019050613a506000830186612c4e565b613a5d6020830185612c4e565b613a6a6040830184612c4e565b949350505050565b6000613a7d82612c44565b9150613a8883612c44565b9250828203905081811115613aa057613a9f61339b565b5b92915050565b6000613ab182612c44565b9150613abc83612c44565b9250828202613aca81612c44565b91508282048414831517613ae157613ae061339b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613b5581612d61565b92915050565b600060208284031215613b7157613b70612d2a565b5b6000613b7f84828501613b46565b91505092915050565b6000819050919050565b6000613bad613ba8613ba384613b88565b612e9c565b612c44565b9050919050565b613bbd81613b92565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf881612d4f565b82525050565b6000613c0a8383613bef565b60208301905092915050565b6000602082019050919050565b6000613c2e82613bc3565b613c388185613bce565b9350613c4383613bdf565b8060005b83811015613c74578151613c5b8882613bfe565b9750613c6683613c16565b925050600181019050613c47565b5085935050505092915050565b600060a082019050613c966000830188612c4e565b613ca36020830187613bb4565b8181036040830152613cb58186613c23565b9050613cc4606083018561300b565b613cd16080830184612c4e565b9695505050505050565b600060c082019050613cf0600083018961300b565b613cfd6020830188612c4e565b613d0a6040830187613bb4565b613d176060830186613bb4565b613d24608083018561300b565b613d3160a0830184612c4e565b979650505050505050565b600081519050613d4b81612d8d565b92915050565b600080600060608486031215613d6a57613d69612d2a565b5b6000613d7886828701613d3c565b9350506020613d8986828701613d3c565b9250506040613d9a86828701613d3c565b915050925092509256fea2646970667358221220af923a323b7a4dbb66ad921a034c6e63ea1bef942af9e1210227ccf03f46101564736f6c63430008110033

Deployed Bytecode Sourcemap

25570:9584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25848:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26023:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3728:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5134:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34367:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33099:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33881:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25648:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4316:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33534:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5369:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4158:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5979:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25696:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26415:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25743:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34495:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25780:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25958:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33315:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4487:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:94;;;;;;;;;;;;;:::i;:::-;;25811:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25921:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26300:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2002:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26207:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34811:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3947:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6312:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4684:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25884:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34114:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34632:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4922:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26089:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26149:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2737:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33655:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25848:28;;;;:::o;26023:59::-;;;;:::o;3728:100::-;3782:13;3815:5;3808:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3728:100;:::o;5134:169::-;5217:4;5234:39;5243:12;:10;:12::i;:::-;5257:7;5266:6;5234:8;:39::i;:::-;5291:4;5284:11;;5134:169;;;;:::o;34367:116::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34467:8:::1;34446:18;:29;;;;34367:116:::0;:::o;33099:208::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33219:1:::1;33194:21;33206:8;33194:7;:11;;:21;;;;:::i;:::-;:26;;33186:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;33261:8;33248:10;:21;;;;33292:7;33280:9;:19;;;;33099:208:::0;;:::o;33881:221::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33995:12:::1;33968:24;:39;;;;34054:22;34072:3;34054:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;34026:24;;:50;;34018:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33881:221:::0;:::o;25648:41::-;;;;;;;;;;;;;:::o;4316:108::-;4377:7;4404:12;;4397:19;;4316:108;:::o;33534:113::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33629:10:::1;33617:9;;:22;;;;;;;;;;;;;;;;;;33534:113:::0;:::o;5369:492::-;5509:4;5526:36;5536:6;5544:9;5555:6;5526:9;:36::i;:::-;5575:24;5602:11;:19;5614:6;5602:19;;;;;;;;;;;;;;;:33;5622:12;:10;:12::i;:::-;5602:33;;;;;;;;;;;;;;;;5575:60;;5674:6;5654:16;:26;;5646:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5761:57;5770:6;5778:12;:10;:12::i;:::-;5811:6;5792:16;:25;5761:8;:57::i;:::-;5849:4;5842:11;;;5369:492;;;;;:::o;4158:93::-;4216:5;4241:2;4234:9;;4158:93;:::o;5979:215::-;6067:4;6084:80;6093:12;:10;:12::i;:::-;6107:7;6153:10;6116:11;:25;6128:12;:10;:12::i;:::-;6116:25;;;;;;;;;;;;;;;:34;6142:7;6116:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6084:8;:80::i;:::-;6182:4;6175:11;;5979:215;;;;:::o;25696:38::-;;;:::o;26415:40::-;;;;;;;;;;;;;:::o;25743:30::-;;;;:::o;34495:125::-;34560:4;34584:19;:28;34604:7;34584:28;;;;;;;;;;;;;;;;;;;;;;;;;34577:35;;34495:125;;;:::o;25780:24::-;;;;:::o;25958:58::-;;;;:::o;33315:211::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33436:1:::1;33411:21;33423:8;33411:7;:11;;:21;;;;:::i;:::-;:26;;33403:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;33478:7;33465:10;:20;;;;33510:8;33496:11;:22;;;;33315:211:::0;;:::o;4487:127::-;4561:7;4588:9;:18;4598:7;4588:18;;;;;;;;;;;;;;;;4581:25;;4487:127;;;:::o;2488:94::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2553:21:::1;2571:1;2553:9;:21::i;:::-;2488:94::o:0;25811:29::-;;;;:::o;25921:30::-;;;;:::o;26300:70::-;;;;;;;;;;;;;:::o;2002:87::-;2048:7;2075:6;;;;;;;;;;;2068:13;;2002:87;:::o;26207:86::-;;;;;;;;;;;;;:::o;34811:290::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34887:17:::1;34907:14;;34887:34;;34948:9;34931:14;:26;;;;34994:22;35012:3;34994:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;34976:14;;:40;;34968:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35050:44;35073:9;35084;35050:44;;;;;;;:::i;:::-;;;;;;;;34876:225;34811:290:::0;:::o;3947:104::-;4003:13;4036:7;4029:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:104;:::o;6312:413::-;6405:4;6422:24;6449:11;:25;6461:12;:10;:12::i;:::-;6449:25;;;;;;;;;;;;;;;:34;6475:7;6449:34;;;;;;;;;;;;;;;;6422:61;;6522:15;6502:16;:35;;6494:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6615:67;6624:12;:10;:12::i;:::-;6638:7;6666:15;6647:16;:34;6615:8;:67::i;:::-;6713:4;6706:11;;;6312:413;;;;:::o;4684:175::-;4770:4;4787:42;4797:12;:10;:12::i;:::-;4811:9;4822:6;4787:9;:42::i;:::-;4847:4;4840:11;;4684:175;;;;:::o;25884:29::-;;;;:::o;34114:245::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34239:8:::1;34207:40;;:19;:28;34227:7;34207:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;34199:50:::1;;;::::0;::::1;;34291:8;34260:19;:28;34280:7;34260:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34333:7;34317:34;;;34342:8;34317:34;;;;;;:::i;:::-;;;;;;;;34114:245:::0;;:::o;34632:171::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34733:8:::1;34709:21;;:32;;;;;;;;;;;;;;;;;;34757:38;34786:8;34757:38;;;;;;:::i;:::-;;;;;;;;34632:171:::0;:::o;4922:151::-;5011:7;5038:11;:18;5050:5;5038:18;;;;;;;;;;;;;;;:27;5057:7;5038:27;;;;;;;;;;;;;;;;5031:34;;4922:151;;;;:::o;26089:53::-;;;;:::o;26149:49::-;;;;:::o;2737:192::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2846:1:::1;2826:22;;:8;:22;;::::0;2818:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2902:19;2912:8;2902:9;:19::i;:::-;2737:192:::0;:::o;33655:218::-;2233:12;:10;:12::i;:::-;2222:23;;:7;:5;:7::i;:::-;:23;;;2214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33767:12:::1;33741:23;:38;;;;33825:22;33843:3;33825:13;:11;:13::i;:::-;:17;;:22;;;;:::i;:::-;33798:23;;:49;;33790:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;33655:218:::0;:::o;1194:98::-;1247:7;1274:10;1267:17;;1194:98;:::o;8218:380::-;8371:1;8354:19;;:5;:19;;;8346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8452:1;8433:21;;:7;:21;;;8425:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8536:6;8506:11;:18;8518:5;8506:18;;;;;;;;;;;;;;;:27;8525:7;8506:27;;;;;;;;;;;;;;;:36;;;;8574:7;8558:32;;8567:5;8558:32;;;8583:6;8558:32;;;;;;:::i;:::-;;;;;;;;8218:380;;;:::o;18008:98::-;18066:7;18097:1;18093;:5;;;;:::i;:::-;18086:12;;18008:98;;;;:::o;18744:::-;18802:7;18833:1;18829;:5;;;;:::i;:::-;18822:12;;18744:98;;;;:::o;28000:2688::-;28148:1;28132:18;;:4;:18;;;28124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28225:1;28211:16;;:2;:16;;;28203:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28300:1;28290:6;:11;28287:92;;28318:28;28334:4;28340:2;28344:1;28318:15;:28::i;:::-;28361:7;;28287:92;28401:13;28395:19;;:4;:19;;;:49;;;;;28419:19;:25;28439:4;28419:25;;;;;;;;;;;;;;;;;;;;;;;;;28418:26;28395:49;:77;;;;;28449:19;:23;28469:2;28449:23;;;;;;;;;;;;;;;;;;;;;;;;;28448:24;28395:77;28391:273;;;28489:32;28524:13;28534:2;28524:9;:13::i;:::-;28489:48;;28597:14;;28587:6;28560:24;:33;;;;:::i;:::-;:51;;28552:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;28474:190;28391:273;28680:19;:25;28700:4;28680:25;;;;;;;;;;;;;;;;;;;;;;;;;28679:26;:54;;;;;28710:19;:23;28730:2;28710:23;;;;;;;;;;;;;;;;;;;;;;;;;28709:24;28679:54;:77;;;;;28743:13;28737:19;;:4;:19;;;28679:77;28676:197;;;28790:23;;28780:6;:33;;28772:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;28676:197;28889:19;:25;28909:4;28889:25;;;;;;;;;;;;;;;;;;;;;;;;;28888:26;:54;;;;;28919:19;:23;28939:2;28919:23;;;;;;;;;;;;;;;;;;;;;;;;;28918:24;28888:54;:75;;;;;28950:13;28946:17;;:2;:17;;;28888:75;28885:197;;;28997:24;;28987:6;:34;;28979:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;28885:197;29102:16;;;;;;;;;;;29101:17;:38;;;;;29126:13;29122:17;;:2;:17;;;29101:38;:77;;;;;29157:21;;;;;;;;;;;29101:77;:182;;;;;29210:18;;29197:9;;:31;;:85;;;;29264:18;;29245:15;;:37;;29197:85;29101:182;29098:239;;;29309:16;:14;:16::i;:::-;29098:239;29368:19;:25;29388:4;29368:25;;;;;;;;;;;;;;;;;;;;;;;;;29367:26;:54;;;;;29398:19;:23;29418:2;29398:23;;;;;;;;;;;;;;;;;;;;;;;;;29397:24;29367:54;29364:1269;;;29438:16;29469:22;29506:17;29561:13;29555:19;;:4;:19;;;29552:485;;29628:1;29616:9;;:13;29613:215;;;29665:30;29691:3;29665:21;29676:9;;29665:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;29654:41;;29731:8;29718:9;;:21;;;;;;;:::i;:::-;;;;;;;;29762:46;29778:4;29792;29799:8;29762:15;:46::i;:::-;29613:215;29864:1;29851:10;;:14;29848:172;;;29902:31;29929:3;29902:22;29913:10;;29902:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;29890:43;;29956:44;29972:4;29978:10;;;;;;;;;;;29990:9;29956:15;:44::i;:::-;29848:172;29552:485;30060:13;30056:17;;:2;:17;;;30053:486;;30127:1;30114:10;;:14;30111:217;;;30164:31;30191:3;30164:22;30175:10;;30164:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;30153:42;;30231:8;30218:9;;:21;;;;;;;:::i;:::-;;;;;;;;30262:46;30278:4;30292;30299:8;30262:15;:46::i;:::-;30111:217;30365:1;30351:11;;:15;30348:174;;;30403:32;30431:3;30403:23;30414:11;;30403:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;30391:44;;30458;30474:4;30480:10;;;;;;;;;;;30492:9;30458:15;:44::i;:::-;30348:174;30053:486;30564:55;30575:43;30608:9;30575:28;30588:14;30575:8;:12;;:28;;;;:::i;:::-;:32;;:43;;;;:::i;:::-;30564:6;:10;;:55;;;;:::i;:::-;30555:64;;29423:1210;;;29364:1269;30645:33;30661:4;30667:2;30671:6;30645:15;:33::i;:::-;28000:2688;;;;:::o;2937:173::-;2993:16;3012:6;;;;;;;;;;;2993:25;;3038:8;3029:6;;:17;;;;;;;;;;;;;;;;;;3093:8;3062:40;;3083:8;3062:40;;;;;;;;;;;;2982:128;2937:173;:::o;6827:733::-;6985:1;6967:20;;:6;:20;;;6959:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7069:1;7048:23;;:9;:23;;;7040:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7124:47;7145:6;7153:9;7164:6;7124:20;:47::i;:::-;7184:21;7208:9;:17;7218:6;7208:17;;;;;;;;;;;;;;;;7184:41;;7261:6;7244:13;:23;;7236:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7382:6;7366:13;:22;7346:9;:17;7356:6;7346:17;;;;;;;;;;;;;;;:42;;;;7434:6;7410:9;:20;7420:9;7410:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7475:9;7458:35;;7467:6;7458:35;;;7486:6;7458:35;;;;;;:::i;:::-;;;;;;;;7506:46;7526:6;7534:9;7545:6;7506:19;:46::i;:::-;6948:612;6827:733;;;:::o;30696:1171::-;27082:4;27063:16;;:23;;;;;;;;;;;;;;;;;;30753:28:::1;30784:24;30802:4;30784:9;:24::i;:::-;30753:55;;30841:18;;30822:15;;:37;;:83;;;;;30887:18;;30863:20;:42;;30822:83;30819:825;;;30977:12;30992:25;31015:1;30992:18;;:22;;:25;;;;:::i;:::-;30977:40;;31032:17;31052:28;31075:4;31052:18;;:22;;:28;;;;:::i;:::-;31032:48;;31157:22;31182:21;31157:46;;31256:37;31273:4;31287;31256:16;:37::i;:::-;31362:18;31383:41;31409:14;31383:21;:25;;:41;;;;:::i;:::-;31362:62;;31482:35;31495:9;31506:10;31482:12;:35::i;:::-;31537:43;31552:4;31558:10;31570:9;31537:43;;;;;;;;:::i;:::-;;;;;;;;31614:18;;31595:15;;:37;;;;;;;:::i;:::-;;;;;;;;30907:737;;;;30819:825;31672:18;;31659:9;;:31;;:77;;;;;31718:18;;31694:20;:42;;31659:77;31656:202;;;31753:47;31770:18;;31790:9;;;;;;;;;;;31753:16;:47::i;:::-;31828:18;;31815:9;;:31;;;;;;;:::i;:::-;;;;;;;;31656:202;30742:1125;27128:5:::0;27109:16;;:24;;;;;;;;;;;;;;;;;;30696:1171::o;18477:98::-;18535:7;18566:1;18562;:5;;;;:::i;:::-;18555:12;;18477:98;;;;:::o;18256:::-;18314:7;18345:1;18341;:5;;;;:::i;:::-;18334:12;;18256:98;;;;:::o;8731:125::-;;;;:::o;8988:124::-;;;;:::o;32396:695::-;32535:21;32573:1;32559:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32535:40;;32604:4;32586;32591:1;32586:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32630:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32620:4;32625:1;32620:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32721:11;32668:50;32686:4;32701:15;;;;;;;;;;;32668:9;:50::i;:::-;:64;32665:156;;;32747:62;32764:4;32779:15;;;;;;;;;;;32806:1;32797:11;32747:8;:62::i;:::-;32665:156;32859:15;;;;;;;;;;;:66;;;32940:11;32966:1;33010:4;33029:3;33047:15;32859:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32464:627;32396:695;;:::o;31875:513::-;32023:62;32040:4;32055:15;;;;;;;;;;;32073:11;32023:8;:62::i;:::-;32128:15;;;;;;;;;;;:31;;;32167:9;32200:4;32220:11;32246:1;32289;32332:7;:5;:7::i;:::-;32354:15;32128:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31875:513;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:246::-;803:1;813:113;827:6;824:1;821:13;813:113;;;912:1;907:3;903:11;897:18;893:1;888:3;884:11;877:39;849:2;846:1;842:10;837:15;;813:113;;;960:1;951:6;946:3;942:16;935:27;784:184;722:246;;;:::o;974:102::-;1015:6;1066:2;1062:7;1057:2;1050:5;1046:14;1042:28;1032:38;;974:102;;;:::o;1082:377::-;1170:3;1198:39;1231:5;1198:39;:::i;:::-;1253:71;1317:6;1312:3;1253:71;:::i;:::-;1246:78;;1333:65;1391:6;1386:3;1379:4;1372:5;1368:16;1333:65;:::i;:::-;1423:29;1445:6;1423:29;:::i;:::-;1418:3;1414:39;1407:46;;1174:285;1082:377;;;;:::o;1465:313::-;1578:4;1616:2;1605:9;1601:18;1593:26;;1665:9;1659:4;1655:20;1651:1;1640:9;1636:17;1629:47;1693:78;1766:4;1757:6;1693:78;:::i;:::-;1685:86;;1465:313;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:474::-;4201:6;4209;4258:2;4246:9;4237:7;4233:23;4229:32;4226:119;;;4264:79;;:::i;:::-;4226:119;4384:1;4409:53;4454:7;4445:6;4434:9;4430:22;4409:53;:::i;:::-;4399:63;;4355:117;4511:2;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4482:118;4133:474;;;;;:::o;4613:60::-;4641:3;4662:5;4655:12;;4613:60;;;:::o;4679:142::-;4729:9;4762:53;4780:34;4789:24;4807:5;4789:24;:::i;:::-;4780:34;:::i;:::-;4762:53;:::i;:::-;4749:66;;4679:142;;;:::o;4827:126::-;4877:9;4910:37;4941:5;4910:37;:::i;:::-;4897:50;;4827:126;;;:::o;4959:153::-;5036:9;5069:37;5100:5;5069:37;:::i;:::-;5056:50;;4959:153;;;:::o;5118:185::-;5232:64;5290:5;5232:64;:::i;:::-;5227:3;5220:77;5118:185;;:::o;5309:276::-;5429:4;5467:2;5456:9;5452:18;5444:26;;5480:98;5575:1;5564:9;5560:17;5551:6;5480:98;:::i;:::-;5309:276;;;;:::o;5591:104::-;5636:7;5665:24;5683:5;5665:24;:::i;:::-;5654:35;;5591:104;;;:::o;5701:138::-;5782:32;5808:5;5782:32;:::i;:::-;5775:5;5772:43;5762:71;;5829:1;5826;5819:12;5762:71;5701:138;:::o;5845:155::-;5899:5;5937:6;5924:20;5915:29;;5953:41;5988:5;5953:41;:::i;:::-;5845:155;;;;:::o;6006:345::-;6073:6;6122:2;6110:9;6101:7;6097:23;6093:32;6090:119;;;6128:79;;:::i;:::-;6090:119;6248:1;6273:61;6326:7;6317:6;6306:9;6302:22;6273:61;:::i;:::-;6263:71;;6219:125;6006:345;;;;:::o;6357:619::-;6434:6;6442;6450;6499:2;6487:9;6478:7;6474:23;6470:32;6467:119;;;6505:79;;:::i;:::-;6467:119;6625:1;6650:53;6695:7;6686:6;6675:9;6671:22;6650:53;:::i;:::-;6640:63;;6596:117;6752:2;6778:53;6823:7;6814:6;6803:9;6799:22;6778:53;:::i;:::-;6768:63;;6723:118;6880:2;6906:53;6951:7;6942:6;6931:9;6927:22;6906:53;:::i;:::-;6896:63;;6851:118;6357:619;;;;;:::o;6982:86::-;7017:7;7057:4;7050:5;7046:16;7035:27;;6982:86;;;:::o;7074:112::-;7157:22;7173:5;7157:22;:::i;:::-;7152:3;7145:35;7074:112;;:::o;7192:214::-;7281:4;7319:2;7308:9;7304:18;7296:26;;7332:67;7396:1;7385:9;7381:17;7372:6;7332:67;:::i;:::-;7192:214;;;;:::o;7412:118::-;7499:24;7517:5;7499:24;:::i;:::-;7494:3;7487:37;7412:118;;:::o;7536:222::-;7629:4;7667:2;7656:9;7652:18;7644:26;;7680:71;7748:1;7737:9;7733:17;7724:6;7680:71;:::i;:::-;7536:222;;;;:::o;7764:329::-;7823:6;7872:2;7860:9;7851:7;7847:23;7843:32;7840:119;;;7878:79;;:::i;:::-;7840:119;7998:1;8023:53;8068:7;8059:6;8048:9;8044:22;8023:53;:::i;:::-;8013:63;;7969:117;7764:329;;;;:::o;8099:142::-;8202:32;8228:5;8202:32;:::i;:::-;8197:3;8190:45;8099:142;;:::o;8247:254::-;8356:4;8394:2;8383:9;8379:18;8371:26;;8407:87;8491:1;8480:9;8476:17;8467:6;8407:87;:::i;:::-;8247:254;;;;:::o;8507:116::-;8577:21;8592:5;8577:21;:::i;:::-;8570:5;8567:32;8557:60;;8613:1;8610;8603:12;8557:60;8507:116;:::o;8629:133::-;8672:5;8710:6;8697:20;8688:29;;8726:30;8750:5;8726:30;:::i;:::-;8629:133;;;;:::o;8768:468::-;8833:6;8841;8890:2;8878:9;8869:7;8865:23;8861:32;8858:119;;;8896:79;;:::i;:::-;8858:119;9016:1;9041:53;9086:7;9077:6;9066:9;9062:22;9041:53;:::i;:::-;9031:63;;8987:117;9143:2;9169:50;9211:7;9202:6;9191:9;9187:22;9169:50;:::i;:::-;9159:60;;9114:115;8768:468;;;;;:::o;9242:323::-;9298:6;9347:2;9335:9;9326:7;9322:23;9318:32;9315:119;;;9353:79;;:::i;:::-;9315:119;9473:1;9498:50;9540:7;9531:6;9520:9;9516:22;9498:50;:::i;:::-;9488:60;;9444:114;9242:323;;;;:::o;9571:474::-;9639:6;9647;9696:2;9684:9;9675:7;9671:23;9667:32;9664:119;;;9702:79;;:::i;:::-;9664:119;9822:1;9847:53;9892:7;9883:6;9872:9;9868:22;9847:53;:::i;:::-;9837:63;;9793:117;9949:2;9975:53;10020:7;10011:6;10000:9;9996:22;9975:53;:::i;:::-;9965:63;;9920:118;9571:474;;;;;:::o;10051:180::-;10099:77;10096:1;10089:88;10196:4;10193:1;10186:15;10220:4;10217:1;10210:15;10237:320;10281:6;10318:1;10312:4;10308:12;10298:22;;10365:1;10359:4;10355:12;10386:18;10376:81;;10442:4;10434:6;10430:17;10420:27;;10376:81;10504:2;10496:6;10493:14;10473:18;10470:38;10467:84;;10523:18;;:::i;:::-;10467:84;10288:269;10237:320;;;:::o;10563:182::-;10703:34;10699:1;10691:6;10687:14;10680:58;10563:182;:::o;10751:366::-;10893:3;10914:67;10978:2;10973:3;10914:67;:::i;:::-;10907:74;;10990:93;11079:3;10990:93;:::i;:::-;11108:2;11103:3;11099:12;11092:19;;10751:366;;;:::o;11123:419::-;11289:4;11327:2;11316:9;11312:18;11304:26;;11376:9;11370:4;11366:20;11362:1;11351:9;11347:17;11340:47;11404:131;11530:4;11404:131;:::i;:::-;11396:139;;11123:419;;;:::o;11548:162::-;11688:14;11684:1;11676:6;11672:14;11665:38;11548:162;:::o;11716:366::-;11858:3;11879:67;11943:2;11938:3;11879:67;:::i;:::-;11872:74;;11955:93;12044:3;11955:93;:::i;:::-;12073:2;12068:3;12064:12;12057:19;;11716:366;;;:::o;12088:419::-;12254:4;12292:2;12281:9;12277:18;12269:26;;12341:9;12335:4;12331:20;12327:1;12316:9;12312:17;12305:47;12369:131;12495:4;12369:131;:::i;:::-;12361:139;;12088:419;;;:::o;12513:163::-;12653:15;12649:1;12641:6;12637:14;12630:39;12513:163;:::o;12682:366::-;12824:3;12845:67;12909:2;12904:3;12845:67;:::i;:::-;12838:74;;12921:93;13010:3;12921:93;:::i;:::-;13039:2;13034:3;13030:12;13023:19;;12682:366;;;:::o;13054:419::-;13220:4;13258:2;13247:9;13243:18;13235:26;;13307:9;13301:4;13297:20;13293:1;13282:9;13278:17;13271:47;13335:131;13461:4;13335:131;:::i;:::-;13327:139;;13054:419;;;:::o;13479:227::-;13619:34;13615:1;13607:6;13603:14;13596:58;13688:10;13683:2;13675:6;13671:15;13664:35;13479:227;:::o;13712:366::-;13854:3;13875:67;13939:2;13934:3;13875:67;:::i;:::-;13868:74;;13951:93;14040:3;13951:93;:::i;:::-;14069:2;14064:3;14060:12;14053:19;;13712:366;;;:::o;14084:419::-;14250:4;14288:2;14277:9;14273:18;14265:26;;14337:9;14331:4;14327:20;14323:1;14312:9;14308:17;14301:47;14365:131;14491:4;14365:131;:::i;:::-;14357:139;;14084:419;;;:::o;14509:180::-;14557:77;14554:1;14547:88;14654:4;14651:1;14644:15;14678:4;14675:1;14668:15;14695:191;14735:3;14754:20;14772:1;14754:20;:::i;:::-;14749:25;;14788:20;14806:1;14788:20;:::i;:::-;14783:25;;14831:1;14828;14824:9;14817:16;;14852:3;14849:1;14846:10;14843:36;;;14859:18;;:::i;:::-;14843:36;14695:191;;;;:::o;14892:332::-;15013:4;15051:2;15040:9;15036:18;15028:26;;15064:71;15132:1;15121:9;15117:17;15108:6;15064:71;:::i;:::-;15145:72;15213:2;15202:9;15198:18;15189:6;15145:72;:::i;:::-;14892:332;;;;;:::o;15230:224::-;15370:34;15366:1;15358:6;15354:14;15347:58;15439:7;15434:2;15426:6;15422:15;15415:32;15230:224;:::o;15460:366::-;15602:3;15623:67;15687:2;15682:3;15623:67;:::i;:::-;15616:74;;15699:93;15788:3;15699:93;:::i;:::-;15817:2;15812:3;15808:12;15801:19;;15460:366;;;:::o;15832:419::-;15998:4;16036:2;16025:9;16021:18;16013:26;;16085:9;16079:4;16075:20;16071:1;16060:9;16056:17;16049:47;16113:131;16239:4;16113:131;:::i;:::-;16105:139;;15832:419;;;:::o;16257:225::-;16397:34;16393:1;16385:6;16381:14;16374:58;16466:8;16461:2;16453:6;16449:15;16442:33;16257:225;:::o;16488:366::-;16630:3;16651:67;16715:2;16710:3;16651:67;:::i;:::-;16644:74;;16727:93;16816:3;16727:93;:::i;:::-;16845:2;16840:3;16836:12;16829:19;;16488:366;;;:::o;16860:419::-;17026:4;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;16860:419;;;:::o;17285:223::-;17425:34;17421:1;17413:6;17409:14;17402:58;17494:6;17489:2;17481:6;17477:15;17470:31;17285:223;:::o;17514:366::-;17656:3;17677:67;17741:2;17736:3;17677:67;:::i;:::-;17670:74;;17753:93;17842:3;17753:93;:::i;:::-;17871:2;17866:3;17862:12;17855:19;;17514:366;;;:::o;17886:419::-;18052:4;18090:2;18079:9;18075:18;18067:26;;18139:9;18133:4;18129:20;18125:1;18114:9;18110:17;18103:47;18167:131;18293:4;18167:131;:::i;:::-;18159:139;;17886:419;;;:::o;18311:221::-;18451:34;18447:1;18439:6;18435:14;18428:58;18520:4;18515:2;18507:6;18503:15;18496:29;18311:221;:::o;18538:366::-;18680:3;18701:67;18765:2;18760:3;18701:67;:::i;:::-;18694:74;;18777:93;18866:3;18777:93;:::i;:::-;18895:2;18890:3;18886:12;18879:19;;18538:366;;;:::o;18910:419::-;19076:4;19114:2;19103:9;19099:18;19091:26;;19163:9;19157:4;19153:20;19149:1;19138:9;19134:17;19127:47;19191:131;19317:4;19191:131;:::i;:::-;19183:139;;18910:419;;;:::o;19335:180::-;19383:77;19380:1;19373:88;19480:4;19477:1;19470:15;19504:4;19501:1;19494:15;19521:185;19561:1;19578:20;19596:1;19578:20;:::i;:::-;19573:25;;19612:20;19630:1;19612:20;:::i;:::-;19607:25;;19651:1;19641:35;;19656:18;;:::i;:::-;19641:35;19698:1;19695;19691:9;19686:14;;19521:185;;;;:::o;19712:224::-;19852:34;19848:1;19840:6;19836:14;19829:58;19921:7;19916:2;19908:6;19904:15;19897:32;19712:224;:::o;19942:366::-;20084:3;20105:67;20169:2;20164:3;20105:67;:::i;:::-;20098:74;;20181:93;20270:3;20181:93;:::i;:::-;20299:2;20294:3;20290:12;20283:19;;19942:366;;;:::o;20314:419::-;20480:4;20518:2;20507:9;20503:18;20495:26;;20567:9;20561:4;20557:20;20553:1;20542:9;20538:17;20531:47;20595:131;20721:4;20595:131;:::i;:::-;20587:139;;20314:419;;;:::o;20739:222::-;20879:34;20875:1;20867:6;20863:14;20856:58;20948:5;20943:2;20935:6;20931:15;20924:30;20739:222;:::o;20967:366::-;21109:3;21130:67;21194:2;21189:3;21130:67;:::i;:::-;21123:74;;21206:93;21295:3;21206:93;:::i;:::-;21324:2;21319:3;21315:12;21308:19;;20967:366;;;:::o;21339:419::-;21505:4;21543:2;21532:9;21528:18;21520:26;;21592:9;21586:4;21582:20;21578:1;21567:9;21563:17;21556:47;21620:131;21746:4;21620:131;:::i;:::-;21612:139;;21339:419;;;:::o;21764:223::-;21904:34;21900:1;21892:6;21888:14;21881:58;21973:6;21968:2;21960:6;21956:15;21949:31;21764:223;:::o;21993:366::-;22135:3;22156:67;22220:2;22215:3;22156:67;:::i;:::-;22149:74;;22232:93;22321:3;22232:93;:::i;:::-;22350:2;22345:3;22341:12;22334:19;;21993:366;;;:::o;22365:419::-;22531:4;22569:2;22558:9;22554:18;22546:26;;22618:9;22612:4;22608:20;22604:1;22593:9;22589:17;22582:47;22646:131;22772:4;22646:131;:::i;:::-;22638:139;;22365:419;;;:::o;22790:230::-;22930:34;22926:1;22918:6;22914:14;22907:58;22999:13;22994:2;22986:6;22982:15;22975:38;22790:230;:::o;23026:366::-;23168:3;23189:67;23253:2;23248:3;23189:67;:::i;:::-;23182:74;;23265:93;23354:3;23265:93;:::i;:::-;23383:2;23378:3;23374:12;23367:19;;23026:366;;;:::o;23398:419::-;23564:4;23602:2;23591:9;23587:18;23579:26;;23651:9;23645:4;23641:20;23637:1;23626:9;23622:17;23615:47;23679:131;23805:4;23679:131;:::i;:::-;23671:139;;23398:419;;;:::o;23823:231::-;23963:34;23959:1;23951:6;23947:14;23940:58;24032:14;24027:2;24019:6;24015:15;24008:39;23823:231;:::o;24060:366::-;24202:3;24223:67;24287:2;24282:3;24223:67;:::i;:::-;24216:74;;24299:93;24388:3;24299:93;:::i;:::-;24417:2;24412:3;24408:12;24401:19;;24060:366;;;:::o;24432:419::-;24598:4;24636:2;24625:9;24621:18;24613:26;;24685:9;24679:4;24675:20;24671:1;24660:9;24656:17;24649:47;24713:131;24839:4;24713:131;:::i;:::-;24705:139;;24432:419;;;:::o;24857:225::-;24997:34;24993:1;24985:6;24981:14;24974:58;25066:8;25061:2;25053:6;25049:15;25042:33;24857:225;:::o;25088:366::-;25230:3;25251:67;25315:2;25310:3;25251:67;:::i;:::-;25244:74;;25327:93;25416:3;25327:93;:::i;:::-;25445:2;25440:3;25436:12;25429:19;;25088:366;;;:::o;25460:419::-;25626:4;25664:2;25653:9;25649:18;25641:26;;25713:9;25707:4;25703:20;25699:1;25688:9;25684:17;25677:47;25741:131;25867:4;25741:131;:::i;:::-;25733:139;;25460:419;;;:::o;25885:442::-;26034:4;26072:2;26061:9;26057:18;26049:26;;26085:71;26153:1;26142:9;26138:17;26129:6;26085:71;:::i;:::-;26166:72;26234:2;26223:9;26219:18;26210:6;26166:72;:::i;:::-;26248;26316:2;26305:9;26301:18;26292:6;26248:72;:::i;:::-;25885:442;;;;;;:::o;26333:194::-;26373:4;26393:20;26411:1;26393:20;:::i;:::-;26388:25;;26427:20;26445:1;26427:20;:::i;:::-;26422:25;;26471:1;26468;26464:9;26456:17;;26495:1;26489:4;26486:11;26483:37;;;26500:18;;:::i;:::-;26483:37;26333:194;;;;:::o;26533:410::-;26573:7;26596:20;26614:1;26596:20;:::i;:::-;26591:25;;26630:20;26648:1;26630:20;:::i;:::-;26625:25;;26685:1;26682;26678:9;26707:30;26725:11;26707:30;:::i;:::-;26696:41;;26886:1;26877:7;26873:15;26870:1;26867:22;26847:1;26840:9;26820:83;26797:139;;26916:18;;:::i;:::-;26797:139;26581:362;26533:410;;;;:::o;26949:180::-;26997:77;26994:1;26987:88;27094:4;27091:1;27084:15;27118:4;27115:1;27108:15;27135:180;27183:77;27180:1;27173:88;27280:4;27277:1;27270:15;27304:4;27301:1;27294:15;27321:143;27378:5;27409:6;27403:13;27394:22;;27425:33;27452:5;27425:33;:::i;:::-;27321:143;;;;:::o;27470:351::-;27540:6;27589:2;27577:9;27568:7;27564:23;27560:32;27557:119;;;27595:79;;:::i;:::-;27557:119;27715:1;27740:64;27796:7;27787:6;27776:9;27772:22;27740:64;:::i;:::-;27730:74;;27686:128;27470:351;;;;:::o;27827:85::-;27872:7;27901:5;27890:16;;27827:85;;;:::o;27918:158::-;27976:9;28009:61;28027:42;28036:32;28062:5;28036:32;:::i;:::-;28027:42;:::i;:::-;28009:61;:::i;:::-;27996:74;;27918:158;;;:::o;28082:147::-;28177:45;28216:5;28177:45;:::i;:::-;28172:3;28165:58;28082:147;;:::o;28235:114::-;28302:6;28336:5;28330:12;28320:22;;28235:114;;;:::o;28355:184::-;28454:11;28488:6;28483:3;28476:19;28528:4;28523:3;28519:14;28504:29;;28355:184;;;;:::o;28545:132::-;28612:4;28635:3;28627:11;;28665:4;28660:3;28656:14;28648:22;;28545:132;;;:::o;28683:108::-;28760:24;28778:5;28760:24;:::i;:::-;28755:3;28748:37;28683:108;;:::o;28797:179::-;28866:10;28887:46;28929:3;28921:6;28887:46;:::i;:::-;28965:4;28960:3;28956:14;28942:28;;28797:179;;;;:::o;28982:113::-;29052:4;29084;29079:3;29075:14;29067:22;;28982:113;;;:::o;29131:732::-;29250:3;29279:54;29327:5;29279:54;:::i;:::-;29349:86;29428:6;29423:3;29349:86;:::i;:::-;29342:93;;29459:56;29509:5;29459:56;:::i;:::-;29538:7;29569:1;29554:284;29579:6;29576:1;29573:13;29554:284;;;29655:6;29649:13;29682:63;29741:3;29726:13;29682:63;:::i;:::-;29675:70;;29768:60;29821:6;29768:60;:::i;:::-;29758:70;;29614:224;29601:1;29598;29594:9;29589:14;;29554:284;;;29558:14;29854:3;29847:10;;29255:608;;;29131:732;;;;:::o;29869:831::-;30132:4;30170:3;30159:9;30155:19;30147:27;;30184:71;30252:1;30241:9;30237:17;30228:6;30184:71;:::i;:::-;30265:80;30341:2;30330:9;30326:18;30317:6;30265:80;:::i;:::-;30392:9;30386:4;30382:20;30377:2;30366:9;30362:18;30355:48;30420:108;30523:4;30514:6;30420:108;:::i;:::-;30412:116;;30538:72;30606:2;30595:9;30591:18;30582:6;30538:72;:::i;:::-;30620:73;30688:3;30677:9;30673:19;30664:6;30620:73;:::i;:::-;29869:831;;;;;;;;:::o;30706:807::-;30955:4;30993:3;30982:9;30978:19;30970:27;;31007:71;31075:1;31064:9;31060:17;31051:6;31007:71;:::i;:::-;31088:72;31156:2;31145:9;31141:18;31132:6;31088:72;:::i;:::-;31170:80;31246:2;31235:9;31231:18;31222:6;31170:80;:::i;:::-;31260;31336:2;31325:9;31321:18;31312:6;31260:80;:::i;:::-;31350:73;31418:3;31407:9;31403:19;31394:6;31350:73;:::i;:::-;31433;31501:3;31490:9;31486:19;31477:6;31433:73;:::i;:::-;30706:807;;;;;;;;;:::o;31519:143::-;31576:5;31607:6;31601:13;31592:22;;31623:33;31650:5;31623:33;:::i;:::-;31519:143;;;;:::o;31668:663::-;31756:6;31764;31772;31821:2;31809:9;31800:7;31796:23;31792:32;31789:119;;;31827:79;;:::i;:::-;31789:119;31947:1;31972:64;32028:7;32019:6;32008:9;32004:22;31972:64;:::i;:::-;31962:74;;31918:128;32085:2;32111:64;32167:7;32158:6;32147:9;32143:22;32111:64;:::i;:::-;32101:74;;32056:129;32224:2;32250:64;32306:7;32297:6;32286:9;32282:22;32250:64;:::i;:::-;32240:74;;32195:129;31668:663;;;;;:::o

Swarm Source

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