ETH Price: $2,291.34 (-5.38%)

Token

COOKIE (COOKIE)
 

Overview

Max Total Supply

1,000,000,000,000 COOKIE

Holders

142

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
155,499.47368445 COOKIE

Value
$0.00
0xa3eaa6c5407452fb8f8b380d9a20ed22b087b98a
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:
COOKIE

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 Made by the community, revived by the community.

 https://t.me/CookieCoinEth
*/


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

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

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

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

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

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

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

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

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

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

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

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

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

            return c;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        //Locks the contract for owner for the amount of time provided
        function lock(uint256 time) public virtual onlyOwner {
            _previousOwner = _owner;
            _owner = address(0);
            _lockTime = now + time;
            emit OwnershipTransferred(_owner, address(0));
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        function initialize(address, address) external;
    }

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

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

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

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

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

    // Contract implementation
    contract COOKIE 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 = 1000000000000000000000;  //1,000,000,000,000
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'COOKIE';
        string private _symbol = 'COOKIE';
        uint8 private _decimals = 9;

        // 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 = 10;
        uint256 private _charityFee = 10;
        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 rn
        uint256 private _numOfTokensToExchangeForCharity = 5000000000000000;

        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;




            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"}]

683635c9adc5dea00000600b556818ce40f6d0219fffff19600c55610100604052600660c081905265434f4f4b494560d01b60e09081526200004591600e91906200040e565b5060408051808201909152600680825265434f4f4b494560d01b60209092019182526200007591600f916200040e565b506010805460ff19166009179055600a6011819055601281905560138190556014556016805461ffff60a01b1916600160a81b179055600b546017556611c37937e08000601855348015620000c957600080fd5b50604051620035593803806200355983398181016040526040811015620000ef57600080fd5b508051602090910151600062000104620003fb565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601580546001600160a01b038085166001600160a01b0319928316179092556016805492841692909116919091179055600c54600360006200018f620003fb565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020657600080fd5b505afa1580156200021b573d6000803e3d6000fd5b505050506040513d60208110156200023257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d6020811015620002af57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030257600080fd5b505af115801562000317573d6000803e3d6000fd5b505050506040513d60208110156200032e57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200035b620003ff565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003a5620003fb565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a3505050620004aa565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045157805160ff191683800117855562000481565b8280016001018555821562000481579182015b828111156200048157825182559160200191906001019062000464565b506200048f92915062000493565b5090565b5b808211156200048f576000815560010162000494565b60805160601c60a05160601c613071620004e860003980610ed352806120cd525080610a6652806123df528061249752806124be52506130716000f3fe6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f000000000000000000000000000000000000000000000000000000000000000084611d71565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f50d98750435423868511637bc00198c0022874f847b830d7d5e53bc8fdc88d764736f6c634300060c003300000000000000000000000030ce445f383c6ad52b11689a62bd67ea585eea0c000000000000000000000000c74967b8b6339491d0a39ded063e8eed862e9c03

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637d1db4a511610144578063d047e4b7116100b6578063e47d60601161007a578063e47d6060146108b4578063f2cc0c18146108e7578063f2fde38b1461091a578063f42938901461094d578063f815a84214610962578063f84354f11461097757610267565b8063d047e4b7146107c6578063d543dbeb146107f9578063dd46706414610823578063dd62ed3e1461084d578063e01af92c1461088857610267565b8063a457c2d711610108578063a457c2d7146106bc578063a69df4b5146106f5578063a9059cbb1461070a578063af9549e014610743578063b6c523241461077e578063cba0e9961461079357610267565b80637d1db4a5146106205780637ded4d6a146106355780638da5cb5b1461066857806395d89b411461067d578063a24a8d0f1461069257610267565b80634144d9e4116101dd5780635342acb4116101a15780635342acb4146105515780635880b873146105845780636ddd1713146105ae57806370a08231146105c3578063715018a6146105f657806376d4ab991461060b57610267565b80634144d9e4146104ad5780634303443d146104c25780634549b039146104f557806349bd5a5e1461052757806351bc3c851461053c57610267565b806323b872dd1161022457806323b872dd146103b05780632d838119146103f3578063313ce5671461041d57806339509351146104485780633bd5d1731461048157610267565b806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109aa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a40565b604080519115158252519081900360200190f35b34801561034f57600080fd5b50610358610a5e565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a64565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a88565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a8e565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610b15565b34801561042957600080fd5b50610432610b77565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061032f6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610b80565b34801561048d57600080fd5b506104ab600480360360208110156104a457600080fd5b5035610bce565b005b3480156104b957600080fd5b5061037f610ca8565b3480156104ce57600080fd5b506104ab600480360360208110156104e557600080fd5b50356001600160a01b0316610cb7565b34801561050157600080fd5b506103586004803603604081101561051857600080fd5b50803590602001351515610e3f565b34801561053357600080fd5b5061037f610ed1565b34801561054857600080fd5b506104ab610ef5565b34801561055d57600080fd5b5061032f6004803603602081101561057457600080fd5b50356001600160a01b0316610f66565b34801561059057600080fd5b506104ab600480360360208110156105a757600080fd5b5035610f84565b3480156105ba57600080fd5b5061032f611044565b3480156105cf57600080fd5b50610358600480360360208110156105e657600080fd5b50356001600160a01b0316611054565b34801561060257600080fd5b506104ab6110b6565b34801561061757600080fd5b5061037f611146565b34801561062c57600080fd5b50610358611155565b34801561064157600080fd5b506104ab6004803603602081101561065857600080fd5b50356001600160a01b031661115b565b34801561067457600080fd5b5061037f611313565b34801561068957600080fd5b50610281611322565b34801561069e57600080fd5b506104ab600480360360208110156106b557600080fd5b5035611383565b3480156106c857600080fd5b5061032f600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611443565b34801561070157600080fd5b506104ab6114ab565b34801561071657600080fd5b5061032f6004803603604081101561072d57600080fd5b506001600160a01b038135169060200135611599565b34801561074f57600080fd5b506104ab6004803603604081101561076657600080fd5b506001600160a01b03813516906020013515156115ad565b34801561078a57600080fd5b50610358611630565b34801561079f57600080fd5b5061032f600480360360208110156107b657600080fd5b50356001600160a01b0316611636565b3480156107d257600080fd5b506104ab600480360360208110156107e957600080fd5b50356001600160a01b0316611654565b34801561080557600080fd5b506104ab6004803603602081101561081c57600080fd5b50356116ce565b34801561082f57600080fd5b506104ab6004803603602081101561084657600080fd5b503561174c565b34801561085957600080fd5b506103586004803603604081101561087057600080fd5b506001600160a01b03813581169160200135166117ea565b34801561089457600080fd5b506104ab600480360360208110156108ab57600080fd5b50351515611815565b3480156108c057600080fd5b5061032f600480360360208110156108d757600080fd5b50356001600160a01b031661188b565b3480156108f357600080fd5b506104ab6004803603602081101561090a57600080fd5b50356001600160a01b03166118a9565b34801561092657600080fd5b506104ab6004803603602081101561093d57600080fd5b50356001600160a01b0316611a8b565b34801561095957600080fd5b506104ab611b71565b34801561096e57600080fd5b50610358611bd3565b34801561098357600080fd5b506104ab6004803603602081101561099a57600080fd5b50356001600160a01b0316611bd7565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b820191906000526020600020905b815481529060010190602001808311610a1957829003601f168201915b5050505050905090565b6000610a54610a4d611d6d565b8484611d71565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610a9b848484611e5d565b610b0b84610aa7611d6d565b610b0685604051806060016040528060288152602001612ea8602891396001600160a01b038a16600090815260056020526040812090610ae5611d6d565b6001600160a01b031681526020810191909152604001600020549190612181565b611d71565b5060019392505050565b6000600c54821115610b585760405162461bcd60e51b815260040180806020018281038252602a815260200180612ded602a913960400191505060405180910390fd5b6000610b62612218565b9050610b6e838261223b565b9150505b919050565b60105460ff1690565b6000610a54610b8d611d6d565b84610b068560056000610b9e611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612284565b6000610bd8611d6d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c335760405162461bcd60e51b815260040180806020018281038252602c815260200180612fc8602c913960400191505060405180910390fd5b6000610c3e836122de565b505050506001600160a01b038416600090815260036020526040902054919250610c6a9190508261233a565b6001600160a01b038316600090815260036020526040902055600c54610c90908261233a565b600c55600d54610ca09084612284565b600d55505050565b6016546001600160a01b031681565b610cbf611d6d565b6000546001600160a01b03908116911614610d0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d6b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612f396024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610dd9576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115610e98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610eb7576000610ea8846122de565b50939550610a58945050505050565b6000610ec2846122de565b50929550610a58945050505050565b7f000000000000000000000000d519043a805031e016b15d3fa9cffdd54575757c81565b610efd611d6d565b6000546001600160a01b03908116911614610f4d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6000610f5830611054565b9050610f638161237c565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f8c611d6d565b6000546001600160a01b03908116911614610fdc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60018110158015610fee5750600a8111155b61103f576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601155565b601654600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561109457506001600160a01b038116600090815260046020526040902054610b72565b6001600160a01b038216600090815260036020526040902054610a5890610b15565b6110be611d6d565b6000546001600160a01b0390811691161461110e576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ef0833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b60175481565b611163611d6d565b6000546001600160a01b039081169116146111b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611220576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561130f57816001600160a01b0316600a828154811061124457fe5b6000918252602090912001546001600160a01b0316141561130757600a8054600019810190811061127157fe5b600091825260209091200154600a80546001600160a01b03909216918390811061129757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a8054806112e057fe5b600082815260209020810160001990810180546001600160a01b031916905501905561130f565b600101611223565b5050565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a365780601f10610a0b57610100808354040283529160200191610a36565b61138b611d6d565b6000546001600160a01b039081169116146113db576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b600181101580156113ed5750600b8111155b61143e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b6000610a54611450611d6d565b84610b0685604051806060016040528060258152602001613017602591396005600061147a611d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612181565b6001546001600160a01b031633146114f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612ff46023913960400191505060405180910390fd5b600254421161154a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ef083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a546115a6611d6d565b8484611e5d565b6115b5611d6d565b6000546001600160a01b03908116911614611605576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61165c611d6d565b6000546001600160a01b039081169116146116ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6116d6611d6d565b6000546001600160a01b03908116911614611726576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b611746606461174083600b546125b390919063ffffffff16565b9061223b565b60175550565b611754611d6d565b6000546001600160a01b039081169116146117a4576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ef0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61181d611d6d565b6000546001600160a01b0390811691161461186d576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b031660009081526009602052604090205460ff1690565b6118b1611d6d565b6000546001600160a01b03908116911614611901576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561195d5760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa66022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156119cb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a25576001600160a01b038116600090815260036020526040902054611a0b90610b15565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611a93611d6d565b6000546001600160a01b03908116911614611ae3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b038116611b285760405162461bcd60e51b8152600401808060200182810382526026815260200180612e176026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ef083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611b79611d6d565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b47610f638161260c565b4790565b611bdf611d6d565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ed0833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611c9c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561130f57816001600160a01b031660088281548110611cc057fe5b6000918252602090912001546001600160a01b03161415611d6557600880546000198101908110611ced57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d1357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806112e057fe5b600101611c9f565b3390565b6001600160a01b038316611db65760405162461bcd60e51b8152600401808060200182810382526024815260200180612f826024913960400191505060405180910390fd5b6001600160a01b038216611dfb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e3d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ea25760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5d6025913960400191505060405180910390fd5b6001600160a01b038216611ee75760405162461bcd60e51b8152600401808060200182810382526023815260200180612dca6023913960400191505060405180910390fd5b60008111611f265760405162461bcd60e51b8152600401808060200182810382526029815260200180612f106029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611f8e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fed576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611ff5611313565b6001600160a01b0316836001600160a01b03161415801561202f5750612019611313565b6001600160a01b0316826001600160a01b031614155b15612075576017548111156120755760405162461bcd60e51b8152600401808060200182810382526028815260200180612e5f6028913960400191505060405180910390fd5b600061208030611054565b9050601754811061209057506017545b6018546016549082101590600160a01b900460ff161580156120bb5750601654600160a81b900460ff165b80156120c45750805b801561210257507f000000000000000000000000d519043a805031e016b15d3fa9cffdd54575757c6001600160a01b0316856001600160a01b031614155b15612122576121108261237c565b478015612120576121204761260c565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216457506001600160a01b03851660009081526006602052604090205460ff165b1561216d575060005b61217986868684612691565b505050505050565b600081848411156122105760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121d55781810151838201526020016121bd565b50505050905090810190601f1680156122025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612225612805565b9092509050612234828261223b565b9250505090565b600061227d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612968565b9392505050565b60008282018381101561227d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122fb8a6011546012546129cd565b925092509250600061230b612218565b9050600080600061231d8e8786612a1c565b919e509c509a509598509396509194505050505091939550919395565b600061227d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612181565b6016805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123bd57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d602081101561246057600080fd5b505181518290600190811061247157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612561578181015183820152602001612549565b505050509050019650505050505050600060405180830381600087803b15801561258a57600080fd5b505af115801561259e573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b6000826125c257506000610a58565b828202828482816125cf57fe5b041461227d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612e876021913960400191505060405180910390fd5b6015546001600160a01b03166108fc61262683600261223b565b6040518115909202916000818181858888f1935050505015801561264e573d6000803e3d6000fd5b506016546001600160a01b03166108fc61266983600261223b565b6040518115909202916000818181858888f1935050505015801561130f573d6000803e3d6000fd5b8061269e5761269e612a58565b6001600160a01b03841660009081526007602052604090205460ff1680156126df57506001600160a01b03831660009081526007602052604090205460ff16155b156126f4576126ef848484612a8a565b6127f2565b6001600160a01b03841660009081526007602052604090205460ff1615801561273557506001600160a01b03831660009081526007602052604090205460ff165b15612745576126ef848484612bae565b6001600160a01b03841660009081526007602052604090205460ff1615801561278757506001600160a01b03831660009081526007602052604090205460ff16155b15612797576126ef848484612c57565b6001600160a01b03841660009081526007602052604090205460ff1680156127d757506001600160a01b03831660009081526007602052604090205460ff165b156127e7576126ef848484612c9b565b6127f2848484612c57565b806127ff576127ff612d0e565b50505050565b600c54600b546000918291825b6008548110156129365782600360006008848154811061282e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612893575081600460006008848154811061286c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128aa57600c54600b5494509450505050612964565b6128ea60036000600884815481106128be57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061233a565b925061292c600460006008848154811061290057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061233a565b9150600101612812565b50600b54600c546129469161223b565b82101561295e57600c54600b54935093505050612964565b90925090505b9091565b600081836129b75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121d55781810151838201526020016121bd565b5060008385816129c357fe5b0495945050505050565b60008080806129e1606461174089896125b3565b905060006129f460646117408a896125b3565b90506000612a0c82612a068b8661233a565b9061233a565b9992985090965090945050505050565b6000808080612a2b87866125b3565b90506000612a3987876125b3565b90506000612a47838361233a565b929992985090965090945050505050565b601154158015612a685750601254155b15612a7257612a88565b6011805460135560128054601455600091829055555b565b600080600080600080612a9c876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ace908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612afd908761233a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b2c9086612284565b6001600160a01b038916600090815260036020526040902055612b4e81612d1c565b612b588483612da5565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bc0876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bf2908761233a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c289084612284565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b2c9086612284565b600080600080600080612c69876122de565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612afd908761233a565b600080600080600080612cad876122de565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612cdf908861233a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bf2908761233a565b601354601155601454601255565b6000612d26612218565b90506000612d3483836125b3565b30600090815260036020526040902054909150612d519082612284565b3060009081526003602090815260408083209390935560079052205460ff1615612da05730600090815260046020526040902054612d8f9084612284565b306000908152600460205260409020555b505050565b600c54612db2908361233a565b600c55600d54612dc29082612284565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f50d98750435423868511637bc00198c0022874f847b830d7d5e53bc8fdc88d764736f6c634300060c0033

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

00000000000000000000000030ce445f383c6ad52b11689a62bd67ea585eea0c000000000000000000000000c74967b8b6339491d0a39ded063e8eed862e9c03

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0x30cE445f383c6Ad52B11689a62BD67ea585Eea0c
Arg [1] : marketingWalletAddress (address): 0xc74967b8B6339491d0a39Ded063E8eed862E9C03

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000030ce445f383c6ad52b11689a62bd67ea585eea0c
Arg [1] : 000000000000000000000000c74967b8b6339491d0a39ded063e8eed862e9c03


Deployed Bytecode Sourcemap

26603:20460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29613:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30617:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30617:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32104:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28054:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28054:51:0;;;;;;;;;;;;;;29926:103;;;;;;;;;;;;;:::i;30802:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30802:329:0;;;;;;;;;;;;;;;;;:::i;33112:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33112:269:0;;:::i;29823:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31143:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31143:230:0;;;;;;;;:::i;32211:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32211:405:0;;:::i;:::-;;27995:46;;;;;;;;;;;;;:::i;34414:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34414:372:0;-1:-1:-1;;;;;34414:372:0;;:::i;32628:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32628:472:0;;;;;;;;;:::i;28116:38::-;;;;;;;;;;;;;:::i;39617:168::-;;;;;;;;;;;;;:::i;35757:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35757:131:0;-1:-1:-1;;;;;35757:131:0;;:::i;46481:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46481:181:0;;:::i;28197:30::-;;;;;;;;;;;;;:::i;30041:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30041:210:0;-1:-1:-1;;;;;30041:210:0;;:::i;16449:160::-;;;;;;;;;;;;;:::i;27940:44::-;;;;;;;;;;;;;:::i;28240:37::-;;;;;;;;;;;;;:::i;34798:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34798:540:0;-1:-1:-1;;;;;34798:540:0;;:::i;15747:87::-;;;;;;;;;;;;;:::i;29716:95::-;;;;;;;;;;;;;:::i;46674:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46674:209:0;;:::i;31385:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31385:281:0;;;;;;;;:::i;17548:313::-;;;;;;;;;;;;;:::i;30263:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30263:179:0;;;;;;;;:::i;31947:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31947:145:0;;;;;;;;;;:::i;17053:97::-;;;;;;;;;;;;;:::i;31678:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31678:118:0;-1:-1:-1;;;;;31678:118:0;;:::i;46895:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46895:157:0;-1:-1:-1;;;;;46895:157:0;;:::i;35904:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35904:166:0;;:::i;17234:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17234:234:0;;:::i;30454:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30454:151:0;;;;;;;;;;:::i;39980:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39980:106:0;;;;:::i;31808:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31808:127:0;-1:-1:-1;;;;;31808:127:0;;:::i;33393:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33393:475:0;-1:-1:-1;;;;;33393:475:0;;:::i;16781:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16781:260:0;-1:-1:-1;;;;;16781:260:0;;:::i;39797:171::-;;;;;;;;;;;;;:::i;46351:118::-;;;;;;;;;;;;;:::i;33880:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33880:522:0;-1:-1:-1;;;;;33880:522:0;;:::i;29613:91::-;29687:5;29680:12;;;;;;;;-1:-1:-1;;29680:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29650:13;;29680:12;;29687:5;;29680:12;;29687:5;29680:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29613:91;:::o;30617:173::-;30692:4;30713:39;30722:12;:10;:12::i;:::-;30736:7;30745:6;30713:8;:39::i;:::-;-1:-1:-1;30774:4:0;30617:173;;;;;:::o;32104:95::-;32177:10;;32104:95;:::o;28054:51::-;;;:::o;29926:103::-;30010:7;;29926:103;:::o;30802:329::-;30900:4;30921:36;30931:6;30939:9;30950:6;30921:9;:36::i;:::-;30972:121;30981:6;30989:12;:10;:12::i;:::-;31003:89;31041:6;31003:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31003:19:0;;;;;;:11;:19;;;;;;31023:12;:10;:12::i;:::-;-1:-1:-1;;;;;31003:33:0;;;;;;;;;;;;-1:-1:-1;31003:33:0;;;:89;:37;:89::i;:::-;30972:8;:121::i;:::-;-1:-1:-1;31115:4:0;30802:329;;;;;:::o;33112:269::-;33178:7;33221;;33210;:18;;33202:73;;;;-1:-1:-1;;;33202:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33290:19;33313:10;:8;:10::i;:::-;33290:33;-1:-1:-1;33345:24:0;:7;33290:33;33345:11;:24::i;:::-;33338:31;;;33112:269;;;;:::o;29823:91::-;29893:9;;;;29823:91;:::o;31143:230::-;31231:4;31252:83;31261:12;:10;:12::i;:::-;31275:7;31284:50;31323:10;31284:11;:25;31296:12;:10;:12::i;:::-;-1:-1:-1;;;;;31284:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31284:25:0;;;:34;;;;;;;;;;;:38;:50::i;32211:405::-;32267:14;32284:12;:10;:12::i;:::-;-1:-1:-1;;;;;32320:19:0;;;;;;:11;:19;;;;;;32267:29;;-1:-1:-1;32320:19:0;;32319:20;32311:77;;;;-1:-1:-1;;;32311:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32404:15;32428:19;32439:7;32428:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32480:15:0;;;;;;:7;:15;;;;;;32403:44;;-1:-1:-1;32480:28:0;;:15;-1:-1:-1;32403:44:0;32480:19;:28::i;:::-;-1:-1:-1;;;;;32462:15:0;;;;;;:7;:15;;;;;:46;32533:7;;:20;;32545:7;32533:11;:20::i;:::-;32523:7;:30;32581:10;;:23;;32596:7;32581:14;:23::i;:::-;32568:10;:36;-1:-1:-1;;;32211:405:0:o;27995:46::-;;;-1:-1:-1;;;;;27995:46:0;;:::o;34414:372::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;34513:42:::1;-1:-1:-1::0;;;;;34502:53:0;::::1;;;34494:102;;;;-1:-1:-1::0;;;34494:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;34620:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34619:27;34611:70;;;::::0;;-1:-1:-1;;;34611:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34696:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;34696:33:0::1;34725:4;34696:33:::0;;::::1;::::0;;;34744:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34744:30:0::1;::::0;;::::1;::::0;;34414:372::o;32628:472::-;32718:7;32761;;32750;:18;;32742:62;;;;;-1:-1:-1;;;32742:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32824:17;32819:270;;32863:15;32887:19;32898:7;32887:10;:19::i;:::-;-1:-1:-1;32862:44:0;;-1:-1:-1;32925:14:0;;-1:-1:-1;;;;;32925:14:0;32819:270;32982:23;33013:19;33024:7;33013:10;:19::i;:::-;-1:-1:-1;32980:52:0;;-1:-1:-1;33051:22:0;;-1:-1:-1;;;;;33051:22:0;28116:38;;;:::o;39617:168::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;39675:23:::1;39701:24;39719:4;39701:9;:24::i;:::-;39675:50;;39740:33;39757:15;39740:16;:33::i;:::-;16059:1;39617:168::o:0;35757:131::-;-1:-1:-1;;;;;35849:27:0;35821:4;35849:27;;;:18;:27;;;;;;;;;35757:131::o;46481:181::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;46571:1:::1;46561:6;:11;;:27;;;;;46586:2;46576:6;:12;;46561:27;46553:66;;;::::0;;-1:-1:-1;;;46553:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46634:7;:16:::0;46481:181::o;28197:30::-;;;-1:-1:-1;;;28197:30:0;;;;;:::o;30041:210::-;-1:-1:-1;;;;;30135:20:0;;30107:7;30135:20;;;:11;:20;;;;;;;;30131:49;;;-1:-1:-1;;;;;;30164:16:0;;;;;;:7;:16;;;;;;30157:23;;30131:49;-1:-1:-1;;;;;30222:16:0;;;;;;:7;:16;;;;;;30202:37;;:19;:37::i;16449:160::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;16560:1:::1;16544:6:::0;;16523:40:::1;::::0;-1:-1:-1;;;;;16544:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16523:40:0;16560:1;;16523:40:::1;16595:1;16578:19:::0;;-1:-1:-1;;;;;;16578:19:0::1;::::0;;16449:160::o;27940:44::-;;;-1:-1:-1;;;;;27940:44:0;;:::o;28240:37::-;;;;:::o;34798:540::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34891:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34883:65;;;::::0;;-1:-1:-1;;;34883:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34968:9;34963:364;34987:16;:23:::0;34983:27;::::1;34963:364;;;35063:7;-1:-1:-1::0;;;;;35040:30:0::1;:16;35057:1;35040:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35040:19:0::1;:30;35036:276;;;35117:16;35134:23:::0;;-1:-1:-1;;35134:27:0;;;35117:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35095:16:::1;:19:::0;;-1:-1:-1;;;;;35117:45:0;;::::1;::::0;35112:1;;35095:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;35095:67:0::1;-1:-1:-1::0;;;;;35095:67:0;;::::1;;::::0;;35185:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;35185:34:0::1;::::0;;35242:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35242:22:0;;;;;-1:-1:-1;;;;;;35242:22:0::1;::::0;;;;;35287:5:::1;;35036:276;35012:3;;34963:364;;;;34798:540:::0;:::o;15747:87::-;15785:7;15816:6;-1:-1:-1;;;;;15816:6:0;15747:87;:::o;29716:95::-;29792:7;29785:14;;;;;;;;-1:-1:-1;;29785:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29755:13;;29785:14;;29792:7;;29785:14;;29792:7;29785:14;;;;;;;;;;;;;;;;;;;;;;;;46674:209;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;46776:1:::1;46762:10;:15;;:35;;;;;46795:2;46781:10;:16;;46762:35;46754:78;;;::::0;;-1:-1:-1;;;46754:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46847:11;:24:::0;46674:209::o;31385:281::-;31478:4;31499:129;31508:12;:10;:12::i;:::-;31522:7;31531:96;31570:15;31531:96;;;;;;;;;;;;;;;;;:11;:25;31543:12;:10;:12::i;:::-;-1:-1:-1;;;;;31531:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31531:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17548:313::-;17604:14;;-1:-1:-1;;;;;17604:14:0;17622:10;17604:28;17596:76;;;;-1:-1:-1;;;17596:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17701:9;;17695:3;:15;17687:60;;;;;-1:-1:-1;;;17687:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17796:14;;;17788:6;;17767:44;;-1:-1:-1;;;;;17796:14:0;;;;17788:6;;;;-1:-1:-1;;;;;;;;;;;17767:44:0;;17835:14;;;17826:23;;-1:-1:-1;;;;;;17826:23:0;-1:-1:-1;;;;;17835:14:0;;;17826:23;;;;;;17548:313::o;30263:179::-;30341:4;30362:42;30372:12;:10;:12::i;:::-;30386:9;30397:6;30362:9;:42::i;31947:145::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32042:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;32042:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31947:145::o;17053:97::-;17129:9;;17053:97;:::o;31678:118::-;-1:-1:-1;;;;;31764:20:0;31736:4;31764:20;;;:11;:20;;;;;;;;;31678:118::o;46895:157::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;46996:21:::1;:44:::0;;-1:-1:-1;;;;;;46996:44:0::1;-1:-1:-1::0;;;;;46996:44:0;;;::::1;::::0;;;::::1;::::0;;46895:157::o;35904:166::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;35998:60:::1;36042:5;35998:25;36010:12;35998:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;35983:12;:75:::0;-1:-1:-1;35904:166:0:o;17234:234::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;17319:6:::1;::::0;;;17302:23;;-1:-1:-1;;;;;;17302:23:0;;::::1;-1:-1:-1::0;;;;;17319:6:0;::::1;17302:23;::::0;;;17340:19:::1;::::0;;17386:3:::1;:10:::0;::::1;17374:9;:22:::0;17416:40:::1;::::0;17319:6;;-1:-1:-1;;;;;;;;;;;17416:40:0;17319:6;;17416:40:::1;17234:234:::0;:::o;30454:151::-;-1:-1:-1;;;;;30566:18:0;;;30535:7;30566:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30454:151::o;39980:106::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;40053:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;40053:21:0::1;-1:-1:-1::0;;;;40053:21:0;;::::1;::::0;;;::::1;::::0;;39980:106::o;31808:127::-;-1:-1:-1;;;;;31897:26:0;31869:4;31897:26;;;:17;:26;;;;;;;;;31808:127::o;33393:475::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;33489:42:::1;-1:-1:-1::0;;;;;33478:53:0;::::1;;;33470:100;;;;-1:-1:-1::0;;;33470:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33594:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33593:21;33585:61;;;::::0;;-1:-1:-1;;;33585:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33664:16:0;::::1;33683:1;33664:16:::0;;;:7:::1;:16;::::0;;;;;:20;33661:116:::1;;-1:-1:-1::0;;;;;33744:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33724:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33705:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33661:116:::1;-1:-1:-1::0;;;;;33791:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33791:27:0::1;33814:4;33791:27:::0;;::::1;::::0;;;33833:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33833:23:0::1;::::0;;::::1;::::0;;33393:475::o;16781:260::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16874:22:0;::::1;16866:73;;;;-1:-1:-1::0;;;16866:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16980:6;::::0;;16959:38:::1;::::0;-1:-1:-1;;;;;16959:38:0;;::::1;::::0;16980:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16959:38:0;::::1;17012:6;:17:::0;;-1:-1:-1;;;;;;17012:17:0::1;-1:-1:-1::0;;;;;17012:17:0;;;::::1;::::0;;;::::1;::::0;;16781:260::o;39797:171::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;39884:21:::1;39920:36;39884:21:::0;39920:16:::1;:36::i;46351:118::-:0;46436:21;46351:118;:::o;33880:522::-;15995:12;:10;:12::i;:::-;15985:6;;-1:-1:-1;;;;;15985:6:0;;;:22;;;15977:67;;;;;-1:-1:-1;;;15977:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15977:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33965:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33957:60;;;::::0;;-1:-1:-1;;;33957:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34037:9;34032:359;34056:9;:16:::0;34052:20;::::1;34032:359;;;34118:7;-1:-1:-1::0;;;;;34102:23:0::1;:9;34112:1;34102:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34102:12:0::1;:23;34098:278;;;34165:9;34175:16:::0;;-1:-1:-1;;34175:20:0;;;34165:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34150:9:::1;:12:::0;;-1:-1:-1;;;;;34165:31:0;;::::1;::::0;34160:1;;34150:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34150:46:0::1;-1:-1:-1::0;;;;;34150:46:0;;::::1;;::::0;;34219:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34262:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34262:28:0::1;::::0;;34313:9:::1;:15:::0;;;::::1;;;34098:278;34074:3;;34032:359;;204:114:::0;296:10;204:114;:::o;36082:357::-;-1:-1:-1;;;;;36179:19:0;;36171:68;;;;-1:-1:-1;;;36171:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36262:21:0;;36254:68;;;;-1:-1:-1;;;36254:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36339:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36395:32;;;;;;;;;;;;;;;;;36082:357;;;:::o;36451:2140::-;-1:-1:-1;;;;;36552:20:0;;36544:70;;;;-1:-1:-1;;;36544:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36637:23:0;;36629:71;;;;-1:-1:-1;;;36629:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36732:1;36723:6;:10;36715:64;;;;-1:-1:-1;;;36715:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36803:28:0;;;;;;:17;:28;;;;;;;;36802:29;36794:65;;;;;-1:-1:-1;;;36794:65:0;;;;;;;;;;;;-1:-1:-1;;;36794:65:0;;;;;;;;;;;;;;;36901:10;36883:29;;;;:17;:29;;;;;;;;36882:30;36874:66;;;;;-1:-1:-1;;;36874:66:0;;;;;;;;;;;;-1:-1:-1;;;36874:66:0;;;;;;;;;;;;;;;36970:7;:5;:7::i;:::-;-1:-1:-1;;;;;36960:17:0;:6;-1:-1:-1;;;;;36960:17:0;;;:41;;;;;36994:7;:5;:7::i;:::-;-1:-1:-1;;;;;36981:20:0;:9;-1:-1:-1;;;;;36981:20:0;;;36960:41;36957:138;;;37038:12;;37028:6;:22;;37020:75;;;;-1:-1:-1;;;37020:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37381:28;37412:24;37430:4;37412:9;:24::i;:::-;37381:55;;37480:12;;37456:20;:36;37453:124;;-1:-1:-1;37549:12:0;;37453:124;37644:32;;37696:6;;37620:56;;;;;-1:-1:-1;;;37696:6:0;;;;37695:7;:22;;;;-1:-1:-1;37706:11:0;;-1:-1:-1;;;37706:11:0;;;;37695:22;:45;;;;;37721:19;37695:45;:72;;;;;37754:13;-1:-1:-1;;;;;37744:23:0;:6;-1:-1:-1;;;;;37744:23:0;;;37695:72;37691:442;;;37881:38;37898:20;37881:16;:38::i;:::-;37969:21;38012:22;;38009:109;;38059:39;38076:21;38059:16;:39::i;:::-;37691:442;;-1:-1:-1;;;;;38341:26:0;;38214:12;38341:26;;;:18;:26;;;;;;38229:4;;38341:26;;;:59;;-1:-1:-1;;;;;;38371:29:0;;;;;;:18;:29;;;;;;;;38341:59;38338:113;;;-1:-1:-1;38430:5:0;38338:113;38532:47;38547:6;38554:9;38564:6;38571:7;38532:14;:47::i;:::-;36451:2140;;;;;;:::o;4731:208::-;4817:7;4857:12;4849:6;;;;4841:29;;;;-1:-1:-1;;;4841:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4897:5:0;;;4731:208::o;45337:175::-;45378:7;45403:15;45420;45439:19;:17;:19::i;:::-;45402:56;;-1:-1:-1;45402:56:0;-1:-1:-1;45480:20:0;45402:56;;45480:11;:20::i;:::-;45473:27;;;;45337:175;:::o;6261:140::-;6319:7;6350:39;6354:1;6357;6350:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6343:46;6261:140;-1:-1:-1;;;6261:140:0:o;3734:197::-;3792:7;3828:5;;;3856:6;;;;3848:46;;;;;-1:-1:-1;;;3848:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44071:490;44130:7;44139;44148;44157;44166;44175;44200:23;44225:12;44239:16;44259:42;44271:7;44280;;44289:11;;44259;:42::i;:::-;44199:102;;;;;;44316:19;44339:10;:8;:10::i;:::-;44316:33;;44365:15;44382:23;44407:12;44423:39;44435:7;44444:4;44450:11;44423;:39::i;:::-;44364:98;;-1:-1:-1;44364:98:0;-1:-1:-1;44364:98:0;-1:-1:-1;44517:15:0;;-1:-1:-1;44534:4:0;;-1:-1:-1;44540:8:0;;-1:-1:-1;;;;;44071:490:0;;;;;;;:::o;4249:144::-;4307:7;4338:43;4342:1;4345;4338:43;;;;;;;;;;;;;;;;;:3;:43::i;38603:656::-;28548:6;:13;;-1:-1:-1;;;;28548:13:0;-1:-1:-1;;;28548:13:0;;;38772:16:::1;::::0;;38786:1:::1;38772:16:::0;;;38748:21:::1;38772:16:::0;;::::1;::::0;;38748:21;38772:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;38772:16:0::1;38748:40;;38821:4;38803;38808:1;38803:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;38803:23:0::1;;;-1:-1:-1::0;;;;;38803:23:0::1;;;::::0;::::1;38851:15;-1:-1:-1::0;;;;;38851:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38851:22:0;38841:7;;:4;;38846:1:::1;::::0;38841:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;38841:32:0::1;;;-1:-1:-1::0;;;;;38841:32:0::1;;;::::0;::::1;38890:62;38907:4;38922:15;38940:11;38890:8;:62::i;:::-;38999:15;-1:-1:-1::0;;;;;38999:66:0::1;;39084:11;39114:1;39162:4;39193;39217:15;38999:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;38999:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28592:6:0;:14;;-1:-1:-1;;;;28592:14:0;;;-1:-1:-1;;;;38603:656:0:o;5233:511::-;5291:7;5552:6;5548:55;;-1:-1:-1;5586:1:0;5579:8;;5548:55;5631:5;;;5635:1;5631;:5;:1;5659:5;;;;;:10;5651:56;;;;-1:-1:-1;;;5651:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39271:184;39336:21;;-1:-1:-1;;;;;39336:21:0;:45;39367:13;:6;39378:1;39367:10;:13::i;:::-;39336:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39396:23:0;;-1:-1:-1;;;;;39396:23:0;:47;39429:13;:6;39440:1;39429:10;:13::i;:::-;39396:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40098:883;40214:7;40210:44;;40240:14;:12;:14::i;:::-;-1:-1:-1;;;;;40275:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40299:22:0;;;;;;:11;:22;;;;;;;;40298:23;40275:46;40271:637;;;40342:48;40364:6;40372:9;40383:6;40342:21;:48::i;:::-;40271:637;;;-1:-1:-1;;;;;40417:19:0;;;;;;:11;:19;;;;;;;;40416:20;:46;;;;-1:-1:-1;;;;;;40440:22:0;;;;;;:11;:22;;;;;;;;40416:46;40412:496;;;40483:46;40503:6;40511:9;40522:6;40483:19;:46::i;40412:496::-;-1:-1:-1;;;;;40556:19:0;;;;;;:11;:19;;;;;;;;40555:20;:47;;;;-1:-1:-1;;;;;;40580:22:0;;;;;;:11;:22;;;;;;;;40579:23;40555:47;40551:357;;;40623:44;40641:6;40649:9;40660:6;40623:17;:44::i;40551:357::-;-1:-1:-1;;;;;40693:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40716:22:0;;;;;;:11;:22;;;;;;;;40693:45;40689:219;;;40759:48;40781:6;40789:9;40800:6;40759:21;:48::i;40689:219::-;40848:44;40866:6;40874:9;40885:6;40848:17;:44::i;:::-;40928:7;40924:45;;40954:15;:13;:15::i;:::-;40098:883;;;;:::o;45524:595::-;45625:7;;45665;;45574;;;;;45687:305;45711:9;:16;45707:20;;45687:305;;;45781:7;45757;:21;45765:9;45775:1;45765:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45765:12:0;45757:21;;;;;;;;;;;;;:31;;:66;;;45816:7;45792;:21;45800:9;45810:1;45800:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45800:12:0;45792:21;;;;;;;;;;;;;:31;45757:66;45753:97;;;45833:7;;45842;;45825:25;;;;;;;;;45753:97;45879:34;45891:7;:21;45899:9;45909:1;45899:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45899:12:0;45891:21;;;;;;;;;;;;;45879:7;;:11;:34::i;:::-;45869:44;;45942:34;45954:7;:21;45962:9;45972:1;45962:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45962:12:0;45954:21;;;;;;;;;;;;;45942:7;;:11;:34::i;:::-;45932:44;-1:-1:-1;45729:3:0;;45687:305;;;-1:-1:-1;46032:7:0;;46020;;:20;;:11;:20::i;:::-;46010:7;:30;46006:61;;;46050:7;;46059;;46042:25;;;;;;;;46006:61;46090:7;;-1:-1:-1;46099:7:0;-1:-1:-1;45524:595:0;;;:::o;6938:298::-;7024:7;7063:12;7056:5;7048:28;;;;-1:-1:-1;;;7048:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7091:9;7107:1;7103;:5;;;;;;;6938:298;-1:-1:-1;;;;;6938:298:0:o;44573:386::-;44669:7;;;;44726:28;44750:3;44726:19;:7;44738:6;44726:11;:19::i;:28::-;44711:43;-1:-1:-1;44769:16:0;44788:32;44816:3;44788:23;:7;44800:10;44788:11;:23::i;:32::-;44769:51;-1:-1:-1;44835:23:0;44861:31;44769:51;44861:17;:7;44873:4;44861:11;:17::i;:::-;:21;;:31::i;:::-;44835:57;44932:4;;-1:-1:-1;44938:8:0;;-1:-1:-1;44573:386:0;;-1:-1:-1;;;;;44573:386:0:o;44971:354::-;45066:7;;;;45126:24;:7;45138:11;45126;:24::i;:::-;45108:42;-1:-1:-1;45165:12:0;45180:21;:4;45189:11;45180:8;:21::i;:::-;45165:36;-1:-1:-1;45216:23:0;45242:17;:7;45165:36;45242:11;:17::i;:::-;45282:7;;;;-1:-1:-1;45308:4:0;;-1:-1:-1;44971:354:0;;-1:-1:-1;;;;;44971:354:0:o;35350:250::-;35400:7;;:12;:32;;;;-1:-1:-1;35416:11:0;;:16;35400:32;35397:44;;;35434:7;;35397:44;35475:7;;;35457:15;:25;35519:11;;;35497:19;:33;-1:-1:-1;35547:11:0;;;;35573:15;35350:250;:::o;42142:589::-;42249:15;42266:23;42291:12;42305:23;42330:12;42344:16;42364:19;42375:7;42364:10;:19::i;:::-;-1:-1:-1;;;;;42416:15:0;;;;;;:7;:15;;;;;;42248:135;;-1:-1:-1;42248:135:0;;-1:-1:-1;42248:135:0;;-1:-1:-1;42248:135:0;-1:-1:-1;42248:135:0;-1:-1:-1;42248:135:0;-1:-1:-1;42416:28:0;;42436:7;42416:19;:28::i;:::-;-1:-1:-1;;;;;42398:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42477:7;:15;;;;:28;;42497:7;42477:19;:28::i;:::-;-1:-1:-1;;;;;42459:15:0;;;;;;;:7;:15;;;;;;:46;;;;42541:18;;;;;;;:39;;42564:15;42541:22;:39::i;:::-;-1:-1:-1;;;;;42520:18:0;;;;;;:7;:18;;;;;:60;42595:22;42608:8;42595:12;:22::i;:::-;42632:23;42644:4;42650;42632:11;:23::i;:::-;42692:9;-1:-1:-1;;;;;42675:44:0;42684:6;-1:-1:-1;;;;;42675:44:0;;42703:15;42675:44;;;;;;;;;;;;;;;;;;42142:589;;;;;;;;;:::o;41529:601::-;41634:15;41651:23;41676:12;41690:23;41715:12;41729:16;41749:19;41760:7;41749:10;:19::i;:::-;-1:-1:-1;;;;;41801:15:0;;;;;;:7;:15;;;;;;41633:135;;-1:-1:-1;41633:135:0;;-1:-1:-1;41633:135:0;;-1:-1:-1;41633:135:0;-1:-1:-1;41633:135:0;-1:-1:-1;41633:135:0;-1:-1:-1;41801:28:0;;41633:135;41801:19;:28::i;:::-;-1:-1:-1;;;;;41783:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41865:18;;;;;:7;:18;;;;;:39;;41888:15;41865:22;:39::i;:::-;-1:-1:-1;;;;;41844:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41940:7;:18;;;;:39;;41963:15;41940:22;:39::i;40993:524::-;41096:15;41113:23;41138:12;41152:23;41177:12;41191:16;41211:19;41222:7;41211:10;:19::i;:::-;-1:-1:-1;;;;;41263:15:0;;;;;;:7;:15;;;;;;41095:135;;-1:-1:-1;41095:135:0;;-1:-1:-1;41095:135:0;;-1:-1:-1;41095:135:0;-1:-1:-1;41095:135:0;-1:-1:-1;41095:135:0;-1:-1:-1;41263:28:0;;41095:135;41263:19;:28::i;42743:664::-;42850:15;42867:23;42892:12;42906:23;42931:12;42945:16;42965:19;42976:7;42965:10;:19::i;:::-;-1:-1:-1;;;;;43017:15:0;;;;;;:7;:15;;;;;;42849:135;;-1:-1:-1;42849:135:0;;-1:-1:-1;42849:135:0;;-1:-1:-1;42849:135:0;-1:-1:-1;42849:135:0;-1:-1:-1;42849:135:0;-1:-1:-1;43017:28:0;;43037:7;43017:19;:28::i;:::-;-1:-1:-1;;;;;42999:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43078:7;:15;;;;:28;;43098:7;43078:19;:28::i;35612:133::-;35670:15;;35660:7;:25;35714:19;;35700:11;:33;35612:133::o;43419:367::-;43482:19;43505:10;:8;:10::i;:::-;43482:33;-1:-1:-1;43530:16:0;43549:25;:8;43482:33;43549:12;:25::i;:::-;43630:4;43614:22;;;;:7;:22;;;;;;43530:44;;-1:-1:-1;43614:36:0;;43530:44;43614:26;:36::i;:::-;43605:4;43589:22;;;;:7;:22;;;;;;;;:61;;;;43668:11;:26;;;;;;43665:109;;;43754:4;43738:22;;;;:7;:22;;;;;;:36;;43765:8;43738:26;:36::i;:::-;43729:4;43713:22;;;;:7;:22;;;;;:61;43665:109;43419:367;;;:::o;43798:159::-;43880:7;;:17;;43892:4;43880:11;:17::i;:::-;43870:7;:27;43925:10;;:20;;43940:4;43925:14;:20::i;:::-;43912:10;:33;-1:-1:-1;;43798:159:0:o

Swarm Source

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