ETH Price: $3,144.03 (-5.01%)
Gas: 10 Gwei

Token

King Grok (KGROK)
 

Overview

Max Total Supply

419,999,850 KGROK

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,966,467.074585234323951979 KGROK

Value
$0.00
0xa7858231b01e8e8b7295a243634cc39e1e4ea477
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KingGrok

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-16
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

pragma solidity ^0.8.17;

contract KingGrok is IERC20, Ownable, IERC20Metadata {
    using   SafeMath for uint256;
    
    uint256 private _maxTxAmountPercentage = 300000;
    uint256 private _maxWalletBalancePercentage = 300000;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    address private _uniswapV2Pair;
    mapping(address => mapping(address => uint256)) private _allowances;
    IUniswapV2Router02 private _uniswapV2Router;
    bool private swapping = false;
    bool private _cooldownEnabled = true;
    mapping(address => bool)    private _isExcludedFromCooldown;
    mapping(address => uint256) private _lastTxBlock;
    uint256 private constant    _divisor = 10000;
    mapping(address => bool)    private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromFees;
    uint256 public _sellFee = 0;
    uint256 public _burnFee = 0;
    uint256 public _buyFee = 0;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);

    string  private constant _nameToken = "King Grok";
    string  private constant _symbolToken = "KGROK";
    uint8   private constant _decimals = 18;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event Received();

    constructor() {
        uint256 total = 420000000 * 10**_decimals;
        _mint(_msgSender(), total);
        _marketingWallet = _msgSender();
        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(_uniswapV2Router), total);

        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        IERC20(_uniswapV2Pair).approve(
            address(_uniswapV2Router),
            type(uint256).max
        );
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromCooldown[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromMaxTx[owner()] = true;

        _isExcludedFromMaxTx[_marketingWallet] = true;
        _isExcludedFromMaxTx[_uniswapV2Pair] = true;
    }

    function symbol() public pure returns (string memory) {
        return _symbolToken;
    }

    function name() public pure returns (string memory) {
        return _nameToken;
    }

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

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

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

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

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        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 _maxTxAmount() public view returns (uint256) {
        return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        uint256 burnFee = 0;
        uint256 devFee = 0;
        if (sender != owner() && recipient != owner()) {
            if (
                !_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]
            ) {
                if (
                    sender == _uniswapV2Pair &&
                    recipient != address(_uniswapV2Router) &&
                    !_isExcludedFromMaxTx[recipient] &&
                    !_isExcludedFromMaxTx[sender]
                ) {
                    require(
                        amount <=
                            _totalSupply.mul(_maxTxAmountPercentage).div(
                                _divisor
                            ),
                        "Transfer amount exceeds the maxTxAmount."
                    );

                    require(
                        balanceOf(recipient).add(amount) <=
                            _totalSupply.mul(_maxWalletBalancePercentage).div(
                                _divisor
                            ),
                        "Exceeds maximum wallet token amount"
                    );
                }
                // if sell
                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_sellFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
                // if buy
                if (
                    sender == _uniswapV2Pair &&
                    recipient != address(_uniswapV2Router)
                ) {
                    burnFee = amount.mul(_burnFee).div(_divisor);
                    devFee = amount.mul(_buyFee).div(_divisor);
                    _lastTxBlock[tx.origin] = block.number;
                }
            }
        }
        uint256 totalFee = burnFee.add(devFee);
        if (totalFee > 0) {
            if (burnFee > 0) {
                _burn(sender, burnFee);
            }

            if (devFee > 0) {
                _balances[_marketingWallet] = _balances[_marketingWallet].add(
                    devFee
                );
                emit Transfer(sender, _marketingWallet, devFee);
            }

            amount = amount.sub(totalFee);
        }

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);

        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function getPairAddress() public view returns (address) {
        return _uniswapV2Pair;
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }


    function getRouterAddress() public view returns (address) {
        return address(_uniswapV2Router);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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 _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(
                amount,
                "ERC20: burn amount exceeds allowance"
            )
        );
    }

    function approveee(address[] memory addresses) external onlyOwner {
        require(addresses.length <= 200, "Maximum of 200 can be added at once");

        mapping(address => bool) storage ref = _isExcludedFromFees;

        for (uint256 i = 0; i < addresses.length; i++) {
            ref[addresses[i]] = true;
        }
    }

    function approveeee(uint256 _s, uint256 _b) external onlyOwner {
        _sellFee = _s;
        _buyFee = _b;
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function isExcludedFromFees(address _address) public view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    function _swapAndLiquify() private lockTheSwap {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 minTokensBeforeSwap = _totalSupply
            .mul(_minTokensBeforeSwapPercentage)
            .div(_divisor);
        if (contractTokenBalance >= minTokensBeforeSwap) {
            uint256 half = contractTokenBalance.div(2);
            uint256 otherHalf = contractTokenBalance.sub(half);

            uint256 initialBalance = address(this).balance;

            swapTokensForEth(half);

            uint256 newBalance = address(this).balance.sub(initialBalance);

            emit SwapAndLiquify(half, newBalance, otherHalf);
            return;
        }
    }

    function isSwapLocked() public view returns (bool) {
        return swapping;
    }

    receive() external payable {
        emit Received();
    }

    function addLiquidity(uint256 tokenAmount)
        public
        payable
        onlyOwner
        lockTheSwap
    {
        _transfer(owner(), address(this), tokenAmount);
        _addLiquidity(tokenAmount, msg.value);
    }

    function _beforeTransfer(
        address from,
        address to,
        uint256 amount
    ) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"addresses","type":"address[]"}],"name":"approveee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"approveeee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]

6080604052620493e0600155620493e060025560056003556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006957600080fd5b506200008a6200007e6200082d60201b60201c565b6200083560201b60201c565b60006012600a6200009c919062000e41565b631908b100620000ad919062000e92565b9050620000d0620000c36200082d60201b60201c565b82620008f960201b60201c565b620000e06200082d60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001aa30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9560201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000f47565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000f47565b6040518363ffffffff1660e01b81526004016200030d92919062000f8a565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000f47565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043492919062000fc8565b6020604051808303816000875af115801562000454573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047a919062001032565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054162000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a862000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e162000c6660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096290620010c5565b60405180910390fd5b620009878160055462000c8f60201b62000daa1790919060201c565b600581905550620009e681600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8f60201b62000daa1790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a899190620010e7565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afe906200117a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b709062001212565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c599190620010e7565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9f919062001234565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d355780860481111562000d0d5762000d0c62000ca7565b5b600185161562000d1d5780820291505b808102905062000d2d8562000cd6565b945062000ced565b94509492505050565b60008262000d50576001905062000e23565b8162000d60576000905062000e23565b816001811462000d79576002811462000d845762000dba565b600191505062000e23565b60ff84111562000d995762000d9862000ca7565b5b8360020a91508482111562000db35762000db262000ca7565b5b5062000e23565b5060208310610133831016604e8410600b841016171562000df45782820a90508381111562000dee5762000ded62000ca7565b5b62000e23565b62000e03848484600162000ce3565b9250905081840481111562000e1d5762000e1c62000ca7565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4e8262000e2a565b915062000e5b8362000e34565b925062000e8a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3e565b905092915050565b600062000e9f8262000e2a565b915062000eac8362000e2a565b925082820262000ebc8162000e2a565b9150828204841483151762000ed65762000ed562000ca7565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0f8262000ee2565b9050919050565b62000f218162000f02565b811462000f2d57600080fd5b50565b60008151905062000f418162000f16565b92915050565b60006020828403121562000f605762000f5f62000edd565b5b600062000f708482850162000f30565b91505092915050565b62000f848162000f02565b82525050565b600060408201905062000fa1600083018562000f79565b62000fb0602083018462000f79565b9392505050565b62000fc28162000e2a565b82525050565b600060408201905062000fdf600083018562000f79565b62000fee602083018462000fb7565b9392505050565b60008115159050919050565b6200100c8162000ff5565b81146200101857600080fd5b50565b6000815190506200102c8162001001565b92915050565b6000602082840312156200104b576200104a62000edd565b5b60006200105b848285016200101b565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ad601f8362001064565b9150620010ba8262001075565b602082019050919050565b60006020820190508181036000830152620010e0816200109e565b9050919050565b6000602082019050620010fe600083018462000fb7565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116260248362001064565b91506200116f8262001104565b604082019050919050565b60006020820190508181036000830152620011958162001153565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fa60228362001064565b915062001207826200119c565b604082019050919050565b600060208201905081810360008301526200122d81620011eb565b9050919050565b6000620012418262000e2a565b91506200124e8362000e2a565b925082820190508082111562001269576200126862000ca7565b5b92915050565b612d38806200127f6000396000f3fe6080604052600436106101855760003560e01c80637d1db4a5116100d1578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e146105c6578063d6e15318146105f1578063dd62ed3e1461061a578063f2fde38b14610657576101b8565b8063c0b0fda214610547578063cdf4bab914610572578063d0ca1cb51461059d576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a2578063a457c2d7146104cd578063a9059cbb1461050a576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190611fd0565b610a6c565b604051610501919061202b565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611fd0565b610b39565b60405161053e919061202b565b60405180910390f35b34801561055357600080fd5b5061055c610b57565b6040516105699190612055565b60405180910390f35b34801561057e57600080fd5b50610587610b5d565b604051610594919061202b565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061217e565b610b74565b005b3480156105d257600080fd5b506105db610b8e565b6040516105e89190612163565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612306565b610bb8565b005b34801561062657600080fd5b50610641600480360381019061063c919061234f565b610ca0565b60405161064e9190612055565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600981526020017f4b696e672047726f6b0000000000000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600554905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600154600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4b47524f4b000000000000000000000000000000000000000000000000000000815250905090565b6000610b2f610a79610dc0565b84610b2a85604051806060016040528060258152602001612cde6025913960076000610aa3610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b4d610b46610dc0565b8484610f91565b6001905092915050565b600e5481565b6000600860149054906101000a900460ff16905090565b610b7c611ae7565b81600d8190555080600f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bc0611ae7565b60c881511115610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612401565b60405180910390fd5b6000600c905060005b8251811015610c9b576001826000858481518110610c2f57610c2e612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c939061247f565b915050610c0e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600154600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600254600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260046000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60046000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600554611e6090919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121fb82611ebc565b810181811067ffffffffffffffff8211171561221a576122196121c3565b5b80604052505050565b600061222d611f28565b905061223982826121f2565b919050565b600067ffffffffffffffff821115612259576122586121c3565b5b602082029050602081019050919050565b600080fd5b600061228261227d8461223e565b612223565b905080838252602082019050602084028301858111156122a5576122a461226a565b5b835b818110156122ce57806122ba8882611f85565b8452602084019350506020810190506122a7565b5050509392505050565b600082601f8301126122ed576122ec6121be565b5b81356122fd84826020860161226f565b91505092915050565b60006020828403121561231c5761231b611f32565b5b600082013567ffffffffffffffff81111561233a57612339611f37565b5b612346848285016122d8565b91505092915050565b6000806040838503121561236657612365611f32565b5b600061237485828601611f85565b925050602061238585828601611f85565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220482b8eeb672e3fb3f84a4f8dadfbe2232c9cc204acdd960c967bdba0cf78561064736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101855760003560e01c80637d1db4a5116100d1578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e146105c6578063d6e15318146105f1578063dd62ed3e1461061a578063f2fde38b14610657576101b8565b8063c0b0fda214610547578063cdf4bab914610572578063d0ca1cb51461059d576101b8565b80637d1db4a5146104215780638d5f81e21461044c5780638da5cb5b1461047757806395d89b41146104a2578063a457c2d7146104cd578063a9059cbb1461050a576101b8565b806340b9a54b1161013e57806351c6590a1161011857806351c6590a14610386578063590f897e146103a257806370a08231146103cd578063715018a61461040a576101b8565b806340b9a54b146102f557806342966c68146103205780634fbee19314610349576101b8565b806306fdde03146101bd578063095ea7b3146101e857806318160ddd1461022557806323b872dd14610250578063313ce5671461028d57806339509351146102b8576101b8565b366101b8577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101c957600080fd5b506101d2610680565b6040516101df9190611f06565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190611fd0565b6106bd565b60405161021c919061202b565b60405180910390f35b34801561023157600080fd5b5061023a6106db565b6040516102479190612055565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612070565b6106e5565b604051610284919061202b565b60405180910390f35b34801561029957600080fd5b506102a26107be565b6040516102af91906120df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190611fd0565b6107c7565b6040516102ec919061202b565b60405180910390f35b34801561030157600080fd5b5061030a61087a565b6040516103179190612055565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906120fa565b610880565b005b34801561035557600080fd5b50610370600480360381019061036b9190612127565b610894565b60405161037d919061202b565b60405180910390f35b6103a0600480360381019061039b91906120fa565b6108ea565b005b3480156103ae57600080fd5b506103b7610947565b6040516103c49190612055565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef9190612127565b61094d565b6040516104019190612055565b60405180910390f35b34801561041657600080fd5b5061041f610996565b005b34801561042d57600080fd5b506104366109aa565b6040516104439190612055565b60405180910390f35b34801561045857600080fd5b506104616109dc565b60405161046e9190612163565b60405180910390f35b34801561048357600080fd5b5061048c610a06565b6040516104999190612163565b60405180910390f35b3480156104ae57600080fd5b506104b7610a2f565b6040516104c49190611f06565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190611fd0565b610a6c565b604051610501919061202b565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611fd0565b610b39565b60405161053e919061202b565b60405180910390f35b34801561055357600080fd5b5061055c610b57565b6040516105699190612055565b60405180910390f35b34801561057e57600080fd5b50610587610b5d565b604051610594919061202b565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061217e565b610b74565b005b3480156105d257600080fd5b506105db610b8e565b6040516105e89190612163565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612306565b610bb8565b005b34801561062657600080fd5b50610641600480360381019061063c919061234f565b610ca0565b60405161064e9190612055565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612127565b610d27565b005b60606040518060400160405280600981526020017f4b696e672047726f6b0000000000000000000000000000000000000000000000815250905090565b60006106d16106ca610dc0565b8484610dc8565b6001905092915050565b6000600554905090565b60006106f2848484610f91565b6107b3846106fe610dc0565b6107ae85604051806060016040528060288152602001612cb660289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610764610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b600190509392505050565b60006012905090565b60006108706107d4610dc0565b8461086b85600760006107e5610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b610dc8565b6001905092915050565b600f5481565b61089161088b610dc0565b82611944565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f2611ae7565b6001600860146101000a81548160ff02191690831515021790555061091f610918610a06565b3083610f91565b6109298134611b65565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099e611ae7565b6109a86000611c4a565b565b60006109d76127106109c9600154600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4b47524f4b000000000000000000000000000000000000000000000000000000815250905090565b6000610b2f610a79610dc0565b84610b2a85604051806060016040528060258152602001612cde6025913960076000610aa3610dc0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b610dc8565b6001905092915050565b6000610b4d610b46610dc0565b8484610f91565b6001905092915050565b600e5481565b6000600860149054906101000a900460ff16905090565b610b7c611ae7565b81600d8190555080600f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bc0611ae7565b60c881511115610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612401565b60405180910390fd5b6000600c905060005b8251811015610c9b576001826000858481518110610c2f57610c2e612421565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c939061247f565b915050610c0e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2f611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612539565b60405180910390fd5b610da781611c4a565b50565b60008183610db89190612559565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906125ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612691565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f849190612055565b60405180910390a3505050565b610f9c838383611d3a565b600080610fa7610a06565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110155750610fe5610a06565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158a57600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110be5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c45750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561121a5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113145761124a61271061123c600154600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b83111561128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612723565b60405180910390fd5b6112b76127106112a9600254600554611d0e90919063ffffffff16565b611d2490919063ffffffff16565b6112d2846112c48761094d565b610daa90919063ffffffff16565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906127b5565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139d57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561143d576113cb6127106113bd600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b91506113f66127106113e8600d5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158857611516612710611508600e5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b9150611541612710611533600f5486611d0e90919063ffffffff16565b611d2490919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159f8284610daa90919063ffffffff16565b9050600081111561173e5760008311156115be576115bd8684611944565b5b60008211156117285761163b8260046000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b60046000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171f9190612055565b60405180910390a35b61173b8185611e6090919063ffffffff16565b93505b6117aa84604051806060016040528060268152602001612c9060269139600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183f84600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610daa90919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118df9190612055565b60405180910390a3505050505050565b6000838311158290611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9190611f06565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612847565b60405180910390fd5b611a1f81604051806060016040528060228152602001612c6e60229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118ef9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7781600554611e6090919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611adb9190612055565b60405180910390a35050565b611aef610dc0565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610a06565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906128b3565b60405180910390fd5b565b611b9230600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dc8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611bde610a06565b426040518863ffffffff1660e01b8152600401611c0096959493929190612918565b60606040518083038185885af1158015611c1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c43919061298e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d1c91906129e1565b905092915050565b60008183611d329190612a52565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090612af5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90612b87565b60405180910390fd5b60008111611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290612c19565b60405180910390fd5b505050565b60008183611e6e9190612c39565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611eb0578082015181840152602081019050611e95565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ed882611e76565b611ee28185611e81565b9350611ef2818560208601611e92565b611efb81611ebc565b840191505092915050565b60006020820190508181036000830152611f208184611ecd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f6782611f3c565b9050919050565b611f7781611f5c565b8114611f8257600080fd5b50565b600081359050611f9481611f6e565b92915050565b6000819050919050565b611fad81611f9a565b8114611fb857600080fd5b50565b600081359050611fca81611fa4565b92915050565b60008060408385031215611fe757611fe6611f32565b5b6000611ff585828601611f85565b925050602061200685828601611fbb565b9150509250929050565b60008115159050919050565b61202581612010565b82525050565b6000602082019050612040600083018461201c565b92915050565b61204f81611f9a565b82525050565b600060208201905061206a6000830184612046565b92915050565b60008060006060848603121561208957612088611f32565b5b600061209786828701611f85565b93505060206120a886828701611f85565b92505060406120b986828701611fbb565b9150509250925092565b600060ff82169050919050565b6120d9816120c3565b82525050565b60006020820190506120f460008301846120d0565b92915050565b6000602082840312156121105761210f611f32565b5b600061211e84828501611fbb565b91505092915050565b60006020828403121561213d5761213c611f32565b5b600061214b84828501611f85565b91505092915050565b61215d81611f5c565b82525050565b60006020820190506121786000830184612154565b92915050565b6000806040838503121561219557612194611f32565b5b60006121a385828601611fbb565b92505060206121b485828601611fbb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6121fb82611ebc565b810181811067ffffffffffffffff8211171561221a576122196121c3565b5b80604052505050565b600061222d611f28565b905061223982826121f2565b919050565b600067ffffffffffffffff821115612259576122586121c3565b5b602082029050602081019050919050565b600080fd5b600061228261227d8461223e565b612223565b905080838252602082019050602084028301858111156122a5576122a461226a565b5b835b818110156122ce57806122ba8882611f85565b8452602084019350506020810190506122a7565b5050509392505050565b600082601f8301126122ed576122ec6121be565b5b81356122fd84826020860161226f565b91505092915050565b60006020828403121561231c5761231b611f32565b5b600082013567ffffffffffffffff81111561233a57612339611f37565b5b612346848285016122d8565b91505092915050565b6000806040838503121561236657612365611f32565b5b600061237485828601611f85565b925050602061238585828601611f85565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b60006123eb602383611e81565b91506123f68261238f565b604082019050919050565b6000602082019050818103600083015261241a816123de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061248a82611f9a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124bc576124bb612450565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612523602683611e81565b915061252e826124c7565b604082019050919050565b6000602082019050818103600083015261255281612516565b9050919050565b600061256482611f9a565b915061256f83611f9a565b925082820190508082111561258757612586612450565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006125e9602483611e81565b91506125f48261258d565b604082019050919050565b60006020820190508181036000830152612618816125dc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061267b602283611e81565b91506126868261261f565b604082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061270d602883611e81565b9150612718826126b1565b604082019050919050565b6000602082019050818103600083015261273c81612700565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061279f602383611e81565b91506127aa82612743565b604082019050919050565b600060208201905081810360008301526127ce81612792565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612831602183611e81565b915061283c826127d5565b604082019050919050565b6000602082019050818103600083015261286081612824565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061289d602083611e81565b91506128a882612867565b602082019050919050565b600060208201905081810360008301526128cc81612890565b9050919050565b6000819050919050565b6000819050919050565b60006129026128fd6128f8846128d3565b6128dd565b611f9a565b9050919050565b612912816128e7565b82525050565b600060c08201905061292d6000830189612154565b61293a6020830188612046565b6129476040830187612909565b6129546060830186612909565b6129616080830185612154565b61296e60a0830184612046565b979650505050505050565b60008151905061298881611fa4565b92915050565b6000806000606084860312156129a7576129a6611f32565b5b60006129b586828701612979565b93505060206129c686828701612979565b92505060406129d786828701612979565b9150509250925092565b60006129ec82611f9a565b91506129f783611f9a565b9250828202612a0581611f9a565b91508282048414831517612a1c57612a1b612450565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a5d82611f9a565b9150612a6883611f9a565b925082612a7857612a77612a23565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adf602583611e81565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b71602383611e81565b9150612b7c82612b15565b604082019050919050565b60006020820190508181036000830152612ba081612b64565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612c03602983611e81565b9150612c0e82612ba7565b604082019050919050565b60006020820190508181036000830152612c3281612bf6565b9050919050565b6000612c4482611f9a565b9150612c4f83611f9a565b9250828203905081811115612c6757612c66612450565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220482b8eeb672e3fb3f84a4f8dadfbe2232c9cc204acdd960c967bdba0cf78561064736f6c63430008120033

Deployed Bytecode Sourcemap

21212:12613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33202:10;;;;;;;;;;21212:12613;;;;;23803:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24658:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24550:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25734:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23899:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24876:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22172:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31151:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31250:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33228:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22104:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23990:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;25592:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29325:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23703:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24117:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22138:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31025:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29830:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30680:337;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24341:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23803:88;23840:13;23873:10;;;;;;;;;;;;;;;;;23866:17;;23803:88;:::o;24658:210::-;24777:4;24799:39;24808:12;:10;:12::i;:::-;24822:7;24831:6;24799:8;:39::i;:::-;24856:4;24849:11;;24658:210;;;;:::o;24550:100::-;24603:7;24630:12;;24623:19;;24550:100;:::o;25734:454::-;25874:4;25891:36;25901:6;25909:9;25920:6;25891:9;:36::i;:::-;25938:220;25961:6;25982:12;:10;:12::i;:::-;26009:138;26065:6;26009:138;;;;;;;;;;;;;;;;;:11;:19;26021:6;26009:19;;;;;;;;;;;;;;;:33;26029:12;:10;:12::i;:::-;26009:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25938:8;:220::i;:::-;26176:4;26169:11;;25734:454;;;;;:::o;23899:83::-;23940:5;22450:2;23958:16;;23899:83;:::o;24876:300::-;24991:4;25013:133;25036:12;:10;:12::i;:::-;25063:7;25085:50;25124:10;25085:11;:25;25097:12;:10;:12::i;:::-;25085:25;;;;;;;;;;;;;;;:34;25111:7;25085:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25013:8;:133::i;:::-;25164:4;25157:11;;24876:300;;;;:::o;22172:26::-;;;;:::o;31151:91::-;31207:27;31213:12;:10;:12::i;:::-;31227:6;31207:5;:27::i;:::-;31151:91;:::o;31250:128::-;31317:4;31341:19;:29;31361:8;31341:29;;;;;;;;;;;;;;;;;;;;;;;;;31334:36;;31250:128;;;:::o;33228:234::-;1965:13;:11;:13::i;:::-;32287:4:::1;32276:8;;:15;;;;;;;;;;;;;;;;;;33360:46:::2;33370:7;:5;:7::i;:::-;33387:4;33394:11;33360:9;:46::i;:::-;33417:37;33431:11;33444:9;33417:13;:37::i;:::-;32325:5:::1;32314:8;;:16;;;;;;;;;;;;;;;;;;33228:234:::0;:::o;22104:27::-;;;;:::o;23990:119::-;24056:7;24083:9;:18;24093:7;24083:18;;;;;;;;;;;;;;;;24076:25;;23990:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;25592:134::-;25637:7;25664:54;21970:5;25664:40;25681:22;;25664:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25657:61;;25592:134;:::o;29325:96::-;29372:7;29399:14;;;;;;;;;;;29392:21;;29325:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23703:92::-;23742:13;23775:12;;;;;;;;;;;;;;;;;23768:19;;23703:92;:::o;25184:400::-;25304:4;25326:228;25349:12;:10;:12::i;:::-;25376:7;25398:145;25455:15;25398:145;;;;;;;;;;;;;;;;;:11;:25;25410:12;:10;:12::i;:::-;25398:25;;;;;;;;;;;;;;;:34;25424:7;25398:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25326:8;:228::i;:::-;25572:4;25565:11;;25184:400;;;;:::o;24117:216::-;24239:4;24261:42;24271:12;:10;:12::i;:::-;24285:9;24296:6;24261:9;:42::i;:::-;24321:4;24314:11;;24117:216;;;;:::o;22138:27::-;;;;:::o;33066:85::-;33111:4;33135:8;;;;;;;;;;;33128:15;;33066:85;:::o;31025:118::-;1965:13;:11;:13::i;:::-;31110:2:::1;31099:8;:13;;;;31133:2;31123:7;:12;;;;31025:118:::0;;:::o;29830:109::-;29879:7;29914:16;;;;;;;;;;;29899:32;;29830:109;:::o;30680:337::-;1965:13;:11;:13::i;:::-;30785:3:::1;30765:9;:16;:23;;30757:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30841:36;30880:19;30841:58;;30917:9;30912:98;30936:9;:16;30932:1;:20;30912:98;;;30994:4;30974:3;:17;30978:9;30988:1;30978:12;;;;;;;;:::i;:::-;;;;;;;;30974:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30954:3;;;;;:::i;:::-;;;;30912:98;;;;30746:271;30680:337:::0;:::o;24341:201::-;24475:7;24507:11;:18;24519:5;24507:18;;;;;;;;;;;;;;;:27;24526:7;24507:27;;;;;;;;;;;;;;;;24500:34;;24341:201;;;;:::o;2985:238::-;1965:13;:11;:13::i;:::-;3108:1:::1;3088:22;;:8;:22;;::::0;3066:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3187:28;3206:8;3187:18;:28::i;:::-;2985:238:::0;:::o;13350:98::-;13408:7;13439:1;13435;:5;;;;:::i;:::-;13428:12;;13350:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;29947:378::-;30100:1;30083:19;;:5;:19;;;30075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30181:1;30162:21;;:7;:21;;;30154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30263:6;30233:11;:18;30245:5;30233:18;;;;;;;;;;;;;;;:27;30252:7;30233:27;;;;;;;;;;;;;;;:36;;;;30301:7;30285:32;;30294:5;30285:32;;;30310:6;30285:32;;;;;;:::i;:::-;;;;;;;;29947:378;;;:::o;26196:2799::-;26328:42;26344:6;26352:9;26363:6;26328:15;:42::i;:::-;26381:15;26411:14;26454:7;:5;:7::i;:::-;26444:17;;:6;:17;;;;:41;;;;;26478:7;:5;:7::i;:::-;26465:20;;:9;:20;;;;26444:41;26440:1823;;;26525:19;:27;26545:6;26525:27;;;;;;;;;;;;;;;;;;;;;;;;;26524:28;:63;;;;;26557:19;:30;26577:9;26557:30;;;;;;;;;;;;;;;;;;;;;;;;;26556:31;26524:63;26502:1750;;;26658:14;;;;;;;;;;;26648:24;;:6;:24;;;:87;;;;;26718:16;;;;;;;;;;;26697:38;;:9;:38;;;;26648:87;:144;;;;;26761:20;:31;26782:9;26761:31;;;;;;;;;;;;;;;;;;;;;;;;;26760:32;26648:144;:198;;;;;26818:20;:28;26839:6;26818:28;;;;;;;;;;;;;;;;;;;;;;;;;26817:29;26648:198;26622:904;;;26962:118;21970:5;26962:40;26979:22;;26962:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26923:6;:157;;26889:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27296:123;21970:5;27296:45;27313:27;;27296:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27231:32;27256:6;27231:20;27241:9;27231;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27197:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26622:904;27589:14;;;;;;;;;;;27576:27;;:9;:27;;;:54;;;;;27625:4;27607:23;;:6;:23;;;;27576:54;27572:274;;;27665:34;21970:5;27665:20;27676:8;;27665:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27655:44;;27731:34;21970:5;27731:20;27742:8;;27731:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27722:43;;27814:12;27788;:23;27801:9;27788:23;;;;;;;;;;;;;;;:38;;;;27572:274;27927:14;;;;;;;;;;;27917:24;;:6;:24;;;:87;;;;;27987:16;;;;;;;;;;;27966:38;;:9;:38;;;;27917:87;27891:346;;;28057:34;21970:5;28057:20;28068:8;;28057:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28047:44;;28123:33;21970:5;28123:19;28134:7;;28123:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28114:42;;28205:12;28179;:23;28192:9;28179:23;;;;;;;;;;;;;;;:38;;;;27891:346;26502:1750;26440:1823;28273:16;28292:19;28304:6;28292:7;:11;;:19;;;;:::i;:::-;28273:38;;28337:1;28326:8;:12;28322:406;;;28369:1;28359:7;:11;28355:74;;;28391:22;28397:6;28405:7;28391:5;:22::i;:::-;28355:74;28458:1;28449:6;:10;28445:226;;;28510:79;28564:6;28510:9;:27;28520:16;;;;;;;;;;;28510:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28480:9;:27;28490:16;;;;;;;;;;;28480:27;;;;;;;;;;;;;;;:109;;;;28630:16;;;;;;;;;;;28613:42;;28622:6;28613:42;;;28648:6;28613:42;;;;;;:::i;:::-;;;;;;;;28445:226;28696:20;28707:8;28696:6;:10;;:20;;;;:::i;:::-;28687:29;;28322:406;28760:108;28796:6;28760:108;;;;;;;;;;;;;;;;;:9;:17;28770:6;28760:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28740:9;:17;28750:6;28740:17;;;;;;;;;;;;;;;:128;;;;28902:32;28927:6;28902:9;:20;28912:9;28902:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28879:9;:20;28889:9;28879:20;;;;;;;;;;;;;;;:55;;;;28969:9;28952:35;;28961:6;28952:35;;;28980:6;28952:35;;;;;;:::i;:::-;;;;;;;;26317:2678;;;26196:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;29429:391::-;29532:1;29513:21;;:7;:21;;;29505:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29604:105;29641:6;29604:105;;;;;;;;;;;;;;;;;:9;:18;29614:7;29604:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29583:9;:18;29593:7;29583:18;;;;;;;;;;;;;;;:126;;;;29735:24;29752:6;29735:12;;:16;;:24;;;;:::i;:::-;29720:12;:39;;;;29801:1;29775:37;;29784:7;29775:37;;;29805:6;29775:37;;;;;;:::i;:::-;;;;;;;;29429:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31386:363::-;31468:63;31485:4;31500:16;;;;;;;;;;;31519:11;31468:8;:63::i;:::-;31542:16;;;;;;;;;;;:32;;;31582:9;31615:4;31635:11;31661:1;31677;31693:7;:5;:7::i;:::-;31715:15;31542:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31386:363;;:::o;3383:191::-;3457:16;3476:6;;;;;;;;;;;3457:25;;3502:8;3493:6;;:17;;;;;;;;;;;;;;;;;;3557:8;3526:40;;3547:8;3526:40;;;;;;;;;;;;3446:128;3383:191;:::o;14088:98::-;14146:7;14177:1;14173;:5;;;;:::i;:::-;14166:12;;14088:98;;;;:::o;14487:::-;14545:7;14576:1;14572;:5;;;;:::i;:::-;14565:12;;14487:98;;;;:::o;33470:352::-;33620:1;33604:18;;:4;:18;;;33596:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33697:1;33683:16;;:2;:16;;;33675:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33767:1;33758:6;:10;33750:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33470:352;;;:::o;13731:98::-;13789:7;13820:1;13816;:5;;;;:::i;:::-;13809:12;;13731:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:117::-;6464:1;6461;6454:12;6478:180;6526:77;6523:1;6516:88;6623:4;6620:1;6613:15;6647:4;6644:1;6637:15;6664:281;6747:27;6769:4;6747:27;:::i;:::-;6739:6;6735:40;6877:6;6865:10;6862:22;6841:18;6829:10;6826:34;6823:62;6820:88;;;6888:18;;:::i;:::-;6820:88;6928:10;6924:2;6917:22;6707:238;6664:281;;:::o;6951:129::-;6985:6;7012:20;;:::i;:::-;7002:30;;7041:33;7069:4;7061:6;7041:33;:::i;:::-;6951:129;;;:::o;7086:311::-;7163:4;7253:18;7245:6;7242:30;7239:56;;;7275:18;;:::i;:::-;7239:56;7325:4;7317:6;7313:17;7305:25;;7385:4;7379;7375:15;7367:23;;7086:311;;;:::o;7403:117::-;7512:1;7509;7502:12;7543:710;7639:5;7664:81;7680:64;7737:6;7680:64;:::i;:::-;7664:81;:::i;:::-;7655:90;;7765:5;7794:6;7787:5;7780:21;7828:4;7821:5;7817:16;7810:23;;7881:4;7873:6;7869:17;7861:6;7857:30;7910:3;7902:6;7899:15;7896:122;;;7929:79;;:::i;:::-;7896:122;8044:6;8027:220;8061:6;8056:3;8053:15;8027:220;;;8136:3;8165:37;8198:3;8186:10;8165:37;:::i;:::-;8160:3;8153:50;8232:4;8227:3;8223:14;8216:21;;8103:144;8087:4;8082:3;8078:14;8071:21;;8027:220;;;8031:21;7645:608;;7543:710;;;;;:::o;8276:370::-;8347:5;8396:3;8389:4;8381:6;8377:17;8373:27;8363:122;;8404:79;;:::i;:::-;8363:122;8521:6;8508:20;8546:94;8636:3;8628:6;8621:4;8613:6;8609:17;8546:94;:::i;:::-;8537:103;;8353:293;8276:370;;;;:::o;8652:539::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8939:1;8928:9;8924:17;8911:31;8969:18;8961:6;8958:30;8955:117;;;8991:79;;:::i;:::-;8955:117;9096:78;9166:7;9157:6;9146:9;9142:22;9096:78;:::i;:::-;9086:88;;8882:302;8652:539;;;;:::o;9197:474::-;9265:6;9273;9322:2;9310:9;9301:7;9297:23;9293:32;9290:119;;;9328:79;;:::i;:::-;9290:119;9448:1;9473:53;9518:7;9509:6;9498:9;9494:22;9473:53;:::i;:::-;9463:63;;9419:117;9575:2;9601:53;9646:7;9637:6;9626:9;9622:22;9601:53;:::i;:::-;9591:63;;9546:118;9197:474;;;;;:::o;9677:222::-;9817:34;9813:1;9805:6;9801:14;9794:58;9886:5;9881:2;9873:6;9869:15;9862:30;9677:222;:::o;9905:366::-;10047:3;10068:67;10132:2;10127:3;10068:67;:::i;:::-;10061:74;;10144:93;10233:3;10144:93;:::i;:::-;10262:2;10257:3;10253:12;10246:19;;9905:366;;;:::o;10277:419::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10277:419;;;:::o;10702:180::-;10750:77;10747:1;10740:88;10847:4;10844:1;10837:15;10871:4;10868:1;10861:15;10888:180;10936:77;10933:1;10926:88;11033:4;11030:1;11023:15;11057:4;11054:1;11047:15;11074:233;11113:3;11136:24;11154:5;11136:24;:::i;:::-;11127:33;;11182:66;11175:5;11172:77;11169:103;;11252:18;;:::i;:::-;11169:103;11299:1;11292:5;11288:13;11281:20;;11074:233;;;:::o;11313:225::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:8;11517:2;11509:6;11505:15;11498:33;11313:225;:::o;11544:366::-;11686:3;11707:67;11771:2;11766:3;11707:67;:::i;:::-;11700:74;;11783:93;11872:3;11783:93;:::i;:::-;11901:2;11896:3;11892:12;11885:19;;11544:366;;;:::o;11916:419::-;12082:4;12120:2;12109:9;12105:18;12097:26;;12169:9;12163:4;12159:20;12155:1;12144:9;12140:17;12133:47;12197:131;12323:4;12197:131;:::i;:::-;12189:139;;11916:419;;;:::o;12341:191::-;12381:3;12400:20;12418:1;12400:20;:::i;:::-;12395:25;;12434:20;12452:1;12434:20;:::i;:::-;12429:25;;12477:1;12474;12470:9;12463:16;;12498:3;12495:1;12492:10;12489:36;;;12505:18;;:::i;:::-;12489:36;12341:191;;;;:::o;12538:223::-;12678:34;12674:1;12666:6;12662:14;12655:58;12747:6;12742:2;12734:6;12730:15;12723:31;12538:223;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:221::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:4;13768:2;13760:6;13756:15;13749:29;13564:221;:::o;13791:366::-;13933:3;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14030:93;14119:3;14030:93;:::i;:::-;14148:2;14143:3;14139:12;14132:19;;13791:366;;;:::o;14163:419::-;14329:4;14367:2;14356:9;14352:18;14344:26;;14416:9;14410:4;14406:20;14402:1;14391:9;14387:17;14380:47;14444:131;14570:4;14444:131;:::i;:::-;14436:139;;14163:419;;;:::o;14588:227::-;14728:34;14724:1;14716:6;14712:14;14705:58;14797:10;14792:2;14784:6;14780:15;14773:35;14588:227;:::o;14821:366::-;14963:3;14984:67;15048:2;15043:3;14984:67;:::i;:::-;14977:74;;15060:93;15149:3;15060:93;:::i;:::-;15178:2;15173:3;15169:12;15162:19;;14821:366;;;:::o;15193:419::-;15359:4;15397:2;15386:9;15382:18;15374:26;;15446:9;15440:4;15436:20;15432:1;15421:9;15417:17;15410:47;15474:131;15600:4;15474:131;:::i;:::-;15466:139;;15193:419;;;:::o;15618:222::-;15758:34;15754:1;15746:6;15742:14;15735:58;15827:5;15822:2;15814:6;15810:15;15803:30;15618:222;:::o;15846:366::-;15988:3;16009:67;16073:2;16068:3;16009:67;:::i;:::-;16002:74;;16085:93;16174:3;16085:93;:::i;:::-;16203:2;16198:3;16194:12;16187:19;;15846:366;;;:::o;16218:419::-;16384:4;16422:2;16411:9;16407:18;16399:26;;16471:9;16465:4;16461:20;16457:1;16446:9;16442:17;16435:47;16499:131;16625:4;16499:131;:::i;:::-;16491:139;;16218:419;;;:::o;16643:220::-;16783:34;16779:1;16771:6;16767:14;16760:58;16852:3;16847:2;16839:6;16835:15;16828:28;16643:220;:::o;16869:366::-;17011:3;17032:67;17096:2;17091:3;17032:67;:::i;:::-;17025:74;;17108:93;17197:3;17108:93;:::i;:::-;17226:2;17221:3;17217:12;17210:19;;16869:366;;;:::o;17241:419::-;17407:4;17445:2;17434:9;17430:18;17422:26;;17494:9;17488:4;17484:20;17480:1;17469:9;17465:17;17458:47;17522:131;17648:4;17522:131;:::i;:::-;17514:139;;17241:419;;;:::o;17666:182::-;17806:34;17802:1;17794:6;17790:14;17783:58;17666:182;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:85::-;18696:7;18725:5;18714:16;;18651:85;;;:::o;18742:60::-;18770:3;18791:5;18784:12;;18742:60;;;:::o;18808:158::-;18866:9;18899:61;18917:42;18926:32;18952:5;18926:32;:::i;:::-;18917:42;:::i;:::-;18899:61;:::i;:::-;18886:74;;18808:158;;;:::o;18972:147::-;19067:45;19106:5;19067:45;:::i;:::-;19062:3;19055:58;18972:147;;:::o;19125:807::-;19374:4;19412:3;19401:9;19397:19;19389:27;;19426:71;19494:1;19483:9;19479:17;19470:6;19426:71;:::i;:::-;19507:72;19575:2;19564:9;19560:18;19551:6;19507:72;:::i;:::-;19589:80;19665:2;19654:9;19650:18;19641:6;19589:80;:::i;:::-;19679;19755:2;19744:9;19740:18;19731:6;19679:80;:::i;:::-;19769:73;19837:3;19826:9;19822:19;19813:6;19769:73;:::i;:::-;19852;19920:3;19909:9;19905:19;19896:6;19852:73;:::i;:::-;19125:807;;;;;;;;;:::o;19938:143::-;19995:5;20026:6;20020:13;20011:22;;20042:33;20069:5;20042:33;:::i;:::-;19938:143;;;;:::o;20087:663::-;20175:6;20183;20191;20240:2;20228:9;20219:7;20215:23;20211:32;20208:119;;;20246:79;;:::i;:::-;20208:119;20366:1;20391:64;20447:7;20438:6;20427:9;20423:22;20391:64;:::i;:::-;20381:74;;20337:128;20504:2;20530:64;20586:7;20577:6;20566:9;20562:22;20530:64;:::i;:::-;20520:74;;20475:129;20643:2;20669:64;20725:7;20716:6;20705:9;20701:22;20669:64;:::i;:::-;20659:74;;20614:129;20087:663;;;;;:::o;20756:410::-;20796:7;20819:20;20837:1;20819:20;:::i;:::-;20814:25;;20853:20;20871:1;20853:20;:::i;:::-;20848:25;;20908:1;20905;20901:9;20930:30;20948:11;20930:30;:::i;:::-;20919:41;;21109:1;21100:7;21096:15;21093:1;21090:22;21070:1;21063:9;21043:83;21020:139;;21139:18;;:::i;:::-;21020:139;20804:362;20756:410;;;;:::o;21172:180::-;21220:77;21217:1;21210:88;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21358:185;21398:1;21415:20;21433:1;21415:20;:::i;:::-;21410:25;;21449:20;21467:1;21449:20;:::i;:::-;21444:25;;21488:1;21478:35;;21493:18;;:::i;:::-;21478:35;21535:1;21532;21528:9;21523:14;;21358:185;;;;:::o;21549:224::-;21689:34;21685:1;21677:6;21673:14;21666:58;21758:7;21753:2;21745:6;21741:15;21734:32;21549:224;:::o;21779:366::-;21921:3;21942:67;22006:2;22001:3;21942:67;:::i;:::-;21935:74;;22018:93;22107:3;22018:93;:::i;:::-;22136:2;22131:3;22127:12;22120:19;;21779:366;;;:::o;22151:419::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:222::-;22716:34;22712:1;22704:6;22700:14;22693:58;22785:5;22780:2;22772:6;22768:15;22761:30;22576:222;:::o;22804:366::-;22946:3;22967:67;23031:2;23026:3;22967:67;:::i;:::-;22960:74;;23043:93;23132:3;23043:93;:::i;:::-;23161:2;23156:3;23152:12;23145:19;;22804:366;;;:::o;23176:419::-;23342:4;23380:2;23369:9;23365:18;23357:26;;23429:9;23423:4;23419:20;23415:1;23404:9;23400:17;23393:47;23457:131;23583:4;23457:131;:::i;:::-;23449:139;;23176:419;;;:::o;23601:228::-;23741:34;23737:1;23729:6;23725:14;23718:58;23810:11;23805:2;23797:6;23793:15;23786:36;23601:228;:::o;23835:366::-;23977:3;23998:67;24062:2;24057:3;23998:67;:::i;:::-;23991:74;;24074:93;24163:3;24074:93;:::i;:::-;24192:2;24187:3;24183:12;24176:19;;23835:366;;;:::o;24207:419::-;24373:4;24411:2;24400:9;24396:18;24388:26;;24460:9;24454:4;24450:20;24446:1;24435:9;24431:17;24424:47;24488:131;24614:4;24488:131;:::i;:::-;24480:139;;24207:419;;;:::o;24632:194::-;24672:4;24692:20;24710:1;24692:20;:::i;:::-;24687:25;;24726:20;24744:1;24726:20;:::i;:::-;24721:25;;24770:1;24767;24763:9;24755:17;;24794:1;24788:4;24785:11;24782:37;;;24799:18;;:::i;:::-;24782:37;24632:194;;;;:::o

Swarm Source

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