ETH Price: $3,169.14 (-8.11%)
Gas: 2 Gwei

Token

Baby Floki Inu (BFloki)
 

Overview

Max Total Supply

10,000,000,000,000 BFloki

Holders

143

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xdedcatbounce.eth
Balance
34,422,519,784.84552649375221711 BFloki

Value
$0.00
0x4de910a6ca7cec4fe0db9edc24c3a66d6558ea3f
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:
BFloki

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity ^0.6.12;

// SPDX-License-Identifier: Unlicensed
// Name: Baby Floki Inu
// Symbol: BFloki
// Decimals: 18
// TAX: 10% In Total

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

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

        mapping (address => bool) private _isExcludedFromFee;
    
        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 10000000000000 * 10**18;  //1,000,000,000,000
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'Baby Floki Inu';
        string private _symbol = 'BFloki';
        uint8 private _decimals = 18;
        
        // Tax and charity fees will start at 0 so we don't have a big impact when deploying to Uniswap
        // Charity wallet address is null but the method to set the address is exposed
        uint256 private _taxFee = 5; 
        uint256 private _charityFee = 5;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousCharityFee = _charityFee;

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

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 public _maxTxAmount = _tTotal; //no max tx limit
        uint256 private _numOfTokensToExchangeForCharity = 5000000 * 10**18;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        function removeAllFee() private {
            if(_taxFee == 0 && _charityFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousCharityFee = _charityFee;
            
            _taxFee = 0;
            _charityFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _charityFee = _previousCharityFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }
        
            function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
        }

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

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

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

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular charity event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForCharity;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the charity wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToCharity(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 charity 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 sendETHToCharity(uint256 amount) private {
            _charityWalletAddress.transfer(amount.div(2));
            _marketingWalletAddress.transfer(amount.div(2));
        }
        
        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToCharity(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 tCharity) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeCharity(tCharity); 
            _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 tCharity) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
            _takeCharity(tCharity);           
            _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 tCharity) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeCharity(tCharity);   
            _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 tCharity) = _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);   
            _takeCharity(tCharity);         
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeCharity(uint256 tCharity) private {
            uint256 currentRate =  _getRate();
            uint256 rCharity = tCharity.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rCharity);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tCharity);
        }

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

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

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

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

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

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

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

        function _setCharityFee(uint256 charityFee) external onlyOwner() {
            require(charityFee >= 1 && charityFee <= 11, 'charityFee should be in 1 - 11');
            _charityFee = charityFee;
        }
        
        function _setCharityWallet(address payable charityWalletAddress) external onlyOwner() {
            _charityWalletAddress = charityWalletAddress;
        }
        
        
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_charityWalletAddress","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":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee","type":"uint256"}],"name":"_setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

6c7e37be2022c0914b2680000000600b556c4731a537a12d1f2952ffffffff19600c55610100604052600e60c08190526d4261627920466c6f6b6920496e7560901b60e09081526200005391908162000e21565b506040805180820190915260068082526542466c6f6b6960d01b60209092019182526200008391600f9162000e21565b506010805460ff19166012908117909155600560118190559081905560138190556014556016805461ffff60a01b1916600160a81b179055600b546017556a0422ca8b0a00a425000000601855348015620000dd57600080fd5b5060405162003f6c38038062003f6c833981810160405260408110156200010357600080fd5b50805160209091015160006200011862000e0e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601580546001600160a01b038085166001600160a01b0319928316179092556016805492841692909116919091179055600c5460036000620001a362000e0e565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021a57600080fd5b505afa1580156200022f573d6000803e3d6000fd5b505050506040513d60208110156200024657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029757600080fd5b505afa158015620002ac573d6000803e3d6000fd5b505050506040513d6020811015620002c357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031657600080fd5b505af11580156200032b573d6000803e3d6000fd5b505050506040513d60208110156200034257600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036f62000e12565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006835290812080548416600190811790915560099092527f1f039d7054c60544da001ada2885c2098966bf59108af37aa0047e53180c227d8054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673e031b36b53e53a292a20c5f08fd1658cddf74fce179091557ff4b93d2837107f43e5b3215c8cfd55bc8f0ec1fef4e888737a6685e72730fd0e80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e21280548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd74310044b3dfbf8c3bb19b279a8662cf43f021fe4e68d5726f62fc6b584af7980548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557f72b3a1de74eb1a0841083ea090998865c5194ff1fc7be394ec133e28cacbdd9d8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f3ee2bfab112ce489483443731da982ac406a17d09137224e74d494a6037142ad805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fb7baecc9aa863a1182bccd59d3b8aaee484658aee9400a94283dad2dbafd9d1d80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fac880b0698f6a24b725a531b87fe801fab0b12d27bd162739065e7572f5404d9805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f6ef6d708eb37b8bda6da62f8191bcb1b8f30d7bf24789d111afaa48e2abcfa788054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fd73d5f8f968995abf730ad6b9b8e37da64ea9c3ba0bbce58d3bab4147a285736805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f78985dca206f219a6b3560fdc7a11aef1d23931d984660a7cdae9bbf47c0d96580548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f0cfa4edf9477e1d54a3587993034fa6573860afb2e4b0a115c4c484a9a330a428054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fd6b7d69e6a823375dcf433a269665ea33193c6767d33bd6b4df5811fa6e1c82c80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f13992d03d159acc9a62957c120a113863deff202e489fa07518ad14e9a3c180780548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f9531ce70ac5d2bbefb64276f65d45e190dc5cb49d659eae0ae43c2307446dc538054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557ff5ad3fffe9a691dce1e4a825d1e8152a24d541272410b219bc6d31e16fa5f9be8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557f5888754549269951f658dc38abd8b5f599e7f578f09c1c082ddee052681ef5aa8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f69b77005f9173f1fd98e76d50566ec8d29499be8f194d19d204baecdcc85d76280548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f4f79f1067e9d05cffa01ea21e2293206a7d7e21e1204a7a91ce5038960641699805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557ff5949e903094d0c003182832401f2f1e7e902a7afa53a9b4fc91227edcb81c2c8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557ff3e918d4ba10715278cdbb619ad598c0463cbe5d7f5f568a2fb54f232047d9a9805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557fab5495752a9187414227aebaa8b39a4bffdb32802987cba6aff3f20498292a7180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557ff248d283b19d8012b3a5799c17555d9562b55bb7f8a9573294b68b31e40bc2e08054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f63fa2d6ca420f9a726a126cd4ecb6c1cc9a862c11b8b23634e14766ea0a5830c80548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f942ebcb2565846ab429e313119fc37882c100e43cc02a57b5525c115ad4f72998054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f5af94c70cd57260eec3231b2f06ace7b65cdeb3d90a0722d811f34a9c53f613480548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f2418a7599ba98f17273e05153250af4e64021166f87000ebb8faf0b96cdbcc54805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f11c8caefcbc9afecd5b2153811f415fe306a1f3884466a0ddf30ba3939464b1e80548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557ff39ac1e13c447fb096f87169ad2be19cda4b1a700a885a7d267b0c86db6dd64e80549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000db862000e0e565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350505062000ebd565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000e6457805160ff191683800117855562000e94565b8280016001018555821562000e94579182015b8281111562000e9457825182559160200191906001019062000e77565b5062000ea292915062000ea6565b5090565b5b8082111562000ea2576000815560010162000ea7565b60805160601c60a05160601c61307162000efb60003980610ed352806120cd525080610a6652806123df528061249752806124be52506130716000f3fe6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f000000000000000000000000000000000000000000000000000000000000000084611d71565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208dc8b66818e813a8acba5f46baad0dbcc76335e97a92909ed8e6508b0708c26c64736f6c634300060c0033000000000000000000000000fb82609eb86c20d5fb69c9b9cdf13175a9c833c4000000000000000000000000c5036049ac4c791e618be54e881ff90d87fac4d8

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f00000000000000000000000058ab22359f2eded1e912f996e00aedd218ade99c81565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f00000000000000000000000058ab22359f2eded1e912f996e00aedd218ade99c6001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208dc8b66818e813a8acba5f46baad0dbcc76335e97a92909ed8e6508b0708c26c64736f6c634300060c0033

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

000000000000000000000000fb82609eb86c20d5fb69c9b9cdf13175a9c833c4000000000000000000000000c5036049ac4c791e618be54e881ff90d87fac4d8

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0xFB82609eb86C20D5Fb69C9B9CDF13175a9C833C4
Arg [1] : marketingWalletAddress (address): 0xC5036049aC4C791E618BE54E881Ff90D87FAC4D8

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fb82609eb86c20d5fb69c9b9cdf13175a9c833c4
Arg [1] : 000000000000000000000000c5036049ac4c791e618be54e881ff90d87fac4d8


Deployed Bytecode Sourcemap

26604:27088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35983:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36987:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36987:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38482:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28088:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28088:51:0;;;;;;;;;;;;;;36296:103;;;;;;;;;;;;;:::i;37172:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37172:329:0;;;;;;;;;;;;;;;;;:::i;39490:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39490:269:0;;:::i;36193:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37513:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37513:230:0;;;;;;;;:::i;38589:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38589:405:0;;:::i;:::-;;28021:46;;;;;;;;;;;;;:::i;40800:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40800:372:0;-1:-1:-1;;;;;40800:372:0;;:::i;39006:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39006:472:0;;;;;;;;;:::i;28150:38::-;;;;;;;;;;;;;:::i;46151:168::-;;;;;;;;;;;;;:::i;42179:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42179:131:0;-1:-1:-1;;;;;42179:131:0;;:::i;53086:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53086:181:0;;:::i;28231:30::-;;;;;;;;;;;;;:::i;36411:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36411:210:0;-1:-1:-1;;;;;36411:210:0;;:::i;16439:160::-;;;;;;;;;;;;;:::i;27966:44::-;;;;;;;;;;;;;:::i;28274:37::-;;;;;;;;;;;;;:::i;41188:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41188:540:0;-1:-1:-1;;;;;41188:540:0;;:::i;15737:87::-;;;;;;;;;;;;;:::i;36086:95::-;;;;;;;;;;;;;:::i;53279:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53279:209:0;;:::i;37755:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37755:281:0;;;;;;;;:::i;17546:313::-;;;;;;;;;;;;;:::i;36633:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36633:179:0;;;;;;;;:::i;38325:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38325:145:0;;;;;;;;;;:::i;17043:97::-;;;;;;;;;;;;;:::i;38048:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38048:118:0;-1:-1:-1;;;;;38048:118:0;;:::i;53508:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53508:157:0;-1:-1:-1;;;;;53508:157:0;;:::i;42334:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42334:166:0;;:::i;17224:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17224:234:0;;:::i;36824:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36824:151:0;;;;;;;;;;:::i;46522:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46522:106:0;;;;:::i;38186:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38186:127:0;-1:-1:-1;;;;;38186:127:0;;:::i;39771:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39771:475:0;-1:-1:-1;;;;;39771:475:0;;:::i;16771:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16771:260:0;-1:-1:-1;;;;;16771:260:0;;:::i;46339:171::-;;;;;;;;;;;;;:::i;52948:118::-;;;;;;;;;;;;;:::i;40258:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40258:522:0;-1:-1:-1;;;;;40258:522:0;;:::i;35983:91::-;36057:5;36050:12;;;;;;;;-1:-1:-1;;36050:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36020:13;;36050:12;;36057:5;;36050:12;;36057:5;36050:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35983:91;:::o;36987:173::-;37062:4;37083:39;37092:12;:10;:12::i;:::-;37106:7;37115:6;37083:8;:39::i;:::-;-1:-1:-1;37144:4:0;36987:173;;;;;:::o;38482:95::-;38555:10;;38482:95;:::o;28088:51::-;;;:::o;36296:103::-;36380:7;;36296:103;:::o;37172:329::-;37270:4;37291:36;37301:6;37309:9;37320:6;37291:9;:36::i;:::-;37342:121;37351:6;37359:12;:10;:12::i;:::-;37373:89;37411:6;37373:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37373:19:0;;;;;;:11;:19;;;;;;37393:12;:10;:12::i;:::-;-1:-1:-1;;;;;37373:33:0;;;;;;;;;;;;-1:-1:-1;37373:33:0;;;:89;:37;:89::i;:::-;37342:8;:121::i;:::-;-1:-1:-1;37485:4:0;37172:329;;;;;:::o;39490:269::-;39556:7;39599;;39588;:18;;39580:73;;;;-1:-1:-1;;;39580:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39668:19;39691:10;:8;:10::i;:::-;39668:33;-1:-1:-1;39723:24:0;:7;39668:33;39723:11;:24::i;:::-;39716:31;;;39490:269;;;;:::o;36193:91::-;36263:9;;;;36193:91;:::o;37513:230::-;37601:4;37622:83;37631:12;:10;:12::i;:::-;37645:7;37654:50;37693:10;37654:11;:25;37666:12;:10;:12::i;:::-;-1:-1:-1;;;;;37654:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37654:25:0;;;:34;;;;;;;;;;;:38;:50::i;38589:405::-;38645:14;38662:12;:10;:12::i;:::-;-1:-1:-1;;;;;38698:19:0;;;;;;:11;:19;;;;;;38645:29;;-1:-1:-1;38698:19:0;;38697:20;38689:77;;;;-1:-1:-1;;;38689:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38782:15;38806:19;38817:7;38806:10;:19::i;:::-;-1:-1:-1;;;;;;;;;38858:15:0;;;;;;:7;:15;;;;;;38781:44;;-1:-1:-1;38858:28:0;;:15;-1:-1:-1;38781:44:0;38858:19;:28::i;:::-;-1:-1:-1;;;;;38840:15:0;;;;;;:7;:15;;;;;:46;38911:7;;:20;;38923:7;38911:11;:20::i;:::-;38901:7;:30;38959:10;;:23;;38974:7;38959:14;:23::i;:::-;38946:10;:36;-1:-1:-1;;;38589:405:0:o;28021:46::-;;;-1:-1:-1;;;;;28021:46:0;;:::o;40800:372::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;40899:42:::1;-1:-1:-1::0;;;;;40888:53:0;::::1;;;40880:102;;;;-1:-1:-1::0;;;40880:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41006:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41005:27;40997:70;;;::::0;;-1:-1:-1;;;40997:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41082:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;41082:33:0::1;41111:4;41082:33:::0;;::::1;::::0;;;41130:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;41130:30:0::1;::::0;;::::1;::::0;;40800:372::o;39006:472::-;39096:7;39139;;39128;:18;;39120:62;;;;;-1:-1:-1;;;39120:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39202:17;39197:270;;39241:15;39265:19;39276:7;39265:10;:19::i;:::-;-1:-1:-1;39240:44:0;;-1:-1:-1;39303:14:0;;-1:-1:-1;;;;;39303:14:0;39197:270;39360:23;39391:19;39402:7;39391:10;:19::i;:::-;-1:-1:-1;39358:52:0;;-1:-1:-1;39429:22:0;;-1:-1:-1;;;;;39429:22:0;28150:38;;;:::o;46151:168::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;46209:23:::1;46235:24;46253:4;46235:9;:24::i;:::-;46209:50;;46274:33;46291:15;46274:16;:33::i;:::-;16049:1;46151:168::o:0;42179:131::-;-1:-1:-1;;;;;42271:27:0;42243:4;42271:27;;;:18;:27;;;;;;;;;42179:131::o;53086:181::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;53176:1:::1;53166:6;:11;;:27;;;;;53191:2;53181:6;:12;;53166:27;53158:66;;;::::0;;-1:-1:-1;;;53158:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;53239:7;:16:::0;53086:181::o;28231:30::-;;;-1:-1:-1;;;28231:30:0;;;;;:::o;36411:210::-;-1:-1:-1;;;;;36505:20:0;;36477:7;36505:20;;;:11;:20;;;;;;;;36501:49;;;-1:-1:-1;;;;;;36534:16:0;;;;;;:7;:16;;;;;;36527:23;;36501:49;-1:-1:-1;;;;;36592:16:0;;;;;;:7;:16;;;;;;36572:37;;:19;:37::i;16439:160::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;16550:1:::1;16534:6:::0;;16513:40:::1;::::0;-1:-1:-1;;;;;16534:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16513:40:0;16550:1;;16513:40:::1;16585:1;16568:19:::0;;-1:-1:-1;;;;;;16568:19:0::1;::::0;;16439:160::o;27966:44::-;;;-1:-1:-1;;;;;27966:44:0;;:::o;28274:37::-;;;;:::o;41188:540::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41281:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41273:65;;;::::0;;-1:-1:-1;;;41273:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41358:9;41353:364;41377:16;:23:::0;41373:27;::::1;41353:364;;;41453:7;-1:-1:-1::0;;;;;41430:30:0::1;:16;41447:1;41430:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41430:19:0::1;:30;41426:276;;;41507:16;41524:23:::0;;-1:-1:-1;;41524:27:0;;;41507:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41485:16:::1;:19:::0;;-1:-1:-1;;;;;41507:45:0;;::::1;::::0;41502:1;;41485:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;41485:67:0::1;-1:-1:-1::0;;;;;41485:67:0;;::::1;;::::0;;41575:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;41575:34:0::1;::::0;;41632:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;41632:22:0;;;;;-1:-1:-1;;;;;;41632:22:0::1;::::0;;;;;41677:5:::1;;41426:276;41402:3;;41353:364;;;;41188:540:::0;:::o;15737:87::-;15775:7;15806:6;-1:-1:-1;;;;;15806:6:0;15737:87;:::o;36086:95::-;36162:7;36155:14;;;;;;;;-1:-1:-1;;36155:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36125:13;;36155:14;;36162:7;;36155:14;;36162:7;36155:14;;;;;;;;;;;;;;;;;;;;;;;;53279:209;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;53381:1:::1;53367:10;:15;;:35;;;;;53400:2;53386:10;:16;;53367:35;53359:78;;;::::0;;-1:-1:-1;;;53359:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;53452:11;:24:::0;53279:209::o;37755:281::-;37848:4;37869:129;37878:12;:10;:12::i;:::-;37892:7;37901:96;37940:15;37901:96;;;;;;;;;;;;;;;;;:11;:25;37913:12;:10;:12::i;:::-;-1:-1:-1;;;;;37901:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37901:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17546:313::-;17602:14;;-1:-1:-1;;;;;17602:14:0;17620:10;17602:28;17594:76;;;;-1:-1:-1;;;17594:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17699:9;;17693:3;:15;17685:60;;;;;-1:-1:-1;;;17685:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17794:14;;;17786:6;;17765:44;;-1:-1:-1;;;;;17794:14:0;;;;17786:6;;;;-1:-1:-1;;;;;;;;;;;17765:44:0;;17833:14;;;17824:23;;-1:-1:-1;;;;;;17824:23:0;-1:-1:-1;;;;;17833:14:0;;;17824:23;;;;;;17546:313::o;36633:179::-;36711:4;36732:42;36742:12;:10;:12::i;:::-;36756:9;36767:6;36732:9;:42::i;38325:145::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38420:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;38420:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38325:145::o;17043:97::-;17119:9;;17043:97;:::o;38048:118::-;-1:-1:-1;;;;;38134:20:0;38106:4;38134:20;;;:11;:20;;;;;;;;;38048:118::o;53508:157::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;53609:21:::1;:44:::0;;-1:-1:-1;;;;;;53609:44:0::1;-1:-1:-1::0;;;;;53609:44:0;;;::::1;::::0;;;::::1;::::0;;53508:157::o;42334:166::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;42428:60:::1;42472:5;42428:25;42440:12;42428:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;42413:12;:75:::0;-1:-1:-1;42334:166:0:o;17224:234::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;17309:6:::1;::::0;;;17292:23;;-1:-1:-1;;;;;;17292:23:0;;::::1;-1:-1:-1::0;;;;;17309:6:0;::::1;17292:23;::::0;;;17330:19:::1;::::0;;17376:3:::1;:10:::0;::::1;17364:9;:22:::0;17406:40:::1;::::0;17309:6;;-1:-1:-1;;;;;;;;;;;17406:40:0;17309:6;;17406:40:::1;17224:234:::0;:::o;36824:151::-;-1:-1:-1;;;;;36936:18:0;;;36905:7;36936:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36824:151::o;46522:106::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;46595:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;46595:21:0::1;-1:-1:-1::0;;;;46595:21:0;;::::1;::::0;;;::::1;::::0;;46522:106::o;38186:127::-;-1:-1:-1;;;;;38275:26:0;38247:4;38275:26;;;:17;:26;;;;;;;;;38186:127::o;39771:475::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;39867:42:::1;-1:-1:-1::0;;;;;39856:53:0;::::1;;;39848:100;;;;-1:-1:-1::0;;;39848:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;39972:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;39971:21;39963:61;;;::::0;;-1:-1:-1;;;39963:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40042:16:0;::::1;40061:1;40042:16:::0;;;:7:::1;:16;::::0;;;;;:20;40039:116:::1;;-1:-1:-1::0;;;;;40122:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40102:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40083:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40039:116:::1;-1:-1:-1::0;;;;;40169:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40169:27:0::1;40192:4;40169:27:::0;;::::1;::::0;;;40211:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40211:23:0::1;::::0;;::::1;::::0;;39771:475::o;16771:260::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16864:22:0;::::1;16856:73;;;;-1:-1:-1::0;;;16856:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16970:6;::::0;;16949:38:::1;::::0;-1:-1:-1;;;;;16949:38:0;;::::1;::::0;16970:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16949:38:0;::::1;17002:6;:17:::0;;-1:-1:-1;;;;;;17002:17:0::1;-1:-1:-1::0;;;;;17002:17:0;;;::::1;::::0;;;::::1;::::0;;16771:260::o;46339:171::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;46426:21:::1;46462:36;46426:21:::0;46462:16:::1;:36::i;52948:118::-:0;53033:21;52948:118;:::o;40258:522::-;15985:12;:10;:12::i;:::-;15975:6;;-1:-1:-1;;;;;15975:6:0;;;:22;;;15967:67;;;;;-1:-1:-1;;;15967:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15967:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40343:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40335:60;;;::::0;;-1:-1:-1;;;40335:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40415:9;40410:359;40434:9;:16:::0;40430:20;::::1;40410:359;;;40496:7;-1:-1:-1::0;;;;;40480:23:0::1;:9;40490:1;40480:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40480:12:0::1;:23;40476:278;;;40543:9;40553:16:::0;;-1:-1:-1;;40553:20:0;;;40543:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40528:9:::1;:12:::0;;-1:-1:-1;;;;;40543:31:0;;::::1;::::0;40538:1;;40528:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40528:46:0::1;-1:-1:-1::0;;;;;40528:46:0;;::::1;;::::0;;40597:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40640:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40640:28:0::1;::::0;;40691:9:::1;:15:::0;;;::::1;;;40476:278;40452:3;;40410:359;;194:114:::0;286:10;194:114;:::o;42512:357::-;-1:-1:-1;;;;;42609:19:0;;42601:68;;;;-1:-1:-1;;;42601:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42692:21:0;;42684:68;;;;-1:-1:-1;;;42684:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42769:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42825:32;;;;;;;;;;;;;;;;;42512:357;;;:::o;42881:2228::-;-1:-1:-1;;;;;42982:20:0;;42974:70;;;;-1:-1:-1;;;42974:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43067:23:0;;43059:71;;;;-1:-1:-1;;;43059:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43162:1;43153:6;:10;43145:64;;;;-1:-1:-1;;;43145:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43233:28:0;;;;;;:17;:28;;;;;;;;43232:29;43224:65;;;;;-1:-1:-1;;;43224:65:0;;;;;;;;;;;;-1:-1:-1;;;43224:65:0;;;;;;;;;;;;;;;43331:10;43313:29;;;;:17;:29;;;;;;;;43312:30;43304:66;;;;;-1:-1:-1;;;43304:66:0;;;;;;;;;;;;-1:-1:-1;;;43304:66:0;;;;;;;;;;;;;;;43412:7;:5;:7::i;:::-;-1:-1:-1;;;;;43402:17:0;:6;-1:-1:-1;;;;;43402:17:0;;;:41;;;;;43436:7;:5;:7::i;:::-;-1:-1:-1;;;;;43423:20:0;:9;-1:-1:-1;;;;;43423:20:0;;;43402:41;43399:138;;;43480:12;;43470:6;:22;;43462:75;;;;-1:-1:-1;;;43462:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43823:28;43854:24;43872:4;43854:9;:24::i;:::-;43823:55;;43934:12;;43910:20;:36;43907:124;;-1:-1:-1;44003:12:0;;43907:124;44110:32;;44162:6;;44086:56;;;;;-1:-1:-1;;;44162:6:0;;;;44161:7;:22;;;;-1:-1:-1;44172:11:0;;-1:-1:-1;;;44172:11:0;;;;44161:22;:45;;;;;44187:19;44161:45;:72;;;;;44220:13;-1:-1:-1;;;;;44210:23:0;:6;-1:-1:-1;;;;;44210:23:0;;;44161:72;44157:458;;;44347:38;44364:20;44347:16;:38::i;:::-;44451:21;44494:22;;44491:109;;44541:39;44558:21;44541:16;:39::i;:::-;44157:458;;-1:-1:-1;;;;;44847:26:0;;44708:12;44847:26;;;:18;:26;;;;;;44723:4;;44847:26;;;:59;;-1:-1:-1;;;;;;44877:29:0;;;;;;:18;:29;;;;;;;;44847:59;44844:113;;;-1:-1:-1;44936:5:0;44844:113;45050:47;45065:6;45072:9;45082:6;45089:7;45050:14;:47::i;:::-;42881:2228;;;;;;:::o;4721:208::-;4807:7;4847:12;4839:6;;;;4831:29;;;;-1:-1:-1;;;4831:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4887:5:0;;;4721:208::o;51920:175::-;51961:7;51986:15;52003;52022:19;:17;:19::i;:::-;51985:56;;-1:-1:-1;51985:56:0;-1:-1:-1;52063:20:0;51985:56;;52063:11;:20::i;:::-;52056:27;;;;51920:175;:::o;6251:140::-;6309:7;6340:39;6344:1;6347;6340:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6333:46;6251:140;-1:-1:-1;;;6251:140:0:o;3724:197::-;3782:7;3818:5;;;3846:6;;;;3838:46;;;;;-1:-1:-1;;;3838:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;50654:490;50713:7;50722;50731;50740;50749;50758;50783:23;50808:12;50822:16;50842:42;50854:7;50863;;50872:11;;50842;:42::i;:::-;50782:102;;;;;;50899:19;50922:10;:8;:10::i;:::-;50899:33;;50948:15;50965:23;50990:12;51006:39;51018:7;51027:4;51033:11;51006;:39::i;:::-;50947:98;;-1:-1:-1;50947:98:0;-1:-1:-1;50947:98:0;-1:-1:-1;51100:15:0;;-1:-1:-1;51117:4:0;;-1:-1:-1;51123:8:0;;-1:-1:-1;;;;;50654:490:0;;;;;;;:::o;4239:144::-;4297:7;4328:43;4332:1;4335;4328:43;;;;;;;;;;;;;;;;;:3;:43::i;45121:656::-;28579:6;:13;;-1:-1:-1;;;;28579:13:0;-1:-1:-1;;;28579:13:0;;;45290:16:::1;::::0;;45304:1:::1;45290:16:::0;;;45266:21:::1;45290:16:::0;;::::1;::::0;;45266:21;45290:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;45290:16:0::1;45266:40;;45339:4;45321;45326:1;45321:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;45321:23:0::1;;;-1:-1:-1::0;;;;;45321:23:0::1;;;::::0;::::1;45369:15;-1:-1:-1::0;;;;;45369:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;45369:22:0;45359:7;;:4;;45364:1:::1;::::0;45359:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;45359:32:0::1;;;-1:-1:-1::0;;;;;45359:32:0::1;;;::::0;::::1;45408:62;45425:4;45440:15;45458:11;45408:8;:62::i;:::-;45517:15;-1:-1:-1::0;;;;;45517:66:0::1;;45602:11;45632:1;45680:4;45711;45735:15;45517:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;45517:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28623:6:0;:14;;-1:-1:-1;;;;28623:14:0;;;-1:-1:-1;;;;45121:656:0:o;5223:511::-;5281:7;5542:6;5538:55;;-1:-1:-1;5576:1:0;5569:8;;5538:55;5621:5;;;5625:1;5621;:5;:1;5649:5;;;;;:10;5641:56;;;;-1:-1:-1;;;5641:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45797:184;45862:21;;-1:-1:-1;;;;;45862:21:0;:45;45893:13;:6;45904:1;45893:10;:13::i;:::-;45862:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45922:23:0;;-1:-1:-1;;;;;45922:23:0;:47;45955:13;:6;45966:1;45955:10;:13::i;:::-;45922:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46648:883;46764:7;46760:44;;46790:14;:12;:14::i;:::-;-1:-1:-1;;;;;46825:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;46849:22:0;;;;;;:11;:22;;;;;;;;46848:23;46825:46;46821:637;;;46892:48;46914:6;46922:9;46933:6;46892:21;:48::i;:::-;46821:637;;;-1:-1:-1;;;;;46967:19:0;;;;;;:11;:19;;;;;;;;46966:20;:46;;;;-1:-1:-1;;;;;;46990:22:0;;;;;;:11;:22;;;;;;;;46966:46;46962:496;;;47033:46;47053:6;47061:9;47072:6;47033:19;:46::i;46962:496::-;-1:-1:-1;;;;;47106:19:0;;;;;;:11;:19;;;;;;;;47105:20;:47;;;;-1:-1:-1;;;;;;47130:22:0;;;;;;:11;:22;;;;;;;;47129:23;47105:47;47101:357;;;47173:44;47191:6;47199:9;47210:6;47173:17;:44::i;47101:357::-;-1:-1:-1;;;;;47243:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47266:22:0;;;;;;:11;:22;;;;;;;;47243:45;47239:219;;;47309:48;47331:6;47339:9;47350:6;47309:21;:48::i;47239:219::-;47398:44;47416:6;47424:9;47435:6;47398:17;:44::i;:::-;47478:7;47474:45;;47504:15;:13;:15::i;:::-;46648:883;;;;:::o;52107:601::-;52208:7;;52248;;52157;;;;;52276:305;52300:9;:16;52296:20;;52276:305;;;52370:7;52346;:21;52354:9;52364:1;52354:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52354:12:0;52346:21;;;;;;;;;;;;;:31;;:66;;;52405:7;52381;:21;52389:9;52399:1;52389:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52389:12:0;52381:21;;;;;;;;;;;;;:31;52346:66;52342:97;;;52422:7;;52431;;52414:25;;;;;;;;;52342:97;52468:34;52480:7;:21;52488:9;52498:1;52488:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52488:12:0;52480:21;;;;;;;;;;;;;52468:7;;:11;:34::i;:::-;52458:44;;52531:34;52543:7;:21;52551:9;52561:1;52551:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52551:12:0;52543:21;;;;;;;;;;;;;52531:7;;:11;:34::i;:::-;52521:44;-1:-1:-1;52318:3:0;;52276:305;;;-1:-1:-1;52621:7:0;;52609;;:20;;:11;:20::i;:::-;52599:7;:30;52595:61;;;52639:7;;52648;;52631:25;;;;;;;;52595:61;52679:7;;-1:-1:-1;52688:7:0;-1:-1:-1;52107:601:0;;;:::o;6928:298::-;7014:7;7053:12;7046:5;7038:28;;;;-1:-1:-1;;;7038:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7081:9;7097:1;7093;:5;;;;;;;6928:298;-1:-1:-1;;;;;6928:298:0:o;51156:386::-;51252:7;;;;51309:28;51333:3;51309:19;:7;51321:6;51309:11;:19::i;:28::-;51294:43;-1:-1:-1;51352:16:0;51371:32;51399:3;51371:23;:7;51383:10;51371:11;:23::i;:32::-;51352:51;-1:-1:-1;51418:23:0;51444:31;51352:51;51444:17;:7;51456:4;51444:11;:17::i;:::-;:21;;:31::i;:::-;51418:57;51515:4;;-1:-1:-1;51521:8:0;;-1:-1:-1;51156:386:0;;-1:-1:-1;;;;;51156:386:0:o;51554:354::-;51649:7;;;;51709:24;:7;51721:11;51709;:24::i;:::-;51691:42;-1:-1:-1;51748:12:0;51763:21;:4;51772:11;51763:8;:21::i;:::-;51748:36;-1:-1:-1;51799:23:0;51825:17;:7;51748:36;51825:11;:17::i;:::-;51865:7;;;;-1:-1:-1;51891:4:0;;-1:-1:-1;51554:354:0;;-1:-1:-1;;;;;51554:354:0:o;41740:274::-;41790:7;;:12;:32;;;;-1:-1:-1;41806:11:0;;:16;41790:32;41787:44;;;41824:7;;41787:44;41877:7;;;41859:15;:25;41921:11;;;41899:19;:33;-1:-1:-1;41961:11:0;;;;41987:15;41740:274;:::o;48709:593::-;48816:15;48833:23;48858:12;48872:23;48897:12;48911:16;48931:19;48942:7;48931:10;:19::i;:::-;-1:-1:-1;;;;;48983:15:0;;;;;;:7;:15;;;;;;48815:135;;-1:-1:-1;48815:135:0;;-1:-1:-1;48815:135:0;;-1:-1:-1;48815:135:0;-1:-1:-1;48815:135:0;-1:-1:-1;48815:135:0;-1:-1:-1;48983:28:0;;49003:7;48983:19;:28::i;:::-;-1:-1:-1;;;;;48965:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49044:7;:15;;;;:28;;49064:7;49044:19;:28::i;:::-;-1:-1:-1;;;;;49026:15:0;;;;;;;:7;:15;;;;;;:46;;;;49108:18;;;;;;;:39;;49131:15;49108:22;:39::i;:::-;-1:-1:-1;;;;;49087:18:0;;;;;;:7;:18;;;;;:60;49163:22;49176:8;49163:12;:22::i;:::-;49203:23;49215:4;49221;49203:11;:23::i;:::-;49263:9;-1:-1:-1;;;;;49246:44:0;49255:6;-1:-1:-1;;;;;49246:44:0;;49274:15;49246:44;;;;;;;;;;;;;;;;;;48709:593;;;;;;;;;:::o;48081:616::-;48186:15;48203:23;48228:12;48242:23;48267:12;48281:16;48301:19;48312:7;48301:10;:19::i;:::-;-1:-1:-1;;;;;48353:15:0;;;;;;:7;:15;;;;;;48185:135;;-1:-1:-1;48185:135:0;;-1:-1:-1;48185:135:0;;-1:-1:-1;48185:135:0;-1:-1:-1;48185:135:0;-1:-1:-1;48185:135:0;-1:-1:-1;48353:28:0;;48185:135;48353:19;:28::i;:::-;-1:-1:-1;;;;;48335:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48417:18;;;;;:7;:18;;;;;:39;;48440:15;48417:22;:39::i;:::-;-1:-1:-1;;;;;48396:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48492:7;:18;;;;:39;;48515:15;48492:22;:39::i;47543:526::-;47646:15;47663:23;47688:12;47702:23;47727:12;47741:16;47761:19;47772:7;47761:10;:19::i;:::-;-1:-1:-1;;;;;47813:15:0;;;;;;:7;:15;;;;;;47645:135;;-1:-1:-1;47645:135:0;;-1:-1:-1;47645:135:0;;-1:-1:-1;47645:135:0;-1:-1:-1;47645:135:0;-1:-1:-1;47645:135:0;-1:-1:-1;47813:28:0;;47645:135;47813:19;:28::i;49314:676::-;49421:15;49438:23;49463:12;49477:23;49502:12;49516:16;49536:19;49547:7;49536:10;:19::i;:::-;-1:-1:-1;;;;;49588:15:0;;;;;;:7;:15;;;;;;49420:135;;-1:-1:-1;49420:135:0;;-1:-1:-1;49420:135:0;;-1:-1:-1;49420:135:0;-1:-1:-1;49420:135:0;-1:-1:-1;49420:135:0;-1:-1:-1;49588:28:0;;49608:7;49588:19;:28::i;:::-;-1:-1:-1;;;;;49570:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49649:7;:15;;;;:28;;49669:7;49649:19;:28::i;42030:133::-;42088:15;;42078:7;:25;42132:19;;42118:11;:33;42030:133::o;50002:367::-;50065:19;50088:10;:8;:10::i;:::-;50065:33;-1:-1:-1;50113:16:0;50132:25;:8;50065:33;50132:12;:25::i;:::-;50213:4;50197:22;;;;:7;:22;;;;;;50113:44;;-1:-1:-1;50197:36:0;;50113:44;50197:26;:36::i;:::-;50188:4;50172:22;;;;:7;:22;;;;;;;;:61;;;;50251:11;:26;;;;;;50248:109;;;50337:4;50321:22;;;;:7;:22;;;;;;:36;;50348:8;50321:26;:36::i;:::-;50312:4;50296:22;;;;:7;:22;;;;;:61;50248:109;50002:367;;;:::o;50381:159::-;50463:7;;:17;;50475:4;50463:11;:17::i;:::-;50453:7;:27;50508:10;;:20;;50523:4;50508:14;:20::i;:::-;50495:10;:33;-1:-1:-1;;50381:159:0:o

Swarm Source

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