ETH Price: $2,270.60 (-7.08%)

Token

Federal Degen Association (FDA)
 

Overview

Max Total Supply

1,000,000,000 FDA

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,814,258.8564446417829715 FDA

Value
$0.00
0x81ed5b34564b3327c631d1e87ab1de9ad8459603
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:
FederalDegenAssociation

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-12-04
*/

/*

Federal Degen Association // FDA


Telegram:
 https://t.me/fdatoken
 
*/

// 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;
        uint256 private _lockTime;

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

        function getUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

    }

    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 FederalDegenAssociation 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 constant _tTotal = 1000000000 * 10**18;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private constant _name = 'Federal Degen Association';
        string private constant _symbol = 'FDA';
        uint8 private constant _decimals = 18;

        uint256 private _taxFee = 0;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _devWalletAddress;
        address payable public _marketingWalletAddress;


        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 50000000 * 10**18;
        uint256 private constant _numOfTokensToExchangeForTeam = 7000 * 10**18;
        uint256 private _maxWalletSize = 50000000 * 10**18;

        event botAddedToBlacklist(address account);
        event botRemovedFromBlacklist(address account);

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

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

        constructor (address payable devWalletAddress, address payable marketingWalletAddress) public {
            _devWalletAddress = devWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;

            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
            // 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 pure returns (string memory) {
            return _name;
        }

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

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

        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 addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot 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 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 not 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 removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        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[sender], "You are blacklisted");
            require(!_isBlackListedBot[msg.sender], "You are blacklisted");
            require(!_isBlackListedBot[tx.origin], "You are blacklisted");
            if(sender != owner() && recipient != owner()) {
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            }
            if(sender != owner() && recipient != owner() && recipient != uniswapV2Pair && recipient != address(0xdead)) {
                uint256 tokenBalanceRecipient = balanceOf(recipient);
                require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
            }
            // 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 team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // Swap tokens for ETH and send to resepctive wallets
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTeam(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 team 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 sendETHToTeam(uint256 amount) private {
            _devWalletAddress.transfer(amount.div(5));
            _marketingWalletAddress.transfer(amount.div(10).mul(8));
        }

        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTeam(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 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _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 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _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 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _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 tTeam) = _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);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

        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 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

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

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTeam = tTeam.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
            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 _getTaxFee() public view returns(uint256) {
            return _taxFee;
        }

        function _getTeamFee() public view returns (uint256) {
          return _teamFee;
        }

        function _getMaxTxAmount() public view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setDevWallet(address payable devWalletAddress) external onlyOwner() {
            _devWalletAddress = devWalletAddress;
        }

        function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }

        function _setMaxWalletSize (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = maxWalletSize;
        }
    }

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","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":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","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":"pure","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":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pure","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":"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":"pure","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"}]

60c06040526b033b2e3c9fd0803ce8000000600019816200001c57fe5b0660001903600b556000600d55600a600e55600d54600f55600e546010556000601260146101000a81548160ff0219169083151502179055506001601260156101000a81548160ff0219169083151502179055506a295be96e640669720000006013556a295be96e640669720000006014553480156200009b57600080fd5b50604051620060593803806200605983398181016040526040811015620000c157600080fd5b8101908080519060200190929190805190602001909291905050506000620000ee620005fd60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b546003600062000225620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c357600080fd5b505afa158015620002d8573d6000803e3d6000fd5b505050506040513d6020811015620002ef57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036357600080fd5b505afa15801562000378573d6000803e3d6000fd5b505050506040513d60208110156200038f57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040a57600080fd5b505af11580156200041f573d6000803e3d6000fd5b505050506040513d60208110156200043657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004ca6200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000583620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce80000006040518082815260200191505060405180910390a35050506200062e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60805160601c60a05160601c6159e86200067160003980611bb15280613a985280613bfb5250806110cb52806140575280614143528061416a52506159e86000f3fe60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280601981526020017f4665646572616c20446567656e204173736f63696174696f6e00000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4644410000000000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000000000000000000000000000000000000000000000846133a6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055c94adc2344820a27a13f8a53a47aee51b0349a0e3ead97401be21033a8236964736f6c634300060c00330000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d20000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d2

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c1814610df8578063f2fde38b14610e49578063f429389014610e9a578063f7a9159114610eb1578063f815a84214610edc578063f84354f114610f0757610272565b8063b030b34a14610c3d578063b425bac314610c8e578063cba0e99614610ccf578063dd62ed3e14610d36578063e01af92c14610dbb57610272565b806395d89b411161010857806395d89b4114610a085780639e6c752914610a98578063a457c2d714610ad3578063a5e8c95414610b44578063a9059cbb14610b6f578063af9549e014610be057610272565b8063602bc62b146108f35780636ddd17131461091e57806370a082311461094b578063715018a6146109b05780638da5cb5b146109c757610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e41461075d5780634549b0391461079e57806349bd5a5e146107f957806351bc3c851461083a5780635342acb4146108515780635880b873146108b857610272565b80632d838119146106095780632fbff03014610658578063313ce5671461068357806339509351146106b15780633bd5d1731461072257610272565b806318160ddd1161022f57806318160ddd146104355780631bbae6e0146104605780631d7ef8791461049b5780631ff53b60146104ec57806323b872dd1461053d57806328667162146105ce57610272565b806306fdde0314610277578063095ea7b3146103075780630a1f8ea81461037857806313114a9d146103c95780631694505e146103f457610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cc5780820151818401526020810190506102b1565b50505050905090810190601f1680156102f95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031357600080fd5b506103606004803603604081101561032a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f95565b60405180821515815260200191505060405180910390f35b34801561038457600080fd5b506103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb3565b005b3480156103d557600080fd5b506103de6110bf565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b506104096110c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044157600080fd5b5061044a6110ed565b6040518082815260200191505060405180910390f35b34801561046c57600080fd5b506104996004803603602081101561048357600080fd5b8101908080359060200190929190505050611101565b005b3480156104a757600080fd5b506104ea600480360360208110156104be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d3565b005b3480156104f857600080fd5b5061053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b2565b005b34801561054957600080fd5b506105b66004803603606081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115be565b60405180821515815260200191505060405180910390f35b3480156105da57600080fd5b50610607600480360360208110156105f157600080fd5b8101908080359060200190929190505050611697565b005b34801561061557600080fd5b506106426004803603602081101561062c57600080fd5b81019080803590602001909291905050506117ed565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b5061066d611871565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b5061069861187b565b604051808260ff16815260200191505060405180910390f35b3480156106bd57600080fd5b5061070a600480360360408110156106d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611884565b60405180821515815260200191505060405180910390f35b34801561072e57600080fd5b5061075b6004803603602081101561074557600080fd5b8101908080359060200190929190505050611937565b005b34801561076957600080fd5b50610772611ac8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107aa57600080fd5b506107e3600480360360408110156107c157600080fd5b8101908080359060200190929190803515159060200190929190505050611aee565b6040518082815260200191505060405180910390f35b34801561080557600080fd5b5061080e611baf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084657600080fd5b5061084f611bd3565b005b34801561085d57600080fd5b506108a06004803603602081101561087457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb4565b60405180821515815260200191505060405180910390f35b3480156108c457600080fd5b506108f1600480360360208110156108db57600080fd5b8101908080359060200190929190505050611d0a565b005b3480156108ff57600080fd5b50610908611e60565b6040518082815260200191505060405180910390f35b34801561092a57600080fd5b50610933611e6a565b60405180821515815260200191505060405180910390f35b34801561095757600080fd5b5061099a6004803603602081101561096e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7d565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109c5611f68565b005b3480156109d357600080fd5b506109dc6120ee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1457600080fd5b50610a1d612117565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a5d578082015181840152602081019050610a42565b50505050905090810190601f168015610a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa457600080fd5b50610ad160048036036020811015610abb57600080fd5b8101908080359060200190929190505050612154565b005b348015610adf57600080fd5b50610b2c60048036036040811015610af657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612226565b60405180821515815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122f3565b6040518082815260200191505060405180910390f35b348015610b7b57600080fd5b50610bc860048036036040811015610b9257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fd565b60405180821515815260200191505060405180910390f35b348015610bec57600080fd5b50610c3b60048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061231b565b005b348015610c4957600080fd5b50610c8c60048036036020811015610c6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061243e565b005b348015610c9a57600080fd5b50610ca3612783565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cdb57600080fd5b50610d1e60048036036020811015610cf257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127a9565b60405180821515815260200191505060405180910390f35b348015610d4257600080fd5b50610da560048036036040811015610d5957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127ff565b6040518082815260200191505060405180910390f35b348015610dc757600080fd5b50610df660048036036020811015610dde57600080fd5b81019080803515159060200190929190505050612886565b005b348015610e0457600080fd5b50610e4760048036036020811015610e1b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061296b565b005b348015610e5557600080fd5b50610e9860048036036020811015610e6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d1e565b005b348015610ea657600080fd5b50610eaf612f29565b005b348015610ebd57600080fd5b50610ec6613002565b6040518082815260200191505060405180910390f35b348015610ee857600080fd5b50610ef161300c565b6040518082815260200191505060405180910390f35b348015610f1357600080fd5b50610f5660048036036020811015610f2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613014565b005b60606040518060400160405280601981526020017f4665646572616c20446567656e204173736f63696174696f6e00000000000000815250905090565b6000610fa9610fa261339e565b84846133a6565b6001905092915050565b610fbb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006b033b2e3c9fd0803ce8000000905090565b61110961339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b6111db61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158846022913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114ba61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006115cb84848461359d565b61168c846115d761339e565b611687856040518060600160405280602881526020016158a660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061163d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b600190509392505050565b61169f61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611771575060198111155b6117e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f7465616d4665652073686f756c6420626520696e2031202d203235000000000081525060200191505060405180910390fd5b80600e8190555050565b6000600b5482111561184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806157a7602a913960400191505060405180910390fd5b6000611854613df7565b90506118698184613e2290919063ffffffff16565b915050919050565b6000600d54905090565b60006012905090565b600061192d61189161339e565b8461192885600560006118a261339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b6133a6565b6001905092915050565b600061194161339e565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615962602c913960400191505060405180910390fd5b60006119f183613ef4565b50505050509050611a4a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611aa281600b54613f5c90919063ffffffff16565b600b81905550611abd83600c54613e6c90919063ffffffff16565b600c81905550505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006b033b2e3c9fd0803ce8000000831115611b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b92576000611b8284613ef4565b5050505050905080915050611ba9565b6000611b9d84613ef4565b50505050915050809150505b92915050565b7f00000000000000000000000007372315c172f18d3136d72c150164173a01070681565b611bdb61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611ca630611e7d565b9050611cb181613fa6565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d1261339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611de4575060198111155b611e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20323500000000000081525060200191505060405180910390fd5b80600d8190555050565b6000600254905090565b601260159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f1857600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611f63565b611f60600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b90505b919050565b611f7061339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4644410000000000000000000000000000000000000000000000000000000000815250905090565b61215c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60006122e961223361339e565b846122e48560405180606001604052806025815260200161598e602591396005600061225d61339e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d379092919063ffffffff16565b6133a6565b6001905092915050565b6000600e54905090565b600061231161230a61339e565b848461359d565b6001905092915050565b61232361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a8054905081101561277f578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106125f957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561277257600a6001600a80549050038154811061265557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061268d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061273857fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561277f565b80806001019150506125c8565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61288e61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601260156101000a81548160ff02191690831515021790555050565b61297361339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159406022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612c6057612c1c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ed565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612d2661339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612de6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157d16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f3161339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612fff8161428a565b50565b6000601354905090565b600047905090565b61301c61339e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661319b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b60088054905081101561339a578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561338d5760086001600880549050038154811061322b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061326357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061335357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561339a565b808060010191505061319e565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061591c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157f76022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613623576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157846023913960400191505060405180910390fd5b60008111613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158ce6029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f596f752061726520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b61394a6120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156139b857506139886120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613a1957601354811115613a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061583b6028913960400191505060405180910390fd5b5b613a216120ee565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613a8f5750613a5f6120ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613ae757507f00000000000000000000000007372315c172f18d3136d72c150164173a01070673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015613b21575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15613b92576000613b3183611e7d565b90506014548282011115613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806158196022913960400191505060405180910390fd5b505b6000613b9d30611e7d565b90506013548110613bae5760135490505b600069017b7883c069166000008210159050601260149054906101000a900460ff16158015613be95750601260159054906101000a900460ff165b8015613bf25750805b8015613c4a57507f00000000000000000000000007372315c172f18d3136d72c150164173a01070673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613c7257613c5882613fa6565b60004790506000811115613c7057613c6f4761428a565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d195750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d2357600090505b613d2f86868684614398565b505050505050565b6000838311158290613de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613da9578082015181840152602081019050613d8e565b50505050905090810190601f168015613dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613e046146a9565b91509150613e1b8183613e2290919063ffffffff16565b9250505090565b6000613e6483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614962565b905092915050565b600080828401905083811015613eea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613f118a600d54600e54614a28565b9250925092506000613f21613df7565b90506000806000613f348e878787614abe565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613f9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d37565b905092915050565b6001601260146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff81118015613fdb57600080fd5b5060405190808252806020026020018201604052801561400a5781602001602082028036833780820191505090505b509050308160008151811061401b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156140bb57600080fd5b505afa1580156140cf573d6000803e3d6000fd5b505050506040513d60208110156140e557600080fd5b81019080805190602001909291905050508160018151811061410357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614168307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133a6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561422a57808201518184015260208101905061420f565b505050509050019650505050505050600060405180830381600087803b15801561425357600080fd5b505af1158015614267573d6000803e3d6000fd5b50505050506000601260146101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6142da600584613e2290919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614305573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc614369600861435b600a86613e2290919063ffffffff16565b614b4790919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015614394573d6000803e3d6000fd5b5050565b806143a6576143a5614bcd565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156144495750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561445e57614459848484614c10565b614695565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145015750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561451657614511848484614e70565b614694565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156145ba5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156145cf576145ca8484846150d0565b614693565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156146715750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156146865761468184848461529b565b614692565b6146918484846150d0565b5b5b5b5b806146a3576146a2615590565b5b50505050565b6000806000600b54905060006b033b2e3c9fd0803ce8000000905060005b600880549050811015614911578260036000600884815481106146e657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806147cd575081600460006008848154811061476557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156147ee57600b546b033b2e3c9fd0803ce80000009450945050505061495e565b614877600360006008848154811061480257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f5c90919063ffffffff16565b9250614902600460006008848154811061488d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f5c90919063ffffffff16565b915080806001019150506146c7565b506149336b033b2e3c9fd0803ce8000000600b54613e2290919063ffffffff16565b82101561495557600b546b033b2e3c9fd0803ce800000093509350505061495e565b81819350935050505b9091565b60008083118290614a0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149d35780820151818401526020810190506149b8565b50505050905090810190601f168015614a005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614a1a57fe5b049050809150509392505050565b600080600080614a546064614a46888a614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614a7e6064614a70888b614b4790919063ffffffff16565b613e2290919063ffffffff16565b90506000614aa782614a99858c613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614ad78589614b4790919063ffffffff16565b90506000614aee8689614b4790919063ffffffff16565b90506000614b058789614b4790919063ffffffff16565b90506000614b2e82614b208587613f5c90919063ffffffff16565b613f5c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600080831415614b5a5760009050614bc7565b6000828402905082848281614b6b57fe5b0414614bc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158636021913960400191505060405180910390fd5b809150505b92915050565b6000600d54148015614be157506000600e54145b15614beb57614c0e565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b600080600080600080614c2287613ef4565b955095509550955095509550614c8087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d1586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614daa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614df6816155a4565b614e008483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e8287613ef4565b955095509550955095509550614ee086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f7583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615056816155a4565b6150608483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150e287613ef4565b95509550955095509550955061514086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151d585600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615221816155a4565b61522b8483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152ad87613ef4565b95509550955095509550955061530b87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153a086600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f5c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061543583600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ca85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615516816155a4565b6155208483615749565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b60006155ae613df7565b905060006155c58284614b4790919063ffffffff16565b905061561981600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156157445761570083600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613e6c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61575e82600b54613f5c90919063ffffffff16565b600b8190555061577981600c54613e6c90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122055c94adc2344820a27a13f8a53a47aee51b0349a0e3ead97401be21033a8236964736f6c634300060c0033

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

0000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d20000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d2

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0x4bE2FbEDa11F40b8207F02B680f74FB2aa64a1D2
Arg [1] : marketingWalletAddress (address): 0x4bE2FbEDa11F40b8207F02B680f74FB2aa64a1D2

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d2
Arg [1] : 0000000000000000000000004be2fbeda11f40b8207f02b680f74fb2aa64a1d2


Deployed Bytecode Sourcemap

25858:20789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28831:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29835:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46051:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31183:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27150:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29144:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46381:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32472:368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46204:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30020:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45851:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32191:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45205:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29041:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30361:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31290:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27089:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31707:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27212:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38707:168;;;;;;;;;;;;;:::i;:::-;;34811:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45658:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17048:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27293:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29259:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16444:160;;;;;;;;;;;;;:::i;:::-;;15742:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28934:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46513:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30603:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45309:93;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29481:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31026:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32852:541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27038:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30896:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29672:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39067:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33405:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16776:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38887:168;;;;;;;;;;;;;:::i;:::-;;45414:102;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45528:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33892:518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28831:91;28868:13;28905:5;;;;;;;;;;;;;;;;;28898:12;;28831:91;:::o;29835:173::-;29910:4;29931:39;29940:12;:10;:12::i;:::-;29954:7;29963:6;29931:8;:39::i;:::-;29992:4;29985:11;;29835:173;;;;:::o;46051:141::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46164:16:::1;46144:17;;:36;;;;;;;;;;;;;;;;;;46051:141:::0;:::o;31183:95::-;31225:7;31256:10;;31249:17;;31183:95;:::o;27150:51::-;;;:::o;29144:103::-;29197:7;26553:19;29221:14;;29144:103;:::o;46381:120::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46478:11:::1;46463:12;:26;;;;46381:120:::0;:::o;32472:368::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32571:42:::1;32560:53;;:7;:53;;;;32552:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32676:17;:26;32694:7;32676:26;;;;;;;;;;;;;;;;;;;;;;;;;32675:27;32666:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32780:4;32751:17;:26;32769:7;32751:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32798:16;32820:7;32798:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32472:368:::0;:::o;46204:165::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46335:22:::1;46309:23;;:48;;;;;;;;;;;;;;;;;;46204:165:::0;:::o;30020:329::-;30118:4;30139:36;30149:6;30157:9;30168:6;30139:9;:36::i;:::-;30190:121;30199:6;30207:12;:10;:12::i;:::-;30221:89;30259:6;30221:89;;;;;;;;;;;;;;;;;:11;:19;30233:6;30221:19;;;;;;;;;;;;;;;:33;30241:12;:10;:12::i;:::-;30221:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30190:8;:121::i;:::-;30333:4;30326:11;;30020:329;;;;;:::o;45851:188::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45944:1:::1;45933:7;:12;;:29;;;;;45960:2;45949:7;:13;;45933:29;45925:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46020:7;46009:8;:18;;;;45851:188:::0;:::o;32191:269::-;32257:7;32300;;32289;:18;;32281:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32369:19;32392:10;:8;:10::i;:::-;32369:33;;32424:24;32436:11;32424:7;:11;;:24;;;;:::i;:::-;32417:31;;;32191:269;;;:::o;45205:92::-;45247:7;45278;;45271:14;;45205:92;:::o;29041:91::-;29082:5;26837:2;29104:16;;29041:91;:::o;30361:230::-;30449:4;30470:83;30479:12;:10;:12::i;:::-;30493:7;30502:50;30541:10;30502:11;:25;30514:12;:10;:12::i;:::-;30502:25;;;;;;;;;;;;;;;:34;30528:7;30502:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30470:8;:83::i;:::-;30575:4;30568:11;;30361:230;;;;:::o;31290:405::-;31346:14;31363:12;:10;:12::i;:::-;31346:29;;31399:11;:19;31411:6;31399:19;;;;;;;;;;;;;;;;;;;;;;;;;31398:20;31390:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31483:15;31507:19;31518:7;31507:10;:19::i;:::-;31482:44;;;;;;;31559:28;31579:7;31559;:15;31567:6;31559:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31541:7;:15;31549:6;31541:15;;;;;;;;;;;;;;;:46;;;;31612:20;31624:7;31612;;:11;;:20;;;;:::i;:::-;31602:7;:30;;;;31660:23;31675:7;31660:10;;:14;;:23;;;;:::i;:::-;31647:10;:36;;;;31290:405;;;:::o;27089:46::-;;;;;;;;;;;;;:::o;31707:472::-;31797:7;26553:19;31829:7;:18;;31821:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31903:17;31898:270;;31942:15;31966:19;31977:7;31966:10;:19::i;:::-;31941:44;;;;;;;32011:7;32004:14;;;;;31898:270;32061:23;32092:19;32103:7;32092:10;:19::i;:::-;32059:52;;;;;;;32137:15;32130:22;;;31707:472;;;;;:::o;27212:38::-;;;:::o;38707:168::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38765:23:::1;38791:24;38809:4;38791:9;:24::i;:::-;38765:50;;38830:33;38847:15;38830:16;:33::i;:::-;16054:1;38707:168::o:0;34811:131::-;34875:4;34903:18;:27;34922:7;34903:27;;;;;;;;;;;;;;;;;;;;;;;;;34896:34;;34811:131;;;:::o;45658:181::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45748:1:::1;45738:6;:11;;:27;;;;;45763:2;45753:6;:12;;45738:27;45730:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45821:6;45811:7;:16;;;;45658:181:::0;:::o;17048:98::-;17094:7;17125:9;;17118:16;;17048:98;:::o;27293:30::-;;;;;;;;;;;;;:::o;29259:210::-;29325:7;29353:11;:20;29365:7;29353:20;;;;;;;;;;;;;;;;;;;;;;;;;29349:49;;;29382:7;:16;29390:7;29382:16;;;;;;;;;;;;;;;;29375:23;;;;29349:49;29420:37;29440:7;:16;29448:7;29440:16;;;;;;;;;;;;;;;;29420:19;:37::i;:::-;29413:44;;29259:210;;;;:::o;16444:160::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16555:1:::1;16518:40;;16539:6;::::0;::::1;;;;;;;;16518:40;;;;;;;;;;;;16590:1;16573:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16444:160::o:0;15742:87::-;15780:7;15811:6;;;;;;;;;;;15804:13;;15742:87;:::o;28934:95::-;28973:13;29010:7;;;;;;;;;;;;;;;;;29003:14;;28934:95;:::o;46513:127::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46615:13:::1;46598:14;:30;;;;46513:127:::0;:::o;30603:281::-;30696:4;30717:129;30726:12;:10;:12::i;:::-;30740:7;30749:96;30788:15;30749:96;;;;;;;;;;;;;;;;;:11;:25;30761:12;:10;:12::i;:::-;30749:25;;;;;;;;;;;;;;;:34;30775:7;30749:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30717:8;:129::i;:::-;30868:4;30861:11;;30603:281;;;;:::o;45309:93::-;45353:7;45382:8;;45375:15;;45309:93;:::o;29481:179::-;29559:4;29580:42;29590:12;:10;:12::i;:::-;29604:9;29615:6;29580:9;:42::i;:::-;29644:4;29637:11;;29481:179;;;;:::o;31026:145::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31151:8:::1;31121:18;:27;31140:7;31121:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31026:145:::0;;:::o;32852:541::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32944:17:::1;:26;32962:7;32944:26;;;;;;;;;;;;;;;;;;;;;;;;;32935:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33019:9;33014:369;33038:16;:23;;;;33034:1;:27;33014:369;;;33115:7;33092:30;;:16;33109:1;33092:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;33088:281;;;33170:16;33213:1;33187:16;:23;;;;:27;33170:45;;;;;;;;;;;;;;;;;;;;;;;;;33148:16;33165:1;33148:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;33268:5;33239:17;:26;33257:7;33239:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33297:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33343:5;;33088:281;33063:3;;;;;;;33014:369;;;;32852:541:::0;:::o;27038:40::-;;;;;;;;;;;;;:::o;30896:118::-;30954:4;30982:11;:20;30994:7;30982:20;;;;;;;;;;;;;;;;;;;;;;;;;30975:27;;30896:118;;;:::o;29672:151::-;29753:7;29784:11;:18;29796:5;29784:18;;;;;;;;;;;;;;;:27;29803:7;29784:27;;;;;;;;;;;;;;;;29777:34;;29672:151;;;;:::o;39067:106::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39154:7:::1;39140:11;;:21;;;;;;;;;;;;;;;;;;39067:106:::0;:::o;33405:475::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33501:42:::1;33490:53;;:7;:53;;;;33482:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33606:11;:20;33618:7;33606:20;;;;;;;;;;;;;;;;;;;;;;;;;33605:21;33597:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33695:1;33676:7;:16;33684:7;33676:16;;;;;;;;;;;;;;;;:20;33673:116;;;33736:37;33756:7;:16;33764:7;33756:16;;;;;;;;;;;;;;;;33736:19;:37::i;:::-;33717:7;:16;33725:7;33717:16;;;;;;;;;;;;;;;:56;;;;33673:116;33826:4;33803:11;:20;33815:7;33803:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33845:9;33860:7;33845:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33405:475:::0;:::o;16776:260::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16889:1:::1;16869:22;;:8;:22;;;;16861:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16983:8;16954:38;;16975:6;::::0;::::1;;;;;;;;16954:38;;;;;;;;;;;;17016:8;17007:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16776:260:::0;:::o;38887:168::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38945:26:::1;38974:21;38945:50;;39010:33;39024:18;39010:13;:33::i;:::-;16054:1;38887:168::o:0;45414:102::-;45461:7;45492:12;;45485:19;;45414:102;:::o;45528:118::-;45574:15;45613:21;45606:28;;45528:118;:::o;33892:518::-;15990:12;:10;:12::i;:::-;15980:22;;:6;;;;;;;;;;:22;;;15972:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33977:11:::1;:20;33989:7;33977:20;;;;;;;;;;;;;;;;;;;;;;;;;33969:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34045:9;34040:359;34064:9;:16;;;;34060:1;:20;34040:359;;;34126:7;34110:23;;:9;34120:1;34110:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;34106:278;;;34173:9;34202:1;34183:9;:16;;;;:20;34173:31;;;;;;;;;;;;;;;;;;;;;;;;;34158:9;34168:1;34158:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34246:1;34227:7;:16;34235:7;34227:16;;;;;;;;;;;;;;;:20;;;;34293:5;34270:11;:20;34282:7;34270:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34321:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34359:5;;34106:278;34082:3;;;;;;;34040:359;;;;33892:518:::0;:::o;199:114::-;252:15;291:10;284:17;;199:114;:::o;34954:357::-;35068:1;35051:19;;:5;:19;;;;35043:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35153:1;35134:21;;:7;:21;;;;35126:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35241:6;35211:11;:18;35223:5;35211:18;;;;;;;;;;;;;;;:27;35230:7;35211:27;;;;;;;;;;;;;;;:36;;;;35283:7;35267:32;;35276:5;35267:32;;;35292:6;35267:32;;;;;;;;;;;;;;;;;;34954:357;;;:::o;35323:2507::-;35442:1;35424:20;;:6;:20;;;;35416:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35530:1;35509:23;;:9;:23;;;;35501:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35604:1;35595:6;:10;35587:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35675:17;:25;35693:6;35675:25;;;;;;;;;;;;;;;;;;;;;;;;;35674:26;35666:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35748:17;:29;35766:10;35748:29;;;;;;;;;;;;;;;;;;;;;;;;;35747:30;35739:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35825:17;:28;35843:9;35825:28;;;;;;;;;;;;;;;;;;;;;;;;;35824:29;35816:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35905:7;:5;:7::i;:::-;35895:17;;:6;:17;;;;:41;;;;;35929:7;:5;:7::i;:::-;35916:20;;:9;:20;;;;35895:41;35892:156;;;35975:12;;35965:6;:22;;35957:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35892:156;36075:7;:5;:7::i;:::-;36065:17;;:6;:17;;;;:41;;;;;36099:7;:5;:7::i;:::-;36086:20;;:9;:20;;;;36065:41;:71;;;;;36123:13;36110:26;;:9;:26;;;;36065:71;:103;;;;;36161:6;36140:28;;:9;:28;;;;36065:103;36062:309;;;36189:29;36221:20;36231:9;36221;:20::i;:::-;36189:52;;36302:14;;36292:6;36268:21;:30;:48;;36260:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36062:309;;36651:28;36682:24;36700:4;36682:9;:24::i;:::-;36651:55;;36750:12;;36726:20;:36;36723:124;;36819:12;;36796:35;;36723:124;36863:24;27452:13;36890:20;:53;;36863:80;;36963:6;;;;;;;;;;;36962:7;:22;;;;;36973:11;;;;;;;;;;;36962:22;:45;;;;;36988:19;36962:45;:72;;;;;37021:13;37011:23;;:6;:23;;;;36962:72;36958:417;;;37126:38;37143:20;37126:16;:38::i;:::-;37185:26;37214:21;37185:50;;37278:1;37257:18;:22;37254:106;;;37304:36;37318:21;37304:13;:36::i;:::-;37254:106;36958:417;;37456:12;37471:4;37456:19;;37583:18;:26;37602:6;37583:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;37613:18;:29;37632:9;37613:29;;;;;;;;;;;;;;;;;;;;;;;;;37583:59;37580:113;;;37672:5;37662:15;;37580:113;37771:47;37786:6;37793:9;37803:6;37810:7;37771:14;:47::i;:::-;35323:2507;;;;;;:::o;4726:208::-;4812:7;4849:1;4844;:6;;4852:12;4836:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:9;4896:1;4892;:5;4880:17;;4921:1;4914:8;;;4726:208;;;;;:::o;44411:175::-;44452:7;44477:15;44494;44513:19;:17;:19::i;:::-;44476:56;;;;44554:20;44566:7;44554;:11;;:20;;;;:::i;:::-;44547:27;;;;44411:175;:::o;6256:140::-;6314:7;6345:39;6349:1;6352;6345:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6338:46;;6256:140;;;;:::o;3729:197::-;3787:7;3811:9;3827:1;3823;:5;3811:17;;3856:1;3851;:6;;3843:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3913:1;3906:8;;;3729:197;;;;:::o;43104:467::-;43163:7;43172;43181;43190;43199;43208;43229:23;43254:12;43268:13;43285:39;43297:7;43306;;43315:8;;43285:11;:39::i;:::-;43228:96;;;;;;43335:19;43357:10;:8;:10::i;:::-;43335:32;;43379:15;43396:23;43421:12;43437:46;43449:7;43458:4;43464:5;43471:11;43437;:46::i;:::-;43378:105;;;;;;43502:7;43511:15;43528:4;43534:15;43551:4;43557:5;43494:69;;;;;;;;;;;;;;;;;;;43104:467;;;;;;;:::o;4244:144::-;4302:7;4333:43;4337:1;4340;4333:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4326:50;;4244:144;;;;:::o;37842:656::-;27825:4;27816:6;;:13;;;;;;;;;;;;;;;;;;37987:21:::1;38025:1;38011:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37987:40;;38060:4;38042;38047:1;38042:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;38090:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38080:4;38085:1;38080:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;38129:62;38146:4;38161:15;38179:11;38129:8;:62::i;:::-;38238:15;:66;;;38323:11;38353:1;38401:4;38432;38456:15;38238:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27844:1;27869:5:::0;27860:6;;:14;;;;;;;;;;;;;;;;;;37842:656;:::o;38510:185::-;38572:17;;;;;;;;;;;:26;;:41;38599:13;38610:1;38599:6;:10;;:13;;;;:::i;:::-;38572:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38628:23;;;;;;;;;;;:32;;:55;38661:21;38680:1;38661:14;38672:2;38661:6;:10;;:14;;;;:::i;:::-;:18;;:21;;;;:::i;:::-;38628:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38510:185;:::o;39185:883::-;39301:7;39297:44;;39327:14;:12;:14::i;:::-;39297:44;39362:11;:19;39374:6;39362:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39386:11;:22;39398:9;39386:22;;;;;;;;;;;;;;;;;;;;;;;;;39385:23;39362:46;39358:637;;;39429:48;39451:6;39459:9;39470:6;39429:21;:48::i;:::-;39358:637;;;39504:11;:19;39516:6;39504:19;;;;;;;;;;;;;;;;;;;;;;;;;39503:20;:46;;;;;39527:11;:22;39539:9;39527:22;;;;;;;;;;;;;;;;;;;;;;;;;39503:46;39499:496;;;39570:46;39590:6;39598:9;39609:6;39570:19;:46::i;:::-;39499:496;;;39643:11;:19;39655:6;39643:19;;;;;;;;;;;;;;;;;;;;;;;;;39642:20;:47;;;;;39667:11;:22;39679:9;39667:22;;;;;;;;;;;;;;;;;;;;;;;;;39666:23;39642:47;39638:357;;;39710:44;39728:6;39736:9;39747:6;39710:17;:44::i;:::-;39638:357;;;39780:11;:19;39792:6;39780:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39803:11;:22;39815:9;39803:22;;;;;;;;;;;;;;;;;;;;;;;;;39780:45;39776:219;;;39846:48;39868:6;39876:9;39887:6;39846:21;:48::i;:::-;39776:219;;;39935:44;39953:6;39961:9;39972:6;39935:17;:44::i;:::-;39776:219;39638:357;39499:496;39358:637;40015:7;40011:45;;40041:15;:13;:15::i;:::-;40011:45;39185:883;;;;:::o;44598:595::-;44648:7;44657;44681:15;44699:7;;44681:25;;44721:15;26553:19;44721:25;;44766:9;44761:305;44785:9;:16;;;;44781:1;:20;44761:305;;;44855:7;44831;:21;44839:9;44849:1;44839:12;;;;;;;;;;;;;;;;;;;;;;;;;44831:21;;;;;;;;;;;;;;;;:31;:66;;;;44890:7;44866;:21;44874:9;44884:1;44874:12;;;;;;;;;;;;;;;;;;;;;;;;;44866:21;;;;;;;;;;;;;;;;:31;44831:66;44827:97;;;44907:7;;26553:19;44899:25;;;;;;;;;44827:97;44953:34;44965:7;:21;44973:9;44983:1;44973:12;;;;;;;;;;;;;;;;;;;;;;;;;44965:21;;;;;;;;;;;;;;;;44953:7;:11;;:34;;;;:::i;:::-;44943:44;;45016:34;45028:7;:21;45036:9;45046:1;45036:12;;;;;;;;;;;;;;;;;;;;;;;;;45028:21;;;;;;;;;;;;;;;;45016:7;:11;;:34;;;;:::i;:::-;45006:44;;44803:3;;;;;;;44761:305;;;;45094:20;26553:19;45094:7;;:11;;:20;;;;:::i;:::-;45084:7;:30;45080:61;;;45124:7;;26553:19;45116:25;;;;;;;;45080:61;45164:7;45173;45156:25;;;;;;44598:595;;;:::o;6933:298::-;7019:7;7055:1;7051;:5;7058:12;7043:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7086:9;7102:1;7098;:5;;;;;;7086:17;;7218:1;7211:8;;;6933:298;;;;;:::o;43583:371::-;43676:7;43685;43694;43718:12;43733:28;43757:3;43733:19;43745:6;43733:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43718:43;;43776:13;43792:29;43817:3;43792:20;43804:7;43792;:11;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;43776:45;;43836:23;43862:28;43884:5;43862:17;43874:4;43862:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43836:54;;43913:15;43930:4;43936:5;43905:37;;;;;;;;;43583:371;;;;;;;:::o;43966:433::-;44076:7;44085;44094;44118:15;44136:24;44148:11;44136:7;:11;;:24;;;;:::i;:::-;44118:42;;44175:12;44190:21;44199:11;44190:4;:8;;:21;;;;:::i;:::-;44175:36;;44226:13;44242:22;44252:11;44242:5;:9;;:22;;;;:::i;:::-;44226:38;;44279:23;44305:28;44327:5;44305:17;44317:4;44305:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;44279:54;;44356:7;44365:15;44382:4;44348:39;;;;;;;;;;43966:433;;;;;;;;:::o;5228:511::-;5286:7;5552:1;5547;:6;5543:55;;;5581:1;5574:8;;;;5543:55;5614:9;5630:1;5626;:5;5614:17;;5663:1;5658;5654;:5;;;;;;:10;5646:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5726:1;5719:8;;;5228:511;;;;;:::o;34422:238::-;34483:1;34472:7;;:12;:29;;;;;34500:1;34488:8;;:13;34472:29;34469:41;;;34503:7;;34469:41;34544:7;;34526:15;:25;;;;34585:8;;34566:16;:27;;;;34620:1;34610:7;:11;;;;34647:1;34636:8;:12;;;;34422:238;:::o;41211:580::-;41318:15;41335:23;41360:12;41374:23;41399:12;41413:13;41430:19;41441:7;41430:10;:19::i;:::-;41317:132;;;;;;;;;;;;41482:28;41502:7;41482;:15;41490:6;41482:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41464:7;:15;41472:6;41464:15;;;;;;;;;;;;;;;:46;;;;41543:28;41563:7;41543;:15;41551:6;41543:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41525:7;:15;41533:6;41525:15;;;;;;;;;;;;;;;:46;;;;41607:39;41630:15;41607:7;:18;41615:9;41607:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41586:7;:18;41594:9;41586:18;;;;;;;;;;;;;;;:60;;;;41661:16;41671:5;41661:9;:16::i;:::-;41692:23;41704:4;41710;41692:11;:23::i;:::-;41752:9;41735:44;;41744:6;41735:44;;;41763:15;41735:44;;;;;;;;;;;;;;;;;;41211:580;;;;;;;;;:::o;40607:592::-;40712:15;40729:23;40754:12;40768:23;40793:12;40807:13;40824:19;40835:7;40824:10;:19::i;:::-;40711:132;;;;;;;;;;;;40876:28;40896:7;40876;:15;40884:6;40876:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40858:7;:15;40866:6;40858:15;;;;;;;;;;;;;;;:46;;;;40940:39;40963:15;40940:7;:18;40948:9;40940:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40919:7;:18;40927:9;40919:18;;;;;;;;;;;;;;;:60;;;;41015:39;41038:15;41015:7;:18;41023:9;41015:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40994:7;:18;41002:9;40994:18;;;;;;;;;;;;;;;:60;;;;41069:16;41079:5;41069:9;:16::i;:::-;41100:23;41112:4;41118;41100:11;:23::i;:::-;41160:9;41143:44;;41152:6;41143:44;;;41171:15;41143:44;;;;;;;;;;;;;;;;;;40607:592;;;;;;;;;:::o;40080:515::-;40183:15;40200:23;40225:12;40239:23;40264:12;40278:13;40295:19;40306:7;40295:10;:19::i;:::-;40182:132;;;;;;;;;;;;40347:28;40367:7;40347;:15;40355:6;40347:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40329:7;:15;40337:6;40329:15;;;;;;;;;;;;;;;:46;;;;40411:39;40434:15;40411:7;:18;40419:9;40411:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40390:7;:18;40398:9;40390:18;;;;;;;;;;;;;;;:60;;;;40465:16;40475:5;40465:9;:16::i;:::-;40496:23;40508:4;40514;40496:11;:23::i;:::-;40556:9;40539:44;;40548:6;40539:44;;;40567:15;40539:44;;;;;;;;;;;;;;;;;;40080:515;;;;;;;;;:::o;41803:655::-;41910:15;41927:23;41952:12;41966:23;41991:12;42005:13;42022:19;42033:7;42022:10;:19::i;:::-;41909:132;;;;;;;;;;;;42074:28;42094:7;42074;:15;42082:6;42074:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42056:7;:15;42064:6;42056:15;;;;;;;;;;;;;;;:46;;;;42135:28;42155:7;42135;:15;42143:6;42135:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42117:7;:15;42125:6;42117:15;;;;;;;;;;;;;;;:46;;;;42199:39;42222:15;42199:7;:18;42207:9;42199:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42178:7;:18;42186:9;42178:18;;;;;;;;;;;;;;;:60;;;;42274:39;42297:15;42274:7;:18;42282:9;42274:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42253:7;:18;42261:9;42253:18;;;;;;;;;;;;;;;:60;;;;42328:16;42338:5;42328:9;:16::i;:::-;42359:23;42371:4;42377;42359:11;:23::i;:::-;42419:9;42402:44;;42411:6;42402:44;;;42430:15;42402:44;;;;;;;;;;;;;;;;;;41803:655;;;;;;;;;:::o;34672:127::-;34730:15;;34720:7;:25;;;;34771:16;;34760:8;:27;;;;34672:127::o;42470:349::-;42527:19;42550:10;:8;:10::i;:::-;42527:33;;42575:13;42591:22;42601:11;42591:5;:9;;:22;;;;:::i;:::-;42575:38;;42653:33;42680:5;42653:7;:22;42669:4;42653:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42628:7;:22;42644:4;42628:22;;;;;;;;;;;;;;;:58;;;;42704:11;:26;42724:4;42704:26;;;;;;;;;;;;;;;;;;;;;;;;;42701:106;;;42774:33;42801:5;42774:7;:22;42790:4;42774:22;;;;;;;;;;;;;;;;:26;;:33;;;;:::i;:::-;42749:7;:22;42765:4;42749:22;;;;;;;;;;;;;;;:58;;;;42701:106;42470:349;;;:::o;42831:159::-;42913:17;42925:4;42913:7;;:11;;:17;;;;:::i;:::-;42903:7;:27;;;;42958:20;42973:4;42958:10;;:14;;:20;;;;:::i;:::-;42945:10;:33;;;;42831:159;;:::o

Swarm Source

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