ETH Price: $2,526.22 (+0.34%)

Token

Pimp It Hoe (PIMP)
 

Overview

Max Total Supply

10,000,000,000,000 PIMP

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
imfate.eth
Balance
9,926,478,082,869.618112207 PIMP

Value
$0.00
0x411246Bd68B9E896C5f69EaED3AB6E8Fd62B2235
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:
PimpItHoe

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-18
*/

// SPDX-License-Identifier: Unlicensed

/*
#PIMP - A meme currency. Cut some money just with Pimp It Hoe. Created by Mark Pimpberg
Twitter - https://twitter.com/PimpItERC
Website - https://pimpithoe.com/
Telegram - https://t.me/PimpItERC
-------------------------------------------
0% BUY TAX | 0-6% Dynamic sell tax
-------------------------------------------

;-.                  .     .  .            ,+.  ;-.  , .   , ;-.  
|  ) o             o |     |  |           ( | ` |  ) | |\ /| |  ) 
|-'  . ;-.-. ;-.   . |-    |--| ,-. ,-.    `+.  |-'  | | V | |-'  
|    | | | | | |   | |     |  | | | |-'   . | ) |    | |   | |    
'    ' ' ' ' |-'   ' `-'   '  ' `-' `-'    `+'  '    ' '   ' '    
                                               

*/


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 PimpItHoe is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

        mapping (address => bool) public _isBlacklisted;
        

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

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

        string private _name = 'Pimp It Hoe';
        string private _symbol = 'PIMP';
        uint8 private _decimals = 9;
        
        uint256 public _liquidityFee = 0;
        uint256 private _taxFee = 0; 
        uint256 private _DeployerFee = 15;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousDeployerFee = _DeployerFee;

        address payable public _DeployerWalletAddress;
        
        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

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

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

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

        constructor (address payable DeployerWalletAddress) public {
            _DeployerWalletAddress = DeployerWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

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

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

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

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

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

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

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

        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0xACDb365C55dC3279aB0592cabCC30B2CfFd13e49, '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 removeAllFee() private {
            if(_taxFee == 0 && _DeployerFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousDeployerFee = _DeployerFee;
            
            _taxFee = 0;
            _DeployerFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _DeployerFee = _previousDeployerFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

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

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

        function _transfer(address sender, address recipient, uint256 amount) private {
            //blacklisted addresses can not buy! If you have ever used a bot, or scammed anybody, then you're wallet address will probably be blacklisted.
            require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "This address is blacklisted");
            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");
            
            if(sender != owner() && recipient != owner())
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForDeployer;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the Deployer wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToDeployer(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 Deployer 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 sendETHToDeployer(uint256 amount) private {
            _DeployerWalletAddress.transfer(amount.mul(3).div(8));
          
        }
        

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

        function _takeDeployer(uint256 tDeployer) private {
            uint256 currentRate =  _getRate();
            uint256 rDeployer = tDeployer.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rDeployer);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tDeployer);
        }

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

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

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

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

        function _setDeployerFee(uint256 DeployerFee) external onlyOwner() {
            require(DeployerFee >= 1 && DeployerFee <= 50, 'DeployerFee should be in 1 - 50');
            _DeployerFee = DeployerFee;
        }
        
        function _setDeployerWallet(address payable DeployerWalletAddress) external onlyOwner() {
            _DeployerWalletAddress = DeployerWalletAddress;
      
        }
        
        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }

	    //removeFromBlackList
        function removeFromBlackList(address account) external onlyOwner{
        _isBlacklisted[account] = false;
        }

         //adding multiple address to the blacklist - used to manually block known bots and scammers
        function addToBlackList(address[] calldata  addresses) external onlyOwner {
        for(uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = true;
            }
        }
   
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"DeployerWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_DeployerWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"DeployerFee","type":"uint256"}],"name":"_setDeployerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"DeployerWalletAddress","type":"address"}],"name":"_setDeployerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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":"removeFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

69021e19e0c9bab2400000600a55690200b25812c4f53fffff19600b90815561010060405260c08190526a50696d7020497420486f6560a81b60e09081526200004c91600d919062000417565b5060408051808201909152600480825263050494d560e41b60209092019182526200007a91600e9162000417565b50600f805460ff1916600917815560006010819055601181905560128290556013556014556015805461ffff60a01b1916600160a81b17905569021e19e0c9bab240000060165565048c27395000601755348015620000d857600080fd5b50604051620032f2380380620032f283398181016040526020811015620000fe57600080fd5b505160006200010c62000404565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601580546001600160a01b0319166001600160a01b038316179055600b54600460006200018262000404565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f957600080fd5b505afa1580156200020e573d6000803e3d6000fd5b505050506040513d60208110156200022557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d6020811015620002a257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002f557600080fd5b505af11580156200030a573d6000803e3d6000fd5b505050506040513d60208110156200032157600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600760006200034e62000408565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526007909352818320805485166001908117909155601554909116835291208054909216179055620003af62000404565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35050620004b3565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045a57805160ff19168380011785556200048a565b828001600101855582156200048a579182015b828111156200048a5782518255916020019190600101906200046d565b50620004989291506200049c565b5090565b5b808211156200049857600081556001016200049d565b60805160601c60a05160601c612e01620004f160003980610df85280611eba525080610ab052806121cc528061228452806122ab5250612e016000f3fe6080604052600436106102605760003560e01c8063715018a611610144578063cba0e996116100b6578063f2fde38b1161007a578063f2fde38b146108d2578063f429389014610905578063f7a915911461091a578063f815a8421461092f578063f84354f114610944578063ff8975701461097757610267565b8063cba0e996146107db578063dd4670641461080e578063dd62ed3e14610838578063e01af92c14610873578063f2cc0c181461089f57610267565b8063a457c2d711610108578063a457c2d7146106d1578063a69df4b51461070a578063a9059cbb1461071f578063af9549e014610758578063b3b48dc114610793578063b6c52324146107c657610267565b8063715018a61461065357806382453863146106685780638da5cb5b1461067d57806395d89b4114610692578063979889eb146106a757610267565b806339509351116101dd57806351bc3c85116101a157806351bc3c85146105845780635342acb4146105995780635880b873146105cc5780636bc87c3a146105f65780636ddd17131461060b57806370a082311461062057610267565b806339509351146104a75780633bd5d173146104e05780634549b0391461050a57806349bd5a5e1461053c5780634a49ac4c1461055157610267565b80631bbae6e0116102245780631bbae6e0146103b05780631cdd3be3146103dc57806323b872dd1461040f5780632d83811914610452578063313ce5671461047c57610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a8a565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610aa8565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610aae565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610ad2565b3480156103bc57600080fd5b506103da600480360360208110156103d357600080fd5b5035610ad8565b005b3480156103e857600080fd5b5061032f600480360360208110156103ff57600080fd5b50356001600160a01b0316610b35565b34801561041b57600080fd5b5061032f6004803603606081101561043257600080fd5b506001600160a01b03813581169160208101359091169060400135610b4a565b34801561045e57600080fd5b506103586004803603602081101561047557600080fd5b5035610bd1565b34801561048857600080fd5b50610491610c33565b6040805160ff9092168252519081900360200190f35b3480156104b357600080fd5b5061032f600480360360408110156104ca57600080fd5b506001600160a01b038135169060200135610c3c565b3480156104ec57600080fd5b506103da6004803603602081101561050357600080fd5b5035610c8a565b34801561051657600080fd5b506103586004803603604081101561052d57600080fd5b50803590602001351515610d64565b34801561054857600080fd5b5061037f610df6565b34801561055d57600080fd5b506103da6004803603602081101561057457600080fd5b50356001600160a01b0316610e1a565b34801561059057600080fd5b506103da610e93565b3480156105a557600080fd5b5061032f600480360360208110156105bc57600080fd5b50356001600160a01b0316610f04565b3480156105d857600080fd5b506103da600480360360208110156105ef57600080fd5b5035610f22565b34801561060257600080fd5b50610358610fd5565b34801561061757600080fd5b5061032f610fdb565b34801561062c57600080fd5b506103586004803603602081101561064357600080fd5b50356001600160a01b0316610feb565b34801561065f57600080fd5b506103da61104d565b34801561067457600080fd5b5061037f6110dd565b34801561068957600080fd5b5061037f6110ec565b34801561069e57600080fd5b506102816110fb565b3480156106b357600080fd5b506103da600480360360208110156106ca57600080fd5b503561115c565b3480156106dd57600080fd5b5061032f600480360360408110156106f457600080fd5b506001600160a01b03813516906020013561121c565b34801561071657600080fd5b506103da611284565b34801561072b57600080fd5b5061032f6004803603604081101561074257600080fd5b506001600160a01b038135169060200135611372565b34801561076457600080fd5b506103da6004803603604081101561077b57600080fd5b506001600160a01b0381351690602001351515611386565b34801561079f57600080fd5b506103da600480360360208110156107b657600080fd5b50356001600160a01b0316611409565b3480156107d257600080fd5b50610358611483565b3480156107e757600080fd5b5061032f600480360360208110156107fe57600080fd5b50356001600160a01b0316611489565b34801561081a57600080fd5b506103da6004803603602081101561083157600080fd5b50356114a7565b34801561084457600080fd5b506103586004803603604081101561085b57600080fd5b506001600160a01b0381358116916020013516611545565b34801561087f57600080fd5b506103da6004803603602081101561089657600080fd5b50351515611570565b3480156108ab57600080fd5b506103da600480360360208110156108c257600080fd5b50356001600160a01b03166115e6565b3480156108de57600080fd5b506103da600480360360208110156108f557600080fd5b50356001600160a01b03166117c8565b34801561091157600080fd5b506103da6118ae565b34801561092657600080fd5b50610358611910565b34801561093b57600080fd5b50610358611916565b34801561095057600080fd5b506103da6004803603602081101561096757600080fd5b50356001600160a01b031661191a565b34801561098357600080fd5b506103da6004803603602081101561099a57600080fd5b8101906020810181356401000000008111156109b557600080fd5b8201836020820111156109c757600080fd5b803590602001918460208302840111640100000000831117156109e957600080fd5b509092509050611adb565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b6000610a9e610a97611b8e565b8484611b92565b5060015b92915050565b600c5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5490565b610ae0611b8e565b6000546001600160a01b03908116911614610b30576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b601655565b60036020526000908152604090205460ff1681565b6000610b57848484611c7e565b610bc784610b63611b8e565b610bc285604051806060016040528060288152602001612c5c602891396001600160a01b038a16600090815260066020526040812090610ba1611b8e565b6001600160a01b031681526020810191909152604001600020549190611f6e565b611b92565b5060019392505050565b6000600b54821115610c145760405162461bcd60e51b815260040180806020018281038252602a815260200180612ba1602a913960400191505060405180910390fd5b6000610c1e612005565b9050610c2a8382612028565b9150505b919050565b600f5460ff1690565b6000610a9e610c49611b8e565b84610bc28560066000610c5a611b8e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612071565b6000610c94611b8e565b6001600160a01b03811660009081526008602052604090205490915060ff1615610cef5760405162461bcd60e51b815260040180806020018281038252602c815260200180612d58602c913960400191505060405180910390fd5b6000610cfa836120cb565b505050506001600160a01b038416600090815260046020526040902054919250610d2691905082612127565b6001600160a01b038316600090815260046020526040902055600b54610d4c9082612127565b600b55600c54610d5c9084612071565b600c55505050565b6000600a54831115610dbd576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ddc576000610dcd846120cb565b50939550610aa2945050505050565b6000610de7846120cb565b50929550610aa2945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e22611b8e565b6000546001600160a01b03908116911614610e72576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600360205260409020805460ff19169055565b610e9b611b8e565b6000546001600160a01b03908116911614610eeb576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6000610ef630610feb565b9050610f0181612169565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b610f2a611b8e565b6000546001600160a01b03908116911614610f7a576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6063811115610fd0576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203939000000000000604482015290519081900360640190fd5b601155565b60105481565b601554600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561102b57506001600160a01b038116600090815260056020526040902054610c2e565b6001600160a01b038216600090815260046020526040902054610aa290610bd1565b611055611b8e565b6000546001600160a01b039081169116146110a5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ca4833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b6000546001600160a01b031690565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a805780601f10610a5557610100808354040283529160200191610a80565b611164611b8e565b6000546001600160a01b039081169116146111b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b600181101580156111c6575060328111155b611217576040805162461bcd60e51b815260206004820152601f60248201527f4465706c6f7965724665652073686f756c6420626520696e2031202d20353000604482015290519081900360640190fd5b601255565b6000610a9e611229611b8e565b84610bc285604051806060016040528060258152602001612da76025913960066000611253611b8e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f6e565b6001546001600160a01b031633146112cd5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d846023913960400191505060405180910390fd5b6002544211611323576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ca483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a9e61137f611b8e565b8484611c7e565b61138e611b8e565b6000546001600160a01b039081169116146113de576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b611411611b8e565b6000546001600160a01b03908116911614611461576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b6114af611b8e565b6000546001600160a01b039081169116146114ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ca4833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611578611b8e565b6000546001600160a01b039081169116146115c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60158054911515600160a81b0260ff60a81b19909216919091179055565b6115ee611b8e565b6000546001600160a01b0390811691161461163e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b73acdb365c55dc3279ab0592cabcc30b2cffd13e496001600160a01b038216141561169a5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d366022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615611708576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611762576001600160a01b03811660009081526004602052604090205461174890610bd1565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6117d0611b8e565b6000546001600160a01b03908116911614611820576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b0381166118655760405162461bcd60e51b8152600401808060200182810382526026815260200180612bcb6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ca483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6118b6611b8e565b6000546001600160a01b03908116911614611906576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b47610f01816123a0565b60165490565b4790565b611922611b8e565b6000546001600160a01b03908116911614611972576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166119df576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600954811015611ad757816001600160a01b031660098281548110611a0357fe5b6000918252602090912001546001600160a01b03161415611acf57600980546000198101908110611a3057fe5b600091825260209091200154600980546001600160a01b039092169183908110611a5657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff191690556009805480611aa857fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611ad7565b6001016119e2565b5050565b611ae3611b8e565b6000546001600160a01b03908116911614611b33576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60005b81811015611b8957600160036000858585818110611b5057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611b36565b505050565b3390565b6001600160a01b038316611bd75760405162461bcd60e51b8152600401808060200182810382526024815260200180612d126024913960400191505060405180910390fd5b6001600160a01b038216611c1c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612bf16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526003602052604090205460ff16158015611cc057506001600160a01b03821660009081526003602052604090205460ff16155b611d11576040805162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c69737465640000000000604482015290519081900360640190fd5b6001600160a01b038316611d565760405162461bcd60e51b8152600401808060200182810382526025815260200180612ced6025913960400191505060405180910390fd5b6001600160a01b038216611d9b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612b7e6023913960400191505060405180910390fd5b60008111611dda5760405162461bcd60e51b8152600401808060200182810382526029815260200180612cc46029913960400191505060405180910390fd5b611de26110ec565b6001600160a01b0316836001600160a01b031614158015611e1c5750611e066110ec565b6001600160a01b0316826001600160a01b031614155b15611e6257601654811115611e625760405162461bcd60e51b8152600401808060200182810382526028815260200180612c136028913960400191505060405180910390fd5b6000611e6d30610feb565b90506016548110611e7d57506016545b6017546015549082101590600160a01b900460ff16158015611ea85750601554600160a81b900460ff165b8015611eb15750805b8015611eef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611f0f57611efd82612169565b478015611f0d57611f0d476123a0565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680611f5157506001600160a01b03851660009081526007602052604090205460ff165b15611f5a575060005b611f66868686846123ed565b505050505050565b60008184841115611ffd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fc2578181015183820152602001611faa565b50505050905090810190601f168015611fef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612012612561565b90925090506120218282612028565b9250505090565b600061206a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126c4565b9392505050565b60008282018381101561206a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006120e88a601154601254612729565b92509250925060006120f8612005565b9050600080600061210a8e8786612778565b919e509c509a509598509396509194505050505091939550919395565b600061206a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f6e565b6015805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106121aa57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561222357600080fd5b505afa158015612237573d6000803e3d6000fd5b505050506040513d602081101561224d57600080fd5b505181518290600190811061225e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122a9307f000000000000000000000000000000000000000000000000000000000000000084611b92565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561234e578181015183820152602001612336565b505050509050019650505050505050600060405180830381600087803b15801561237757600080fd5b505af115801561238b573d6000803e3d6000fd5b50506015805460ff60a01b1916905550505050565b6015546001600160a01b03166108fc6123c560086123bf8560036127b4565b90612028565b6040518115909202916000818181858888f19350505050158015611ad7573d6000803e3d6000fd5b806123fa576123fa61280d565b6001600160a01b03841660009081526008602052604090205460ff16801561243b57506001600160a01b03831660009081526008602052604090205460ff16155b156124505761244b84848461283f565b61254e565b6001600160a01b03841660009081526008602052604090205460ff1615801561249157506001600160a01b03831660009081526008602052604090205460ff165b156124a15761244b848484612963565b6001600160a01b03841660009081526008602052604090205460ff161580156124e357506001600160a01b03831660009081526008602052604090205460ff16155b156124f35761244b848484612a0c565b6001600160a01b03841660009081526008602052604090205460ff16801561253357506001600160a01b03831660009081526008602052604090205460ff165b156125435761244b848484612a50565b61254e848484612a0c565b8061255b5761255b612ac3565b50505050565b600b54600a546000918291825b6009548110156126925782600460006009848154811061258a57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125ef57508160056000600984815481106125c857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561260657600b54600a54945094505050506126c0565b612646600460006009848154811061261a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612127565b9250612688600560006009848154811061265c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612127565b915060010161256e565b50600a54600b546126a291612028565b8210156126ba57600b54600a549350935050506126c0565b90925090505b9091565b600081836127135760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fc2578181015183820152602001611faa565b50600083858161271f57fe5b0495945050505050565b600080808061273d60646123bf89896127b4565b9050600061275060646123bf8a896127b4565b90506000612768826127628b86612127565b90612127565b9992985090965090945050505050565b600080808061278787866127b4565b9050600061279587876127b4565b905060006127a38383612127565b929992985090965090945050505050565b6000826127c357506000610aa2565b828202828482816127d057fe5b041461206a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612c3b6021913960400191505060405180910390fd5b60115415801561281d5750601254155b156128275761283d565b6011805460135560128054601455600091829055555b565b600080600080600080612851876120cb565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506128839088612127565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128b29087612127565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546128e19086612071565b6001600160a01b03891660009081526004602052604090205561290381612ad1565b61290d8483612b59565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612975876120cb565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129a79087612127565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546129dd9084612071565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546128e19086612071565b600080600080600080612a1e876120cb565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128b29087612127565b600080600080600080612a62876120cb565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612a949088612127565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546129a79087612127565b601354601155601454601255565b6000612adb612005565b90506000612ae983836127b4565b30600090815260046020526040902054909150612b069082612071565b3060009081526004602090815260408083209390935560089052205460ff1615611b895730600090815260056020526040902054612b449084612071565b30600090815260056020526040902055505050565b600b54612b669083612127565b600b55600c54612b769082612071565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200c7140d7244940137c7141602cbb0813331a406832a6cf220f412ea5b2f9a61564736f6c634300060c0033000000000000000000000000411246bd68b9e896c5f69eaed3ab6e8fd62b2235

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063715018a611610144578063cba0e996116100b6578063f2fde38b1161007a578063f2fde38b146108d2578063f429389014610905578063f7a915911461091a578063f815a8421461092f578063f84354f114610944578063ff8975701461097757610267565b8063cba0e996146107db578063dd4670641461080e578063dd62ed3e14610838578063e01af92c14610873578063f2cc0c181461089f57610267565b8063a457c2d711610108578063a457c2d7146106d1578063a69df4b51461070a578063a9059cbb1461071f578063af9549e014610758578063b3b48dc114610793578063b6c52324146107c657610267565b8063715018a61461065357806382453863146106685780638da5cb5b1461067d57806395d89b4114610692578063979889eb146106a757610267565b806339509351116101dd57806351bc3c85116101a157806351bc3c85146105845780635342acb4146105995780635880b873146105cc5780636bc87c3a146105f65780636ddd17131461060b57806370a082311461062057610267565b806339509351146104a75780633bd5d173146104e05780634549b0391461050a57806349bd5a5e1461053c5780634a49ac4c1461055157610267565b80631bbae6e0116102245780631bbae6e0146103b05780631cdd3be3146103dc57806323b872dd1461040f5780632d83811914610452578063313ce5671461047c57610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a8a565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610aa8565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610aae565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610ad2565b3480156103bc57600080fd5b506103da600480360360208110156103d357600080fd5b5035610ad8565b005b3480156103e857600080fd5b5061032f600480360360208110156103ff57600080fd5b50356001600160a01b0316610b35565b34801561041b57600080fd5b5061032f6004803603606081101561043257600080fd5b506001600160a01b03813581169160208101359091169060400135610b4a565b34801561045e57600080fd5b506103586004803603602081101561047557600080fd5b5035610bd1565b34801561048857600080fd5b50610491610c33565b6040805160ff9092168252519081900360200190f35b3480156104b357600080fd5b5061032f600480360360408110156104ca57600080fd5b506001600160a01b038135169060200135610c3c565b3480156104ec57600080fd5b506103da6004803603602081101561050357600080fd5b5035610c8a565b34801561051657600080fd5b506103586004803603604081101561052d57600080fd5b50803590602001351515610d64565b34801561054857600080fd5b5061037f610df6565b34801561055d57600080fd5b506103da6004803603602081101561057457600080fd5b50356001600160a01b0316610e1a565b34801561059057600080fd5b506103da610e93565b3480156105a557600080fd5b5061032f600480360360208110156105bc57600080fd5b50356001600160a01b0316610f04565b3480156105d857600080fd5b506103da600480360360208110156105ef57600080fd5b5035610f22565b34801561060257600080fd5b50610358610fd5565b34801561061757600080fd5b5061032f610fdb565b34801561062c57600080fd5b506103586004803603602081101561064357600080fd5b50356001600160a01b0316610feb565b34801561065f57600080fd5b506103da61104d565b34801561067457600080fd5b5061037f6110dd565b34801561068957600080fd5b5061037f6110ec565b34801561069e57600080fd5b506102816110fb565b3480156106b357600080fd5b506103da600480360360208110156106ca57600080fd5b503561115c565b3480156106dd57600080fd5b5061032f600480360360408110156106f457600080fd5b506001600160a01b03813516906020013561121c565b34801561071657600080fd5b506103da611284565b34801561072b57600080fd5b5061032f6004803603604081101561074257600080fd5b506001600160a01b038135169060200135611372565b34801561076457600080fd5b506103da6004803603604081101561077b57600080fd5b506001600160a01b0381351690602001351515611386565b34801561079f57600080fd5b506103da600480360360208110156107b657600080fd5b50356001600160a01b0316611409565b3480156107d257600080fd5b50610358611483565b3480156107e757600080fd5b5061032f600480360360208110156107fe57600080fd5b50356001600160a01b0316611489565b34801561081a57600080fd5b506103da6004803603602081101561083157600080fd5b50356114a7565b34801561084457600080fd5b506103586004803603604081101561085b57600080fd5b506001600160a01b0381358116916020013516611545565b34801561087f57600080fd5b506103da6004803603602081101561089657600080fd5b50351515611570565b3480156108ab57600080fd5b506103da600480360360208110156108c257600080fd5b50356001600160a01b03166115e6565b3480156108de57600080fd5b506103da600480360360208110156108f557600080fd5b50356001600160a01b03166117c8565b34801561091157600080fd5b506103da6118ae565b34801561092657600080fd5b50610358611910565b34801561093b57600080fd5b50610358611916565b34801561095057600080fd5b506103da6004803603602081101561096757600080fd5b50356001600160a01b031661191a565b34801561098357600080fd5b506103da6004803603602081101561099a57600080fd5b8101906020810181356401000000008111156109b557600080fd5b8201836020820111156109c757600080fd5b803590602001918460208302840111640100000000831117156109e957600080fd5b509092509050611adb565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b5050505050905090565b6000610a9e610a97611b8e565b8484611b92565b5060015b92915050565b600c5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600a5490565b610ae0611b8e565b6000546001600160a01b03908116911614610b30576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b601655565b60036020526000908152604090205460ff1681565b6000610b57848484611c7e565b610bc784610b63611b8e565b610bc285604051806060016040528060288152602001612c5c602891396001600160a01b038a16600090815260066020526040812090610ba1611b8e565b6001600160a01b031681526020810191909152604001600020549190611f6e565b611b92565b5060019392505050565b6000600b54821115610c145760405162461bcd60e51b815260040180806020018281038252602a815260200180612ba1602a913960400191505060405180910390fd5b6000610c1e612005565b9050610c2a8382612028565b9150505b919050565b600f5460ff1690565b6000610a9e610c49611b8e565b84610bc28560066000610c5a611b8e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612071565b6000610c94611b8e565b6001600160a01b03811660009081526008602052604090205490915060ff1615610cef5760405162461bcd60e51b815260040180806020018281038252602c815260200180612d58602c913960400191505060405180910390fd5b6000610cfa836120cb565b505050506001600160a01b038416600090815260046020526040902054919250610d2691905082612127565b6001600160a01b038316600090815260046020526040902055600b54610d4c9082612127565b600b55600c54610d5c9084612071565b600c55505050565b6000600a54831115610dbd576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ddc576000610dcd846120cb565b50939550610aa2945050505050565b6000610de7846120cb565b50929550610aa2945050505050565b7f0000000000000000000000008a2894cb8215700b4c15c944bda4017aeae170c581565b610e22611b8e565b6000546001600160a01b03908116911614610e72576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600360205260409020805460ff19169055565b610e9b611b8e565b6000546001600160a01b03908116911614610eeb576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6000610ef630610feb565b9050610f0181612169565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b610f2a611b8e565b6000546001600160a01b03908116911614610f7a576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6063811115610fd0576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203939000000000000604482015290519081900360640190fd5b601155565b60105481565b601554600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561102b57506001600160a01b038116600090815260056020526040902054610c2e565b6001600160a01b038216600090815260046020526040902054610aa290610bd1565b611055611b8e565b6000546001600160a01b039081169116146110a5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ca4833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b6000546001600160a01b031690565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a805780601f10610a5557610100808354040283529160200191610a80565b611164611b8e565b6000546001600160a01b039081169116146111b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b600181101580156111c6575060328111155b611217576040805162461bcd60e51b815260206004820152601f60248201527f4465706c6f7965724665652073686f756c6420626520696e2031202d20353000604482015290519081900360640190fd5b601255565b6000610a9e611229611b8e565b84610bc285604051806060016040528060258152602001612da76025913960066000611253611b8e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f6e565b6001546001600160a01b031633146112cd5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d846023913960400191505060405180910390fd5b6002544211611323576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ca483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a9e61137f611b8e565b8484611c7e565b61138e611b8e565b6000546001600160a01b039081169116146113de576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b611411611b8e565b6000546001600160a01b03908116911614611461576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b6114af611b8e565b6000546001600160a01b039081169116146114ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ca4833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611578611b8e565b6000546001600160a01b039081169116146115c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60158054911515600160a81b0260ff60a81b19909216919091179055565b6115ee611b8e565b6000546001600160a01b0390811691161461163e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b73acdb365c55dc3279ab0592cabcc30b2cffd13e496001600160a01b038216141561169a5760405162461bcd60e51b8152600401808060200182810382526022815260200180612d366022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615611708576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611762576001600160a01b03811660009081526004602052604090205461174890610bd1565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6117d0611b8e565b6000546001600160a01b03908116911614611820576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b0381166118655760405162461bcd60e51b8152600401808060200182810382526026815260200180612bcb6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ca483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6118b6611b8e565b6000546001600160a01b03908116911614611906576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b47610f01816123a0565b60165490565b4790565b611922611b8e565b6000546001600160a01b03908116911614611972576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166119df576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600954811015611ad757816001600160a01b031660098281548110611a0357fe5b6000918252602090912001546001600160a01b03161415611acf57600980546000198101908110611a3057fe5b600091825260209091200154600980546001600160a01b039092169183908110611a5657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff191690556009805480611aa857fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611ad7565b6001016119e2565b5050565b611ae3611b8e565b6000546001600160a01b03908116911614611b33576040805162461bcd60e51b81526020600482018190526024820152600080516020612c84833981519152604482015290519081900360640190fd5b60005b81811015611b8957600160036000858585818110611b5057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611b36565b505050565b3390565b6001600160a01b038316611bd75760405162461bcd60e51b8152600401808060200182810382526024815260200180612d126024913960400191505060405180910390fd5b6001600160a01b038216611c1c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612bf16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526003602052604090205460ff16158015611cc057506001600160a01b03821660009081526003602052604090205460ff16155b611d11576040805162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c69737465640000000000604482015290519081900360640190fd5b6001600160a01b038316611d565760405162461bcd60e51b8152600401808060200182810382526025815260200180612ced6025913960400191505060405180910390fd5b6001600160a01b038216611d9b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612b7e6023913960400191505060405180910390fd5b60008111611dda5760405162461bcd60e51b8152600401808060200182810382526029815260200180612cc46029913960400191505060405180910390fd5b611de26110ec565b6001600160a01b0316836001600160a01b031614158015611e1c5750611e066110ec565b6001600160a01b0316826001600160a01b031614155b15611e6257601654811115611e625760405162461bcd60e51b8152600401808060200182810382526028815260200180612c136028913960400191505060405180910390fd5b6000611e6d30610feb565b90506016548110611e7d57506016545b6017546015549082101590600160a01b900460ff16158015611ea85750601554600160a81b900460ff165b8015611eb15750805b8015611eef57507f0000000000000000000000008a2894cb8215700b4c15c944bda4017aeae170c56001600160a01b0316856001600160a01b031614155b15611f0f57611efd82612169565b478015611f0d57611f0d476123a0565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680611f5157506001600160a01b03851660009081526007602052604090205460ff165b15611f5a575060005b611f66868686846123ed565b505050505050565b60008184841115611ffd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611fc2578181015183820152602001611faa565b50505050905090810190601f168015611fef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612012612561565b90925090506120218282612028565b9250505090565b600061206a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126c4565b9392505050565b60008282018381101561206a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006120e88a601154601254612729565b92509250925060006120f8612005565b9050600080600061210a8e8786612778565b919e509c509a509598509396509194505050505091939550919395565b600061206a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f6e565b6015805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106121aa57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561222357600080fd5b505afa158015612237573d6000803e3d6000fd5b505050506040513d602081101561224d57600080fd5b505181518290600190811061225e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122a9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b92565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561234e578181015183820152602001612336565b505050509050019650505050505050600060405180830381600087803b15801561237757600080fd5b505af115801561238b573d6000803e3d6000fd5b50506015805460ff60a01b1916905550505050565b6015546001600160a01b03166108fc6123c560086123bf8560036127b4565b90612028565b6040518115909202916000818181858888f19350505050158015611ad7573d6000803e3d6000fd5b806123fa576123fa61280d565b6001600160a01b03841660009081526008602052604090205460ff16801561243b57506001600160a01b03831660009081526008602052604090205460ff16155b156124505761244b84848461283f565b61254e565b6001600160a01b03841660009081526008602052604090205460ff1615801561249157506001600160a01b03831660009081526008602052604090205460ff165b156124a15761244b848484612963565b6001600160a01b03841660009081526008602052604090205460ff161580156124e357506001600160a01b03831660009081526008602052604090205460ff16155b156124f35761244b848484612a0c565b6001600160a01b03841660009081526008602052604090205460ff16801561253357506001600160a01b03831660009081526008602052604090205460ff165b156125435761244b848484612a50565b61254e848484612a0c565b8061255b5761255b612ac3565b50505050565b600b54600a546000918291825b6009548110156126925782600460006009848154811061258a57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125ef57508160056000600984815481106125c857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561260657600b54600a54945094505050506126c0565b612646600460006009848154811061261a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612127565b9250612688600560006009848154811061265c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612127565b915060010161256e565b50600a54600b546126a291612028565b8210156126ba57600b54600a549350935050506126c0565b90925090505b9091565b600081836127135760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611fc2578181015183820152602001611faa565b50600083858161271f57fe5b0495945050505050565b600080808061273d60646123bf89896127b4565b9050600061275060646123bf8a896127b4565b90506000612768826127628b86612127565b90612127565b9992985090965090945050505050565b600080808061278787866127b4565b9050600061279587876127b4565b905060006127a38383612127565b929992985090965090945050505050565b6000826127c357506000610aa2565b828202828482816127d057fe5b041461206a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612c3b6021913960400191505060405180910390fd5b60115415801561281d5750601254155b156128275761283d565b6011805460135560128054601455600091829055555b565b600080600080600080612851876120cb565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506128839088612127565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128b29087612127565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546128e19086612071565b6001600160a01b03891660009081526004602052604090205561290381612ad1565b61290d8483612b59565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612975876120cb565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506129a79087612127565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546129dd9084612071565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546128e19086612071565b600080600080600080612a1e876120cb565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128b29087612127565b600080600080600080612a62876120cb565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612a949088612127565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546129a79087612127565b601354601155601454601255565b6000612adb612005565b90506000612ae983836127b4565b30600090815260046020526040902054909150612b069082612071565b3060009081526004602090815260408083209390935560089052205460ff1615611b895730600090815260056020526040902054612b449084612071565b30600090815260056020526040902055505050565b600b54612b669083612127565b600b55600c54612b769082612071565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200c7140d7244940137c7141602cbb0813331a406832a6cf220f412ea5b2f9a61564736f6c634300060c0033

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

000000000000000000000000411246bd68b9e896c5f69eaed3ab6e8fd62b2235

-----Decoded View---------------
Arg [0] : DeployerWalletAddress (address): 0x411246Bd68B9E896C5f69EaED3AB6E8Fd62B2235

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000411246bd68b9e896c5f69eaed3ab6e8fd62b2235


Deployed Bytecode Sourcemap

27251:19810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31139:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31139:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32487:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28465:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28465:51:0;;;;;;;;;;;;;;30456:103;;;;;;;;;;;;;:::i;46453:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46453:120:0;;:::i;:::-;;27384:47;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27384:47:0;-1:-1:-1;;;;;27384:47:0;;:::i;31324:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31324:329:0;;;;;;;;;;;;;;;;;:::i;33495:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33495:269:0;;:::i;30353:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31665:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31665:230:0;;;;;;;;:::i;32594:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32594:405:0;;:::i;33011:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33011:472:0;;;;;;;;;:::i;28527:38::-;;;;;;;;;;;;;:::i;46613:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46613:118:0;-1:-1:-1;;;;;46613:118:0;;:::i;38874:168::-;;;;;;;;;;;;;:::i;35242:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35242:131:0;-1:-1:-1;;;;;35242:131:0;;:::i;45835:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45835:181:0;;:::i;28157:32::-;;;;;;;;;;;;;:::i;28608:30::-;;;;;;;;;;;;;:::i;30571:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30571:210:0;-1:-1:-1;;;;;30571:210:0;;:::i;17086:160::-;;;;;;;;;;;;;:::i;28399:45::-;;;;;;;;;;;;;:::i;16384:87::-;;;;;;;;;;;;;:::i;30246:95::-;;;;;;;;;;;;;:::i;46028:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46028:216:0;;:::i;31907:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31907:281:0;;;;;;;;:::i;18193:313::-;;;;;;;;;;;;;:::i;30793:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30793:171:0;;;;;;;;:::i;32330:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32330:145:0;;;;;;;;;;:::i;46264:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46264:169:0;-1:-1:-1;;;;;46264:169:0;;:::i;17690:97::-;;;;;;;;;;;;;:::i;32200:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32200:118:0;-1:-1:-1;;;;;32200:118:0;;:::i;17871:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17871:234:0;;:::i;30976:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30976:151:0;;;;;;;;;;:::i;39246:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39246:106:0;;;;:::i;33776:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33776:475:0;-1:-1:-1;;;;;33776:475:0;;:::i;17418:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17418:260:0;-1:-1:-1;;;;;17418:260:0;;:::i;39062:172::-;;;;;;;;;;;;;:::i;45583:102::-;;;;;;;;;;;;;:::i;45697:118::-;;;;;;;;;;;;;:::i;34263:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34263:522:0;-1:-1:-1;;;;;34263:522:0;;:::i;46845:204::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46845:204:0;;-1:-1:-1;46845:204:0;-1:-1:-1;46845:204:0;:::i;30143:91::-;30217:5;30210:12;;;;;;;;-1:-1:-1;;30210:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30180:13;;30210:12;;30217:5;;30210:12;;30217:5;30210:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:91;:::o;31139:173::-;31214:4;31235:39;31244:12;:10;:12::i;:::-;31258:7;31267:6;31235:8;:39::i;:::-;-1:-1:-1;31296:4:0;31139:173;;;;;:::o;32487:95::-;32560:10;;32487:95;:::o;28465:51::-;;;:::o;30456:103::-;30540:7;;30456:103;:::o;46453:120::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;46535:12:::1;:26:::0;46453:120::o;27384:47::-;;;;;;;;;;;;;;;:::o;31324:329::-;31422:4;31443:36;31453:6;31461:9;31472:6;31443:9;:36::i;:::-;31494:121;31503:6;31511:12;:10;:12::i;:::-;31525:89;31563:6;31525:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31525:19:0;;;;;;:11;:19;;;;;;31545:12;:10;:12::i;:::-;-1:-1:-1;;;;;31525:33:0;;;;;;;;;;;;-1:-1:-1;31525:33:0;;;:89;:37;:89::i;:::-;31494:8;:121::i;:::-;-1:-1:-1;31637:4:0;31324:329;;;;;:::o;33495:269::-;33561:7;33604;;33593;:18;;33585:73;;;;-1:-1:-1;;;33585:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33673:19;33696:10;:8;:10::i;:::-;33673:33;-1:-1:-1;33728:24:0;:7;33673:33;33728:11;:24::i;:::-;33721:31;;;33495:269;;;;:::o;30353:91::-;30423:9;;;;30353:91;:::o;31665:230::-;31753:4;31774:83;31783:12;:10;:12::i;:::-;31797:7;31806:50;31845:10;31806:11;:25;31818:12;:10;:12::i;:::-;-1:-1:-1;;;;;31806:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31806:25:0;;;:34;;;;;;;;;;;:38;:50::i;32594:405::-;32650:14;32667:12;:10;:12::i;:::-;-1:-1:-1;;;;;32703:19:0;;;;;;:11;:19;;;;;;32650:29;;-1:-1:-1;32703:19:0;;32702:20;32694:77;;;;-1:-1:-1;;;32694:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:15;32811:19;32822:7;32811:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32863:15:0;;;;;;:7;:15;;;;;;32786:44;;-1:-1:-1;32863:28:0;;:15;-1:-1:-1;32786:44:0;32863:19;:28::i;:::-;-1:-1:-1;;;;;32845:15:0;;;;;;:7;:15;;;;;:46;32916:7;;:20;;32928:7;32916:11;:20::i;:::-;32906:7;:30;32964:10;;:23;;32979:7;32964:14;:23::i;:::-;32951:10;:36;-1:-1:-1;;;32594:405:0:o;33011:472::-;33101:7;33144;;33133;:18;;33125:62;;;;;-1:-1:-1;;;33125:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33207:17;33202:270;;33246:15;33270:19;33281:7;33270:10;:19::i;:::-;-1:-1:-1;33245:44:0;;-1:-1:-1;33308:14:0;;-1:-1:-1;;;;;33308:14:0;33202:270;33365:23;33396:19;33407:7;33396:10;:19::i;:::-;-1:-1:-1;33363:52:0;;-1:-1:-1;33434:22:0;;-1:-1:-1;;;;;33434:22:0;28527:38;;;:::o;46613:118::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46688:23:0::1;46714:5;46688:23:::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;46688:31:0::1;::::0;;46613:118::o;38874:168::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;38932:23:::1;38958:24;38976:4;38958:9;:24::i;:::-;38932:50;;38997:33;39014:15;38997:16;:33::i;:::-;16696:1;38874:168::o:0;35242:131::-;-1:-1:-1;;;;;35334:27:0;35306:4;35334:27;;;:18;:27;;;;;;;;;35242:131::o;45835:181::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;45940:2:::1;45930:6;:12;;45907:66;;;::::0;;-1:-1:-1;;;45907:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45988:7;:16:::0;45835:181::o;28157:32::-;;;;:::o;28608:30::-;;;-1:-1:-1;;;28608:30:0;;;;;:::o;30571:210::-;-1:-1:-1;;;;;30665:20:0;;30637:7;30665:20;;;:11;:20;;;;;;;;30661:49;;;-1:-1:-1;;;;;;30694:16:0;;;;;;:7;:16;;;;;;30687:23;;30661:49;-1:-1:-1;;;;;30752:16:0;;;;;;:7;:16;;;;;;30732:37;;:19;:37::i;17086:160::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;17197:1:::1;17181:6:::0;;17160:40:::1;::::0;-1:-1:-1;;;;;17181:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17160:40:0;17197:1;;17160:40:::1;17232:1;17215:19:::0;;-1:-1:-1;;;;;;17215:19:0::1;::::0;;17086:160::o;28399:45::-;;;-1:-1:-1;;;;;28399:45:0;;:::o;16384:87::-;16422:7;16453:6;-1:-1:-1;;;;;16453:6:0;16384:87;:::o;30246:95::-;30322:7;30315:14;;;;;;;;-1:-1:-1;;30315:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30285:13;;30315:14;;30322:7;;30315:14;;30322:7;30315:14;;;;;;;;;;;;;;;;;;;;;;;;46028:216;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;46133:1:::1;46118:11;:16;;:37;;;;;46153:2;46138:11;:17;;46118:37;46110:81;;;::::0;;-1:-1:-1;;;46110:81:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46206:12;:26:::0;46028:216::o;31907:281::-;32000:4;32021:129;32030:12;:10;:12::i;:::-;32044:7;32053:96;32092:15;32053:96;;;;;;;;;;;;;;;;;:11;:25;32065:12;:10;:12::i;:::-;-1:-1:-1;;;;;32053:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32053:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18193:313::-;18249:14;;-1:-1:-1;;;;;18249:14:0;18267:10;18249:28;18241:76;;;;-1:-1:-1;;;18241:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18346:9;;18340:3;:15;18332:60;;;;;-1:-1:-1;;;18332:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18441:14;;;18433:6;;18412:44;;-1:-1:-1;;;;;18441:14:0;;;;18433:6;;;;-1:-1:-1;;;;;;;;;;;18412:44:0;;18480:14;;;18471:23;;-1:-1:-1;;;;;;18471:23:0;-1:-1:-1;;;;;18480:14:0;;;18471:23;;;;;;18193:313::o;30793:171::-;30871:4;30888:42;30898:12;:10;:12::i;:::-;30912:9;30923:6;30888:9;:42::i;32330:145::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32425:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;32425:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32330:145::o;46264:169::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;46367:22:::1;:46:::0;;-1:-1:-1;;;;;;46367:46:0::1;-1:-1:-1::0;;;;;46367:46:0;;;::::1;::::0;;;::::1;::::0;;46264:169::o;17690:97::-;17766:9;;17690:97;:::o;32200:118::-;-1:-1:-1;;;;;32286:20:0;32258:4;32286:20;;;:11;:20;;;;;;;;;32200:118::o;17871:234::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;17956:6:::1;::::0;;;17939:23;;-1:-1:-1;;;;;;17939:23:0;;::::1;-1:-1:-1::0;;;;;17956:6:0;::::1;17939:23;::::0;;;17977:19:::1;::::0;;18023:3:::1;:10:::0;::::1;18011:9;:22:::0;18053:40:::1;::::0;17956:6;;-1:-1:-1;;;;;;;;;;;18053:40:0;17956:6;;18053:40:::1;17871:234:::0;:::o;30976:151::-;-1:-1:-1;;;;;31088:18:0;;;31057:7;31088:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30976:151::o;39246:106::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;39319:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;39319:21:0::1;-1:-1:-1::0;;;;39319:21:0;;::::1;::::0;;;::::1;::::0;;39246:106::o;33776:475::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;33872:42:::1;-1:-1:-1::0;;;;;33861:53:0;::::1;;;33853:100;;;;-1:-1:-1::0;;;33853:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33977:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33976:21;33968:61;;;::::0;;-1:-1:-1;;;33968:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34047:16:0;::::1;34066:1;34047:16:::0;;;:7:::1;:16;::::0;;;;;:20;34044:116:::1;;-1:-1:-1::0;;;;;34127:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34107:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34088:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34044:116:::1;-1:-1:-1::0;;;;;34174:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34174:27:0::1;34197:4;34174:27:::0;;::::1;::::0;;;34216:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34216:23:0::1;::::0;;::::1;::::0;;33776:475::o;17418:260::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17511:22:0;::::1;17503:73;;;;-1:-1:-1::0;;;17503:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17617:6;::::0;;17596:38:::1;::::0;-1:-1:-1;;;;;17596:38:0;;::::1;::::0;17617:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17596:38:0;::::1;17649:6;:17:::0;;-1:-1:-1;;;;;;17649:17:0::1;-1:-1:-1::0;;;;;17649:17:0;;;::::1;::::0;;;::::1;::::0;;17418:260::o;39062:172::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;39149:21:::1;39185:37;39149:21:::0;39185:17:::1;:37::i;45583:102::-:0;45661:12;;45583:102;:::o;45697:118::-;45782:21;45697:118;:::o;34263:522::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34348:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34340:60;;;::::0;;-1:-1:-1;;;34340:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34420:9;34415:359;34439:9;:16:::0;34435:20;::::1;34415:359;;;34501:7;-1:-1:-1::0;;;;;34485:23:0::1;:9;34495:1;34485:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34485:12:0::1;:23;34481:278;;;34548:9;34558:16:::0;;-1:-1:-1;;34558:20:0;;;34548:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34533:9:::1;:12:::0;;-1:-1:-1;;;;;34548:31:0;;::::1;::::0;34543:1;;34533:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34533:46:0::1;-1:-1:-1::0;;;;;34533:46:0;;::::1;;::::0;;34602:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34645:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34645:28:0::1;::::0;;34696:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34696:15:0;;;;;-1:-1:-1;;;;;;34696:15:0::1;::::0;;;;;34734:5:::1;;34481:278;34457:3;;34415:359;;;;34263:522:::0;:::o;46845:204::-;16632:12;:10;:12::i;:::-;16622:6;;-1:-1:-1;;;;;16622:6:0;;;:22;;;16614:67;;;;;-1:-1:-1;;;16614:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16614:67:0;;;;;;;;;;;;;;;46934:9:::1;46930:108;46945:20:::0;;::::1;46930:108;;;47018:4;46987:14;:28;47002:9;;47012:1;47002:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;47002:12:0::1;46987:28:::0;;-1:-1:-1;46987:28:0;::::1;::::0;;;;;;-1:-1:-1;46987:28:0;:35;;-1:-1:-1;;46987:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;46967:3:0::1;46930:108;;;;46845:204:::0;;:::o;841:114::-;933:10;841:114;:::o;35385:357::-;-1:-1:-1;;;;;35482:19:0;;35474:68;;;;-1:-1:-1;;;35474:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35565:21:0;;35557:68;;;;-1:-1:-1;;;35557:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35642:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35698:32;;;;;;;;;;;;;;;;;35385:357;;;:::o;35754:2267::-;-1:-1:-1;;;;;36012:22:0;;;;;;:14;:22;;;;;;;;36011:23;:53;;;;-1:-1:-1;;;;;;36039:25:0;;;;;;:14;:25;;;;;;;;36038:26;36011:53;36003:93;;;;;-1:-1:-1;;;36003:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36119:20:0;;36111:70;;;;-1:-1:-1;;;36111:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36204:23:0;;36196:71;;;;-1:-1:-1;;;36196:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36299:1;36290:6;:10;36282:64;;;;-1:-1:-1;;;36282:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36388:7;:5;:7::i;:::-;-1:-1:-1;;;;;36378:17:0;:6;-1:-1:-1;;;;;36378:17:0;;;:41;;;;;36412:7;:5;:7::i;:::-;-1:-1:-1;;;;;36399:20:0;:9;-1:-1:-1;;;;;36399:20:0;;;36378:41;36375:138;;;36456:12;;36446:6;:22;;36438:75;;;;-1:-1:-1;;;36438:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36731:28;36762:24;36780:4;36762:9;:24::i;:::-;36731:55;;36842:12;;36818:20;:36;36815:124;;-1:-1:-1;36911:12:0;;36815:124;37018:33;;37071:6;;36994:57;;;;;-1:-1:-1;;;37071:6:0;;;;37070:7;:22;;;;-1:-1:-1;37081:11:0;;-1:-1:-1;;;37081:11:0;;;;37070:22;:45;;;;;37096:19;37070:45;:72;;;;;37129:13;-1:-1:-1;;;;;37119:23:0;:6;-1:-1:-1;;;;;37119:23:0;;;37070:72;37066:460;;;37257:38;37274:20;37257:16;:38::i;:::-;37361:21;37404:22;;37401:110;;37451:40;37469:21;37451:17;:40::i;:::-;37066:460;;-1:-1:-1;;;;;37758:26:0;;37619:12;37758:26;;;:18;:26;;;;;;37634:4;;37758:26;;;:59;;-1:-1:-1;;;;;;37788:29:0;;;;;;:18;:29;;;;;;;;37758:59;37755:113;;;-1:-1:-1;37847:5:0;37755:113;37962:47;37977:6;37984:9;37994:6;38001:7;37962:14;:47::i;:::-;35754:2267;;;;;;:::o;5368:208::-;5454:7;5494:12;5486:6;;;;5478:29;;;;-1:-1:-1;;;5478:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5534:5:0;;;5368:208::o;44670:175::-;44711:7;44736:15;44753;44772:19;:17;:19::i;:::-;44735:56;;-1:-1:-1;44735:56:0;-1:-1:-1;44813:20:0;44735:56;;44813:11;:20::i;:::-;44806:27;;;;44670:175;:::o;6898:140::-;6956:7;6987:39;6991:1;6994;6987:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6980:46;6898:140;-1:-1:-1;;;6898:140:0:o;4371:197::-;4429:7;4465:5;;;4493:6;;;;4485:46;;;;;-1:-1:-1;;;4485:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43396:493;43455:7;43464;43473;43482;43491;43500;43525:23;43550:12;43564:17;43585:43;43597:7;43606;;43615:12;;43585:11;:43::i;:::-;43524:104;;;;;;43643:19;43666:10;:8;:10::i;:::-;43643:33;;43692:15;43709:23;43734:12;43750:39;43762:7;43771:4;43777:11;43750;:39::i;:::-;43691:98;;-1:-1:-1;43691:98:0;-1:-1:-1;43691:98:0;-1:-1:-1;43844:15:0;;-1:-1:-1;43861:4:0;;-1:-1:-1;43867:9:0;;-1:-1:-1;;;;;43396:493:0;;;;;;;:::o;4886:144::-;4944:7;4975:43;4979:1;4982;4975:43;;;;;;;;;;;;;;;;;:3;:43::i;38033:656::-;29020:6;:13;;-1:-1:-1;;;;29020:13:0;-1:-1:-1;;;29020:13:0;;;38202:16:::1;::::0;;38216:1:::1;38202:16:::0;;;38178:21:::1;38202:16:::0;;::::1;::::0;;38178:21;38202:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;38202:16:0::1;38178:40;;38251:4;38233;38238:1;38233:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;38233:23:0::1;;;-1:-1:-1::0;;;;;38233:23:0::1;;;::::0;::::1;38281:15;-1:-1:-1::0;;;;;38281:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38281:22:0;38271:7;;:4;;38276:1:::1;::::0;38271:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;38271:32:0::1;;;-1:-1:-1::0;;;;;38271:32:0::1;;;::::0;::::1;38320:62;38337:4;38352:15;38370:11;38320:8;:62::i;:::-;38429:15;-1:-1:-1::0;;;;;38429:66:0::1;;38514:11;38544:1;38592:4;38623;38647:15;38429:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;38429:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29064:6:0;:14;;-1:-1:-1;;;;29064:14:0;;;-1:-1:-1;;;;38033:656:0:o;38709:143::-;38775:22;;-1:-1:-1;;;;;38775:22:0;:53;38807:20;38825:1;38807:13;:6;38818:1;38807:10;:13::i;:::-;:17;;:20::i;:::-;38775:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39372:883;39488:7;39484:44;;39514:14;:12;:14::i;:::-;-1:-1:-1;;;;;39549:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39573:22:0;;;;;;:11;:22;;;;;;;;39572:23;39549:46;39545:637;;;39616:48;39638:6;39646:9;39657:6;39616:21;:48::i;:::-;39545:637;;;-1:-1:-1;;;;;39691:19:0;;;;;;:11;:19;;;;;;;;39690:20;:46;;;;-1:-1:-1;;;;;;39714:22:0;;;;;;:11;:22;;;;;;;;39690:46;39686:496;;;39757:46;39777:6;39785:9;39796:6;39757:19;:46::i;39686:496::-;-1:-1:-1;;;;;39830:19:0;;;;;;:11;:19;;;;;;;;39829:20;:47;;;;-1:-1:-1;;;;;;39854:22:0;;;;;;:11;:22;;;;;;;;39853:23;39829:47;39825:357;;;39897:44;39915:6;39923:9;39934:6;39897:17;:44::i;39825:357::-;-1:-1:-1;;;;;39967:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;39990:22:0;;;;;;:11;:22;;;;;;;;39967:45;39963:219;;;40033:48;40055:6;40063:9;40074:6;40033:21;:48::i;39963:219::-;40122:44;40140:6;40148:9;40159:6;40122:17;:44::i;:::-;40202:7;40198:45;;40228:15;:13;:15::i;:::-;39372:883;;;;:::o;44857:601::-;44958:7;;44998;;44907;;;;;45026:305;45050:9;:16;45046:20;;45026:305;;;45120:7;45096;:21;45104:9;45114:1;45104:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45104:12:0;45096:21;;;;;;;;;;;;;:31;;:66;;;45155:7;45131;:21;45139:9;45149:1;45139:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45139:12:0;45131:21;;;;;;;;;;;;;:31;45096:66;45092:97;;;45172:7;;45181;;45164:25;;;;;;;;;45092:97;45218:34;45230:7;:21;45238:9;45248:1;45238:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45238:12:0;45230:21;;;;;;;;;;;;;45218:7;;:11;:34::i;:::-;45208:44;;45281:34;45293:7;:21;45301:9;45311:1;45301:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45301:12:0;45293:21;;;;;;;;;;;;;45281:7;;:11;:34::i;:::-;45271:44;-1:-1:-1;45068:3:0;;45026:305;;;-1:-1:-1;45371:7:0;;45359;;:20;;:11;:20::i;:::-;45349:7;:30;45345:61;;;45389:7;;45398;;45381:25;;;;;;;;45345:61;45429:7;;-1:-1:-1;45438:7:0;-1:-1:-1;44857:601:0;;;:::o;7575:298::-;7661:7;7700:12;7693:5;7685:28;;;;-1:-1:-1;;;7685:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7728:9;7744:1;7740;:5;;;;;;;7575:298;-1:-1:-1;;;;;7575:298:0:o;43901:391::-;43998:7;;;;44055:28;44079:3;44055:19;:7;44067:6;44055:11;:19::i;:28::-;44040:43;-1:-1:-1;44098:17:0;44118:33;44147:3;44118:24;:7;44130:11;44118;:24::i;:33::-;44098:53;-1:-1:-1;44166:23:0;44192:32;44098:53;44192:17;:7;44204:4;44192:11;:17::i;:::-;:21;;:32::i;:::-;44166:58;44264:4;;-1:-1:-1;44270:9:0;;-1:-1:-1;43901:391:0;;-1:-1:-1;;;;;43901:391:0:o;44304:354::-;44399:7;;;;44459:24;:7;44471:11;44459;:24::i;:::-;44441:42;-1:-1:-1;44498:12:0;44513:21;:4;44522:11;44513:8;:21::i;:::-;44498:36;-1:-1:-1;44549:23:0;44575:17;:7;44498:36;44575:11;:17::i;:::-;44615:7;;;;-1:-1:-1;44641:4:0;;-1:-1:-1;44304:354:0;;-1:-1:-1;;;;;44304:354:0:o;5870:511::-;5928:7;6189:6;6185:55;;-1:-1:-1;6223:1:0;6216:8;;6185:55;6268:5;;;6272:1;6268;:5;:1;6296:5;;;;;:10;6288:56;;;;-1:-1:-1;;;6288:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34797:278;34847:7;;:12;:33;;;;-1:-1:-1;34863:12:0;;:17;34847:33;34844:45;;;34882:7;;34844:45;34935:7;;;34917:15;:25;34980:12;;;34957:20;:35;-1:-1:-1;35021:11:0;;;;35047:16;34797:278;:::o;41439:596::-;41546:15;41563:23;41588:12;41602:23;41627:12;41641:17;41662:19;41673:7;41662:10;:19::i;:::-;-1:-1:-1;;;;;41714:15:0;;;;;;:7;:15;;;;;;41545:136;;-1:-1:-1;41545:136:0;;-1:-1:-1;41545:136:0;;-1:-1:-1;41545:136:0;-1:-1:-1;41545:136:0;-1:-1:-1;41545:136:0;-1:-1:-1;41714:28:0;;41734:7;41714:19;:28::i;:::-;-1:-1:-1;;;;;41696:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41775:7;:15;;;;:28;;41795:7;41775:19;:28::i;:::-;-1:-1:-1;;;;;41757:15:0;;;;;;;:7;:15;;;;;;:46;;;;41839:18;;;;;;;:39;;41862:15;41839:22;:39::i;:::-;-1:-1:-1;;;;;41818:18:0;;;;;;:7;:18;;;;;:60;41894:24;41908:9;41894:13;:24::i;:::-;41936:23;41948:4;41954;41936:11;:23::i;:::-;41996:9;-1:-1:-1;;;;;41979:44:0;41988:6;-1:-1:-1;;;;;41979:44:0;;42007:15;41979:44;;;;;;;;;;;;;;;;;;41439:596;;;;;;;;;:::o;40808:619::-;40913:15;40930:23;40955:12;40969:23;40994:12;41008:17;41029:19;41040:7;41029:10;:19::i;:::-;-1:-1:-1;;;;;41081:15:0;;;;;;:7;:15;;;;;;40912:136;;-1:-1:-1;40912:136:0;;-1:-1:-1;40912:136:0;;-1:-1:-1;40912:136:0;-1:-1:-1;40912:136:0;-1:-1:-1;40912:136:0;-1:-1:-1;41081:28:0;;40912:136;41081:19;:28::i;:::-;-1:-1:-1;;;;;41063:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41145:18;;;;;:7;:18;;;;;:39;;41168:15;41145:22;:39::i;:::-;-1:-1:-1;;;;;41124:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41220:7;:18;;;;:39;;41243:15;41220:22;:39::i;40267:529::-;40370:15;40387:23;40412:12;40426:23;40451:12;40465:17;40486:19;40497:7;40486:10;:19::i;:::-;-1:-1:-1;;;;;40538:15:0;;;;;;:7;:15;;;;;;40369:136;;-1:-1:-1;40369:136:0;;-1:-1:-1;40369:136:0;;-1:-1:-1;40369:136:0;-1:-1:-1;40369:136:0;-1:-1:-1;40369:136:0;-1:-1:-1;40538:28:0;;40369:136;40538:19;:28::i;42047:679::-;42154:15;42171:23;42196:12;42210:23;42235:12;42249:17;42270:19;42281:7;42270:10;:19::i;:::-;-1:-1:-1;;;;;42322:15:0;;;;;;:7;:15;;;;;;42153:136;;-1:-1:-1;42153:136:0;;-1:-1:-1;42153:136:0;;-1:-1:-1;42153:136:0;-1:-1:-1;42153:136:0;-1:-1:-1;42153:136:0;-1:-1:-1;42322:28:0;;42342:7;42322:19;:28::i;:::-;-1:-1:-1;;;;;42304:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42383:7;:15;;;;:28;;42403:7;42383:19;:28::i;35091:135::-;35149:15;;35139:7;:25;35194:20;;35179:12;:35;35091:135::o;42738:373::-;42803:19;42826:10;:8;:10::i;:::-;42803:33;-1:-1:-1;42851:17:0;42871:26;:9;42803:33;42871:13;:26::i;:::-;42953:4;42937:22;;;;:7;:22;;;;;;42851:46;;-1:-1:-1;42937:37:0;;42851:46;42937:26;:37::i;:::-;42928:4;42912:22;;;;:7;:22;;;;;;;;:62;;;;42992:11;:26;;;;;;42989:110;;;43078:4;43062:22;;;;:7;:22;;;;;;:37;;43089:9;43062:26;:37::i;:::-;43053:4;43037:22;;;;:7;:22;;;;;:62;42738:373;;;:::o;43123:159::-;43205:7;;:17;;43217:4;43205:11;:17::i;:::-;43195:7;:27;43250:10;;:20;;43265:4;43250:14;:20::i;:::-;43237:10;:33;-1:-1:-1;;43123:159:0:o

Swarm Source

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