ETH Price: $3,424.64 (-2.09%)
Gas: 5 Gwei

Token

Tom Inu (TINU)
 

Overview

Max Total Supply

1,733,820,000,000 TINU

Holders

526

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,545,244,178,897,375.320410723 TINU

Value
$0.00
0x92048db9d572f3d153d415a41502ad20e9756904
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:
TomInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
   
               
              /\___/\ ((
              \`@_@'/  ))
              {_:Y:.}_//
--------------{_}^-'{_}-------------------- 
 _____   ___   __  __   ___  _   _  _   _ 
|_   _| / _ \ |  \/  | |_ _|| \ | || | | | 
  | |  | | | || |\/| |  | | |  \| || | | |
  | |  | |_| || |  | |  | | | |\  || |_| |
  |_|   \___/ |_|  |_| |___||_| \_| \___/ 
                                          
https://www.tominu.xyz
https://t.me/tominutoken

--------------------------------------------

*/


// 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 geUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

        //Locks the contract for owner for the amount of time provided
        function lock(uint256 time) public virtual onlyOwner {
            _previousOwner = _owner;
            _owner = address(0);
            _lockTime = now + time;
            emit OwnershipTransferred(_owner, address(0));
        }
        
        //Unlocks the contract for owner when _lockTime is exceeds
        function unlock() public virtual {
            require(_previousOwner == msg.sender, "You don't have permission to unlock");
            require(now > _lockTime , "Contract is locked until 7 days");
            emit OwnershipTransferred(_owner, _previousOwner);
            _owner = _previousOwner;
        }
    }  

    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 implementation
    contract TomInu 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 => uint256) public timestamp;

        mapping (address => bool) private _isExcludedFromFee;
    
        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 1733820000000000000000;  //1,000,000,000,000
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;
        uint256 public _CoolDown = 15 seconds;

        string private _name = 'Tom Inu';
        string private _symbol = 'TINU';
        uint8 private _decimals = 9;
        
        // Tax and team fees will start at 0 so we don't have a big impact when deploying 
        uint256 private _taxFee = 0; 
        uint256 private _teamFee = 0;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousteamFee = _teamFee;

        address payable public _teamWalletAddress;
        address payable public _marketingWalletAddress;
        
        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;
        bool public tradingEnabled = false;
        bool public cooldownEnabled = true;

        uint256 public _maxTxAmount = _tTotal; 
        //no max tx limit at deploy
        uint256 private _numOfTokensToExchangeForteam = 5000000000000000;

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

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

        constructor (address payable teamWalletAddress, address payable marketingWalletAddress) public {
            _teamWalletAddress = teamWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

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

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

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;
            
            _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
            _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));
            
            _isBlackListedBot[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
            _blackListedBots.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));
            
            _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
            _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
            
            _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
            _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
    
            _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
            _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));
    
            _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
            _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));
    
            _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
            _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));
    
            _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
            _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));
    
            _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
            _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));
    
            _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
            _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));
    
            _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
            _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
            
            _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
            _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
            
            _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
            _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));
            
            _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
            _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));
            
            _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true;
            _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084));

            _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
            _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));
            
            _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
            _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));
            
            _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
            _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241));
            
            _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
            _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));
            
            _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
            _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));
            
            _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
            _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA));
            
            _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
            _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));
            
            _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
            _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));
            
            _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
            _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));
            
            _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
            _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));
            
            _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
            _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415));
            
            _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
            _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

            _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
            _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
            _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

            _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
            _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

            _isBlackListedBot[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
            _blackListedBots.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

            _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
            _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));
            
            _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
            _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
            _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));
            
            
            emit Transfer(address(0), _msgSender(), _tTotal);
        }

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

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

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

        function 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 isBlackListed(address account) public view returns (bool) {
            return _isBlackListedBot[account];
        }

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

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

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

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

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

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

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

        function removeAllFee() private {
            if(_taxFee == 0 && _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 setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
        }

        function _approve(address owner, address spender, uint256 amount) private {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");

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

        function _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[recipient], "You have no power here!");
            require(!_isBlackListedBot[sender], "You have no power here!");
            
            if(sender != owner() && recipient != owner()) {
                    
                    require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
                
                    //you can't trade this on a dex until trading enabled
                    if (sender == uniswapV2Pair || recipient == uniswapV2Pair) { require(tradingEnabled, "Trading is not enabled yet");}
              
            }
            
            
             //cooldown logic starts
             
             if(cooldownEnabled) {
              
              //perform all cooldown checks below only if enabled
              
                      if (sender == uniswapV2Pair ) {
                        
                        //they just bought add cooldown    
                        if (!_isExcluded[recipient]) { timestamp[recipient] = block.timestamp.add(_CoolDown); }

                      }
                      

                      // exclude owner and uniswap
                      if(sender != owner() && sender != uniswapV2Pair) {

                        // dont apply cooldown to other excluded addresses
                        if (!_isExcluded[sender]) { require(block.timestamp >= timestamp[sender], "Cooldown"); }

                      }
              
             }

            // 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) {
                // We need to swap the current tokens to ETH and send to the team wallet
                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 {
            _teamWalletAddress.transfer(amount.div(2));
            _marketingWalletAddress.transfer(amount.div(2));
        }
        
        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            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, 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 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            return (rAmount, rTransferAmount, rFee);
        }

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

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

        function _getMaxTxAmount() private 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 <= 10, 'taxFee should be in 1 - 10');
            _taxFee = taxFee;
        }

        function _setteamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 11, 'teamFee should be in 1 - 11');
            _teamFee = teamFee;
        }
        
        function _setteamWallet(address payable teamWalletAddress) external onlyOwner() {
            _teamWalletAddress = teamWalletAddress;
        }
        
         function _setmarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }
        
         function LetTradingBegin(bool _tradingEnabled) external onlyOwner() {
             tradingEnabled = _tradingEnabled;
         }
         
         function ToggleCoolDown(bool _cooldownEnabled) external onlyOwner() {
             cooldownEnabled = _cooldownEnabled;
         }
         
          function setCoolDown(uint256 CoolDown) external onlyOwner() {
            _CoolDown = (CoolDown * 1 seconds);
            }    
        
        
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_cooldownEnabled","type":"bool"}],"name":"ToggleCoolDown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_CoolDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setteamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"}],"name":"_setteamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_teamWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"CoolDown","type":"uint256"}],"name":"setCoolDown","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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

685dfd9607d3f3c60000600c55681613173fbcd971ffff19600d55600f8055610100604052600760c081905266546f6d20496e7560c81b60e09081526200004a916010919062000eda565b506040805180820190915260048082526354494e5560e01b6020909201918252620000789160119162000eda565b506012805460ff1916600917905560006013819055601481905560158190556016556018805461ffff60b01b1961ffff60a01b19909116600160a81b1716600160b81b179055600c546019556611c37937e08000601a55348015620000dc57600080fd5b5060405162004b8338038062004b83833981810160405260408110156200010257600080fd5b50805160209091015160006200011762000ec7565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601780546001600160a01b038085166001600160a01b0319928316179092556018805492841692909116919091179055600d5460036000620001a262000ec7565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021957600080fd5b505afa1580156200022e573d6000803e3d6000fd5b505050506040513d60208110156200024557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029657600080fd5b505afa158015620002ab573d6000803e3d6000fd5b505050506040513d6020811015620002c257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031557600080fd5b505af11580156200032a573d6000803e3d6000fd5b505050506040513d60208110156200034157600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600760006200036e62000ecb565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600a9092527f4777d92e592f2fa8390fa48c8824c65e93bffeaaf19b5e78702f374b7185cff18054841683179055600b805480840182557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557fdc914f9280e3bf508019c453219bd8772b25f5bd33cb2e400a6d3a3ef5b8a7328054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f998a942c5b07a457c1c745d8872225c6e7a179ed6fde5bfb692b69ae70f05fb280548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f7448ef692eb22b90051ee7bb93f7f0bec25e320b568420fe8d685c03f99bcda680548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f33585703c4f432691140342bf67b6aa54c45f613466cbb9648c8ebdc59ab51fe80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ffba5a2784f63caf056a136b81f2ac0f10327e1cd2fcc376d9117328b6715bbad80548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f2063099f98622176f7a9dab7c96355197697679ded73d22ee92fafe3f7dc818980548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f7b1842781ea8d74bd5a863e148fa18d771dedc1fed888acc0b24b912c26e29f780548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fc0020013c6d8595c68014b16713d0a57240f075db12290e54cb3bd5b3843c02c8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fca4a506b5a56b6ba07b0a9d4d66b0f1540cc9b80e4b3cdfd8d5f141115bbde6c8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557ff6212472f5e0a52c2fec3ac5fcad601c59d6ff1e96bdbdafb42829d3edbd6a93805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f2af88a6d7dae65d6f610a890dbaa61f2824a039572abef40bf47657129a70b9880548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f7966a96da7d4dbc43e90c4a05d6081ea9a91b17729f7b3dbda42ffbd6eeecd3e805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f724025a98f534d1309e69bda52a09889b613c546a0620f14f372b402dc7bff268054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fcd74986290e61ec10dad061b400b86dbc1ec586079bd390b4568960f464200bd805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f63679658c139b9c632697fe9ed7ac19e1fe3f543e06a57327e69fed698adb7bc80548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f23e50dbd7cbb74df02fe617013720045098f5efa3a1b88c39e80ff824645416b8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fdc987018d848576249961f02f9f7ed1731f448763a4b412eca2e6bc74126495980548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557ff39a91af98ae2b73dc9413871c0acb2ceb4c7b70cae5eb58eb458116e77db88980548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f162a1f8a785159eed011c60298c07e3524613b71a599d19744c8d6f71c96fb2b8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557fa65db558bd82b4053113a6519ad4564189065cd183f86fc6b00387f9d41bc0ec8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fa58330920200a0932da2b374c9d20c7c472483bed80061b1d413d9672d5ebde08054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f7cdf1f9da93d80ed9a798cebe4e6f6004bf8f95a7de67429ea0199a704acad2580548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f29f6c3b9d2e36abe8bdc900bc60e22583fba659c2d53a44eee0dd709801ea97d805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f6d65c65c35d6610b1200fe6cfe593318beb7893a4c03bf503f1d9d9e940fefba8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557fa064b1fb0114f75e10beb90c8a29d47f54dd994e59433940d481b05c7a8412d8805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f686148b1caf780c4d22c6aacf115180ebb69c181e844afce5bbb3b709ef082ed80548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f9bfda5ddf3bd831ffd2394205d842c39e6b71e9a402694563d77490a84c6161a8054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f3b3fd9d1e8f96da8faf46a3c453226258db5fd46463cbe4c94c46725c18c854180548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557fa5bcf367515080dcf00ba24a8f13316bd1cd41a9ec18ad53c08e66f5b64f32f28054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557ff42d6f970ece9bfc747567e954d2e575ff81c6db9ab98a11162aecdd7c7762d780548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557ff9a54afda4266d0074bb9475c43164c2aaff7e83a5840148c16c0350af2fc5f4805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557fbd5bb69fd63981ca863b1c9542c22b5b327280aee3e76e2824e23873f1050fb180548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f4fc612e08b493416d29ed3554c22384cccb8fee4e3a4cdcc444d412a1299652480549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000e7162000ec7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350505062000f76565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000f1d57805160ff191683800117855562000f4d565b8280016001018555821562000f4d579182015b8281111562000f4d57825182559160200191906001019062000f30565b5062000f5b92915062000f5f565b5090565b5b8082111562000f5b576000815560010162000f60565b60805160601c60a05160601c613bbb62000fc86000398061120a528061291b52806129565280612a285280612ace5280612c10525080610d555280612f4e5280613006528061302d5250613bbb6000f3fe6080604052600436106103385760003560e01c80637d1db4a5116101b0578063cba0e996116100ec578063ee59c3ac11610095578063f42938901161006f578063f429389014610b37578063f815a84214610b4c578063f84354f114610b61578063fd62d67514610b945761033f565b8063ee59c3ac14610abc578063f2cc0c1814610ad1578063f2fde38b14610b045761033f565b8063dd62ed3e116100c6578063dd62ed3e14610a22578063e01af92c14610a5d578063e47d606014610a895761033f565b8063cba0e9961461099b578063d543dbeb146109ce578063dd467064146109f85761033f565b8063a457c2d711610159578063a985ceef11610133578063a985ceef1461090a578063abdef31d1461091f578063af9549e01461094b578063b6c52324146109865761033f565b8063a457c2d714610883578063a69df4b5146108bc578063a9059cbb146108d15761033f565b80638da5cb5b1161018a5780638da5cb5b1461082657806395d89b411461083b5780639ca15239146108505761033f565b80637d1db4a5146107ab5780637ded4d6a146107c0578063813194d3146107f35761033f565b80634303443d1161027f5780635880b87311610228578063715018a611610202578063715018a61461070d5780637302dacf146107225780637a6cdbc3146107555780637c56687a146107815761033f565b80635880b8731461069b5780636ddd1713146106c557806370a08231146106da5761033f565b80634ada218b116102595780634ada218b1461063e57806351bc3c85146106535780635342acb4146106685761033f565b80634303443d146105c45780634549b039146105f757806349bd5a5e146106295761033f565b806323b872dd116102e157806339509351116102bb578063395093511461054c5780633bd5d173146105855780634144d9e4146105af5761033f565b806323b872dd146104b45780632d838119146104f7578063313ce567146105215761033f565b806313114a9d1161031257806313114a9d146104475780631694505e1461046e57806318160ddd1461049f5761033f565b806306fdde0314610344578063095ea7b3146103ce578063109c45aa1461041b5761033f565b3661033f57005b600080fd5b34801561035057600080fd5b50610359610ba9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561039357818101518382015260200161037b565b50505050905090810190601f1680156103c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103da57600080fd5b50610407600480360360408110156103f157600080fd5b506001600160a01b038135169060200135610c5d565b604080519115158252519081900360200190f35b34801561042757600080fd5b506104456004803603602081101561043e57600080fd5b5035610c7b565b005b34801561045357600080fd5b5061045c610d4d565b60408051918252519081900360200190f35b34801561047a57600080fd5b50610483610d53565b604080516001600160a01b039092168252519081900360200190f35b3480156104ab57600080fd5b5061045c610d77565b3480156104c057600080fd5b50610407600480360360608110156104d757600080fd5b506001600160a01b03813581169160208101359091169060400135610d7d565b34801561050357600080fd5b5061045c6004803603602081101561051a57600080fd5b5035610e04565b34801561052d57600080fd5b50610536610e66565b6040805160ff9092168252519081900360200190f35b34801561055857600080fd5b506104076004803603604081101561056f57600080fd5b506001600160a01b038135169060200135610e6f565b34801561059157600080fd5b50610445600480360360208110156105a857600080fd5b5035610ebd565b3480156105bb57600080fd5b50610483610f97565b3480156105d057600080fd5b50610445600480360360208110156105e757600080fd5b50356001600160a01b0316610fa6565b34801561060357600080fd5b5061045c6004803603604081101561061a57600080fd5b50803590602001351515611176565b34801561063557600080fd5b50610483611208565b34801561064a57600080fd5b5061040761122c565b34801561065f57600080fd5b5061044561124f565b34801561067457600080fd5b506104076004803603602081101561068b57600080fd5b50356001600160a01b03166112d2565b3480156106a757600080fd5b50610445600480360360208110156106be57600080fd5b50356112f0565b3480156106d157600080fd5b506104076113c2565b3480156106e657600080fd5b5061045c600480360360208110156106fd57600080fd5b50356001600160a01b03166113e4565b34801561071957600080fd5b50610445611446565b34801561072e57600080fd5b5061045c6004803603602081101561074557600080fd5b50356001600160a01b0316611512565b34801561076157600080fd5b506104456004803603602081101561077857600080fd5b50351515611524565b34801561078d57600080fd5b50610445600480360360208110156107a457600080fd5b50356115db565b3480156107b757600080fd5b5061045c61164a565b3480156107cc57600080fd5b50610445600480360360208110156107e357600080fd5b50356001600160a01b0316611650565b3480156107ff57600080fd5b506104456004803603602081101561081657600080fd5b50356001600160a01b03166118a4565b34801561083257600080fd5b50610483611948565b34801561084757600080fd5b50610359611957565b34801561085c57600080fd5b506104456004803603602081101561087357600080fd5b50356001600160a01b03166119d6565b34801561088f57600080fd5b50610407600480360360408110156108a657600080fd5b506001600160a01b038135169060200135611a7a565b3480156108c857600080fd5b50610445611ae2565b3480156108dd57600080fd5b50610407600480360360408110156108f457600080fd5b506001600160a01b038135169060200135611bfa565b34801561091657600080fd5b50610407611c0e565b34801561092b57600080fd5b506104456004803603602081101561094257600080fd5b50351515611c32565b34801561095757600080fd5b506104456004803603604081101561096e57600080fd5b506001600160a01b0381351690602001351515611ce8565b34801561099257600080fd5b5061045c611d9b565b3480156109a757600080fd5b50610407600480360360208110156109be57600080fd5b50356001600160a01b0316611da1565b3480156109da57600080fd5b50610445600480360360208110156109f157600080fd5b5035611dbf565b348015610a0457600080fd5b5061044560048036036020811015610a1b57600080fd5b5035611e4f565b348015610a2e57600080fd5b5061045c60048036036040811015610a4557600080fd5b506001600160a01b0381358116916020013516611f29565b348015610a6957600080fd5b5061044560048036036020811015610a8057600080fd5b50351515611f54565b348015610a9557600080fd5b5061040760048036036020811015610aac57600080fd5b50356001600160a01b0316612009565b348015610ac857600080fd5b5061045c612027565b348015610add57600080fd5b5061044560048036036020811015610af457600080fd5b50356001600160a01b031661202d565b348015610b1057600080fd5b5061044560048036036020811015610b2757600080fd5b50356001600160a01b0316612257565b348015610b4357600080fd5b50610445612379565b348015610b5857600080fd5b5061045c6123ed565b348015610b6d57600080fd5b5061044560048036036020811015610b8457600080fd5b50356001600160a01b03166123f1565b348015610ba057600080fd5b506104836125ed565b60108054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000610c71610c6a6125fc565b8484612600565b5060015b92915050565b610c836125fc565b6000546001600160a01b03908116911614610ce5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60018110158015610cf75750600b8111155b610d48576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2031310000000000604482015290519081900360640190fd5b601455565b600e5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5490565b6000610d8a8484846126ec565b610dfa84610d966125fc565b610df585604051806060016040528060288152602001613a32602891396001600160a01b038a16600090815260056020526040812090610dd46125fc565b6001600160a01b031681526020810191909152604001600020549190612cc4565b612600565b5060019392505050565b6000600d54821115610e475760405162461bcd60e51b815260040180806020018281038252602a815260200180613977602a913960400191505060405180910390fd5b6000610e51612d5b565b9050610e5d8382612d7e565b9150505b919050565b60125460ff1690565b6000610c71610e7c6125fc565b84610df58560056000610e8d6125fc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612dc7565b6000610ec76125fc565b6001600160a01b03811660009081526008602052604090205490915060ff1615610f225760405162461bcd60e51b815260040180806020018281038252602c815260200180613b12602c913960400191505060405180910390fd5b6000610f2d83612e21565b505050506001600160a01b038416600090815260036020526040902054919250610f5991905082612e7d565b6001600160a01b038316600090815260036020526040902055600d54610f7f9082612e7d565b600d55600e54610f8f9084612dc7565b600e55505050565b6018546001600160a01b031681565b610fae6125fc565b6000546001600160a01b03908116911614611010576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561106c5760405162461bcd60e51b8152600401808060200182810382526024815260200180613a836024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156110da576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600c548311156111cf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111ee5760006111df84612e21565b50939550610c75945050505050565b60006111f984612e21565b50929550610c75945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854760100000000000000000000000000000000000000000000900460ff1681565b6112576125fc565b6000546001600160a01b039081169116146112b9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006112c4306113e4565b90506112cf81612ebf565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b6112f86125fc565b6000546001600160a01b0390811691161461135a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001811015801561136c5750600a8111155b6113bd576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601355565b6018547501000000000000000000000000000000000000000000900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561142457506001600160a01b038116600090815260046020526040902054610e61565b6001600160a01b038216600090815260036020526040902054610c7590610e04565b61144e6125fc565b6000546001600160a01b039081169116146114b0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b61152c6125fc565b6000546001600160a01b0390811691161461158e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6018805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6115e36125fc565b6000546001600160a01b03908116911614611645576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f55565b60195481565b6116586125fc565b6000546001600160a01b039081169116146116ba576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611727576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b548110156118a057816001600160a01b0316600b828154811061174b57fe5b6000918252602090912001546001600160a01b0316141561189857600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061179657fe5b600091825260209091200154600b80546001600160a01b0390921691839081106117bc57fe5b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039485161790559184168152600a9091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600b80548061183b57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556118a0565b60010161172a565b5050565b6118ac6125fc565b6000546001600160a01b0390811691161461190e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b60118054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c535780601f10610c2857610100808354040283529160200191610c53565b6119de6125fc565b6000546001600160a01b03908116911614611a40576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610c71611a876125fc565b84610df585604051806060016040528060258152602001613b616025913960056000611ab16125fc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc4565b6001546001600160a01b03163314611b2b5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b3e6023913960400191505060405180910390fd5b6002544211611b81576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b6000610c71611c076125fc565b84846126ec565b60185477010000000000000000000000000000000000000000000000900460ff1681565b611c3a6125fc565b6000546001600160a01b03908116911614611c9c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60188054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611cf06125fc565b6000546001600160a01b03908116911614611d52576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0391909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b611dc76125fc565b6000546001600160a01b03908116911614611e29576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b611e496064611e4383600c5461313d90919063ffffffff16565b90612d7e565b60195550565b611e576125fc565b6000546001600160a01b03908116911614611eb9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b0384161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611f5c6125fc565b6000546001600160a01b03908116911614611fbe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b600f5481565b6120356125fc565b6000546001600160a01b03908116911614612097576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156120f35760405162461bcd60e51b8152600401808060200182810382526022815260200180613af06022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615612161576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156121bb576001600160a01b0381166000908152600360205260409020546121a190610e04565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b0316600081815260086020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b61225f6125fc565b6000546001600160a01b039081169116146122c1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166123065760405162461bcd60e51b81526004018080602001828103825260268152602001806139a16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6123816125fc565b6000546001600160a01b039081169116146123e3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b476112cf81613196565b4790565b6123f96125fc565b6000546001600160a01b0390811691161461245b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166124c8576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6009548110156118a057816001600160a01b0316600982815481106124ec57fe5b6000918252602090912001546001600160a01b031614156125e557600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061253757fe5b600091825260209091200154600980546001600160a01b03909216918390811061255d57fe5b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03948516179055918416815260048252604080822082905560089092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980548061183b57fe5b6001016124cb565b6017546001600160a01b031681565b3390565b6001600160a01b0383166126455760405162461bcd60e51b8152600401808060200182810382526024815260200180613acc6024913960400191505060405180910390fd5b6001600160a01b03821661268a5760405162461bcd60e51b81526004018080602001828103825260228152602001806139c76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166127315760405162461bcd60e51b8152600401808060200182810382526025815260200180613aa76025913960400191505060405180910390fd5b6001600160a01b0382166127765760405162461bcd60e51b81526004018080602001828103825260238152602001806139546023913960400191505060405180910390fd5b600081116127b55760405162461bcd60e51b8152600401808060200182810382526029815260200180613a5a6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612823576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615612891576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b612899611948565b6001600160a01b0316836001600160a01b0316141580156128d357506128bd611948565b6001600160a01b0316826001600160a01b031614155b15612a00576019548111156129195760405162461bcd60e51b81526004018080602001828103825260288152602001806139e96028913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061298a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15612a0057601854760100000000000000000000000000000000000000000000900460ff16612a00576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b60185477010000000000000000000000000000000000000000000000900460ff1615612b95577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415612aa8576001600160a01b03821660009081526008602052604090205460ff16612aa857600f54612a8e904290612dc7565b6001600160a01b0383166000908152600660205260409020555b612ab0611948565b6001600160a01b0316836001600160a01b031614158015612b0357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15612b95576001600160a01b03831660009081526008602052604090205460ff16612b95576001600160a01b038316600090815260066020526040902054421015612b95576040805162461bcd60e51b815260206004820152600860248201527f436f6f6c646f776e000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000612ba0306113e4565b90506019548110612bb057506019545b601a54601854908210159074010000000000000000000000000000000000000000900460ff16158015612bfe57506018547501000000000000000000000000000000000000000000900460ff165b8015612c075750805b8015612c4557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612c6557612c5382612ebf565b478015612c6357612c6347613196565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680612ca757506001600160a01b03851660009081526007602052604090205460ff165b15612cb0575060005b612cbc8686868461321b565b505050505050565b60008184841115612d535760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d18578181015183820152602001612d00565b50505050905090810190601f168015612d455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612d6861338f565b9092509050612d778282612d7e565b9250505090565b6000612dc083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134f2565b9392505050565b600082820183811015612dc0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612e3e8a601354601454613557565b9250925092506000612e4e612d5b565b90506000806000612e608e87866135a6565b919e509c509a509598509396509194505050505091939550919395565b6000612dc083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc4565b601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560408051600280825260608083018452926020830190803683370190505090503081600081518110612f2c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fa557600080fd5b505afa158015612fb9573d6000803e3d6000fd5b505050506040513d6020811015612fcf57600080fd5b5051815182906001908110612fe057fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061302b307f000000000000000000000000000000000000000000000000000000000000000084612600565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156130d05781810151838201526020016130b8565b505050509050019650505050505050600060405180830381600087803b1580156130f957600080fd5b505af115801561310d573d6000803e3d6000fd5b5050601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b60008261314c57506000610c75565b8282028284828161315957fe5b0414612dc05760405162461bcd60e51b8152600401808060200182810382526021815260200180613a116021913960400191505060405180910390fd5b6017546001600160a01b03166108fc6131b0836002612d7e565b6040518115909202916000818181858888f193505050501580156131d8573d6000803e3d6000fd5b506018546001600160a01b03166108fc6131f3836002612d7e565b6040518115909202916000818181858888f193505050501580156118a0573d6000803e3d6000fd5b80613228576132286135e2565b6001600160a01b03841660009081526008602052604090205460ff16801561326957506001600160a01b03831660009081526008602052604090205460ff16155b1561327e57613279848484613614565b61337c565b6001600160a01b03841660009081526008602052604090205460ff161580156132bf57506001600160a01b03831660009081526008602052604090205460ff165b156132cf57613279848484613738565b6001600160a01b03841660009081526008602052604090205460ff1615801561331157506001600160a01b03831660009081526008602052604090205460ff16155b15613321576132798484846137e1565b6001600160a01b03841660009081526008602052604090205460ff16801561336157506001600160a01b03831660009081526008602052604090205460ff165b1561337157613279848484613825565b61337c8484846137e1565b8061338957613389613898565b50505050565b600d54600c546000918291825b6009548110156134c0578260036000600984815481106133b857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061341d57508160046000600984815481106133f657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561343457600d54600c54945094505050506134ee565b613474600360006009848154811061344857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612e7d565b92506134b6600460006009848154811061348a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612e7d565b915060010161339c565b50600c54600d546134d091612d7e565b8210156134e857600d54600c549350935050506134ee565b90925090505b9091565b600081836135415760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d18578181015183820152602001612d00565b50600083858161354d57fe5b0495945050505050565b600080808061356b6064611e43898961313d565b9050600061357e6064611e438a8961313d565b90506000613596826135908b86612e7d565b90612e7d565b9992985090965090945050505050565b60008080806135b5878661313d565b905060006135c3878761313d565b905060006135d18383612e7d565b929992985090965090945050505050565b6013541580156135f25750601454155b156135fc57613612565b6013805460155560148054601655600091829055555b565b60008060008060008061362687612e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506136589088612e7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546136879087612e7d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546136b69086612dc7565b6001600160a01b0389166000908152600360205260409020556136d8816138a6565b6136e2848361392f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061374a87612e21565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061377c9087612e7d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546137b29084612dc7565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546136b69086612dc7565b6000806000806000806137f387612e21565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506136879087612e7d565b60008060008060008061383787612e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506138699088612e7d565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461377c9087612e7d565b601554601355601654601455565b60006138b0612d5b565b905060006138be838361313d565b306000908152600360205260409020549091506138db9082612dc7565b3060009081526003602090815260408083209390935560089052205460ff161561392a57306000908152600460205260409020546139199084612dc7565b306000908152600460205260409020555b505050565b600d5461393c9083612e7d565b600d55600e5461394c9082612dc7565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f76c1ac2ae7f2b41a3339cdd85c160bbc89ba93b9fcaa3558f9a603e587affc64736f6c634300060c00330000000000000000000000009980a74fcbb1936bc79ddecbd4148f7511598521000000000000000000000000eba4a1e0ff3baf18a9d2910874ffaee11911cc31

Deployed Bytecode

0x6080604052600436106103385760003560e01c80637d1db4a5116101b0578063cba0e996116100ec578063ee59c3ac11610095578063f42938901161006f578063f429389014610b37578063f815a84214610b4c578063f84354f114610b61578063fd62d67514610b945761033f565b8063ee59c3ac14610abc578063f2cc0c1814610ad1578063f2fde38b14610b045761033f565b8063dd62ed3e116100c6578063dd62ed3e14610a22578063e01af92c14610a5d578063e47d606014610a895761033f565b8063cba0e9961461099b578063d543dbeb146109ce578063dd467064146109f85761033f565b8063a457c2d711610159578063a985ceef11610133578063a985ceef1461090a578063abdef31d1461091f578063af9549e01461094b578063b6c52324146109865761033f565b8063a457c2d714610883578063a69df4b5146108bc578063a9059cbb146108d15761033f565b80638da5cb5b1161018a5780638da5cb5b1461082657806395d89b411461083b5780639ca15239146108505761033f565b80637d1db4a5146107ab5780637ded4d6a146107c0578063813194d3146107f35761033f565b80634303443d1161027f5780635880b87311610228578063715018a611610202578063715018a61461070d5780637302dacf146107225780637a6cdbc3146107555780637c56687a146107815761033f565b80635880b8731461069b5780636ddd1713146106c557806370a08231146106da5761033f565b80634ada218b116102595780634ada218b1461063e57806351bc3c85146106535780635342acb4146106685761033f565b80634303443d146105c45780634549b039146105f757806349bd5a5e146106295761033f565b806323b872dd116102e157806339509351116102bb578063395093511461054c5780633bd5d173146105855780634144d9e4146105af5761033f565b806323b872dd146104b45780632d838119146104f7578063313ce567146105215761033f565b806313114a9d1161031257806313114a9d146104475780631694505e1461046e57806318160ddd1461049f5761033f565b806306fdde0314610344578063095ea7b3146103ce578063109c45aa1461041b5761033f565b3661033f57005b600080fd5b34801561035057600080fd5b50610359610ba9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561039357818101518382015260200161037b565b50505050905090810190601f1680156103c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103da57600080fd5b50610407600480360360408110156103f157600080fd5b506001600160a01b038135169060200135610c5d565b604080519115158252519081900360200190f35b34801561042757600080fd5b506104456004803603602081101561043e57600080fd5b5035610c7b565b005b34801561045357600080fd5b5061045c610d4d565b60408051918252519081900360200190f35b34801561047a57600080fd5b50610483610d53565b604080516001600160a01b039092168252519081900360200190f35b3480156104ab57600080fd5b5061045c610d77565b3480156104c057600080fd5b50610407600480360360608110156104d757600080fd5b506001600160a01b03813581169160208101359091169060400135610d7d565b34801561050357600080fd5b5061045c6004803603602081101561051a57600080fd5b5035610e04565b34801561052d57600080fd5b50610536610e66565b6040805160ff9092168252519081900360200190f35b34801561055857600080fd5b506104076004803603604081101561056f57600080fd5b506001600160a01b038135169060200135610e6f565b34801561059157600080fd5b50610445600480360360208110156105a857600080fd5b5035610ebd565b3480156105bb57600080fd5b50610483610f97565b3480156105d057600080fd5b50610445600480360360208110156105e757600080fd5b50356001600160a01b0316610fa6565b34801561060357600080fd5b5061045c6004803603604081101561061a57600080fd5b50803590602001351515611176565b34801561063557600080fd5b50610483611208565b34801561064a57600080fd5b5061040761122c565b34801561065f57600080fd5b5061044561124f565b34801561067457600080fd5b506104076004803603602081101561068b57600080fd5b50356001600160a01b03166112d2565b3480156106a757600080fd5b50610445600480360360208110156106be57600080fd5b50356112f0565b3480156106d157600080fd5b506104076113c2565b3480156106e657600080fd5b5061045c600480360360208110156106fd57600080fd5b50356001600160a01b03166113e4565b34801561071957600080fd5b50610445611446565b34801561072e57600080fd5b5061045c6004803603602081101561074557600080fd5b50356001600160a01b0316611512565b34801561076157600080fd5b506104456004803603602081101561077857600080fd5b50351515611524565b34801561078d57600080fd5b50610445600480360360208110156107a457600080fd5b50356115db565b3480156107b757600080fd5b5061045c61164a565b3480156107cc57600080fd5b50610445600480360360208110156107e357600080fd5b50356001600160a01b0316611650565b3480156107ff57600080fd5b506104456004803603602081101561081657600080fd5b50356001600160a01b03166118a4565b34801561083257600080fd5b50610483611948565b34801561084757600080fd5b50610359611957565b34801561085c57600080fd5b506104456004803603602081101561087357600080fd5b50356001600160a01b03166119d6565b34801561088f57600080fd5b50610407600480360360408110156108a657600080fd5b506001600160a01b038135169060200135611a7a565b3480156108c857600080fd5b50610445611ae2565b3480156108dd57600080fd5b50610407600480360360408110156108f457600080fd5b506001600160a01b038135169060200135611bfa565b34801561091657600080fd5b50610407611c0e565b34801561092b57600080fd5b506104456004803603602081101561094257600080fd5b50351515611c32565b34801561095757600080fd5b506104456004803603604081101561096e57600080fd5b506001600160a01b0381351690602001351515611ce8565b34801561099257600080fd5b5061045c611d9b565b3480156109a757600080fd5b50610407600480360360208110156109be57600080fd5b50356001600160a01b0316611da1565b3480156109da57600080fd5b50610445600480360360208110156109f157600080fd5b5035611dbf565b348015610a0457600080fd5b5061044560048036036020811015610a1b57600080fd5b5035611e4f565b348015610a2e57600080fd5b5061045c60048036036040811015610a4557600080fd5b506001600160a01b0381358116916020013516611f29565b348015610a6957600080fd5b5061044560048036036020811015610a8057600080fd5b50351515611f54565b348015610a9557600080fd5b5061040760048036036020811015610aac57600080fd5b50356001600160a01b0316612009565b348015610ac857600080fd5b5061045c612027565b348015610add57600080fd5b5061044560048036036020811015610af457600080fd5b50356001600160a01b031661202d565b348015610b1057600080fd5b5061044560048036036020811015610b2757600080fd5b50356001600160a01b0316612257565b348015610b4357600080fd5b50610445612379565b348015610b5857600080fd5b5061045c6123ed565b348015610b6d57600080fd5b5061044560048036036020811015610b8457600080fd5b50356001600160a01b03166123f1565b348015610ba057600080fd5b506104836125ed565b60108054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000610c71610c6a6125fc565b8484612600565b5060015b92915050565b610c836125fc565b6000546001600160a01b03908116911614610ce5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60018110158015610cf75750600b8111155b610d48576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2031310000000000604482015290519081900360640190fd5b601455565b600e5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5490565b6000610d8a8484846126ec565b610dfa84610d966125fc565b610df585604051806060016040528060288152602001613a32602891396001600160a01b038a16600090815260056020526040812090610dd46125fc565b6001600160a01b031681526020810191909152604001600020549190612cc4565b612600565b5060019392505050565b6000600d54821115610e475760405162461bcd60e51b815260040180806020018281038252602a815260200180613977602a913960400191505060405180910390fd5b6000610e51612d5b565b9050610e5d8382612d7e565b9150505b919050565b60125460ff1690565b6000610c71610e7c6125fc565b84610df58560056000610e8d6125fc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612dc7565b6000610ec76125fc565b6001600160a01b03811660009081526008602052604090205490915060ff1615610f225760405162461bcd60e51b815260040180806020018281038252602c815260200180613b12602c913960400191505060405180910390fd5b6000610f2d83612e21565b505050506001600160a01b038416600090815260036020526040902054919250610f5991905082612e7d565b6001600160a01b038316600090815260036020526040902055600d54610f7f9082612e7d565b600d55600e54610f8f9084612dc7565b600e55505050565b6018546001600160a01b031681565b610fae6125fc565b6000546001600160a01b03908116911614611010576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561106c5760405162461bcd60e51b8152600401808060200182810382526024815260200180613a836024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156110da576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000600c548311156111cf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111ee5760006111df84612e21565b50939550610c75945050505050565b60006111f984612e21565b50929550610c75945050505050565b7f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b81565b601854760100000000000000000000000000000000000000000000900460ff1681565b6112576125fc565b6000546001600160a01b039081169116146112b9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006112c4306113e4565b90506112cf81612ebf565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b6112f86125fc565b6000546001600160a01b0390811691161461135a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001811015801561136c5750600a8111155b6113bd576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601355565b6018547501000000000000000000000000000000000000000000900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561142457506001600160a01b038116600090815260046020526040902054610e61565b6001600160a01b038216600090815260036020526040902054610c7590610e04565b61144e6125fc565b6000546001600160a01b039081169116146114b0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60066020526000908152604090205481565b61152c6125fc565b6000546001600160a01b0390811691161461158e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6018805491151577010000000000000000000000000000000000000000000000027fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6115e36125fc565b6000546001600160a01b03908116911614611645576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f55565b60195481565b6116586125fc565b6000546001600160a01b039081169116146116ba576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611727576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b548110156118a057816001600160a01b0316600b828154811061174b57fe5b6000918252602090912001546001600160a01b0316141561189857600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061179657fe5b600091825260209091200154600b80546001600160a01b0390921691839081106117bc57fe5b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039485161790559184168152600a9091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600b80548061183b57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556118a0565b60010161172a565b5050565b6118ac6125fc565b6000546001600160a01b0390811691161461190e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b60118054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c535780601f10610c2857610100808354040283529160200191610c53565b6119de6125fc565b6000546001600160a01b03908116911614611a40576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610c71611a876125fc565b84610df585604051806060016040528060258152602001613b616025913960056000611ab16125fc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc4565b6001546001600160a01b03163314611b2b5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b3e6023913960400191505060405180910390fd5b6002544211611b81576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b6000610c71611c076125fc565b84846126ec565b60185477010000000000000000000000000000000000000000000000900460ff1681565b611c3a6125fc565b6000546001600160a01b03908116911614611c9c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60188054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611cf06125fc565b6000546001600160a01b03908116911614611d52576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0391909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b611dc76125fc565b6000546001600160a01b03908116911614611e29576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b611e496064611e4383600c5461313d90919063ffffffff16565b90612d7e565b60195550565b611e576125fc565b6000546001600160a01b03908116911614611eb9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054600180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b0384161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611f5c6125fc565b6000546001600160a01b03908116911614611fbe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b600f5481565b6120356125fc565b6000546001600160a01b03908116911614612097576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156120f35760405162461bcd60e51b8152600401808060200182810382526022815260200180613af06022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615612161576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156121bb576001600160a01b0381166000908152600360205260409020546121a190610e04565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b0316600081815260086020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b61225f6125fc565b6000546001600160a01b039081169116146122c1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166123065760405162461bcd60e51b81526004018080602001828103825260268152602001806139a16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6123816125fc565b6000546001600160a01b039081169116146123e3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b476112cf81613196565b4790565b6123f96125fc565b6000546001600160a01b0390811691161461245b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166124c8576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6009548110156118a057816001600160a01b0316600982815481106124ec57fe5b6000918252602090912001546001600160a01b031614156125e557600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810190811061253757fe5b600091825260209091200154600980546001600160a01b03909216918390811061255d57fe5b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03948516179055918416815260048252604080822082905560089092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600980548061183b57fe5b6001016124cb565b6017546001600160a01b031681565b3390565b6001600160a01b0383166126455760405162461bcd60e51b8152600401808060200182810382526024815260200180613acc6024913960400191505060405180910390fd5b6001600160a01b03821661268a5760405162461bcd60e51b81526004018080602001828103825260228152602001806139c76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166127315760405162461bcd60e51b8152600401808060200182810382526025815260200180613aa76025913960400191505060405180910390fd5b6001600160a01b0382166127765760405162461bcd60e51b81526004018080602001828103825260238152602001806139546023913960400191505060405180910390fd5b600081116127b55760405162461bcd60e51b8152600401808060200182810382526029815260200180613a5a6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612823576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615612891576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b612899611948565b6001600160a01b0316836001600160a01b0316141580156128d357506128bd611948565b6001600160a01b0316826001600160a01b031614155b15612a00576019548111156129195760405162461bcd60e51b81526004018080602001828103825260288152602001806139e96028913960400191505060405180910390fd5b7f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b6001600160a01b0316836001600160a01b0316148061298a57507f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b6001600160a01b0316826001600160a01b0316145b15612a0057601854760100000000000000000000000000000000000000000000900460ff16612a00576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b60185477010000000000000000000000000000000000000000000000900460ff1615612b95577f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b6001600160a01b0316836001600160a01b03161415612aa8576001600160a01b03821660009081526008602052604090205460ff16612aa857600f54612a8e904290612dc7565b6001600160a01b0383166000908152600660205260409020555b612ab0611948565b6001600160a01b0316836001600160a01b031614158015612b0357507f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b6001600160a01b0316836001600160a01b031614155b15612b95576001600160a01b03831660009081526008602052604090205460ff16612b95576001600160a01b038316600090815260066020526040902054421015612b95576040805162461bcd60e51b815260206004820152600860248201527f436f6f6c646f776e000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000612ba0306113e4565b90506019548110612bb057506019545b601a54601854908210159074010000000000000000000000000000000000000000900460ff16158015612bfe57506018547501000000000000000000000000000000000000000000900460ff165b8015612c075750805b8015612c4557507f000000000000000000000000b835752feb00c278484c464b697e03b03c53e11b6001600160a01b0316856001600160a01b031614155b15612c6557612c5382612ebf565b478015612c6357612c6347613196565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680612ca757506001600160a01b03851660009081526007602052604090205460ff165b15612cb0575060005b612cbc8686868461321b565b505050505050565b60008184841115612d535760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d18578181015183820152602001612d00565b50505050905090810190601f168015612d455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612d6861338f565b9092509050612d778282612d7e565b9250505090565b6000612dc083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134f2565b9392505050565b600082820183811015612dc0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612e3e8a601354601454613557565b9250925092506000612e4e612d5b565b90506000806000612e608e87866135a6565b919e509c509a509598509396509194505050505091939550919395565b6000612dc083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc4565b601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905560408051600280825260608083018452926020830190803683370190505090503081600081518110612f2c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fa557600080fd5b505afa158015612fb9573d6000803e3d6000fd5b505050506040513d6020811015612fcf57600080fd5b5051815182906001908110612fe057fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061302b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612600565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156130d05781810151838201526020016130b8565b505050509050019650505050505050600060405180830381600087803b1580156130f957600080fd5b505af115801561310d573d6000803e3d6000fd5b5050601880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b60008261314c57506000610c75565b8282028284828161315957fe5b0414612dc05760405162461bcd60e51b8152600401808060200182810382526021815260200180613a116021913960400191505060405180910390fd5b6017546001600160a01b03166108fc6131b0836002612d7e565b6040518115909202916000818181858888f193505050501580156131d8573d6000803e3d6000fd5b506018546001600160a01b03166108fc6131f3836002612d7e565b6040518115909202916000818181858888f193505050501580156118a0573d6000803e3d6000fd5b80613228576132286135e2565b6001600160a01b03841660009081526008602052604090205460ff16801561326957506001600160a01b03831660009081526008602052604090205460ff16155b1561327e57613279848484613614565b61337c565b6001600160a01b03841660009081526008602052604090205460ff161580156132bf57506001600160a01b03831660009081526008602052604090205460ff165b156132cf57613279848484613738565b6001600160a01b03841660009081526008602052604090205460ff1615801561331157506001600160a01b03831660009081526008602052604090205460ff16155b15613321576132798484846137e1565b6001600160a01b03841660009081526008602052604090205460ff16801561336157506001600160a01b03831660009081526008602052604090205460ff165b1561337157613279848484613825565b61337c8484846137e1565b8061338957613389613898565b50505050565b600d54600c546000918291825b6009548110156134c0578260036000600984815481106133b857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061341d57508160046000600984815481106133f657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561343457600d54600c54945094505050506134ee565b613474600360006009848154811061344857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612e7d565b92506134b6600460006009848154811061348a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612e7d565b915060010161339c565b50600c54600d546134d091612d7e565b8210156134e857600d54600c549350935050506134ee565b90925090505b9091565b600081836135415760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d18578181015183820152602001612d00565b50600083858161354d57fe5b0495945050505050565b600080808061356b6064611e43898961313d565b9050600061357e6064611e438a8961313d565b90506000613596826135908b86612e7d565b90612e7d565b9992985090965090945050505050565b60008080806135b5878661313d565b905060006135c3878761313d565b905060006135d18383612e7d565b929992985090965090945050505050565b6013541580156135f25750601454155b156135fc57613612565b6013805460155560148054601655600091829055555b565b60008060008060008061362687612e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506136589088612e7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546136879087612e7d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546136b69086612dc7565b6001600160a01b0389166000908152600360205260409020556136d8816138a6565b6136e2848361392f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061374a87612e21565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061377c9087612e7d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546137b29084612dc7565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546136b69086612dc7565b6000806000806000806137f387612e21565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506136879087612e7d565b60008060008060008061383787612e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506138699088612e7d565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461377c9087612e7d565b601554601355601654601455565b60006138b0612d5b565b905060006138be838361313d565b306000908152600360205260409020549091506138db9082612dc7565b3060009081526003602090815260408083209390935560089052205460ff161561392a57306000908152600460205260409020546139199084612dc7565b306000908152600460205260409020555b505050565b600d5461393c9083612e7d565b600d55600e5461394c9082612dc7565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f76c1ac2ae7f2b41a3339cdd85c160bbc89ba93b9fcaa3558f9a603e587affc64736f6c634300060c0033

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

0000000000000000000000009980a74fcbb1936bc79ddecbd4148f7511598521000000000000000000000000eba4a1e0ff3baf18a9d2910874ffaee11911cc31

-----Decoded View---------------
Arg [0] : teamWalletAddress (address): 0x9980A74fCBb1936Bc79Ddecbd4148f7511598521
Arg [1] : marketingWalletAddress (address): 0xEBA4a1e0ff3baF18A9D2910874Ffaee11911Cc31

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009980a74fcbb1936bc79ddecbd4148f7511598521
Arg [1] : 000000000000000000000000eba4a1e0ff3baf18a9d2910874ffaee11911cc31


Deployed Bytecode Sourcemap

27045:29426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37087:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38091:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38091:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;55450:188;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55450:188:0;;:::i;:::-;;39586:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28509:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28509:51:0;;;;;;;;;;;;;;37400:103;;;;;;;;;;;;;:::i;38276:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38276:329:0;;;;;;;;;;;;;;;;;:::i;40594:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40594:269:0;;:::i;37297:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38617:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38617:230:0;;;;;;;;:::i;39693:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39693:405:0;;:::i;28442:46::-;;;;;;;;;;;;;:::i;41904:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41904:372:0;-1:-1:-1;;;;;41904:372:0;;:::i;40110:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40110:472:0;;;;;;;;;:::i;28571:38::-;;;;;;;;;;;;;:::i;28693:34::-;;;;;;;;;;;;;:::i;48403:168::-;;;;;;;;;;;;;:::i;43265:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43265:131:0;-1:-1:-1;;;;;43265:131:0;;:::i;55257:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55257:181:0;;:::i;28652:30::-;;;;;;;;;;;;;:::i;37515:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37515:210:0;-1:-1:-1;;;;;37515:210:0;;:::i;16880:160::-;;;;;;;;;;;;;:::i;27365:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27365:45:0;-1:-1:-1;;;;;27365:45:0;;:::i;56161:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56161:131:0;;;;:::i;56315:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56315:125:0;;:::i;28785:37::-;;;;;;;;;;;;;:::i;42292:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42292:540:0;-1:-1:-1;;;;;42292:540:0;;:::i;55824:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55824:165:0;-1:-1:-1;;;;;55824:165:0;;:::i;16178:87::-;;;;;;;;;;;;;:::i;37190:95::-;;;;;;;;;;;;;:::i;55658:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55658:145:0;-1:-1:-1;;;;;55658:145:0;;:::i;38859:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38859:281:0;;;;;;;;:::i;17987:313::-;;;;;;;;;;;;;:::i;37737:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37737:179:0;;;;;;;;:::i;28738:34::-;;;;;;;;;;;;;:::i;56010:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56010:129:0;;;;:::i;39429:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39429:145:0;;;;;;;;;;:::i;17484:97::-;;;;;;;;;;;;;:::i;39152:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39152:118:0;-1:-1:-1;;;;;39152:118:0;;:::i;43420:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43420:166:0;;:::i;17665:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17665:234:0;;:::i;37928:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37928:151:0;;;;;;;;;;:::i;48771:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48771:106:0;;;;:::i;39290:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39290:127:0;-1:-1:-1;;;;;39290:127:0;;:::i;27929:37::-;;;;;;;;;;;;;:::i;40875:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40875:475:0;-1:-1:-1;;;;;40875:475:0;;:::i;17212:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17212:260:0;-1:-1:-1;;;;;17212:260:0;;:::i;48591:168::-;;;;;;;;;;;;;:::i;55119:118::-;;;;;;;;;;;;;:::i;41362:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41362:522:0;-1:-1:-1;;;;;41362:522:0;;:::i;28390:41::-;;;;;;;;;;;;;:::i;37087:91::-;37161:5;37154:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37124:13;;37154:12;;37161:5;;37154:12;;37161:5;37154:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37087:91;:::o;38091:173::-;38166:4;38187:39;38196:12;:10;:12::i;:::-;38210:7;38219:6;38187:8;:39::i;:::-;-1:-1:-1;38248:4:0;38091:173;;;;;:::o;55450:188::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55543:1:::1;55532:7;:12;;:29;;;;;55559:2;55548:7;:13;;55532:29;55524:69;;;::::0;;-1:-1:-1;;;55524:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55608:8;:18:::0;55450:188::o;39586:95::-;39659:10;;39586:95;:::o;28509:51::-;;;:::o;37400:103::-;37484:7;;37400:103;:::o;38276:329::-;38374:4;38395:36;38405:6;38413:9;38424:6;38395:9;:36::i;:::-;38446:121;38455:6;38463:12;:10;:12::i;:::-;38477:89;38515:6;38477:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38477:19:0;;;;;;:11;:19;;;;;;38497:12;:10;:12::i;:::-;-1:-1:-1;;;;;38477:33:0;;;;;;;;;;;;-1:-1:-1;38477:33:0;;;:89;:37;:89::i;:::-;38446:8;:121::i;:::-;-1:-1:-1;38589:4:0;38276:329;;;;;:::o;40594:269::-;40660:7;40703;;40692;:18;;40684:73;;;;-1:-1:-1;;;40684:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40772:19;40795:10;:8;:10::i;:::-;40772:33;-1:-1:-1;40827:24:0;:7;40772:33;40827:11;:24::i;:::-;40820:31;;;40594:269;;;;:::o;37297:91::-;37367:9;;;;37297:91;:::o;38617:230::-;38705:4;38726:83;38735:12;:10;:12::i;:::-;38749:7;38758:50;38797:10;38758:11;:25;38770:12;:10;:12::i;:::-;-1:-1:-1;;;;;38758:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38758:25:0;;;:34;;;;;;;;;;;:38;:50::i;39693:405::-;39749:14;39766:12;:10;:12::i;:::-;-1:-1:-1;;;;;39802:19:0;;;;;;:11;:19;;;;;;39749:29;;-1:-1:-1;39802:19:0;;39801:20;39793:77;;;;-1:-1:-1;;;39793:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39886:15;39910:19;39921:7;39910:10;:19::i;:::-;-1:-1:-1;;;;;;;;;39962:15:0;;;;;;:7;:15;;;;;;39885:44;;-1:-1:-1;39962:28:0;;:15;-1:-1:-1;39885:44:0;39962:19;:28::i;:::-;-1:-1:-1;;;;;39944:15:0;;;;;;:7;:15;;;;;:46;40015:7;;:20;;40027:7;40015:11;:20::i;:::-;40005:7;:30;40063:10;;:23;;40078:7;40063:14;:23::i;:::-;40050:10;:36;-1:-1:-1;;;39693:405:0:o;28442:46::-;;;-1:-1:-1;;;;;28442:46:0;;:::o;41904:372::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42003:42:::1;-1:-1:-1::0;;;;;41992:53:0;::::1;;;41984:102;;;;-1:-1:-1::0;;;41984:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;42110:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;42109:27;42101:70;;;::::0;;-1:-1:-1;;;42101:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42186:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;;::::1;42215:4;42186:33:::0;;::::1;::::0;;;42234:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;41904:372::o;40110:472::-;40200:7;40243;;40232;:18;;40224:62;;;;;-1:-1:-1;;;40224:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40306:17;40301:270;;40345:15;40369:19;40380:7;40369:10;:19::i;:::-;-1:-1:-1;40344:44:0;;-1:-1:-1;40407:14:0;;-1:-1:-1;;;;;40407:14:0;40301:270;40464:23;40495:19;40506:7;40495:10;:19::i;:::-;-1:-1:-1;40462:52:0;;-1:-1:-1;40533:22:0;;-1:-1:-1;;;;;40533:22:0;28571:38;;;:::o;28693:34::-;;;;;;;;;:::o;48403:168::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48461:23:::1;48487:24;48505:4;48487:9;:24::i;:::-;48461:50;;48526:33;48543:15;48526:16;:33::i;:::-;16490:1;48403:168::o:0;43265:131::-;-1:-1:-1;;;;;43357:27:0;43329:4;43357:27;;;:18;:27;;;;;;;;;43265:131::o;55257:181::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55347:1:::1;55337:6;:11;;:27;;;;;55362:2;55352:6;:12;;55337:27;55329:66;;;::::0;;-1:-1:-1;;;55329:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55410:7;:16:::0;55257:181::o;28652:30::-;;;;;;;;;:::o;37515:210::-;-1:-1:-1;;;;;37609:20:0;;37581:7;37609:20;;;:11;:20;;;;;;;;37605:49;;;-1:-1:-1;;;;;;37638:16:0;;;;;;:7;:16;;;;;;37631:23;;37605:49;-1:-1:-1;;;;;37696:16:0;;;;;;:7;:16;;;;;;37676:37;;:19;:37::i;16880:160::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16991:1:::1;16975:6:::0;;16954:40:::1;::::0;-1:-1:-1;;;;;16975:6:0;;::::1;::::0;16954:40:::1;::::0;16991:1;;16954:40:::1;17026:1;17009:19:::0;;;::::1;::::0;;16880:160::o;27365:45::-;;;;;;;;;;;;;:::o;56161:131::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56245:15:::1;:34:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;56161:131::o;56315:125::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56390:9:::1;:34:::0;56315:125::o;28785:37::-;;;;:::o;42292:540::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42385:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;42377:65;;;::::0;;-1:-1:-1;;;42377:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42462:9;42457:364;42481:16;:23:::0;42477:27;::::1;42457:364;;;42557:7;-1:-1:-1::0;;;;;42534:30:0::1;:16;42551:1;42534:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42534:19:0::1;:30;42530:276;;;42611:16;42628:23:::0;;:27;;;;42611:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;42589:16:::1;:19:::0;;-1:-1:-1;;;;;42611:45:0;;::::1;::::0;42606:1;;42589:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;;::::1;-1:-1:-1::0;;;;;42589:67:0;;::::1;;::::0;;42679:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;;::::1;::::0;;42736:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;42781:5:::1;;42530:276;42506:3;;42457:364;;;;42292:540:::0;:::o;55824:165::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55929:23:::1;:48:::0;;;::::1;-1:-1:-1::0;;;;;55929:48:0;;;::::1;::::0;;;::::1;::::0;;55824:165::o;16178:87::-;16216:7;16247:6;-1:-1:-1;;;;;16247:6:0;16178:87;:::o;37190:95::-;37266:7;37259:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37229:13;;37259:14;;37266:7;;37259:14;;37266:7;37259:14;;;;;;;;;;;;;;;;;;;;;;;;55658:145;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55753:18:::1;:38:::0;;;::::1;-1:-1:-1::0;;;;;55753:38:0;;;::::1;::::0;;;::::1;::::0;;55658:145::o;38859:281::-;38952:4;38973:129;38982:12;:10;:12::i;:::-;38996:7;39005:96;39044:15;39005:96;;;;;;;;;;;;;;;;;:11;:25;39017:12;:10;:12::i;:::-;-1:-1:-1;;;;;39005:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39005:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17987:313::-;18043:14;;-1:-1:-1;;;;;18043:14:0;18061:10;18043:28;18035:76;;;;-1:-1:-1;;;18035:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18140:9;;18134:3;:15;18126:60;;;;;-1:-1:-1;;;18126:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18235:14;;;18227:6;;18206:44;;-1:-1:-1;;;;;18235:14:0;;;;18227:6;;;;18206:44;;;18274:14;;;18265:23;;;;-1:-1:-1;;;;;18274:14:0;;;18265:23;;;;;;17987:313::o;37737:179::-;37815:4;37836:42;37846:12;:10;:12::i;:::-;37860:9;37871:6;37836:9;:42::i;28738:34::-;;;;;;;;;:::o;56010:129::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56094:14:::1;:32:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;56010:129::o;39429:145::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39524:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39429:145::o;17484:97::-;17560:9;;17484:97;:::o;39152:118::-;-1:-1:-1;;;;;39238:20:0;39210:4;39238:20;;;:11;:20;;;;;;;;;39152:118::o;43420:166::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43514:60:::1;43558:5;43514:25;43526:12;43514:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;43499:12;:75:::0;-1:-1:-1;43420:166:0:o;17665:234::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17750:6:::1;::::0;;;17733:23;;;;;::::1;-1:-1:-1::0;;;;;17750:6:0;::::1;17733:23;::::0;;;17771:19:::1;::::0;;17817:3:::1;:10:::0;::::1;17805:9;:22:::0;17847:40:::1;::::0;17750:6;;17847:40:::1;::::0;17750:6;;17847:40:::1;17665:234:::0;:::o;37928:151::-;-1:-1:-1;;;;;38040:18:0;;;38009:7;38040:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37928:151::o;48771:106::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48844:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;48771:106::o;39290:127::-;-1:-1:-1;;;;;39379:26:0;39351:4;39379:26;;;:17;:26;;;;;;;;;39290:127::o;27929:37::-;;;;:::o;40875:475::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40971:42:::1;-1:-1:-1::0;;;;;40960:53:0;::::1;;;40952:100;;;;-1:-1:-1::0;;;40952:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41076:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;41075:21;41067:61;;;::::0;;-1:-1:-1;;;41067:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41146:16:0;::::1;41165:1;41146:16:::0;;;:7:::1;:16;::::0;;;;;:20;41143:116:::1;;-1:-1:-1::0;;;;;41226:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;41206:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;41187:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;41143:116:::1;-1:-1:-1::0;;;;;41273:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;;::::1;41296:4;41273:27:::0;;::::1;::::0;;;41315:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;40875:475::o;17212:260::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17305:22:0;::::1;17297:73;;;;-1:-1:-1::0;;;17297:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17411:6;::::0;;17390:38:::1;::::0;-1:-1:-1;;;;;17390:38:0;;::::1;::::0;17411:6;::::1;::::0;17390:38:::1;::::0;::::1;17443:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;17443:17:0;;;::::1;::::0;;;::::1;::::0;;17212:260::o;48591:168::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48678:21:::1;48714:33;48678:21:::0;48714:13:::1;:33::i;55119:118::-:0;55204:21;55119:118;:::o;41362:522::-;16426:12;:10;:12::i;:::-;16416:6;;-1:-1:-1;;;;;16416:6:0;;;:22;;;16408:67;;;;;-1:-1:-1;;;16408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41447:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;41439:60;;;::::0;;-1:-1:-1;;;41439:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41519:9;41514:359;41538:9;:16:::0;41534:20;::::1;41514:359;;;41600:7;-1:-1:-1::0;;;;;41584:23:0::1;:9;41594:1;41584:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41584:12:0::1;:23;41580:278;;;41647:9;41657:16:::0;;:20;;;;41647:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41632:9:::1;:12:::0;;-1:-1:-1;;;;;41647:31:0;;::::1;::::0;41642:1;;41632:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;;::::1;-1:-1:-1::0;;;;;41632:46:0;;::::1;;::::0;;41701:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;41744:11:::1;:20:::0;;;;:28;;;::::1;::::0;;41795:9:::1;:15:::0;;;::::1;;;41580:278;41556:3;;41514:359;;28390:41:::0;;;-1:-1:-1;;;;;28390:41:0;;:::o;635:114::-;727:10;635:114;:::o;43598:357::-;-1:-1:-1;;;;;43695:19:0;;43687:68;;;;-1:-1:-1;;;43687:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43778:21:0;;43770:68;;;;-1:-1:-1;;;43770:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43855:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43911:32;;;;;;;;;;;;;;;;;43598:357;;;:::o;43967:3400::-;-1:-1:-1;;;;;44068:20:0;;44060:70;;;;-1:-1:-1;;;44060:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44153:23:0;;44145:71;;;;-1:-1:-1;;;44145:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44248:1;44239:6;:10;44231:64;;;;-1:-1:-1;;;44231:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44319:28:0;;;;;;:17;:28;;;;;;;;44318:29;44310:65;;;;;-1:-1:-1;;;44310:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44399:25:0;;;;;;:17;:25;;;;;;;;44398:26;44390:62;;;;;-1:-1:-1;;;44390:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44494:7;:5;:7::i;:::-;-1:-1:-1;;;;;44484:17:0;:6;-1:-1:-1;;;;;44484:17:0;;;:41;;;;;44518:7;:5;:7::i;:::-;-1:-1:-1;;;;;44505:20:0;:9;-1:-1:-1;;;;;44505:20:0;;;44484:41;44481:429;;;44590:12;;44580:6;:22;;44572:75;;;;-1:-1:-1;;;44572:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44777:13;-1:-1:-1;;;;;44767:23:0;:6;-1:-1:-1;;;;;44767:23:0;;:53;;;;44807:13;-1:-1:-1;;;;;44794:26:0;:9;-1:-1:-1;;;;;44794:26:0;;44767:53;44763:116;;;44832:14;;;;;;;44824:53;;;;;-1:-1:-1;;;44824:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45009:15;;;;;;;45006:805;;;45164:13;-1:-1:-1;;;;;45154:23:0;:6;-1:-1:-1;;;;;45154:23:0;;45150:258;;;-1:-1:-1;;;;;45299:22:0;;;;;;:11;:22;;;;;;;;45294:87;;45368:9;;45348:30;;:15;;:19;:30::i;:::-;-1:-1:-1;;;;;45325:20:0;;;;;;:9;:20;;;;;:53;45294:87;45523:7;:5;:7::i;:::-;-1:-1:-1;;;;;45513:17:0;:6;-1:-1:-1;;;;;45513:17:0;;;:44;;;;;45544:13;-1:-1:-1;;;;;45534:23:0;:6;-1:-1:-1;;;;;45534:23:0;;;45513:44;45510:269;;;-1:-1:-1;;;;;45669:19:0;;;;;;:11;:19;;;;;;;;45664:88;;-1:-1:-1;;;;;45719:17:0;;;;;;:9;:17;;;;;;45700:15;:36;;45692:57;;;;;-1:-1:-1;;;45692:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46093:28;46124:24;46142:4;46124:9;:24::i;:::-;46093:55;;46204:12;;46180:20;:36;46177:124;;-1:-1:-1;46273:12:0;;46177:124;46380:29;;46429:6;;46356:53;;;;;46429:6;;;;;46428:7;:22;;;;-1:-1:-1;46439:11:0;;;;;;;46428:22;:45;;;;;46454:19;46428:45;:72;;;;;46487:13;-1:-1:-1;;;;;46477:23:0;:6;-1:-1:-1;;;;;46477:23:0;;;46428:72;46424:452;;;46611:38;46628:20;46611:16;:38::i;:::-;46715:21;46758:22;;46755:106;;46805:36;46819:21;46805:13;:36::i;:::-;46424:452;;-1:-1:-1;;;;;47108:26:0;;46969:12;47108:26;;;:18;:26;;;;;;46984:4;;47108:26;;;:59;;-1:-1:-1;;;;;;47138:29:0;;;;;;:18;:29;;;;;;;;47108:59;47105:113;;;-1:-1:-1;47197:5:0;47105:113;47308:47;47323:6;47330:9;47340:6;47347:7;47308:14;:47::i;:::-;43967:3400;;;;;;:::o;5162:208::-;5248:7;5288:12;5280:6;;;;5272:29;;;;-1:-1:-1;;;5272:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5328:5:0;;;5162:208::o;54091:175::-;54132:7;54157:15;54174;54193:19;:17;:19::i;:::-;54156:56;;-1:-1:-1;54156:56:0;-1:-1:-1;54234:20:0;54156:56;;54234:11;:20::i;:::-;54227:27;;;;54091:175;:::o;6692:140::-;6750:7;6781:39;6785:1;6788;6781:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6774:46;6692:140;-1:-1:-1;;;6692:140:0:o;4165:197::-;4223:7;4259:5;;;4287:6;;;;4279:46;;;;;-1:-1:-1;;;4279:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52849:481;52908:7;52917;52926;52935;52944;52953;52978:23;53003:12;53017:13;53034:39;53046:7;53055;;53064:8;;53034:11;:39::i;:::-;52977:96;;;;;;53088:19;53111:10;:8;:10::i;:::-;53088:33;;53137:15;53154:23;53179:12;53195:39;53207:7;53216:4;53222:11;53195;:39::i;:::-;53136:98;;-1:-1:-1;53136:98:0;-1:-1:-1;53136:98:0;-1:-1:-1;53289:15:0;;-1:-1:-1;53306:4:0;;-1:-1:-1;53312:5:0;;-1:-1:-1;;;;;52849:481:0;;;;;;;:::o;4680:144::-;4738:7;4769:43;4773:1;4776;4769:43;;;;;;;;;;;;;;;;;:3;:43::i;47379:656::-;29107:6;:13;;;;;;;;47548:16:::1;::::0;;47562:1:::1;47548:16:::0;;;47524:21:::1;47548:16:::0;;::::1;::::0;;47524:21;47548:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;47548:16:0::1;47524:40;;47597:4;47579;47584:1;47579:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;47579:23:0::1;;;-1:-1:-1::0;;;;;47579:23:0::1;;;::::0;::::1;47627:15;-1:-1:-1::0;;;;;47627:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;47627:22:0;47617:7;;:4;;47622:1:::1;::::0;47617:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;47617:32:0::1;;;-1:-1:-1::0;;;;;47617:32:0::1;;;::::0;::::1;47666:62;47683:4;47698:15;47716:11;47666:8;:62::i;:::-;47775:15;-1:-1:-1::0;;;;;47775:66:0::1;;47860:11;47890:1;47938:4;47969;47993:15;47775:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47775:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29151:6:0;:14;;;;;;-1:-1:-1;;;;47379:656:0:o;5664:511::-;5722:7;5983:6;5979:55;;-1:-1:-1;6017:1:0;6010:8;;5979:55;6062:5;;;6066:1;6062;:5;:1;6090:5;;;;;:10;6082:56;;;;-1:-1:-1;;;6082:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48055:178;48117:18;;-1:-1:-1;;;;;48117:18:0;:42;48145:13;:6;48156:1;48145:10;:13::i;:::-;48117:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48174:23:0;;-1:-1:-1;;;;;48174:23:0;:47;48207:13;:6;48218:1;48207:10;:13::i;:::-;48174:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48897:883;49013:7;49009:44;;49039:14;:12;:14::i;:::-;-1:-1:-1;;;;;49074:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49098:22:0;;;;;;:11;:22;;;;;;;;49097:23;49074:46;49070:637;;;49141:48;49163:6;49171:9;49182:6;49141:21;:48::i;:::-;49070:637;;;-1:-1:-1;;;;;49216:19:0;;;;;;:11;:19;;;;;;;;49215:20;:46;;;;-1:-1:-1;;;;;;49239:22:0;;;;;;:11;:22;;;;;;;;49215:46;49211:496;;;49282:46;49302:6;49310:9;49321:6;49282:19;:46::i;49211:496::-;-1:-1:-1;;;;;49355:19:0;;;;;;:11;:19;;;;;;;;49354:20;:47;;;;-1:-1:-1;;;;;;49379:22:0;;;;;;:11;:22;;;;;;;;49378:23;49354:47;49350:357;;;49422:44;49440:6;49448:9;49459:6;49422:17;:44::i;49350:357::-;-1:-1:-1;;;;;49492:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49515:22:0;;;;;;:11;:22;;;;;;;;49492:45;49488:219;;;49558:48;49580:6;49588:9;49599:6;49558:21;:48::i;49488:219::-;49647:44;49665:6;49673:9;49684:6;49647:17;:44::i;:::-;49727:7;49723:45;;49753:15;:13;:15::i;:::-;48897:883;;;;:::o;54278:601::-;54379:7;;54419;;54328;;;;;54447:305;54471:9;:16;54467:20;;54447:305;;;54541:7;54517;:21;54525:9;54535:1;54525:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54525:12:0;54517:21;;;;;;;;;;;;;:31;;:66;;;54576:7;54552;:21;54560:9;54570:1;54560:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54560:12:0;54552:21;;;;;;;;;;;;;:31;54517:66;54513:97;;;54593:7;;54602;;54585:25;;;;;;;;;54513:97;54639:34;54651:7;:21;54659:9;54669:1;54659:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54659:12:0;54651:21;;;;;;;;;;;;;54639:7;;:11;:34::i;:::-;54629:44;;54702:34;54714:7;:21;54722:9;54732:1;54722:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54722:12:0;54714:21;;;;;;;;;;;;;54702:7;;:11;:34::i;:::-;54692:44;-1:-1:-1;54489:3:0;;54447:305;;;-1:-1:-1;54792:7:0;;54780;;:20;;:11;:20::i;:::-;54770:7;:30;54766:61;;;54810:7;;54819;;54802:25;;;;;;;;54766:61;54850:7;;-1:-1:-1;54859:7:0;-1:-1:-1;54278:601:0;;;:::o;7369:298::-;7455:7;7494:12;7487:5;7479:28;;;;-1:-1:-1;;;7479:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7522:9;7538:1;7534;:5;;;;;;;7369:298;-1:-1:-1;;;;;7369:298:0:o;53342:371::-;53435:7;;;;53492:28;53516:3;53492:19;:7;53504:6;53492:11;:19::i;:28::-;53477:43;-1:-1:-1;53535:13:0;53551:29;53576:3;53551:20;:7;53563;53551:11;:20::i;:29::-;53535:45;-1:-1:-1;53595:23:0;53621:28;53535:45;53621:17;:7;53633:4;53621:11;:17::i;:::-;:21;;:28::i;:::-;53595:54;53689:4;;-1:-1:-1;53695:5:0;;-1:-1:-1;53342:371:0;;-1:-1:-1;;;;;53342:371:0:o;53725:354::-;53820:7;;;;53880:24;:7;53892:11;53880;:24::i;:::-;53862:42;-1:-1:-1;53919:12:0;53934:21;:4;53943:11;53934:8;:21::i;:::-;53919:36;-1:-1:-1;53970:23:0;53996:17;:7;53919:36;53996:11;:17::i;:::-;54036:7;;;;-1:-1:-1;54062:4:0;;-1:-1:-1;53725:354:0;;-1:-1:-1;;;;;53725:354:0:o;42844:262::-;42894:7;;:12;:29;;;;-1:-1:-1;42910:8:0;;:13;42894:29;42891:41;;;42925:7;;42891:41;42978:7;;;42960:15;:25;43019:8;;;43000:16;:27;-1:-1:-1;43056:11:0;;;;43082:12;42844:262;:::o;50940:584::-;51047:15;51064:23;51089:12;51103:23;51128:12;51142:13;51159:19;51170:7;51159:10;:19::i;:::-;-1:-1:-1;;;;;51211:15:0;;;;;;:7;:15;;;;;;51046:132;;-1:-1:-1;51046:132:0;;-1:-1:-1;51046:132:0;;-1:-1:-1;51046:132:0;-1:-1:-1;51046:132:0;-1:-1:-1;51046:132:0;-1:-1:-1;51211:28:0;;51231:7;51211:19;:28::i;:::-;-1:-1:-1;;;;;51193:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51272:7;:15;;;;:28;;51292:7;51272:19;:28::i;:::-;-1:-1:-1;;;;;51254:15:0;;;;;;;:7;:15;;;;;;:46;;;;51336:18;;;;;;;:39;;51359:15;51336:22;:39::i;:::-;-1:-1:-1;;;;;51315:18:0;;;;;;:7;:18;;;;;:60;51391:16;51401:5;51391:9;:16::i;:::-;51425:23;51437:4;51443;51425:11;:23::i;:::-;51485:9;-1:-1:-1;;;;;51468:44:0;51477:6;-1:-1:-1;;;;;51468:44:0;;51496:15;51468:44;;;;;;;;;;;;;;;;;;50940:584;;;;;;;;;:::o;50321:607::-;50426:15;50443:23;50468:12;50482:23;50507:12;50521:13;50538:19;50549:7;50538:10;:19::i;:::-;-1:-1:-1;;;;;50590:15:0;;;;;;:7;:15;;;;;;50425:132;;-1:-1:-1;50425:132:0;;-1:-1:-1;50425:132:0;;-1:-1:-1;50425:132:0;-1:-1:-1;50425:132:0;-1:-1:-1;50425:132:0;-1:-1:-1;50590:28:0;;50425:132;50590:19;:28::i;:::-;-1:-1:-1;;;;;50572:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50654:18;;;;;:7;:18;;;;;:39;;50677:15;50654:22;:39::i;:::-;-1:-1:-1;;;;;50633:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50729:7;:18;;;;:39;;50752:15;50729:22;:39::i;49792:517::-;49895:15;49912:23;49937:12;49951:23;49976:12;49990:13;50007:19;50018:7;50007:10;:19::i;:::-;-1:-1:-1;;;;;50059:15:0;;;;;;:7;:15;;;;;;49894:132;;-1:-1:-1;49894:132:0;;-1:-1:-1;49894:132:0;;-1:-1:-1;49894:132:0;-1:-1:-1;49894:132:0;-1:-1:-1;49894:132:0;-1:-1:-1;50059:28:0;;49894:132;50059:19;:28::i;51536:667::-;51643:15;51660:23;51685:12;51699:23;51724:12;51738:13;51755:19;51766:7;51755:10;:19::i;:::-;-1:-1:-1;;;;;51807:15:0;;;;;;:7;:15;;;;;;51642:132;;-1:-1:-1;51642:132:0;;-1:-1:-1;51642:132:0;;-1:-1:-1;51642:132:0;-1:-1:-1;51642:132:0;-1:-1:-1;51642:132:0;-1:-1:-1;51807:28:0;;51827:7;51807:19;:28::i;:::-;-1:-1:-1;;;;;51789:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51868:7;:15;;;;:28;;51888:7;51868:19;:28::i;43122:127::-;43180:15;;43170:7;:25;43221:16;;43210:8;:27;43122:127::o;52215:349::-;52272:19;52295:10;:8;:10::i;:::-;52272:33;-1:-1:-1;52320:13:0;52336:22;:5;52272:33;52336:9;:22::i;:::-;52414:4;52398:22;;;;:7;:22;;;;;;52320:38;;-1:-1:-1;52398:33:0;;52320:38;52398:26;:33::i;:::-;52389:4;52373:22;;;;:7;:22;;;;;;;;:58;;;;52449:11;:26;;;;;;52446:106;;;52535:4;52519:22;;;;:7;:22;;;;;;:33;;52546:5;52519:26;:33::i;:::-;52510:4;52494:22;;;;:7;:22;;;;;:58;52446:106;52215:349;;;:::o;52576:159::-;52658:7;;:17;;52670:4;52658:11;:17::i;:::-;52648:7;:27;52703:10;;:20;;52718:4;52703:14;:20::i;:::-;52690:10;:33;-1:-1:-1;;52576:159:0:o

Swarm Source

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