ETH Price: $3,332.55 (-4.32%)
Gas: 4 Gwei

Token

Avenger Inus (AVENGER)
 

Overview

Max Total Supply

1,000,000,000,000 AVENGER

Holders

161

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
71,911.696189534 AVENGER

Value
$0.00
0x7aEdFb23Bb66bf629401e64d6b101Fe58FD0aB0B
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Join the Avenger Inu's as they navigate through the Blockchain and fight off the EVIL DEVS!!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AvengerInus

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

// Join the Avenger Inu's as they navigate through the Blockchain and fight off the EVIL DEVS!! They are going to lead us to the moon!!!

// https://t.me/AvengerInus

// 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 AvengerInus 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;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 1000000000000 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'Avenger Inus';
        string private _symbol = 'AVENGER';
        uint8 private _decimals = 9;
        
        uint256 private _taxFee = 1; 
        uint256 private _developmentFee = 6;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousDevelopmentFee = _developmentFee;

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

        bool inSwap = false;
        bool public swapEnabled = true;

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

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

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

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

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            
            uniswapV2Router = _uniswapV2Router;

            
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;
            _isExcludedFromFee[_developmentWalletAddress] = true;
            _isExcludedFromFee[_marketingWalletAddress] = true;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForDevelopment;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToDevelopment(address(this).balance);
                }
            }
            
            
            bool takeFee = true;
            
            
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }
            
            
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

        function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
            
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = uniswapV2Router.WETH();

            _approve(address(this), address(uniswapV2Router), tokenAmount);

            
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0, 
                path,
                address(this),
                block.timestamp
            );
        }
        
        function sendETHToDevelopment(uint256 amount) private {
            _developmentWalletAddress.transfer(amount.mul(2).div(6));
            _marketingWalletAddress.transfer(amount.mul(2).div(6));
            
        }
        
        
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToDevelopment(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 tDevelopment) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeDevelopment(tDevelopment); 
            _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 tDevelopment) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
            _takeDevelopment(tDevelopment);           
            _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 tDevelopment) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _takeDevelopment(tDevelopment);   
            _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 tDevelopment) = _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);   
            _takeDevelopment(tDevelopment);         
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeDevelopment(uint256 tDevelopment) private {
            uint256 currentRate =  _getRate();
            uint256 rDevelopment = tDevelopment.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rDevelopment);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tDevelopment);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tDevelopment) = _getTValues(tAmount, _taxFee, _developmentFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tDevelopment);
        }

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

        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 >= 0 && taxFee <= 25, 'taxFee should be in 0 - 25');
            _taxFee = taxFee;
        }

        function _setDevelopmentFee(uint256 developmentFee) external onlyOwner() {
            require(developmentFee >= 1 && developmentFee <= 25, 'developmentFee should be in 1 - 25');
            _developmentFee = developmentFee;
        }
        
        function _setDevelopmentWallet(address payable developmentWalletAddress) external onlyOwner() {
            _developmentWalletAddress = developmentWalletAddress;
        }
                
        function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }
        
        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"developmentWalletAddress","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":"_developmentWalletAddress","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":[{"internalType":"uint256","name":"developmentFee","type":"uint256"}],"name":"_setDevelopmentFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"developmentWalletAddress","type":"address"}],"name":"_setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea000006009556818ce40f6d0219fffff19600a55610100604052600c60c08190526b4176656e67657220496e757360a01b60e09081526200004991908162000446565b506040805180820190915260078082526620ab22a723a2a960c91b60209092019182526200007a91600d9162000446565b50600e805460ff191660091790556001600f819055600660108190556011919091556012556014805461ffff60a01b1916600160a81b17905569152d02c7e14af680000060155565048c27395000601655348015620000d857600080fd5b50604051620031393803806200313983398181016040526040811015620000fe57600080fd5b50805160209091015160006200011362000433565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b038085166001600160a01b0319928316179092556014805492841692909116919091179055600a54600360006200019e62000433565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021557600080fd5b505afa1580156200022a573d6000803e3d6000fd5b505050506040513d60208110156200024157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d6020811015620002be57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050506040513d60208110156200033d57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036a62000437565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155601354821684528284208054861682179055601454909116835291208054909216179055620003dd62000433565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505050620004e2565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200048957805160ff1916838001178555620004b9565b82800160010185558215620004b9579182015b82811115620004b95782518255916020019190600101906200049c565b50620004c7929150620004cb565b5090565b5b80821115620004c75760008155600101620004cc565b60805160601c60a05160601c612c196200052060003980610d955280611c675250806109ca5280611f79528061203152806120585250612c196000f3fe60806040526004361061023f5760003560e01c806370a082311161012e578063dd467064116100ab578063f2fde38b1161006f578063f2fde38b14610854578063f429389014610887578063f815a8421461089c578063f84354f1146108b1578063fbeb37be146108e457610246565b8063dd4670641461075d578063dd62ed3e14610787578063e01af92c146107c2578063e53a606f146107ee578063f2cc0c181461082157610246565b8063a69df4b5116100f2578063a69df4b51461068c578063a9059cbb146106a1578063af9549e0146106da578063b6c5232414610715578063cba0e9961461072a57610246565b806370a08231146105e1578063715018a6146106145780638da5cb5b1461062957806395d89b411461063e578063a457c2d71461065357610246565b8063313ce567116101bc57806349bd5a5e1161018057806349bd5a5e1461054557806351bc3c851461055a5780635342acb41461056f5780635880b873146105a25780636ddd1713146105cc57610246565b8063313ce56714610470578063395093511461049b5780633bd5d173146104d45780634144d9e4146104fe5780634549b0391461051357610246565b80631bbae6e0116102035780631bbae6e01461038f5780631ff53b60146103bb57806323b872dd146103ee57806325250c71146104315780632d8381191461044657610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b5061026061090e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b0381351690602001356109a4565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109c2565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109c8565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ec565b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b50356109f2565b005b3480156103c757600080fd5b506103b9600480360360208110156103de57600080fd5b50356001600160a01b0316610a4f565b3480156103fa57600080fd5b5061030e6004803603606081101561041157600080fd5b506001600160a01b03813581169160208101359091169060400135610ac9565b34801561043d57600080fd5b5061035e610b50565b34801561045257600080fd5b506103376004803603602081101561046957600080fd5b5035610b5f565b34801561047c57600080fd5b50610485610bc1565b6040805160ff9092168252519081900360200190f35b3480156104a757600080fd5b5061030e600480360360408110156104be57600080fd5b506001600160a01b038135169060200135610bca565b3480156104e057600080fd5b506103b9600480360360208110156104f757600080fd5b5035610c18565b34801561050a57600080fd5b5061035e610cf2565b34801561051f57600080fd5b506103376004803603604081101561053657600080fd5b50803590602001351515610d01565b34801561055157600080fd5b5061035e610d93565b34801561056657600080fd5b506103b9610db7565b34801561057b57600080fd5b5061030e6004803603602081101561059257600080fd5b50356001600160a01b0316610e28565b3480156105ae57600080fd5b506103b9600480360360208110156105c557600080fd5b5035610e46565b3480156105d857600080fd5b5061030e610ef9565b3480156105ed57600080fd5b506103376004803603602081101561060457600080fd5b50356001600160a01b0316610f09565b34801561062057600080fd5b506103b9610f6b565b34801561063557600080fd5b5061035e610ffb565b34801561064a57600080fd5b5061026061100a565b34801561065f57600080fd5b5061030e6004803603604081101561067657600080fd5b506001600160a01b03813516906020013561106b565b34801561069857600080fd5b506103b96110d3565b3480156106ad57600080fd5b5061030e600480360360408110156106c457600080fd5b506001600160a01b0381351690602001356111c1565b3480156106e657600080fd5b506103b9600480360360408110156106fd57600080fd5b506001600160a01b03813516906020013515156111d5565b34801561072157600080fd5b50610337611258565b34801561073657600080fd5b5061030e6004803603602081101561074d57600080fd5b50356001600160a01b031661125e565b34801561076957600080fd5b506103b96004803603602081101561078057600080fd5b503561127c565b34801561079357600080fd5b50610337600480360360408110156107aa57600080fd5b506001600160a01b038135811691602001351661131a565b3480156107ce57600080fd5b506103b9600480360360208110156107e557600080fd5b50351515611345565b3480156107fa57600080fd5b506103b96004803603602081101561081157600080fd5b50356001600160a01b03166113bb565b34801561082d57600080fd5b506103b96004803603602081101561084457600080fd5b50356001600160a01b0316611435565b34801561086057600080fd5b506103b96004803603602081101561087757600080fd5b50356001600160a01b0316611617565b34801561089357600080fd5b506103b96116fd565b3480156108a857600080fd5b5061033761175f565b3480156108bd57600080fd5b506103b9600480360360208110156108d457600080fd5b50356001600160a01b0316611763565b3480156108f057600080fd5b506103b96004803603602081101561090757600080fd5b5035611924565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109b86109b16119ce565b84846119d2565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6109fa6119ce565b6000546001600160a01b03908116911614610a4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601555565b610a576119ce565b6000546001600160a01b03908116911614610aa7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ad6848484611abe565b610b4684610ae26119ce565b610b4185604051806060016040528060288152602001612a74602891396001600160a01b038a16600090815260056020526040812090610b206119ce565b6001600160a01b031681526020810191909152604001600020549190611d1b565b6119d2565b5060019392505050565b6013546001600160a01b031681565b6000600a54821115610ba25760405162461bcd60e51b815260040180806020018281038252602a8152602001806129b9602a913960400191505060405180910390fd5b6000610bac611db2565b9050610bb88382611dd5565b9150505b919050565b600e5460ff1690565b60006109b8610bd76119ce565b84610b418560056000610be86119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e1e565b6000610c226119ce565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c7d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b70602c913960400191505060405180910390fd5b6000610c8883611e78565b505050506001600160a01b038416600090815260036020526040902054919250610cb491905082611ed4565b6001600160a01b038316600090815260036020526040902055600a54610cda9082611ed4565b600a55600b54610cea9084611e1e565b600b55505050565b6014546001600160a01b031681565b6000600954831115610d5a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d79576000610d6a84611e78565b509395506109bc945050505050565b6000610d8484611e78565b509295506109bc945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610dbf6119ce565b6000546001600160a01b03908116911614610e0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6000610e1a30610f09565b9050610e2581611f16565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610e4e6119ce565b6000546001600160a01b03908116911614610e9e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6019811115610ef4576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203235000000000000604482015290519081900360640190fd5b600f55565b601454600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff1615610f4957506001600160a01b038116600090815260046020526040902054610bbc565b6001600160a01b0382166000908152600360205260409020546109bc90610b5f565b610f736119ce565b6000546001600160a01b03908116911614610fc3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612abc833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561099a5780601f1061096f5761010080835404028352916020019161099a565b60006109b86110786119ce565b84610b4185604051806060016040528060258152602001612bbf60259139600560006110a26119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d1b565b6001546001600160a01b0316331461111c5760405162461bcd60e51b8152600401808060200182810382526023815260200180612b9c6023913960400191505060405180910390fd5b6002544211611172576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612abc83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109b86111ce6119ce565b8484611abe565b6111dd6119ce565b6000546001600160a01b0390811691161461122d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b6112846119ce565b6000546001600160a01b039081169116146112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612abc833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61134d6119ce565b6000546001600160a01b0390811691161461139d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b60148054911515600160a81b0260ff60a81b19909216919091179055565b6113c36119ce565b6000546001600160a01b03908116911614611413576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b61143d6119ce565b6000546001600160a01b0390811691161461148d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156114e95760405162461bcd60e51b8152600401808060200182810382526022815260200180612b4e6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611557576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156115b1576001600160a01b03811660009081526003602052604090205461159790610b5f565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b61161f6119ce565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b0381166116b45760405162461bcd60e51b81526004018080602001828103825260268152602001806129e36026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612abc83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6117056119ce565b6000546001600160a01b03908116911614611755576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b47610e258161214d565b4790565b61176b6119ce565b6000546001600160a01b039081169116146117bb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611828576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561192057816001600160a01b03166008828154811061184c57fe5b6000918252602090912001546001600160a01b031614156119185760088054600019810190811061187957fe5b600091825260209091200154600880546001600160a01b03909216918390811061189f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806118f157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611920565b60010161182b565b5050565b61192c6119ce565b6000546001600160a01b0390811691161461197c576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001811015801561198e575060198111155b6119c95760405162461bcd60e51b81526004018080602001828103825260228152602001806129976022913960400191505060405180910390fd5b601055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526024815260200180612b2a6024913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b035760405162461bcd60e51b8152600401808060200182810382526025815260200180612b056025913960400191505060405180910390fd5b6001600160a01b038216611b485760405162461bcd60e51b81526004018080602001828103825260238152602001806129746023913960400191505060405180910390fd5b60008111611b875760405162461bcd60e51b8152600401808060200182810382526029815260200180612adc6029913960400191505060405180910390fd5b611b8f610ffb565b6001600160a01b0316836001600160a01b031614158015611bc95750611bb3610ffb565b6001600160a01b0316826001600160a01b031614155b15611c0f57601554811115611c0f5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a2b6028913960400191505060405180910390fd5b6000611c1a30610f09565b90506015548110611c2a57506015545b6016546014549082101590600160a01b900460ff16158015611c555750601454600160a81b900460ff165b8015611c5e5750805b8015611c9c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611cbc57611caa82611f16565b478015611cba57611cba4761214d565b505b6001600160a01b03851660009081526006602052604090205460019060ff1680611cfe57506001600160a01b03851660009081526006602052604090205460ff165b15611d07575060005b611d13868686846121e2565b505050505050565b60008184841115611daa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d6f578181015183820152602001611d57565b50505050905090810190601f168015611d9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611dbf612356565b9092509050611dce8282611dd5565b9250505090565b6000611e1783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124b9565b9392505050565b600082820183811015611e17576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611e958a600f5460105461251e565b9250925092506000611ea5611db2565b90506000806000611eb78e878661256d565b919e509c509a509598509396509194505050505091939550919395565b6000611e1783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d1b565b6014805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611f5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fd057600080fd5b505afa158015611fe4573d6000803e3d6000fd5b505050506040513d6020811015611ffa57600080fd5b505181518290600190811061200b57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612056307f0000000000000000000000000000000000000000000000000000000000000000846119d2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156120fb5781810151838201526020016120e3565b505050509050019650505050505050600060405180830381600087803b15801561212457600080fd5b505af1158015612138573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b6013546001600160a01b03166108fc612172600661216c8560026125a9565b90611dd5565b6040518115909202916000818181858888f1935050505015801561219a573d6000803e3d6000fd5b506014546001600160a01b03166108fc6121ba600661216c8560026125a9565b6040518115909202916000818181858888f19350505050158015611920573d6000803e3d6000fd5b806121ef576121ef612602565b6001600160a01b03841660009081526007602052604090205460ff16801561223057506001600160a01b03831660009081526007602052604090205460ff16155b1561224557612240848484612634565b612343565b6001600160a01b03841660009081526007602052604090205460ff1615801561228657506001600160a01b03831660009081526007602052604090205460ff165b1561229657612240848484612758565b6001600160a01b03841660009081526007602052604090205460ff161580156122d857506001600160a01b03831660009081526007602052604090205460ff16155b156122e857612240848484612801565b6001600160a01b03841660009081526007602052604090205460ff16801561232857506001600160a01b03831660009081526007602052604090205460ff165b1561233857612240848484612845565b612343848484612801565b80612350576123506128b8565b50505050565b600a546009546000918291825b6008548110156124875782600360006008848154811061237f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806123e457508160046000600884815481106123bd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156123fb57600a54600954945094505050506124b5565b61243b600360006008848154811061240f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed4565b925061247d600460006008848154811061245157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed4565b9150600101612363565b50600954600a5461249791611dd5565b8210156124af57600a546009549350935050506124b5565b90925090505b9091565b600081836125085760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d6f578181015183820152602001611d57565b50600083858161251457fe5b0495945050505050565b6000808080612532606461216c89896125a9565b90506000612545606461216c8a896125a9565b9050600061255d826125578b86611ed4565b90611ed4565b9992985090965090945050505050565b600080808061257c87866125a9565b9050600061258a87876125a9565b905060006125988383611ed4565b929992985090965090945050505050565b6000826125b8575060006109bc565b828202828482816125c557fe5b0414611e175760405162461bcd60e51b8152600401808060200182810382526021815260200180612a536021913960400191505060405180910390fd5b600f541580156126125750601054155b1561261c57612632565b600f805460115560108054601255600091829055555b565b60008060008060008061264687611e78565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126789088611ed4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126a79087611ed4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126d69086611e1e565b6001600160a01b0389166000908152600360205260409020556126f8816128c6565b612702848361294f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061276a87611e78565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061279c9087611ed4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127d29084611e1e565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126d69086611e1e565b60008060008060008061281387611e78565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126a79087611ed4565b60008060008060008061285787611e78565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128899088611ed4565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461279c9087611ed4565b601154600f55601254601055565b60006128d0611db2565b905060006128de83836125a9565b306000908152600360205260409020549091506128fb9082611e1e565b3060009081526003602090815260408083209390935560079052205460ff161561294a57306000908152600460205260409020546129399084611e1e565b306000908152600460205260409020555b505050565b600a5461295c9083611ed4565b600a55600b5461296c9082611e1e565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373646576656c6f706d656e744665652073686f756c6420626520696e2031202d203235416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f38de35373e2f76927cf150dbfc7f893a4d61ba7cd18b7aabfa65876b003685964736f6c634300060c0033000000000000000000000000f647465ad5bc16b0e21e5e697dee9bbe848fdc01000000000000000000000000f647465ad5bc16b0e21e5e697dee9bbe848fdc01

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806370a082311161012e578063dd467064116100ab578063f2fde38b1161006f578063f2fde38b14610854578063f429389014610887578063f815a8421461089c578063f84354f1146108b1578063fbeb37be146108e457610246565b8063dd4670641461075d578063dd62ed3e14610787578063e01af92c146107c2578063e53a606f146107ee578063f2cc0c181461082157610246565b8063a69df4b5116100f2578063a69df4b51461068c578063a9059cbb146106a1578063af9549e0146106da578063b6c5232414610715578063cba0e9961461072a57610246565b806370a08231146105e1578063715018a6146106145780638da5cb5b1461062957806395d89b411461063e578063a457c2d71461065357610246565b8063313ce567116101bc57806349bd5a5e1161018057806349bd5a5e1461054557806351bc3c851461055a5780635342acb41461056f5780635880b873146105a25780636ddd1713146105cc57610246565b8063313ce56714610470578063395093511461049b5780633bd5d173146104d45780634144d9e4146104fe5780634549b0391461051357610246565b80631bbae6e0116102035780631bbae6e01461038f5780631ff53b60146103bb57806323b872dd146103ee57806325250c71146104315780632d8381191461044657610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b5061026061090e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b0381351690602001356109a4565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109c2565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109c8565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ec565b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b50356109f2565b005b3480156103c757600080fd5b506103b9600480360360208110156103de57600080fd5b50356001600160a01b0316610a4f565b3480156103fa57600080fd5b5061030e6004803603606081101561041157600080fd5b506001600160a01b03813581169160208101359091169060400135610ac9565b34801561043d57600080fd5b5061035e610b50565b34801561045257600080fd5b506103376004803603602081101561046957600080fd5b5035610b5f565b34801561047c57600080fd5b50610485610bc1565b6040805160ff9092168252519081900360200190f35b3480156104a757600080fd5b5061030e600480360360408110156104be57600080fd5b506001600160a01b038135169060200135610bca565b3480156104e057600080fd5b506103b9600480360360208110156104f757600080fd5b5035610c18565b34801561050a57600080fd5b5061035e610cf2565b34801561051f57600080fd5b506103376004803603604081101561053657600080fd5b50803590602001351515610d01565b34801561055157600080fd5b5061035e610d93565b34801561056657600080fd5b506103b9610db7565b34801561057b57600080fd5b5061030e6004803603602081101561059257600080fd5b50356001600160a01b0316610e28565b3480156105ae57600080fd5b506103b9600480360360208110156105c557600080fd5b5035610e46565b3480156105d857600080fd5b5061030e610ef9565b3480156105ed57600080fd5b506103376004803603602081101561060457600080fd5b50356001600160a01b0316610f09565b34801561062057600080fd5b506103b9610f6b565b34801561063557600080fd5b5061035e610ffb565b34801561064a57600080fd5b5061026061100a565b34801561065f57600080fd5b5061030e6004803603604081101561067657600080fd5b506001600160a01b03813516906020013561106b565b34801561069857600080fd5b506103b96110d3565b3480156106ad57600080fd5b5061030e600480360360408110156106c457600080fd5b506001600160a01b0381351690602001356111c1565b3480156106e657600080fd5b506103b9600480360360408110156106fd57600080fd5b506001600160a01b03813516906020013515156111d5565b34801561072157600080fd5b50610337611258565b34801561073657600080fd5b5061030e6004803603602081101561074d57600080fd5b50356001600160a01b031661125e565b34801561076957600080fd5b506103b96004803603602081101561078057600080fd5b503561127c565b34801561079357600080fd5b50610337600480360360408110156107aa57600080fd5b506001600160a01b038135811691602001351661131a565b3480156107ce57600080fd5b506103b9600480360360208110156107e557600080fd5b50351515611345565b3480156107fa57600080fd5b506103b96004803603602081101561081157600080fd5b50356001600160a01b03166113bb565b34801561082d57600080fd5b506103b96004803603602081101561084457600080fd5b50356001600160a01b0316611435565b34801561086057600080fd5b506103b96004803603602081101561087757600080fd5b50356001600160a01b0316611617565b34801561089357600080fd5b506103b96116fd565b3480156108a857600080fd5b5061033761175f565b3480156108bd57600080fd5b506103b9600480360360208110156108d457600080fd5b50356001600160a01b0316611763565b3480156108f057600080fd5b506103b96004803603602081101561090757600080fd5b5035611924565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561099a5780601f1061096f5761010080835404028352916020019161099a565b820191906000526020600020905b81548152906001019060200180831161097d57829003601f168201915b5050505050905090565b60006109b86109b16119ce565b84846119d2565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6109fa6119ce565b6000546001600160a01b03908116911614610a4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601555565b610a576119ce565b6000546001600160a01b03908116911614610aa7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ad6848484611abe565b610b4684610ae26119ce565b610b4185604051806060016040528060288152602001612a74602891396001600160a01b038a16600090815260056020526040812090610b206119ce565b6001600160a01b031681526020810191909152604001600020549190611d1b565b6119d2565b5060019392505050565b6013546001600160a01b031681565b6000600a54821115610ba25760405162461bcd60e51b815260040180806020018281038252602a8152602001806129b9602a913960400191505060405180910390fd5b6000610bac611db2565b9050610bb88382611dd5565b9150505b919050565b600e5460ff1690565b60006109b8610bd76119ce565b84610b418560056000610be86119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e1e565b6000610c226119ce565b6001600160a01b03811660009081526007602052604090205490915060ff1615610c7d5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b70602c913960400191505060405180910390fd5b6000610c8883611e78565b505050506001600160a01b038416600090815260036020526040902054919250610cb491905082611ed4565b6001600160a01b038316600090815260036020526040902055600a54610cda9082611ed4565b600a55600b54610cea9084611e1e565b600b55505050565b6014546001600160a01b031681565b6000600954831115610d5a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d79576000610d6a84611e78565b509395506109bc945050505050565b6000610d8484611e78565b509295506109bc945050505050565b7f000000000000000000000000754982a2c248a67aaf27d34744c920429ff78f7281565b610dbf6119ce565b6000546001600160a01b03908116911614610e0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6000610e1a30610f09565b9050610e2581611f16565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610e4e6119ce565b6000546001600160a01b03908116911614610e9e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6019811115610ef4576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203235000000000000604482015290519081900360640190fd5b600f55565b601454600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff1615610f4957506001600160a01b038116600090815260046020526040902054610bbc565b6001600160a01b0382166000908152600360205260409020546109bc90610b5f565b610f736119ce565b6000546001600160a01b03908116911614610fc3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612abc833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561099a5780601f1061096f5761010080835404028352916020019161099a565b60006109b86110786119ce565b84610b4185604051806060016040528060258152602001612bbf60259139600560006110a26119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d1b565b6001546001600160a01b0316331461111c5760405162461bcd60e51b8152600401808060200182810382526023815260200180612b9c6023913960400191505060405180910390fd5b6002544211611172576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612abc83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109b86111ce6119ce565b8484611abe565b6111dd6119ce565b6000546001600160a01b0390811691161461122d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b6112846119ce565b6000546001600160a01b039081169116146112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612abc833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61134d6119ce565b6000546001600160a01b0390811691161461139d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b60148054911515600160a81b0260ff60a81b19909216919091179055565b6113c36119ce565b6000546001600160a01b03908116911614611413576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b61143d6119ce565b6000546001600160a01b0390811691161461148d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156114e95760405162461bcd60e51b8152600401808060200182810382526022815260200180612b4e6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611557576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156115b1576001600160a01b03811660009081526003602052604090205461159790610b5f565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b61161f6119ce565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b0381166116b45760405162461bcd60e51b81526004018080602001828103825260268152602001806129e36026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612abc83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6117056119ce565b6000546001600160a01b03908116911614611755576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b47610e258161214d565b4790565b61176b6119ce565b6000546001600160a01b039081169116146117bb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611828576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561192057816001600160a01b03166008828154811061184c57fe5b6000918252602090912001546001600160a01b031614156119185760088054600019810190811061187957fe5b600091825260209091200154600880546001600160a01b03909216918390811061189f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff1916905560088054806118f157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611920565b60010161182b565b5050565b61192c6119ce565b6000546001600160a01b0390811691161461197c576040805162461bcd60e51b81526020600482018190526024820152600080516020612a9c833981519152604482015290519081900360640190fd5b6001811015801561198e575060198111155b6119c95760405162461bcd60e51b81526004018080602001828103825260228152602001806129976022913960400191505060405180910390fd5b601055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526024815260200180612b2a6024913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b035760405162461bcd60e51b8152600401808060200182810382526025815260200180612b056025913960400191505060405180910390fd5b6001600160a01b038216611b485760405162461bcd60e51b81526004018080602001828103825260238152602001806129746023913960400191505060405180910390fd5b60008111611b875760405162461bcd60e51b8152600401808060200182810382526029815260200180612adc6029913960400191505060405180910390fd5b611b8f610ffb565b6001600160a01b0316836001600160a01b031614158015611bc95750611bb3610ffb565b6001600160a01b0316826001600160a01b031614155b15611c0f57601554811115611c0f5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a2b6028913960400191505060405180910390fd5b6000611c1a30610f09565b90506015548110611c2a57506015545b6016546014549082101590600160a01b900460ff16158015611c555750601454600160a81b900460ff165b8015611c5e5750805b8015611c9c57507f000000000000000000000000754982a2c248a67aaf27d34744c920429ff78f726001600160a01b0316856001600160a01b031614155b15611cbc57611caa82611f16565b478015611cba57611cba4761214d565b505b6001600160a01b03851660009081526006602052604090205460019060ff1680611cfe57506001600160a01b03851660009081526006602052604090205460ff165b15611d07575060005b611d13868686846121e2565b505050505050565b60008184841115611daa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d6f578181015183820152602001611d57565b50505050905090810190601f168015611d9c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611dbf612356565b9092509050611dce8282611dd5565b9250505090565b6000611e1783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124b9565b9392505050565b600082820183811015611e17576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611e958a600f5460105461251e565b9250925092506000611ea5611db2565b90506000806000611eb78e878661256d565b919e509c509a509598509396509194505050505091939550919395565b6000611e1783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d1b565b6014805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611f5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fd057600080fd5b505afa158015611fe4573d6000803e3d6000fd5b505050506040513d6020811015611ffa57600080fd5b505181518290600190811061200b57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612056307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119d2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156120fb5781810151838201526020016120e3565b505050509050019650505050505050600060405180830381600087803b15801561212457600080fd5b505af1158015612138573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b6013546001600160a01b03166108fc612172600661216c8560026125a9565b90611dd5565b6040518115909202916000818181858888f1935050505015801561219a573d6000803e3d6000fd5b506014546001600160a01b03166108fc6121ba600661216c8560026125a9565b6040518115909202916000818181858888f19350505050158015611920573d6000803e3d6000fd5b806121ef576121ef612602565b6001600160a01b03841660009081526007602052604090205460ff16801561223057506001600160a01b03831660009081526007602052604090205460ff16155b1561224557612240848484612634565b612343565b6001600160a01b03841660009081526007602052604090205460ff1615801561228657506001600160a01b03831660009081526007602052604090205460ff165b1561229657612240848484612758565b6001600160a01b03841660009081526007602052604090205460ff161580156122d857506001600160a01b03831660009081526007602052604090205460ff16155b156122e857612240848484612801565b6001600160a01b03841660009081526007602052604090205460ff16801561232857506001600160a01b03831660009081526007602052604090205460ff165b1561233857612240848484612845565b612343848484612801565b80612350576123506128b8565b50505050565b600a546009546000918291825b6008548110156124875782600360006008848154811061237f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806123e457508160046000600884815481106123bd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156123fb57600a54600954945094505050506124b5565b61243b600360006008848154811061240f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed4565b925061247d600460006008848154811061245157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed4565b9150600101612363565b50600954600a5461249791611dd5565b8210156124af57600a546009549350935050506124b5565b90925090505b9091565b600081836125085760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d6f578181015183820152602001611d57565b50600083858161251457fe5b0495945050505050565b6000808080612532606461216c89896125a9565b90506000612545606461216c8a896125a9565b9050600061255d826125578b86611ed4565b90611ed4565b9992985090965090945050505050565b600080808061257c87866125a9565b9050600061258a87876125a9565b905060006125988383611ed4565b929992985090965090945050505050565b6000826125b8575060006109bc565b828202828482816125c557fe5b0414611e175760405162461bcd60e51b8152600401808060200182810382526021815260200180612a536021913960400191505060405180910390fd5b600f541580156126125750601054155b1561261c57612632565b600f805460115560108054601255600091829055555b565b60008060008060008061264687611e78565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126789088611ed4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126a79087611ed4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126d69086611e1e565b6001600160a01b0389166000908152600360205260409020556126f8816128c6565b612702848361294f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061276a87611e78565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061279c9087611ed4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127d29084611e1e565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126d69086611e1e565b60008060008060008061281387611e78565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126a79087611ed4565b60008060008060008061285787611e78565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128899088611ed4565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461279c9087611ed4565b601154600f55601254601055565b60006128d0611db2565b905060006128de83836125a9565b306000908152600360205260409020549091506128fb9082611e1e565b3060009081526003602090815260408083209390935560079052205460ff161561294a57306000908152600460205260409020546129399084611e1e565b306000908152600460205260409020555b505050565b600a5461295c9083611ed4565b600a55600b5461296c9082611e1e565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373646576656c6f706d656e744665652073686f756c6420626520696e2031202d203235416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f38de35373e2f76927cf150dbfc7f893a4d61ba7cd18b7aabfa65876b003685964736f6c634300060c0033

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

000000000000000000000000f647465ad5bc16b0e21e5e697dee9bbe848fdc01000000000000000000000000f647465ad5bc16b0e21e5e697dee9bbe848fdc01

-----Decoded View---------------
Arg [0] : developmentWalletAddress (address): 0xf647465aD5bC16B0e21E5E697deE9bbE848Fdc01
Arg [1] : marketingWalletAddress (address): 0xf647465aD5bC16B0e21E5E697deE9bbE848Fdc01

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


Deployed Bytecode Sourcemap

26692:18781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29466:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30470:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30470:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31818:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27878:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27878:51:0;;;;;;;;;;;;;;29779:103;;;;;;;;;;;;;:::i;45346:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45346:120:0;;:::i;:::-;;45161:165;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45161:165:0;-1:-1:-1;;;;;45161:165:0;;:::i;30655:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30655:329:0;;;;;;;;;;;;;;;;;:::i;27742:48::-;;;;;;;;;;;;;:::i;32826:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32826:269:0;;:::i;29676:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30996:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30996:230:0;;;;;;;;:::i;31925:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31925:405:0;;:::i;27801:46::-;;;;;;;;;;;;;:::i;32342:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32342:472:0;;;;;;;;;:::i;27940:38::-;;;;;;;;;;;;;:::i;37517:168::-;;;;;;;;;;;;;:::i;34591:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34591:131:0;-1:-1:-1;;;;;34591:131:0;;:::i;44510:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44510:181:0;;:::i;28021:30::-;;;;;;;;;;;;;:::i;29894:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29894:210:0;-1:-1:-1;;;;;29894:210:0;;:::i;16527:160::-;;;;;;;;;;;;;:::i;15825:87::-;;;;;;;;;;;;;:::i;29569:95::-;;;;;;;;;;;;;:::i;31238:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31238:281:0;;;;;;;;:::i;17634:313::-;;;;;;;;;;;;;:::i;30116:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30116:179:0;;;;;;;;:::i;31661:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31661:145:0;;;;;;;;;;:::i;17131:97::-;;;;;;;;;;;;;:::i;31531:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31531:118:0;-1:-1:-1;;;;;31531:118:0;;:::i;17312:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17312:234:0;;:::i;30307:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30307:151:0;;;;;;;;;;:::i;37892:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37892:106:0;;;;:::i;44960:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44960:173:0;-1:-1:-1;;;;;44960:173:0;;:::i;33107:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33107:475:0;-1:-1:-1;;;;;33107:475:0;;:::i;16859:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16859:260:0;-1:-1:-1;;;;;16859:260:0;;:::i;37705:175::-;;;;;;;;;;;;;:::i;44372:118::-;;;;;;;;;;;;;:::i;33594:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:522:0;-1:-1:-1;;;;;33594:522:0;;:::i;44703:237::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44703:237:0;;:::i;29466:91::-;29540:5;29533:12;;;;;;;;-1:-1:-1;;29533:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29503:13;;29533:12;;29540:5;;29533:12;;29540:5;29533:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29466:91;:::o;30470:173::-;30545:4;30566:39;30575:12;:10;:12::i;:::-;30589:7;30598:6;30566:8;:39::i;:::-;-1:-1:-1;30627:4:0;30470:173;;;;;:::o;31818:95::-;31891:10;;31818:95;:::o;27878:51::-;;;:::o;29779:103::-;29863:7;;29779:103;:::o;45346:120::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;45428:12:::1;:26:::0;45346:120::o;45161:165::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;45266:23:::1;:48:::0;;-1:-1:-1;;;;;;45266:48:0::1;-1:-1:-1::0;;;;;45266:48:0;;;::::1;::::0;;;::::1;::::0;;45161:165::o;30655:329::-;30753:4;30774:36;30784:6;30792:9;30803:6;30774:9;:36::i;:::-;30825:121;30834:6;30842:12;:10;:12::i;:::-;30856:89;30894:6;30856:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30856:19:0;;;;;;:11;:19;;;;;;30876:12;:10;:12::i;:::-;-1:-1:-1;;;;;30856:33:0;;;;;;;;;;;;-1:-1:-1;30856:33:0;;;:89;:37;:89::i;:::-;30825:8;:121::i;:::-;-1:-1:-1;30968:4:0;30655:329;;;;;:::o;27742:48::-;;;-1:-1:-1;;;;;27742:48:0;;:::o;32826:269::-;32892:7;32935;;32924;:18;;32916:73;;;;-1:-1:-1;;;32916:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33004:19;33027:10;:8;:10::i;:::-;33004:33;-1:-1:-1;33059:24:0;:7;33004:33;33059:11;:24::i;:::-;33052:31;;;32826:269;;;;:::o;29676:91::-;29746:9;;;;29676:91;:::o;30996:230::-;31084:4;31105:83;31114:12;:10;:12::i;:::-;31128:7;31137:50;31176:10;31137:11;:25;31149:12;:10;:12::i;:::-;-1:-1:-1;;;;;31137:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31137:25:0;;;:34;;;;;;;;;;;:38;:50::i;31925:405::-;31981:14;31998:12;:10;:12::i;:::-;-1:-1:-1;;;;;32034:19:0;;;;;;:11;:19;;;;;;31981:29;;-1:-1:-1;32034:19:0;;32033:20;32025:77;;;;-1:-1:-1;;;32025:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32118:15;32142:19;32153:7;32142:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32194:15:0;;;;;;:7;:15;;;;;;32117:44;;-1:-1:-1;32194:28:0;;:15;-1:-1:-1;32117:44:0;32194:19;:28::i;:::-;-1:-1:-1;;;;;32176:15:0;;;;;;:7;:15;;;;;:46;32247:7;;:20;;32259:7;32247:11;:20::i;:::-;32237:7;:30;32295:10;;:23;;32310:7;32295:14;:23::i;:::-;32282:10;:36;-1:-1:-1;;;31925:405:0:o;27801:46::-;;;-1:-1:-1;;;;;27801:46:0;;:::o;32342:472::-;32432:7;32475;;32464;:18;;32456:62;;;;;-1:-1:-1;;;32456:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32538:17;32533:270;;32577:15;32601:19;32612:7;32601:10;:19::i;:::-;-1:-1:-1;32576:44:0;;-1:-1:-1;32639:14:0;;-1:-1:-1;;;;;32639:14:0;32533:270;32696:23;32727:19;32738:7;32727:10;:19::i;:::-;-1:-1:-1;32694:52:0;;-1:-1:-1;32765:22:0;;-1:-1:-1;;;;;32765:22:0;27940:38;;;:::o;37517:168::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;37575:23:::1;37601:24;37619:4;37601:9;:24::i;:::-;37575:50;;37640:33;37657:15;37640:16;:33::i;:::-;16137:1;37517:168::o:0;34591:131::-;-1:-1:-1;;;;;34683:27:0;34655:4;34683:27;;;:18;:27;;;;;;;;;34591:131::o;44510:181::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;44615:2:::1;44605:6;:12;;44582:66;;;::::0;;-1:-1:-1;;;44582:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;44663:7;:16:::0;44510:181::o;28021:30::-;;;-1:-1:-1;;;28021:30:0;;;;;:::o;29894:210::-;-1:-1:-1;;;;;29988:20:0;;29960:7;29988:20;;;:11;:20;;;;;;;;29984:49;;;-1:-1:-1;;;;;;30017:16:0;;;;;;:7;:16;;;;;;30010:23;;29984:49;-1:-1:-1;;;;;30075:16:0;;;;;;:7;:16;;;;;;30055:37;;:19;:37::i;16527:160::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;16638:1:::1;16622:6:::0;;16601:40:::1;::::0;-1:-1:-1;;;;;16622:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16601:40:0;16638:1;;16601:40:::1;16673:1;16656:19:::0;;-1:-1:-1;;;;;;16656:19:0::1;::::0;;16527:160::o;15825:87::-;15863:7;15894:6;-1:-1:-1;;;;;15894:6:0;15825:87;:::o;29569:95::-;29645:7;29638:14;;;;;;;;-1:-1:-1;;29638:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29608:13;;29638:14;;29645:7;;29638:14;;29645:7;29638:14;;;;;;;;;;;;;;;;;;;;;;;;31238:281;31331:4;31352:129;31361:12;:10;:12::i;:::-;31375:7;31384:96;31423:15;31384:96;;;;;;;;;;;;;;;;;:11;:25;31396:12;:10;:12::i;:::-;-1:-1:-1;;;;;31384:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31384:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17634:313::-;17690:14;;-1:-1:-1;;;;;17690:14:0;17708:10;17690:28;17682:76;;;;-1:-1:-1;;;17682:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17787:9;;17781:3;:15;17773:60;;;;;-1:-1:-1;;;17773:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17882:14;;;17874:6;;17853:44;;-1:-1:-1;;;;;17882:14:0;;;;17874:6;;;;-1:-1:-1;;;;;;;;;;;17853:44:0;;17921:14;;;17912:23;;-1:-1:-1;;;;;;17912:23:0;-1:-1:-1;;;;;17921:14:0;;;17912:23;;;;;;17634:313::o;30116:179::-;30194:4;30215:42;30225:12;:10;:12::i;:::-;30239:9;30250:6;30215:9;:42::i;31661:145::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31756:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;31756:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31661:145::o;17131:97::-;17207:9;;17131:97;:::o;31531:118::-;-1:-1:-1;;;;;31617:20:0;31589:4;31617:20;;;:11;:20;;;;;;;;;31531:118::o;17312:234::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;17397:6:::1;::::0;;;17380:23;;-1:-1:-1;;;;;;17380:23:0;;::::1;-1:-1:-1::0;;;;;17397:6:0;::::1;17380:23;::::0;;;17418:19:::1;::::0;;17464:3:::1;:10:::0;::::1;17452:9;:22:::0;17494:40:::1;::::0;17397:6;;-1:-1:-1;;;;;;;;;;;17494:40:0;17397:6;;17494:40:::1;17312:234:::0;:::o;30307:151::-;-1:-1:-1;;;;;30419:18:0;;;30388:7;30419:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30307:151::o;37892:106::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;37965:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;37965:21:0::1;-1:-1:-1::0;;;;37965:21:0;;::::1;::::0;;;::::1;::::0;;37892:106::o;44960:173::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;45069:25:::1;:52:::0;;-1:-1:-1;;;;;;45069:52:0::1;-1:-1:-1::0;;;;;45069:52:0;;;::::1;::::0;;;::::1;::::0;;44960:173::o;33107:475::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;33203:42:::1;-1:-1:-1::0;;;;;33192:53:0;::::1;;;33184:100;;;;-1:-1:-1::0;;;33184:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33308:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33307:21;33299:61;;;::::0;;-1:-1:-1;;;33299:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33378:16:0;::::1;33397:1;33378:16:::0;;;:7:::1;:16;::::0;;;;;:20;33375:116:::1;;-1:-1:-1::0;;;;;33458:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33438:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33419:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33375:116:::1;-1:-1:-1::0;;;;;33505:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33505:27:0::1;33528:4;33505:27:::0;;::::1;::::0;;;33547:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33547:23:0::1;::::0;;::::1;::::0;;33107:475::o;16859:260::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16952:22:0;::::1;16944:73;;;;-1:-1:-1::0;;;16944:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17058:6;::::0;;17037:38:::1;::::0;-1:-1:-1;;;;;17037:38:0;;::::1;::::0;17058:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17037:38:0;::::1;17090:6;:17:::0;;-1:-1:-1;;;;;;17090:17:0::1;-1:-1:-1::0;;;;;17090:17:0;;;::::1;::::0;;;::::1;::::0;;16859:260::o;37705:175::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;37792:21:::1;37828:40;37792:21:::0;37828:20:::1;:40::i;44372:118::-:0;44457:21;44372:118;:::o;33594:522::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33679:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33671:60;;;::::0;;-1:-1:-1;;;33671:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33751:9;33746:359;33770:9;:16:::0;33766:20;::::1;33746:359;;;33832:7;-1:-1:-1::0;;;;;33816:23:0::1;:9;33826:1;33816:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33816:12:0::1;:23;33812:278;;;33879:9;33889:16:::0;;-1:-1:-1;;33889:20:0;;;33879:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33864:9:::1;:12:::0;;-1:-1:-1;;;;;33879:31:0;;::::1;::::0;33874:1;;33864:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33864:46:0::1;-1:-1:-1::0;;;;;33864:46:0;;::::1;;::::0;;33933:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33976:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33976:28:0::1;::::0;;34027:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34027:15:0;;;;;-1:-1:-1;;;;;;34027:15:0::1;::::0;;;;;34065:5:::1;;33812:278;33788:3;;33746:359;;;;33594:522:::0;:::o;44703:237::-;16073:12;:10;:12::i;:::-;16063:6;;-1:-1:-1;;;;;16063:6:0;;;:22;;;16055:67;;;;;-1:-1:-1;;;16055:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16055:67:0;;;;;;;;;;;;;;;44817:1:::1;44799:14;:19;;:43;;;;;44840:2;44822:14;:20;;44799:43;44791:90;;;;-1:-1:-1::0;;;44791:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44896:15;:32:::0;44703:237::o;282:114::-;374:10;282:114;:::o;34734:357::-;-1:-1:-1;;;;;34831:19:0;;34823:68;;;;-1:-1:-1;;;34823:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34914:21:0;;34906:68;;;;-1:-1:-1;;;34906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34991:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35047:32;;;;;;;;;;;;;;;;;34734:357;;;:::o;35103:1569::-;-1:-1:-1;;;;;35204:20:0;;35196:70;;;;-1:-1:-1;;;35196:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35289:23:0;;35281:71;;;;-1:-1:-1;;;35281:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35384:1;35375:6;:10;35367:64;;;;-1:-1:-1;;;35367:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35473:7;:5;:7::i;:::-;-1:-1:-1;;;;;35463:17:0;:6;-1:-1:-1;;;;;35463:17:0;;;:41;;;;;35497:7;:5;:7::i;:::-;-1:-1:-1;;;;;35484:20:0;:9;-1:-1:-1;;;;;35484:20:0;;;35463:41;35460:138;;;35541:12;;35531:6;:22;;35523:75;;;;-1:-1:-1;;;35523:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35629:28;35660:24;35678:4;35660:9;:24::i;:::-;35629:55;;35740:12;;35716:20;:36;35713:124;;-1:-1:-1;35809:12:0;;35713:124;35916:36;;35972:6;;35892:60;;;;;-1:-1:-1;;;35972:6:0;;;;35971:7;:22;;;;-1:-1:-1;35982:11:0;;-1:-1:-1;;;35982:11:0;;;;35971:22;:45;;;;;35997:19;35971:45;:72;;;;;36030:13;-1:-1:-1;;;;;36020:23:0;:6;-1:-1:-1;;;;;36020:23:0;;;35971:72;35967:387;;;36082:38;36099:20;36082:16;:38::i;:::-;36186:21;36229:22;;36226:113;;36276:43;36297:21;36276:20;:43::i;:::-;35967:387;;-1:-1:-1;;;;;36461:26:0;;36396:12;36461:26;;;:18;:26;;;;;;36411:4;;36461:26;;;:59;;-1:-1:-1;;;;;;36491:29:0;;;;;;:18;:29;;;;;;;;36461:59;36458:113;;;-1:-1:-1;36550:5:0;36458:113;36613:47;36628:6;36635:9;36645:6;36652:7;36613:14;:47::i;:::-;35103:1569;;;;;;:::o;4809:208::-;4895:7;4935:12;4927:6;;;;4919:29;;;;-1:-1:-1;;;4919:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4975:5:0;;;4809:208::o;43344:175::-;43385:7;43410:15;43427;43446:19;:17;:19::i;:::-;43409:56;;-1:-1:-1;43409:56:0;-1:-1:-1;43487:20:0;43409:56;;43487:11;:20::i;:::-;43480:27;;;;43344:175;:::o;6339:140::-;6397:7;6428:39;6432:1;6435;6428:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6421:46;6339:140;-1:-1:-1;;;6339:140:0:o;3812:197::-;3870:7;3906:5;;;3934:6;;;;3926:46;;;;;-1:-1:-1;;;3926:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;42046:502;42105:7;42114;42123;42132;42141;42150;42175:23;42200:12;42214:20;42238:46;42250:7;42259;;42268:15;;42238:11;:46::i;:::-;42174:110;;;;;;42299:19;42322:10;:8;:10::i;:::-;42299:33;;42348:15;42365:23;42390:12;42406:39;42418:7;42427:4;42433:11;42406;:39::i;:::-;42347:98;;-1:-1:-1;42347:98:0;-1:-1:-1;42347:98:0;-1:-1:-1;42500:15:0;;-1:-1:-1;42517:4:0;;-1:-1:-1;42523:12:0;;-1:-1:-1;;;;;42046:502:0;;;;;;;:::o;4327:144::-;4385:7;4416:43;4420:1;4423;4416:43;;;;;;;;;;;;;;;;;:3;:43::i;36684:563::-;28437:6;:13;;-1:-1:-1;;;;28437:13:0;-1:-1:-1;;;28437:13:0;;;36803:16:::1;::::0;;36817:1:::1;36803:16:::0;;;36779:21:::1;36803:16:::0;;::::1;::::0;;36779:21;36803:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;36803:16:0::1;36779:40;;36852:4;36834;36839:1;36834:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;36834:23:0::1;;;-1:-1:-1::0;;;;;36834:23:0::1;;;::::0;::::1;36882:15;-1:-1:-1::0;;;;;36882:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36882:22:0;36872:7;;:4;;36877:1:::1;::::0;36872:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;36872:32:0::1;;;-1:-1:-1::0;;;;;36872:32:0::1;;;::::0;::::1;36921:62;36938:4;36953:15;36971:11;36921:8;:62::i;:::-;37014:15;-1:-1:-1::0;;;;;37014:66:0::1;;37099:11;37129:1;37150:4;37181;37205:15;37014:221;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;37014:221:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28481:6:0;:14;;-1:-1:-1;;;;28481:14:0;;;-1:-1:-1;;;;36684:563:0:o;37267:220::-;37336:25;;-1:-1:-1;;;;;37336:25:0;:56;37371:20;37389:1;37371:13;:6;37382:1;37371:10;:13::i;:::-;:17;;:20::i;:::-;37336:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37407:23:0;;-1:-1:-1;;;;;37407:23:0;:54;37440:20;37458:1;37440:13;:6;37451:1;37440:10;:13::i;:20::-;37407:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38018:883;38134:7;38130:44;;38160:14;:12;:14::i;:::-;-1:-1:-1;;;;;38195:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;38219:22:0;;;;;;:11;:22;;;;;;;;38218:23;38195:46;38191:637;;;38262:48;38284:6;38292:9;38303:6;38262:21;:48::i;:::-;38191:637;;;-1:-1:-1;;;;;38337:19:0;;;;;;:11;:19;;;;;;;;38336:20;:46;;;;-1:-1:-1;;;;;;38360:22:0;;;;;;:11;:22;;;;;;;;38336:46;38332:496;;;38403:46;38423:6;38431:9;38442:6;38403:19;:46::i;38332:496::-;-1:-1:-1;;;;;38476:19:0;;;;;;:11;:19;;;;;;;;38475:20;:47;;;;-1:-1:-1;;;;;;38500:22:0;;;;;;:11;:22;;;;;;;;38499:23;38475:47;38471:357;;;38543:44;38561:6;38569:9;38580:6;38543:17;:44::i;38471:357::-;-1:-1:-1;;;;;38613:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;38636:22:0;;;;;;:11;:22;;;;;;;;38613:45;38609:219;;;38679:48;38701:6;38709:9;38720:6;38679:21;:48::i;38609:219::-;38768:44;38786:6;38794:9;38805:6;38768:17;:44::i;:::-;38848:7;38844:45;;38874:15;:13;:15::i;:::-;38018:883;;;;:::o;43531:601::-;43632:7;;43672;;43581;;;;;43700:305;43724:9;:16;43720:20;;43700:305;;;43794:7;43770;:21;43778:9;43788:1;43778:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43778:12:0;43770:21;;;;;;;;;;;;;:31;;:66;;;43829:7;43805;:21;43813:9;43823:1;43813:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43813:12:0;43805:21;;;;;;;;;;;;;:31;43770:66;43766:97;;;43846:7;;43855;;43838:25;;;;;;;;;43766:97;43892:34;43904:7;:21;43912:9;43922:1;43912:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43912:12:0;43904:21;;;;;;;;;;;;;43892:7;;:11;:34::i;:::-;43882:44;;43955:34;43967:7;:21;43975:9;43985:1;43975:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43975:12:0;43967:21;;;;;;;;;;;;;43955:7;;:11;:34::i;:::-;43945:44;-1:-1:-1;43742:3:0;;43700:305;;;-1:-1:-1;44045:7:0;;44033;;:20;;:11;:20::i;:::-;44023:7;:30;44019:61;;;44063:7;;44072;;44055:25;;;;;;;;44019:61;44103:7;;-1:-1:-1;44112:7:0;-1:-1:-1;43531:601:0;;;:::o;7016:298::-;7102:7;7141:12;7134:5;7126:28;;;;-1:-1:-1;;;7126:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7169:9;7185:1;7181;:5;;;;;;;7016:298;-1:-1:-1;;;;;7016:298:0:o;42560:406::-;42660:7;;;;42717:28;42741:3;42717:19;:7;42729:6;42717:11;:19::i;:28::-;42702:43;-1:-1:-1;42760:20:0;42783:36;42815:3;42783:27;:7;42795:14;42783:11;:27::i;:36::-;42760:59;-1:-1:-1;42834:23:0;42860:35;42760:59;42860:17;:7;42872:4;42860:11;:17::i;:::-;:21;;:35::i;:::-;42834:61;42935:4;;-1:-1:-1;42941:12:0;;-1:-1:-1;42560:406:0;;-1:-1:-1;;;;;42560:406:0:o;42978:354::-;43073:7;;;;43133:24;:7;43145:11;43133;:24::i;:::-;43115:42;-1:-1:-1;43172:12:0;43187:21;:4;43196:11;43187:8;:21::i;:::-;43172:36;-1:-1:-1;43223:23:0;43249:17;:7;43172:36;43249:11;:17::i;:::-;43289:7;;;;-1:-1:-1;43315:4:0;;-1:-1:-1;42978:354:0;;-1:-1:-1;;;;;42978:354:0:o;5311:511::-;5369:7;5630:6;5626:55;;-1:-1:-1;5664:1:0;5657:8;;5626:55;5709:5;;;5713:1;5709;:5;:1;5737:5;;;;;:10;5729:56;;;;-1:-1:-1;;;5729:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34128:290;34178:7;;:12;:36;;;;-1:-1:-1;34194:15:0;;:20;34178:36;34175:48;;;34216:7;;34175:48;34269:7;;;34251:15;:25;34317:15;;;34291:23;:41;-1:-1:-1;34361:11:0;;;;34387:19;34128:290;:::o;40103:605::-;40210:15;40227:23;40252:12;40266:23;40291:12;40305:20;40329:19;40340:7;40329:10;:19::i;:::-;-1:-1:-1;;;;;40381:15:0;;;;;;:7;:15;;;;;;40209:139;;-1:-1:-1;40209:139:0;;-1:-1:-1;40209:139:0;;-1:-1:-1;40209:139:0;-1:-1:-1;40209:139:0;-1:-1:-1;40209:139:0;-1:-1:-1;40381:28:0;;40401:7;40381:19;:28::i;:::-;-1:-1:-1;;;;;40363:15:0;;;;;;:7;:15;;;;;;;;:46;;;;40442:7;:15;;;;:28;;40462:7;40442:19;:28::i;:::-;-1:-1:-1;;;;;40424:15:0;;;;;;;:7;:15;;;;;;:46;;;;40506:18;;;;;;;:39;;40529:15;40506:22;:39::i;:::-;-1:-1:-1;;;;;40485:18:0;;;;;;:7;:18;;;;;:60;40561:30;40578:12;40561:16;:30::i;:::-;40609:23;40621:4;40627;40609:11;:23::i;:::-;40669:9;-1:-1:-1;;;;;40652:44:0;40661:6;-1:-1:-1;;;;;40652:44:0;;40680:15;40652:44;;;;;;;;;;;;;;;;;;40103:605;;;;;;;;;:::o;39463:628::-;39568:15;39585:23;39610:12;39624:23;39649:12;39663:20;39687:19;39698:7;39687:10;:19::i;:::-;-1:-1:-1;;;;;39739:15:0;;;;;;:7;:15;;;;;;39567:139;;-1:-1:-1;39567:139:0;;-1:-1:-1;39567:139:0;;-1:-1:-1;39567:139:0;-1:-1:-1;39567:139:0;-1:-1:-1;39567:139:0;-1:-1:-1;39739:28:0;;39567:139;39739:19;:28::i;:::-;-1:-1:-1;;;;;39721:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;39803:18;;;;;:7;:18;;;;;:39;;39826:15;39803:22;:39::i;:::-;-1:-1:-1;;;;;39782:18:0;;;;;;:7;:18;;;;;;;;:60;;;;39878:7;:18;;;;:39;;39901:15;39878:22;:39::i;38913:538::-;39016:15;39033:23;39058:12;39072:23;39097:12;39111:20;39135:19;39146:7;39135:10;:19::i;:::-;-1:-1:-1;;;;;39187:15:0;;;;;;:7;:15;;;;;;39015:139;;-1:-1:-1;39015:139:0;;-1:-1:-1;39015:139:0;;-1:-1:-1;39015:139:0;-1:-1:-1;39015:139:0;-1:-1:-1;39015:139:0;-1:-1:-1;39187:28:0;;39015:139;39187:19;:28::i;40720:688::-;40827:15;40844:23;40869:12;40883:23;40908:12;40922:20;40946:19;40957:7;40946:10;:19::i;:::-;-1:-1:-1;;;;;40998:15:0;;;;;;:7;:15;;;;;;40826:139;;-1:-1:-1;40826:139:0;;-1:-1:-1;40826:139:0;;-1:-1:-1;40826:139:0;-1:-1:-1;40826:139:0;-1:-1:-1;40826:139:0;-1:-1:-1;40998:28:0;;41018:7;40998:19;:28::i;:::-;-1:-1:-1;;;;;40980:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41059:7;:15;;;;:28;;41079:7;41059:19;:28::i;34434:141::-;34492:15;;34482:7;:25;34540:23;;34522:15;:41;34434:141::o;41420:391::-;41491:19;41514:10;:8;:10::i;:::-;41491:33;-1:-1:-1;41539:20:0;41562:29;:12;41491:33;41562:16;:29::i;:::-;41647:4;41631:22;;;;:7;:22;;;;;;41539:52;;-1:-1:-1;41631:40:0;;41539:52;41631:26;:40::i;:::-;41622:4;41606:22;;;;:7;:22;;;;;;;;:65;;;;41689:11;:26;;;;;;41686:113;;;41775:4;41759:22;;;;:7;:22;;;;;;:40;;41786:12;41759:26;:40::i;:::-;41750:4;41734:22;;;;:7;:22;;;;;:65;41686:113;41420:391;;;:::o;41823:159::-;41905:7;;:17;;41917:4;41905:11;:17::i;:::-;41895:7;:27;41950:10;;:20;;41965:4;41950:14;:20::i;:::-;41937:10;:33;-1:-1:-1;;41823:159:0:o

Swarm Source

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