ETH Price: $2,925.59 (-7.64%)
Gas: 10 Gwei

Token

GoonRich (GOON)
 

Overview

Max Total Supply

100,000,000,000,000 GOON

Holders

1,523

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
13,746,116,360.889736259 GOON

Value
$0.00
0xeb95ac334ab03537acdd7da09b563fffda6e27a5
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:
GOONRICH

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-15
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

    library Address {
        /**
        * @dev Returns true if `account` is a contract.
        *
        * [IMPORTANT]
        * ====
        * It is unsafe to assume that an address for which this function returns
        * false is an externally-owned account (EOA) and not a contract.
        *
        * Among others, `isContract` will return false for the following
        * types of addresses:
        *
        *  - an externally-owned account
        *  - a contract in construction
        *  - an address where a contract will be created
        *  - an address where a contract lived, but was destroyed
        * ====
        */
        function isContract(address account) internal view returns (bool) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }

        /**
        * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
        * `recipient`, forwarding all available gas and reverting on errors.
        *
        * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
        * of certain opcodes, possibly making contracts go over the 2300 gas limit
        * imposed by `transfer`, making them unable to receive funds via
        * `transfer`. {sendValue} removes this limitation.
        *
        * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
        *
        * IMPORTANT: because control is transferred to `recipient`, care must be
        * taken to not create reentrancy vulnerabilities. Consider using
        * {ReentrancyGuard} or the
        * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
        */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");

            // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
            (bool success, ) = recipient.call{ value: amount }("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }

        /**
        * @dev Performs a Solidity function call using a low level `call`. A
        * plain`call` is an unsafe replacement for a function call: use this
        * function instead.
        *
        * If `target` reverts with a revert reason, it is bubbled up by this
        * function (like regular Solidity function calls).
        *
        * Returns the raw returned data. To convert to the expected return value,
        * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
        *
        * Requirements:
        *
        * - `target` must be a contract.
        * - calling `target` with `data` must not revert.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
        * `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
            return _functionCallWithValue(target, data, 0, errorMessage);
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
        * but also transferring `value` wei to `target`.
        *
        * Requirements:
        *
        * - the calling contract must have an ETH balance of at least `value`.
        * - the called Solidity function must be `payable`.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
            return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
        }

        /**
        * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
        * with `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
            require(address(this).balance >= value, "Address: insufficient balance for call");
            return _functionCallWithValue(target, data, value, errorMessage);
        }

        function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
            require(isContract(target), "Address: call to non-contract");

            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
            if (success) {
                return returndata;
            } else {
                // Look for revert reason and bubble it up if present
                if (returndata.length > 0) {
                    // The easiest way to bubble the revert reason is using memory via assembly

                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
    }

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;

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

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

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

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

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

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

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

        function feeTo() external view returns (address);
        function feeToSetter() external view returns (address);

        function getPair(address tokenA, address tokenB) external view returns (address pair);
        function allPairs(uint) external view returns (address pair);
        function allPairsLength() external view returns (uint);

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

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

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

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

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

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

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

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

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

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

        function initialize(address, address) external;
    }

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

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

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

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

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

    // Contract implementarion
    contract GOONRICH is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

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

        mapping (address => bool) private _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 100000000 * 10**6 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'GoonRich';
        string private _symbol = 'GOON';
        uint8 private _decimals = 9;
        
        // Tax and dev fees will start at 0 so we don't have a big impact when deploying to Uniswap
        // dev wallet address is null but the method to set the address is exposed
        uint256 private _taxFee = 0; 
        uint256 private _devFee = 0;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousdevFee = _devFee;

        address payable public _devWalletAddress;

        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = false;

        uint256 private _maxTxAmount = 100000000000000e9;
        // We will set a minimum amount of tokens to be swaped => 5M
        uint256 private _numOfTokensToExchangeFordev = 5 * 10**6 * 10**9;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

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

        constructor (address payable devWalletAddress) public {
            _devWalletAddress = devWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        function name() public view returns (string memory) {
            return _name;
        }

        function symbol() public view returns (string memory) {
            return _symbol;
        }

        function decimals() public view returns (uint8) {
            return _decimals;
        }

        function setDevFeeDisabled(bool _devFeeEnabled ) public returns (bool){
            require(msg.sender == _devWalletAddress, "Only Dev Address can disable dev fee");
            swapEnabled = _devFeeEnabled;
            return(swapEnabled);
        }
        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }

        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
            return true;
        }

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        function totalFees() public view returns (uint256) {
            return _tFeeTotal;
        }

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

        function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
            require(tAmount <= _tTotal, "Amount must be less than supply");
            if (!deductTransferFee) {
                (uint256 rAmount,,,,,) = _getValues(tAmount);
                return rAmount;
            } else {
                (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
                return rTransferAmount;
            }
        }

        function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
            require(rAmount <= _rTotal, "Amount must be less than total reflections");
            uint256 currentRate =  _getRate();
            return rAmount.div(currentRate);
        }

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is already excluded");
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_excluded[i] == account) {
                    _excluded[i] = _excluded[_excluded.length - 1];
                    _tOwned[account] = 0;
                    _isExcluded[account] = false;
                    _excluded.pop();
                    break;
                }
            }
        }
        
    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }
        function removeAllFee() private {
            if(_taxFee == 0 && _devFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousdevFee = _devFee;
            
            _taxFee = 0;
            _devFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _devFee = _previousdevFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        function _approve(address owner, address spender, uint256 amount) private {
            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);
        }

        function _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            
            require(!_isBlackListedBot[recipient], "You have no power here!");
            require(!_isBlackListedBot[msg.sender], "You have no power here!");
            require(!_isBlackListedBot[sender], "You have no power here!");
            
            if(sender != owner() && recipient != owner())
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular dev event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeFordev;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the dev wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHTodev(address(this).balance);
                }
            }
            
            //indicates if fee should be deducted from transfer
            bool takeFee = true;
            
            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }
            
            //transfer amount, it will take tax and dev fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

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

            _approve(address(this), address(uniswapV2Router), tokenAmount);

            // make the swap
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0, // accept any amount of ETH
                path,
                address(this),
                block.timestamp
            );
        }
        
        function sendETHTodev(uint256 amount) private {
            _devWalletAddress.transfer(amount);
        }
        
        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHTodev(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }
        
        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tdev) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takedev(tdev); 
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tdev) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
            _takedev(tdev);           
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tdev) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takedev(tdev);   
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tdev) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _takedev(tdev);         
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takedev(uint256 tdev) private {
            uint256 currentRate =  _getRate();
            uint256 rdev = tdev.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rdev);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tdev);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tdev) = _getTValues(tAmount, _taxFee, _devFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tdev);
        }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 devFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tdev = tAmount.mul(devFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tdev);
            return (tTransferAmount, tFee, tdev);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            return (rAmount, rTransferAmount, rFee);
        }

        function _getRate() private view returns(uint256) {
            (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
            return rSupply.div(tSupply);
        }

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;      
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }
        

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }
        
        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 10, 'taxFee should be in 1 - 10');
            _taxFee = taxFee;
        }

        function _setdevFee(uint256 devFee) external onlyOwner() {
            require(devFee >= 1 && devFee <= 10, 'devFee should be in 1 - 10');
            _devFee = devFee;
        }
        
        function _setdevWallet(address payable devWalletAddress) external onlyOwner() {
            _devWalletAddress = devWalletAddress;
        }
        
        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            require(maxTxAmount >= 200000000000e9 , 'maxTxAmount should be greater than 200000000000e9');
            _maxTxAmount = maxTxAmount;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"_setdevFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setdevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_devFeeEnabled","type":"bool"}],"name":"setDevFeeDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60c060405269152d02c7e14af6800000600a55600a54600019816200002057fe5b0660001903600b556040518060400160405280600881526020017f476f6f6e52696368000000000000000000000000000000000000000000000000815250600d9080519060200190620000759291906200068e565b506040518060400160405280600481526020017f474f4f4e00000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000c39291906200068e565b506009600f60006101000a81548160ff021916908360ff1602179055506000601055600060115560105460125560115460135560006014806101000a81548160ff0219169083151502179055506000601460156101000a81548160ff02191690831515021790555069152d02c7e14af68000006015556611c37937e080006016553480156200015157600080fd5b5060405162005d7f38038062005d7f833981810160405260208110156200017757600080fd5b810190808051906020019092919050505060006200019a6200065d60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5460026000620002906200065d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032e57600080fd5b505afa15801562000343573d6000803e3d6000fd5b505050506040513d60208110156200035a57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ce57600080fd5b505afa158015620003e3573d6000803e3d6000fd5b505050506040513d6020811015620003fa57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200047557600080fd5b505af11580156200048a573d6000803e3d6000fd5b505050506040513d6020811015620004a157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160056000620005356200066560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ee6200065d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a3505062000734565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006d157805160ff191683800117855562000702565b8280016001018555821562000702579182015b8281111562000701578251825591602001919060010190620006e4565b5b50905062000711919062000715565b5090565b5b808211156200073057600081600090555060010162000716565b5090565b60805160601c60a05160601c61560d62000772600039806118c252806138e3525080610ebc5280613d3d5280613e295280613e50525061560d6000f3fe6080604052600436106102295760003560e01c806370a0823111610123578063af9549e0116100ab578063f2cc0c181161006f578063f2cc0c1814610cbb578063f2fde38b14610d0c578063f429389014610d5d578063f815a84214610d74578063f84354f114610d9f57610230565b8063af9549e014610af4578063b425bac314610b51578063cba0e99614610b92578063dd62ed3e14610bf9578063e01af92c14610c7e57610230565b806395d89b41116100f257806395d89b41146108de578063a0c072d41461096e578063a457c2d7146109bf578063a9059cbb14610a30578063aae1157114610aa157610230565b806370a08231146107d0578063715018a6146108355780637ded4d6a1461084c5780638da5cb5b1461089d57610230565b806339509351116101b157806349bd5a5e1161017557806349bd5a5e146106a957806351bc3c85146106ea5780635342acb4146107015780635880b873146107685780636ddd1713146107a357610230565b806339509351146105165780633bd5d173146105875780634303443d146105c257806344c260c8146106135780634549b0391461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610df0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e92565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610eb0565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610eba565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610ede565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610ee8565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061101c565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110f5565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd611179565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b5061056f6004803603604081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611190565b60405180821515815260200191505060405180910390f35b34801561059357600080fd5b506105c0600480360360208110156105aa57600080fd5b8101908080359060200190929190505050611243565b005b3480156105ce57600080fd5b50610611600480360360208110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d4565b005b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b81019080803590602001909291905050506116b3565b005b34801561065a57600080fd5b506106936004803603604081101561067157600080fd5b8101908080359060200190929190803515159060200190929190505050611809565b6040518082815260200191505060405180910390f35b3480156106b557600080fd5b506106be6118c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f657600080fd5b506106ff6118e4565b005b34801561070d57600080fd5b506107506004803603602081101561072457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119c5565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b506107a16004803603602081101561078b57600080fd5b8101908080359060200190929190505050611a1b565b005b3480156107af57600080fd5b506107b8611b71565b60405180821515815260200191505060405180910390f35b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b84565b6040518082815260200191505060405180910390f35b34801561084157600080fd5b5061084a611c6f565b005b34801561085857600080fd5b5061089b6004803603602081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df5565b005b3480156108a957600080fd5b506108b261213a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108ea57600080fd5b506108f3612163565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610933578082015181840152602081019050610918565b50505050905090810190601f1680156109605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561097a57600080fd5b506109bd6004803603602081101561099157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612205565b005b3480156109cb57600080fd5b50610a18600480360360408110156109e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612311565b60405180821515815260200191505060405180910390f35b348015610a3c57600080fd5b50610a8960048036036040811015610a5357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123de565b60405180821515815260200191505060405180910390f35b348015610aad57600080fd5b50610adc60048036036020811015610ac457600080fd5b810190808035151590602001909291905050506123fc565b60405180821515815260200191505060405180910390f35b348015610b0057600080fd5b50610b4f60048036036040811015610b1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124d5565b005b348015610b5d57600080fd5b50610b666125f8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9e57600080fd5b50610be160048036036020811015610bb557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061261e565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c6860048036036040811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612674565b6040518082815260200191505060405180910390f35b348015610c8a57600080fd5b50610cb960048036036020811015610ca157600080fd5b810190808035151590602001909291905050506126fb565b005b348015610cc757600080fd5b50610d0a60048036036020811015610cde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e0565b005b348015610d1857600080fd5b50610d5b60048036036020811015610d2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b93565b005b348015610d6957600080fd5b50610d72612d9e565b005b348015610d8057600080fd5b50610d89612e77565b6040518082815260200191505060405180910390f35b348015610dab57600080fd5b50610dee60048036036020811015610dc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e7f565b005b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b5050505050905090565b6000610ea6610e9f613209565b8484613211565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b610ef0613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b680ad78ebc5ac6200000811015611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806155346031913960400191505060405180910390fd5b8060158190555050565b6000611029848484613408565b6110ea84611035613209565b6110e58560405180606001604052806028815260200161547660289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109b613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1f9092919063ffffffff16565b613211565b600190509392505050565b6000600b54821115611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153bb602a913960400191505060405180910390fd5b600061115c613adf565b90506111718184613b0a90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061123961119d613209565b8461123485600460006111ae613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b613211565b6001905092915050565b600061124d613209565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615587602c913960400191505060405180910390fd5b60006112fd83613bdc565b5050505050905061135681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113ae81600b54613c4390919063ffffffff16565b600b819055506113c983600c54613b5490919063ffffffff16565b600c81905550505050565b6113dc613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611535576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806154c76024913960400191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116bb613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001811015801561178d5750600a8111155b6117ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6465764665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b8060118190555050565b6000600a54831115611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118a357600061189384613bdc565b50505050509050809150506118ba565b60006118ae84613bdc565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6118ec613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006119b730611b84565b90506119c281613c8d565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611a23613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611af55750600a8111155b611b67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b8060108190555050565b601460159054906101000a900460ff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c1f57600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611c6a565b611c67600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f5565b90505b919050565b611c77613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611dfd613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600980549050811015612136578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611fb057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121295760096001600980549050038154811061200c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061204457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806120ef57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612136565b8080600101915050611f7f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121fb5780601f106121d0576101008083540402835291602001916121fb565b820191906000526020600020905b8154815290600101906020018083116121de57829003601f168201915b5050505050905090565b61220d613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006123d461231e613209565b846123cf856040518060600160405280602581526020016155b36025913960046000612348613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1f9092919063ffffffff16565b613211565b6001905092915050565b60006123f26123eb613209565b8484613408565b6001905092915050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153746024913960400191505060405180910390fd5b81601460156101000a81548160ff021916908315150217905550601460159054906101000a900460ff169050919050565b6124dd613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461259d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612703613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff02191690831515021790555050565b6127e8613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155656022913960400191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ad557612a91600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f5565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b9b613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153e56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612da6613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612e7481613f6f565b50565b600047905090565b612e87613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16613006576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600780549050811015613205578173ffffffffffffffffffffffffffffffffffffffff166007828154811061303a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131f85760076001600780549050038154811061309657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600782815481106130ce57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060078054806131be57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613205565b8080600101915050613009565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155106024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061540b6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154eb6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153986023913960400191505060405180910390fd5b6000811161356d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061549e6029913960400191505060405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561362d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6137b561213a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561382357506137f361213a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561388457601554811115613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061542d6028913960400191505060405180910390fd5b5b600061388f30611b84565b905060155481106138a05760155490505b6000601654821015905060148054906101000a900460ff161580156138d15750601460159054906101000a900460ff165b80156138da5750805b801561393257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561395a5761394082613c8d565b600047905060008111156139585761395747613f6f565b5b505b600060019050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a015750600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a0b57600090505b613a1786868684613fdb565b505050505050565b6000838311158290613acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a91578082015181840152602081019050613a76565b50505050905090810190601f168015613abe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613aec6142ec565b91509150613b038183613b0a90919063ffffffff16565b9250505090565b6000613b4c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061457d565b905092915050565b600080828401905083811015613bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613bf98a601054601154614643565b9250925092506000613c09613adf565b90506000806000613c1b8e87866146d9565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613c8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a1f565b905092915050565b60016014806101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613cc157600080fd5b50604051908082528060200260200182016040528015613cf05781602001602082028036833780820191505090505b5090503081600081518110613d0157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613da157600080fd5b505afa158015613db5573d6000803e3d6000fd5b505050506040513d6020811015613dcb57600080fd5b810190808051906020019092919050505081600181518110613de957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e4e307f000000000000000000000000000000000000000000000000000000000000000084613211565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613f10578082015181840152602081019050613ef5565b505050509050019650505050505050600060405180830381600087803b158015613f3957600080fd5b505af1158015613f4d573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613fd7573d6000803e3d6000fd5b5050565b80613fe957613fe8614737565b5b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561408c5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140a15761409c84848461477a565b6142d8565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141445750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15614159576141548484846149da565b6142d7565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141fd5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142125761420d848484614c3a565b6142d6565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142b45750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142c9576142c4848484614e05565b6142d5565b6142d4848484614c3a565b5b5b5b5b806142e6576142e56150fa565b5b50505050565b6000806000600b5490506000600a54905060005b6007805490508110156145405782600260006007848154811061431f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614406575081600360006007848154811061439e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561441d57600b54600a5494509450505050614579565b6144a6600260006007848154811061443157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c4390919063ffffffff16565b925061453160036000600784815481106144bc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c4390919063ffffffff16565b91508080600101915050614300565b50614558600a54600b54613b0a90919063ffffffff16565b82101561457057600b54600a54935093505050614579565b81819350935050505b9091565b60008083118290614629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145ee5780820151818401526020810190506145d3565b50505050905090810190601f16801561461b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161463557fe5b049050809150509392505050565b60008060008061466f6064614661888a61510e90919063ffffffff16565b613b0a90919063ffffffff16565b90506000614699606461468b888b61510e90919063ffffffff16565b613b0a90919063ffffffff16565b905060006146c2826146b4858c613c4390919063ffffffff16565b613c4390919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806146f2858861510e90919063ffffffff16565b90506000614709868861510e90919063ffffffff16565b905060006147208284613c4390919063ffffffff16565b905082818395509550955050505093509350939050565b600060105414801561474b57506000601154145b1561475557614778565b601054601281905550601154601381905550600060108190555060006011819055505b565b60008060008060008061478c87613bdc565b9550955095509550955095506147ea87600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061487f86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061491485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061496081615194565b61496a8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149ec87613bdc565b955095509550955095509550614a4a86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614adf83600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bc081615194565b614bca8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4c87613bdc565b955095509550955095509550614caa86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3f85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8b81615194565b614d958483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e1787613bdc565b955095509550955095509550614e7587600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f0a86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f9f83600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061503485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061508081615194565b61508a8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601254601081905550601354601181905550565b600080831415615121576000905061518e565b600082840290508284828161513257fe5b0414615189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154556021913960400191505060405180910390fd5b809150505b92915050565b600061519e613adf565b905060006151b5828461510e90919063ffffffff16565b905061520981600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615334576152f083600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61534e82600b54613c4390919063ffffffff16565b600b8190555061536981600c54613b5490919063ffffffff16565b600c81905550505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e20323030303030303030303030653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206b6c68e8bb0b00a3284a1b07a7b39297b0181cbdb3e82df47be6ae25f1bb3eed64736f6c634300060c0033000000000000000000000000c502da36f3f15116da2a0f671fd1b14e8d5e1aaa

Deployed Bytecode

0x6080604052600436106102295760003560e01c806370a0823111610123578063af9549e0116100ab578063f2cc0c181161006f578063f2cc0c1814610cbb578063f2fde38b14610d0c578063f429389014610d5d578063f815a84214610d74578063f84354f114610d9f57610230565b8063af9549e014610af4578063b425bac314610b51578063cba0e99614610b92578063dd62ed3e14610bf9578063e01af92c14610c7e57610230565b806395d89b41116100f257806395d89b41146108de578063a0c072d41461096e578063a457c2d7146109bf578063a9059cbb14610a30578063aae1157114610aa157610230565b806370a08231146107d0578063715018a6146108355780637ded4d6a1461084c5780638da5cb5b1461089d57610230565b806339509351116101b157806349bd5a5e1161017557806349bd5a5e146106a957806351bc3c85146106ea5780635342acb4146107015780635880b873146107685780636ddd1713146107a357610230565b806339509351146105165780633bd5d173146105875780634303443d146105c257806344c260c8146106135780634549b0391461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610df0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e92565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610eb0565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610eba565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610ede565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610ee8565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061101c565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110f5565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd611179565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b5061056f6004803603604081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611190565b60405180821515815260200191505060405180910390f35b34801561059357600080fd5b506105c0600480360360208110156105aa57600080fd5b8101908080359060200190929190505050611243565b005b3480156105ce57600080fd5b50610611600480360360208110156105e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d4565b005b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b81019080803590602001909291905050506116b3565b005b34801561065a57600080fd5b506106936004803603604081101561067157600080fd5b8101908080359060200190929190803515159060200190929190505050611809565b6040518082815260200191505060405180910390f35b3480156106b557600080fd5b506106be6118c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f657600080fd5b506106ff6118e4565b005b34801561070d57600080fd5b506107506004803603602081101561072457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119c5565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b506107a16004803603602081101561078b57600080fd5b8101908080359060200190929190505050611a1b565b005b3480156107af57600080fd5b506107b8611b71565b60405180821515815260200191505060405180910390f35b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b84565b6040518082815260200191505060405180910390f35b34801561084157600080fd5b5061084a611c6f565b005b34801561085857600080fd5b5061089b6004803603602081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df5565b005b3480156108a957600080fd5b506108b261213a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108ea57600080fd5b506108f3612163565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610933578082015181840152602081019050610918565b50505050905090810190601f1680156109605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561097a57600080fd5b506109bd6004803603602081101561099157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612205565b005b3480156109cb57600080fd5b50610a18600480360360408110156109e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612311565b60405180821515815260200191505060405180910390f35b348015610a3c57600080fd5b50610a8960048036036040811015610a5357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123de565b60405180821515815260200191505060405180910390f35b348015610aad57600080fd5b50610adc60048036036020811015610ac457600080fd5b810190808035151590602001909291905050506123fc565b60405180821515815260200191505060405180910390f35b348015610b0057600080fd5b50610b4f60048036036040811015610b1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506124d5565b005b348015610b5d57600080fd5b50610b666125f8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9e57600080fd5b50610be160048036036020811015610bb557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061261e565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c6860048036036040811015610c1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612674565b6040518082815260200191505060405180910390f35b348015610c8a57600080fd5b50610cb960048036036020811015610ca157600080fd5b810190808035151590602001909291905050506126fb565b005b348015610cc757600080fd5b50610d0a60048036036020811015610cde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e0565b005b348015610d1857600080fd5b50610d5b60048036036020811015610d2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b93565b005b348015610d6957600080fd5b50610d72612d9e565b005b348015610d8057600080fd5b50610d89612e77565b6040518082815260200191505060405180910390f35b348015610dab57600080fd5b50610dee60048036036020811015610dc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e7f565b005b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b5050505050905090565b6000610ea6610e9f613209565b8484613211565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b610ef0613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b680ad78ebc5ac6200000811015611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806155346031913960400191505060405180910390fd5b8060158190555050565b6000611029848484613408565b6110ea84611035613209565b6110e58560405180606001604052806028815260200161547660289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109b613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1f9092919063ffffffff16565b613211565b600190509392505050565b6000600b54821115611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153bb602a913960400191505060405180910390fd5b600061115c613adf565b90506111718184613b0a90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061123961119d613209565b8461123485600460006111ae613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b613211565b6001905092915050565b600061124d613209565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615587602c913960400191505060405180910390fd5b60006112fd83613bdc565b5050505050905061135681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113ae81600b54613c4390919063ffffffff16565b600b819055506113c983600c54613b5490919063ffffffff16565b600c81905550505050565b6113dc613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611535576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806154c76024913960400191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116bb613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001811015801561178d5750600a8111155b6117ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6465764665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b8060118190555050565b6000600a54831115611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118a357600061189384613bdc565b50505050509050809150506118ba565b60006118ae84613bdc565b50505050915050809150505b92915050565b7f000000000000000000000000dfea1870f3b3841de553cf271e5653a48d5f31af81565b6118ec613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006119b730611b84565b90506119c281613c8d565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611a23613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611af55750600a8111155b611b67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b8060108190555050565b601460159054906101000a900460ff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c1f57600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611c6a565b611c67600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f5565b90505b919050565b611c77613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611dfd613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600980549050811015612136578173ffffffffffffffffffffffffffffffffffffffff1660098281548110611fb057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121295760096001600980549050038154811061200c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811061204457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806120ef57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612136565b8080600101915050611f7f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121fb5780601f106121d0576101008083540402835291602001916121fb565b820191906000526020600020905b8154815290600101906020018083116121de57829003601f168201915b5050505050905090565b61220d613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006123d461231e613209565b846123cf856040518060600160405280602581526020016155b36025913960046000612348613209565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1f9092919063ffffffff16565b613211565b6001905092915050565b60006123f26123eb613209565b8484613408565b6001905092915050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806153746024913960400191505060405180910390fd5b81601460156101000a81548160ff021916908315150217905550601460159054906101000a900460ff169050919050565b6124dd613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461259d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612703613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff02191690831515021790555050565b6127e8613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806155656022913960400191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ad557612a91600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f5565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b9b613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153e56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612da6613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612e7481613f6f565b50565b600047905090565b612e87613209565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16613006576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600780549050811015613205578173ffffffffffffffffffffffffffffffffffffffff166007828154811061303a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131f85760076001600780549050038154811061309657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600782815481106130ce57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060078054806131be57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613205565b8080600101915050613009565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155106024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061540b6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154eb6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153986023913960400191505060405180910390fd5b6000811161356d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061549e6029913960400191505060405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561362d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6137b561213a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561382357506137f361213a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561388457601554811115613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061542d6028913960400191505060405180910390fd5b5b600061388f30611b84565b905060155481106138a05760155490505b6000601654821015905060148054906101000a900460ff161580156138d15750601460159054906101000a900460ff165b80156138da5750805b801561393257507f000000000000000000000000dfea1870f3b3841de553cf271e5653a48d5f31af73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561395a5761394082613c8d565b600047905060008111156139585761395747613f6f565b5b505b600060019050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a015750600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a0b57600090505b613a1786868684613fdb565b505050505050565b6000838311158290613acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a91578082015181840152602081019050613a76565b50505050905090810190601f168015613abe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613aec6142ec565b91509150613b038183613b0a90919063ffffffff16565b9250505090565b6000613b4c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061457d565b905092915050565b600080828401905083811015613bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613bf98a601054601154614643565b9250925092506000613c09613adf565b90506000806000613c1b8e87866146d9565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613c8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a1f565b905092915050565b60016014806101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613cc157600080fd5b50604051908082528060200260200182016040528015613cf05781602001602082028036833780820191505090505b5090503081600081518110613d0157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613da157600080fd5b505afa158015613db5573d6000803e3d6000fd5b505050506040513d6020811015613dcb57600080fd5b810190808051906020019092919050505081600181518110613de957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e4e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613211565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613f10578082015181840152602081019050613ef5565b505050509050019650505050505050600060405180830381600087803b158015613f3957600080fd5b505af1158015613f4d573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613fd7573d6000803e3d6000fd5b5050565b80613fe957613fe8614737565b5b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561408c5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156140a15761409c84848461477a565b6142d8565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141445750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15614159576141548484846149da565b6142d7565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141fd5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142125761420d848484614c3a565b6142d6565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142b45750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142c9576142c4848484614e05565b6142d5565b6142d4848484614c3a565b5b5b5b5b806142e6576142e56150fa565b5b50505050565b6000806000600b5490506000600a54905060005b6007805490508110156145405782600260006007848154811061431f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614406575081600360006007848154811061439e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561441d57600b54600a5494509450505050614579565b6144a6600260006007848154811061443157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c4390919063ffffffff16565b925061453160036000600784815481106144bc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c4390919063ffffffff16565b91508080600101915050614300565b50614558600a54600b54613b0a90919063ffffffff16565b82101561457057600b54600a54935093505050614579565b81819350935050505b9091565b60008083118290614629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145ee5780820151818401526020810190506145d3565b50505050905090810190601f16801561461b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161463557fe5b049050809150509392505050565b60008060008061466f6064614661888a61510e90919063ffffffff16565b613b0a90919063ffffffff16565b90506000614699606461468b888b61510e90919063ffffffff16565b613b0a90919063ffffffff16565b905060006146c2826146b4858c613c4390919063ffffffff16565b613c4390919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806146f2858861510e90919063ffffffff16565b90506000614709868861510e90919063ffffffff16565b905060006147208284613c4390919063ffffffff16565b905082818395509550955050505093509350939050565b600060105414801561474b57506000601154145b1561475557614778565b601054601281905550601154601381905550600060108190555060006011819055505b565b60008060008060008061478c87613bdc565b9550955095509550955095506147ea87600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061487f86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061491485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061496081615194565b61496a8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149ec87613bdc565b955095509550955095509550614a4a86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614adf83600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bc081615194565b614bca8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4c87613bdc565b955095509550955095509550614caa86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3f85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8b81615194565b614d958483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e1787613bdc565b955095509550955095509550614e7587600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f0a86600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c4390919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f9f83600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061503485600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061508081615194565b61508a8483615339565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601254601081905550601354601181905550565b600080831415615121576000905061518e565b600082840290508284828161513257fe5b0414615189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806154556021913960400191505060405180910390fd5b809150505b92915050565b600061519e613adf565b905060006151b5828461510e90919063ffffffff16565b905061520981600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615334576152f083600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5490919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61534e82600b54613c4390919063ffffffff16565b600b8190555061536981600c54613b5490919063ffffffff16565b600c81905550505056fe4f6e6c792044657620416464726573732063616e2064697361626c65206465762066656545524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e20323030303030303030303030653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206b6c68e8bb0b00a3284a1b07a7b39297b0181cbdb3e82df47be6ae25f1bb3eed64736f6c634300060c0033

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

000000000000000000000000c502da36f3f15116da2a0f671fd1b14e8d5e1aaa

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0xc502dA36F3f15116da2A0f671Fd1b14e8d5E1aAA

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c502da36f3f15116da2a0f671fd1b14e8d5e1aaa


Deployed Bytecode Sourcemap

25655:20260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29794:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31142:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27030:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29103:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45681:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29979:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32150:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28736:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30320:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31249:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33456:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45319:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31666:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27092:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38517:168;;;;;;;;;;;;;:::i;:::-;;34741:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45126:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27173:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29218:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16318:160;;;;;;;;;;;;;:::i;:::-;;33816:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15616:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28629:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45520:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30562:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29440:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28839:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30985:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26977:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30855:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29631:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38884:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32431:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16650:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38705:167;;;;;;;;;;;;;:::i;:::-;;44988:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32918:522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28526:91;28563:13;28600:5;28593:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:91;:::o;29794:173::-;29869:4;29890:39;29899:12;:10;:12::i;:::-;29913:7;29922:6;29890:8;:39::i;:::-;29951:4;29944:11;;29794:173;;;;:::o;31142:95::-;31184:7;31215:10;;31208:17;;31142:95;:::o;27030:51::-;;;:::o;29103:103::-;29156:7;29187;;29180:14;;29103:103;:::o;45681:227::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45786:14:::1;45771:11;:29;;45763:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45885:11;45870:12;:26;;;;45681:227:::0;:::o;29979:329::-;30077:4;30098:36;30108:6;30116:9;30127:6;30098:9;:36::i;:::-;30149:121;30158:6;30166:12;:10;:12::i;:::-;30180:89;30218:6;30180:89;;;;;;;;;;;;;;;;;:11;:19;30192:6;30180:19;;;;;;;;;;;;;;;:33;30200:12;:10;:12::i;:::-;30180:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30149:8;:121::i;:::-;30292:4;30285:11;;29979:329;;;;;:::o;32150:269::-;32216:7;32259;;32248;:18;;32240:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32328:19;32351:10;:8;:10::i;:::-;32328:33;;32383:24;32395:11;32383:7;:11;;:24;;;;:::i;:::-;32376:31;;;32150:269;;;:::o;28736:91::-;28777:5;28806:9;;;;;;;;;;;28799:16;;28736:91;:::o;30320:230::-;30408:4;30429:83;30438:12;:10;:12::i;:::-;30452:7;30461:50;30500:10;30461:11;:25;30473:12;:10;:12::i;:::-;30461:25;;;;;;;;;;;;;;;:34;30487:7;30461:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30429:8;:83::i;:::-;30534:4;30527:11;;30320:230;;;;:::o;31249:405::-;31305:14;31322:12;:10;:12::i;:::-;31305:29;;31358:11;:19;31370:6;31358:19;;;;;;;;;;;;;;;;;;;;;;;;;31357:20;31349:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31442:15;31466:19;31477:7;31466:10;:19::i;:::-;31441:44;;;;;;;31518:28;31538:7;31518;:15;31526:6;31518:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31500:7;:15;31508:6;31500:15;;;;;;;;;;;;;;;:46;;;;31571:20;31583:7;31571;;:11;;:20;;;;:::i;:::-;31561:7;:30;;;;31619:23;31634:7;31619:10;;:14;;:23;;;;:::i;:::-;31606:10;:36;;;;31249:405;;;:::o;33456:352::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33551:42:::1;33540:53;;:7;:53;;;;33532:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33654:17;:26;33672:7;33654:26;;;;;;;;;;;;;;;;;;;;;;;;;33653:27;33645:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33755:4;33726:17;:26;33744:7;33726:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;33770:16;33792:7;33770:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33456:352:::0;:::o;45319:181::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45409:1:::1;45399:6;:11;;:27;;;;;45424:2;45414:6;:12;;45399:27;45391:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45482:6;45472:7;:16;;;;45319:181:::0;:::o;31666:472::-;31756:7;31799;;31788;:18;;31780:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31862:17;31857:270;;31901:15;31925:19;31936:7;31925:10;:19::i;:::-;31900:44;;;;;;;31970:7;31963:14;;;;;31857:270;32020:23;32051:19;32062:7;32051:10;:19::i;:::-;32018:52;;;;;;;32096:15;32089:22;;;31666:472;;;;;:::o;27092:38::-;;;:::o;38517:168::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38575:23:::1;38601:24;38619:4;38601:9;:24::i;:::-;38575:50;;38640:33;38657:15;38640:16;:33::i;:::-;15928:1;38517:168::o:0;34741:131::-;34805:4;34833:18;:27;34852:7;34833:27;;;;;;;;;;;;;;;;;;;;;;;;;34826:34;;34741:131;;;:::o;45126:181::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45216:1:::1;45206:6;:11;;:27;;;;;45231:2;45221:6;:12;;45206:27;45198:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45289:6;45279:7;:16;;;;45126:181:::0;:::o;27173:31::-;;;;;;;;;;;;;:::o;29218:210::-;29284:7;29312:11;:20;29324:7;29312:20;;;;;;;;;;;;;;;;;;;;;;;;;29308:49;;;29341:7;:16;29349:7;29341:16;;;;;;;;;;;;;;;;29334:23;;;;29308:49;29379:37;29399:7;:16;29407:7;29399:16;;;;;;;;;;;;;;;;29379:19;:37::i;:::-;29372:44;;29218:210;;;;:::o;16318:160::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16429:1:::1;16392:40;;16413:6;::::0;::::1;;;;;;;;16392:40;;;;;;;;;;;;16464:1;16447:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16318:160::o:0;33816:500::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33905:17:::1;:26;33923:7;33905:26;;;;;;;;;;;;;;;;;;;;;;;;;33897:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33978:9;33973:336;33997:16;:23;;;;33993:1;:27;33973:336;;;34069:7;34046:30;;:16;34063:1;34046:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;34042:256;;;34119:16;34162:1;34136:16;:23;;;;:27;34119:45;;;;;;;;;;;;;;;;;;;;;;;;;34097:16;34114:1;34097:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;34212:5;34183:17;:26;34201:7;34183:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34236:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34277:5;;34042:256;34022:3;;;;;;;33973:336;;;;33816:500:::0;:::o;15616:87::-;15654:7;15685:6;;;;;;;;;;;15678:13;;15616:87;:::o;28629:95::-;28668:13;28705:7;28698:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28629:95;:::o;45520:141::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45633:16:::1;45613:17;;:36;;;;;;;;;;;;;;;;;;45520:141:::0;:::o;30562:281::-;30655:4;30676:129;30685:12;:10;:12::i;:::-;30699:7;30708:96;30747:15;30708:96;;;;;;;;;;;;;;;;;:11;:25;30720:12;:10;:12::i;:::-;30708:25;;;;;;;;;;;;;;;:34;30734:7;30708:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30676:8;:129::i;:::-;30827:4;30820:11;;30562:281;;;;:::o;29440:179::-;29518:4;29539:42;29549:12;:10;:12::i;:::-;29563:9;29574:6;29539:9;:42::i;:::-;29603:4;29596:11;;29440:179;;;;:::o;28839:254::-;28904:4;28946:17;;;;;;;;;;;28932:31;;:10;:31;;;28924:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29033:14;29019:11;;:28;;;;;;;;;;;;;;;;;;29069:11;;;;;;;;;;;29062:19;;28839:254;;;:::o;30985:145::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31110:8:::1;31080:18;:27;31099:7;31080:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;30985:145:::0;;:::o;26977:40::-;;;;;;;;;;;;;:::o;30855:118::-;30913:4;30941:11;:20;30953:7;30941:20;;;;;;;;;;;;;;;;;;;;;;;;;30934:27;;30855:118;;;:::o;29631:151::-;29712:7;29743:11;:18;29755:5;29743:18;;;;;;;;;;;;;;;:27;29762:7;29743:27;;;;;;;;;;;;;;;;29736:34;;29631:151;;;;:::o;38884:106::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38971:7:::1;38957:11;;:21;;;;;;;;;;;;;;;;;;38884:106:::0;:::o;32431:475::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32527:42:::1;32516:53;;:7;:53;;;;32508:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32632:11;:20;32644:7;32632:20;;;;;;;;;;;;;;;;;;;;;;;;;32631:21;32623:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32721:1;32702:7;:16;32710:7;32702:16;;;;;;;;;;;;;;;;:20;32699:116;;;32762:37;32782:7;:16;32790:7;32782:16;;;;;;;;;;;;;;;;32762:19;:37::i;:::-;32743:7;:16;32751:7;32743:16;;;;;;;;;;;;;;;:56;;;;32699:116;32852:4;32829:11;:20;32841:7;32829:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32871:9;32886:7;32871:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32431:475:::0;:::o;16650:260::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16763:1:::1;16743:22;;:8;:22;;;;16735:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16857:8;16828:38;;16849:6;::::0;::::1;;;;;;;;16828:38;;;;;;;;;;;;16890:8;16881:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16650:260:::0;:::o;38705:167::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38763:26:::1;38792:21;38763:50;;38828:32;38841:18;38828:12;:32::i;:::-;15928:1;38705:167::o:0;44988:118::-;45034:15;45073:21;45066:28;;44988:118;:::o;32918:522::-;15864:12;:10;:12::i;:::-;15854:22;;:6;;;;;;;;;;:22;;;15846:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33003:11:::1;:20;33015:7;33003:20;;;;;;;;;;;;;;;;;;;;;;;;;32995:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33075:9;33070:359;33094:9;:16;;;;33090:1;:20;33070:359;;;33156:7;33140:23;;:9;33150:1;33140:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33136:278;;;33203:9;33232:1;33213:9;:16;;;;:20;33203:31;;;;;;;;;;;;;;;;;;;;;;;;;33188:9;33198:1;33188:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33276:1;33257:7;:16;33265:7;33257:16;;;;;;;;;;;;;;;:20;;;;33323:5;33300:11;:20;33312:7;33300:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33351:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33389:5;;33136:278;33112:3;;;;;;;33070:359;;;;32918:522:::0;:::o;109:114::-;162:15;201:10;194:17;;109:114;:::o;34884:357::-;34998:1;34981:19;;:5;:19;;;;34973:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35083:1;35064:21;;:7;:21;;;;35056:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35171:6;35141:11;:18;35153:5;35141:18;;;;;;;;;;;;;;;:27;35160:7;35141:27;;;;;;;;;;;;;;;:36;;;;35213:7;35197:32;;35206:5;35197:32;;;35222:6;35197:32;;;;;;;;;;;;;;;;;;34884:357;;;:::o;35253:2299::-;35372:1;35354:20;;:6;:20;;;;35346:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35460:1;35439:23;;:9;:23;;;;35431:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35534:1;35525:6;:10;35517:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35619:17;:28;35637:9;35619:28;;;;;;;;;;;;;;;;;;;;;;;;;35618:29;35610:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35699:17;:29;35717:10;35699:29;;;;;;;;;;;;;;;;;;;;;;;;;35698:30;35690:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35780:17;:25;35798:6;35780:25;;;;;;;;;;;;;;;;;;;;;;;;;35779:26;35771:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35875:7;:5;:7::i;:::-;35865:17;;:6;:17;;;;:41;;;;;35899:7;:5;:7::i;:::-;35886:20;;:9;:20;;;;35865:41;35862:138;;;35943:12;;35933:6;:22;;35925:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35862:138;36282:28;36313:24;36331:4;36313:9;:24::i;:::-;36282:55;;36393:12;;36369:20;:36;36366:124;;36462:12;;36439:35;;36366:124;36518:24;36569:28;;36545:20;:52;;36518:79;;36617:6;;;;;;;;;;36616:7;:22;;;;;36627:11;;;;;;;;;;;36616:22;:45;;;;;36642:19;36616:45;:72;;;;;36675:13;36665:23;;:6;:23;;;;36616:72;36612:450;;;36798:38;36815:20;36798:16;:38::i;:::-;36873:26;36902:21;36873:50;;36966:1;36945:18;:22;36942:105;;;36992:35;37005:21;36992:12;:35::i;:::-;36942:105;36612:450;;37155:12;37170:4;37155:19;;37294:18;:26;37313:6;37294:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;37324:18;:29;37343:9;37324:29;;;;;;;;;;;;;;;;;;;;;;;;;37294:59;37291:113;;;37383:5;37373:15;;37291:113;37493:47;37508:6;37515:9;37525:6;37532:7;37493:14;:47::i;:::-;35253:2299;;;;;;:::o;4636:208::-;4722:7;4759:1;4754;:6;;4762:12;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4790:9;4806:1;4802;:5;4790:17;;4831:1;4824:8;;;4636:208;;;;;:::o;44178:175::-;44219:7;44244:15;44261;44280:19;:17;:19::i;:::-;44243:56;;;;44321:20;44333:7;44321;:11;;:20;;;;:::i;:::-;44314:27;;;;44178:175;:::o;6166:140::-;6224:7;6255:39;6259:1;6262;6255:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6248:46;;6166:140;;;;:::o;3639:197::-;3697:7;3721:9;3737:1;3733;:5;3721:17;;3766:1;3761;:6;;3753:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3823:1;3816:8;;;3639:197;;;;:::o;42944:478::-;43003:7;43012;43021;43030;43039;43048;43073:23;43098:12;43112;43128:38;43140:7;43149;;43158;;43128:11;:38::i;:::-;43072:94;;;;;;43181:19;43204:10;:8;:10::i;:::-;43181:33;;43230:15;43247:23;43272:12;43288:39;43300:7;43309:4;43315:11;43288;:39::i;:::-;43229:98;;;;;;43350:7;43359:15;43376:4;43382:15;43399:4;43405;43342:68;;;;;;;;;;;;;;;;;;;42944:478;;;;;;;:::o;4154:144::-;4212:7;4243:43;4247:1;4250;4243:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4236:50;;4154:144;;;;:::o;37564:656::-;27591:4;27582:6;;:13;;;;;;;;;;;;;;;;;;37709:21:::1;37747:1;37733:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37709:40;;37782:4;37764;37769:1;37764:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;37812:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37802:4;37807:1;37802:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;37851:62;37868:4;37883:15;37901:11;37851:8;:62::i;:::-;37960:15;:66;;;38045:11;38075:1;38123:4;38154;38178:15;37960:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27610:1;27635:5:::0;27626:6;;:14;;;;;;;;;;;;;;;;;;37564:656;:::o;38240:107::-;38301:17;;;;;;;;;;;:26;;:34;38328:6;38301:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38240:107;:::o;39010:883::-;39126:7;39122:44;;39152:14;:12;:14::i;:::-;39122:44;39187:11;:19;39199:6;39187:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39211:11;:22;39223:9;39211:22;;;;;;;;;;;;;;;;;;;;;;;;;39210:23;39187:46;39183:637;;;39254:48;39276:6;39284:9;39295:6;39254:21;:48::i;:::-;39183:637;;;39329:11;:19;39341:6;39329:19;;;;;;;;;;;;;;;;;;;;;;;;;39328:20;:46;;;;;39352:11;:22;39364:9;39352:22;;;;;;;;;;;;;;;;;;;;;;;;;39328:46;39324:496;;;39395:46;39415:6;39423:9;39434:6;39395:19;:46::i;:::-;39324:496;;;39468:11;:19;39480:6;39468:19;;;;;;;;;;;;;;;;;;;;;;;;;39467:20;:47;;;;;39492:11;:22;39504:9;39492:22;;;;;;;;;;;;;;;;;;;;;;;;;39491:23;39467:47;39463:357;;;39535:44;39553:6;39561:9;39572:6;39535:17;:44::i;:::-;39463:357;;;39605:11;:19;39617:6;39605:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39628:11;:22;39640:9;39628:22;;;;;;;;;;;;;;;;;;;;;;;;;39605:45;39601:219;;;39671:48;39693:6;39701:9;39712:6;39671:21;:48::i;:::-;39601:219;;;39760:44;39778:6;39786:9;39797:6;39760:17;:44::i;:::-;39601:219;39463:357;39324:496;39183:637;39840:7;39836:45;;39866:15;:13;:15::i;:::-;39836:45;39010:883;;;;:::o;44365:601::-;44415:7;44424;44448:15;44466:7;;44448:25;;44488:15;44506:7;;44488:25;;44539:9;44534:305;44558:9;:16;;;;44554:1;:20;44534:305;;;44628:7;44604;:21;44612:9;44622:1;44612:12;;;;;;;;;;;;;;;;;;;;;;;;;44604:21;;;;;;;;;;;;;;;;:31;:66;;;;44663:7;44639;:21;44647:9;44657:1;44647:12;;;;;;;;;;;;;;;;;;;;;;;;;44639:21;;;;;;;;;;;;;;;;:31;44604:66;44600:97;;;44680:7;;44689;;44672:25;;;;;;;;;44600:97;44726:34;44738:7;:21;44746:9;44756:1;44746:12;;;;;;;;;;;;;;;;;;;;;;;;;44738:21;;;;;;;;;;;;;;;;44726:7;:11;;:34;;;;:::i;:::-;44716:44;;44789:34;44801:7;:21;44809:9;44819:1;44809:12;;;;;;;;;;;;;;;;;;;;;;;;;44801:21;;;;;;;;;;;;;;;;44789:7;:11;;:34;;;;:::i;:::-;44779:44;;44576:3;;;;;;;44534:305;;;;44867:20;44879:7;;44867;;:11;;:20;;;;:::i;:::-;44857:7;:30;44853:61;;;44897:7;;44906;;44889:25;;;;;;;;44853:61;44937:7;44946;44929:25;;;;;;44365:601;;;:::o;6843:298::-;6929:7;6965:1;6961;:5;6968:12;6953:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6996:9;7012:1;7008;:5;;;;;;6996:17;;7128:1;7121:8;;;6843:298;;;;;:::o;43434:366::-;43526:7;43535;43544;43568:12;43583:28;43607:3;43583:19;43595:6;43583:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43568:43;;43626:12;43641:28;43665:3;43641:19;43653:6;43641:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43626:43;;43684:23;43710:27;43732:4;43710:17;43722:4;43710:7;:11;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;43684:53;;43760:15;43777:4;43783;43752:36;;;;;;;;;43434:366;;;;;;;:::o;43812:354::-;43907:7;43916;43925;43949:15;43967:24;43979:11;43967:7;:11;;:24;;;;:::i;:::-;43949:42;;44006:12;44021:21;44030:11;44021:4;:8;;:21;;;;:::i;:::-;44006:36;;44057:23;44083:17;44095:4;44083:7;:11;;:17;;;;:::i;:::-;44057:43;;44123:7;44132:15;44149:4;44115:39;;;;;;;;;43812:354;;;;;;;:::o;34326:258::-;34387:1;34376:7;;:12;:28;;;;;34403:1;34392:7;;:12;34376:28;34373:40;;;34406:7;;34373:40;34459:7;;34441:15;:25;;;;34499:7;;34481:15;:25;;;;34545:1;34535:7;:11;;;;34571:1;34561:7;:11;;;;34326:258;:::o;41047:581::-;41154:15;41171:23;41196:12;41210:23;41235:12;41249;41265:19;41276:7;41265:10;:19::i;:::-;41153:131;;;;;;;;;;;;41317:28;41337:7;41317;:15;41325:6;41317:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41299:7;:15;41307:6;41299:15;;;;;;;;;;;;;;;:46;;;;41378:28;41398:7;41378;:15;41386:6;41378:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41360:7;:15;41368:6;41360:15;;;;;;;;;;;;;;;:46;;;;41442:39;41465:15;41442:7;:18;41450:9;41442:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41421:7;:18;41429:9;41421:18;;;;;;;;;;;;;;;:60;;;;41497:14;41506:4;41497:8;:14::i;:::-;41529:23;41541:4;41547;41529:11;:23::i;:::-;41589:9;41572:44;;41581:6;41572:44;;;41600:15;41572:44;;;;;;;;;;;;;;;;;;41047:581;;;;;;;;;:::o;40431:604::-;40536:15;40553:23;40578:12;40592:23;40617:12;40631;40647:19;40658:7;40647:10;:19::i;:::-;40535:131;;;;;;;;;;;;40699:28;40719:7;40699;:15;40707:6;40699:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40681:7;:15;40689:6;40681:15;;;;;;;;;;;;;;;:46;;;;40763:39;40786:15;40763:7;:18;40771:9;40763:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40742:7;:18;40750:9;40742:18;;;;;;;;;;;;;;;:60;;;;40838:39;40861:15;40838:7;:18;40846:9;40838:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40817:7;:18;40825:9;40817:18;;;;;;;;;;;;;;;:60;;;;40896:14;40905:4;40896:8;:14::i;:::-;40936:23;40948:4;40954;40936:11;:23::i;:::-;40996:9;40979:44;;40988:6;40979:44;;;41007:15;40979:44;;;;;;;;;;;;;;;;;;40431:604;;;;;;;;;:::o;39905:514::-;40008:15;40025:23;40050:12;40064:23;40089:12;40103;40119:19;40130:7;40119:10;:19::i;:::-;40007:131;;;;;;;;;;;;40171:28;40191:7;40171;:15;40179:6;40171:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40153:7;:15;40161:6;40153:15;;;;;;;;;;;;;;;:46;;;;40235:39;40258:15;40235:7;:18;40243:9;40235:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40214:7;:18;40222:9;40214:18;;;;;;;;;;;;;;;:60;;;;40290:14;40299:4;40290:8;:14::i;:::-;40320:23;40332:4;40338;40320:11;:23::i;:::-;40380:9;40363:44;;40372:6;40363:44;;;40391:15;40363:44;;;;;;;;;;;;;;;;;;39905:514;;;;;;;;;:::o;41640:664::-;41747:15;41764:23;41789:12;41803:23;41828:12;41842;41858:19;41869:7;41858:10;:19::i;:::-;41746:131;;;;;;;;;;;;41910:28;41930:7;41910;:15;41918:6;41910:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41892:7;:15;41900:6;41892:15;;;;;;;;;;;;;;;:46;;;;41971:28;41991:7;41971;:15;41979:6;41971:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41953:7;:15;41961:6;41953:15;;;;;;;;;;;;;;;:46;;;;42035:39;42058:15;42035:7;:18;42043:9;42035:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42014:7;:18;42022:9;42014:18;;;;;;;;;;;;;;;:60;;;;42110:39;42133:15;42110:7;:18;42118:9;42110:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42089:7;:18;42097:9;42089:18;;;;;;;;;;;;;;;:60;;;;42167:14;42176:4;42167:8;:14::i;:::-;42205:23;42217:4;42223;42205:11;:23::i;:::-;42265:9;42248:44;;42257:6;42248:44;;;42276:15;42248:44;;;;;;;;;;;;;;;;;;41640:664;;;;;;;;;:::o;34600:125::-;34658:15;;34648:7;:25;;;;34698:15;;34688:7;:25;;;;34600:125::o;5138:511::-;5196:7;5462:1;5457;:6;5453:55;;;5491:1;5484:8;;;;5453:55;5524:9;5540:1;5536;:5;5524:17;;5573:1;5568;5564;:5;;;;;;:10;5556:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5636:1;5629:8;;;5138:511;;;;;:::o;42316:343::-;42371:19;42394:10;:8;:10::i;:::-;42371:33;;42419:12;42434:21;42443:11;42434:4;:8;;:21;;;;:::i;:::-;42419:36;;42495:32;42522:4;42495:7;:22;42511:4;42495:22;;;;;;;;;;;;;;;;:26;;:32;;;;:::i;:::-;42470:7;:22;42486:4;42470:22;;;;;;;;;;;;;;;:57;;;;42545:11;:26;42565:4;42545:26;;;;;;;;;;;;;;;;;;;;;;;;;42542:105;;;42615:32;42642:4;42615:7;:22;42631:4;42615:22;;;;;;;;;;;;;;;;:26;;:32;;;;:::i;:::-;42590:7;:22;42606:4;42590:22;;;;;;;;;;;;;;;:57;;;;42542:105;42316:343;;;:::o;42671:159::-;42753:17;42765:4;42753:7;;:11;;:17;;;;:::i;:::-;42743:7;:27;;;;42798:20;42813:4;42798:10;;:14;;:20;;;;:::i;:::-;42785:10;:33;;;;42671:159;;:::o

Swarm Source

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