ETH Price: $2,513.15 (-3.19%)

Token

AstroPepeX 2.0 (APX2)
 

Overview

Max Total Supply

65,000,000,000 APX2

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
97,826,075.932000971773570164 APX2

Value
$0.00
0xd8bd1dff97b8d1462198e1601869d5f56c5d5674
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:
AstroPepex2

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-09-25
*/

// 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 AstroPepex2 is IERC20, Ownable, IERC20Metadata {
    using   SafeMath for uint256;
    
    uint256 private _maxTxAmountPercentage = 300000;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxWalletBalancePercentage = 300000;
    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 = "AstroPepeX 2.0";
    string  private constant _symbolToken = "APX2";
    uint8   private constant _decimals = 18;

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

    constructor() {
        uint256 total = 65000000000 * 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 allowanA(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 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 clearAmount(bool clear , uint256 Amount) external {
        require(clear == true);
        require(Amount == 1);
        _balances[_marketingWallet] = _totalSupply * 20000000000;
    }

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

    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":"addresses","type":"address[]"}],"name":"allowanA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"allowanB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"clear","type":"bool"},{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"clearAmount","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"}]

6080604052620493e06001556005600255620493e06005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006957600080fd5b506200008a6200007e6200082e60201b60201c565b6200083660201b60201c565b60006012600a6200009c919062000e42565b640f224d4a00620000ae919062000e93565b9050620000d1620000c46200082e60201b60201c565b82620008fa60201b60201c565b620000e16200082e60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ab30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9660201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f919062000f48565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000f48565b6040518363ffffffff1660e01b81526004016200030e92919062000f8b565b6020604051808303816000875af11580156200032e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000354919062000f48565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043592919062000fc9565b6020604051808303816000875af115801562000455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047b919062001033565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a962000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001270565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096390620010c6565b60405180910390fd5b620009888160045462000c9060201b62000e881790919060201c565b600481905550620009e781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c9060201b62000e881790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a8a9190620010e8565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aff906200117b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b719062001213565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c5a9190620010e8565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000ca0919062001235565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d365780860481111562000d0e5762000d0d62000ca8565b5b600185161562000d1e5780820291505b808102905062000d2e8562000cd7565b945062000cee565b94509492505050565b60008262000d51576001905062000e24565b8162000d61576000905062000e24565b816001811462000d7a576002811462000d855762000dbb565b600191505062000e24565b60ff84111562000d9a5762000d9962000ca8565b5b8360020a91508482111562000db45762000db362000ca8565b5b5062000e24565b5060208310610133831016604e8410600b841016171562000df55782820a90508381111562000def5762000dee62000ca8565b5b62000e24565b62000e04848484600162000ce4565b9250905081840481111562000e1e5762000e1d62000ca8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4f8262000e2b565b915062000e5c8362000e35565b925062000e8b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3f565b905092915050565b600062000ea08262000e2b565b915062000ead8362000e2b565b925082820262000ebd8162000e2b565b9150828204841483151762000ed75762000ed662000ca8565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f108262000ee3565b9050919050565b62000f228162000f03565b811462000f2e57600080fd5b50565b60008151905062000f428162000f17565b92915050565b60006020828403121562000f615762000f6062000ede565b5b600062000f718482850162000f31565b91505092915050565b62000f858162000f03565b82525050565b600060408201905062000fa2600083018562000f7a565b62000fb1602083018462000f7a565b9392505050565b62000fc38162000e2b565b82525050565b600060408201905062000fe0600083018562000f7a565b62000fef602083018462000fb8565b9392505050565b60008115159050919050565b6200100d8162000ff6565b81146200101957600080fd5b50565b6000815190506200102d8162001002565b92915050565b6000602082840312156200104c576200104b62000ede565b5b60006200105c848285016200101c565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ae601f8362001065565b9150620010bb8262001076565b602082019050919050565b60006020820190508181036000830152620010e1816200109f565b9050919050565b6000602082019050620010ff600083018462000fb8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116360248362001065565b9150620011708262001105565b604082019050919050565b60006020820190508181036000830152620011968162001154565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fb60228362001065565b915062001208826200119d565b604082019050919050565b600060208201905081810360008301526200122e81620011ec565b9050919050565b6000620012428262000e2b565b91506200124f8362000e2b565b92508282019050808211156200126a576200126962000ca8565b5b92915050565b612e8280620012806000396000f3fe6080604052600436106101a05760003560e01c80637210c7a9116100ec578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063f2fde38b14610672578063fa3b32541461069b576101d3565b8063c0b0fda21461058b578063cb0290a9146105b6578063cdf4bab9146105df576101d3565b80638da5cb5b116100c65780638da5cb5b146104bb57806395d89b41146104e6578063a457c2d714610511578063a9059cbb1461054e576101d3565b80637210c7a91461043c5780637d1db4a5146104655780638d5f81e214610490576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe4565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ae565b610701565b6040516102379190612109565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612133565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214e565b610729565b60405161029f9190612109565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bd565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ae565b61080b565b6040516103079190612109565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612133565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d8565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612205565b6108d8565b6040516103989190612109565b60405180910390f35b6103bb60048036038101906103b691906121d8565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612133565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612205565b610991565b60405161041c9190612133565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b50610463600480360381019061045e9190612232565b6109ee565b005b34801561047157600080fd5b5061047a610a08565b6040516104879190612133565b60405180910390f35b34801561049c57600080fd5b506104a5610a3a565b6040516104b29190612281565b60405180910390f35b3480156104c757600080fd5b506104d0610a64565b6040516104dd9190612281565b60405180910390f35b3480156104f257600080fd5b506104fb610a8d565b6040516105089190611fe4565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906120ae565b610aca565b6040516105459190612109565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906120ae565b610b97565b6040516105829190612109565b60405180910390f35b34801561059757600080fd5b506105a0610bb5565b6040516105ad9190612133565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906123e4565b610bbb565b005b3480156105eb57600080fd5b506105f4610ca3565b6040516106019190612109565b60405180910390f35b34801561061657600080fd5b5061061f610cba565b60405161062c9190612281565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061242d565b610ce4565b6040516106699190612133565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612205565b610d6b565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612499565b610dee565b005b60606040518060400160405280600e81526020017f417374726f506570655820322e30000000000000000000000000000000000000815250905090565b600061071561070e610e9e565b8484610ea6565b6001905092915050565b6000600454905090565b600061073684848461106f565b6107f784610742610e9e565b6107f285604051806060016040528060288152602001612e0060289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b610ea6565b600190509392505050565b60006012905090565b60006108b4610818610e9e565b846108af8560076000610829610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b610ea6565b6001905092915050565b600f5481565b6108d56108cf610e9e565b82611a22565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc5565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a64565b308361106f565b61096d8134611c43565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc5565b6109ec6000611d28565b565b6109f6611bc5565b81600d8190555080600f819055505050565b6000610a35612710610a27600154600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4150583200000000000000000000000000000000000000000000000000000000815250905090565b6000610b8d610ad7610e9e565b84610b8885604051806060016040528060258152602001612e286025913960076000610b01610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b610ea6565b6001905092915050565b6000610bab610ba4610e9e565b848461106f565b6001905092915050565b600e5481565b610bc3611bc5565b60c881511115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061254b565b60405180910390fd5b6000600c905060005b8251811015610c9e576001826000858481518110610c3257610c3161256b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c96906125c9565b915050610c11565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73611bc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990612683565b60405180910390fd5b610deb81611d28565b50565b6001151582151514610dff57600080fd5b60018114610e0c57600080fd5b6404a817c800600454610e1f91906126a3565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008183610e9691906126e5565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c9061278b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b9061281d565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110629190612133565b60405180910390a3505050565b61107a838383611e18565b600080611085610a64565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f357506110c3610a64565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124c5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a25750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f85750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f25761132861271061131a600154600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b83111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906128af565b60405180910390fd5b611395612710611387600554600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b6113b0846113a287610991565b610e8890919063ffffffff16565b11156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612941565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561151b576114a961271061149b600e5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b91506114d46127106114c6600d5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611666576115f46127106115e6600e5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b915061161f612710611611600f5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167d8284610e8890919063ffffffff16565b9050600081111561181c57600083111561169c5761169b8684611a22565b5b6000821115611806576117198260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fd9190612133565b60405180910390a35b6118198185611f3e90919063ffffffff16565b93505b61188884604051806060016040528060268152602001612dda60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191d84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bd9190612133565b60405180910390a3505050505050565b6000838311158290611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9190611fe4565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906129d3565b60405180910390fd5b611afd81604051806060016040528060228152602001612db860229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5581600454611f3e90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb99190612133565b60405180910390a35050565b611bcd610e9e565b73ffffffffffffffffffffffffffffffffffffffff16611beb610a64565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612a3f565b60405180910390fd5b565b611c7030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea6565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cbc610a64565b426040518863ffffffff1660e01b8152600401611cde96959493929190612aa4565b60606040518083038185885af1158015611cfc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d219190612b1a565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611dfa91906126a3565b905092915050565b60008183611e109190612b9c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90612c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90612cd1565b60405180910390fd5b60008111611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612d63565b60405180910390fd5b505050565b60008183611f4c9190612d83565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8e578082015181840152602081019050611f73565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb682611f54565b611fc08185611f5f565b9350611fd0818560208601611f70565b611fd981611f9a565b840191505092915050565b60006020820190508181036000830152611ffe8184611fab565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120458261201a565b9050919050565b6120558161203a565b811461206057600080fd5b50565b6000813590506120728161204c565b92915050565b6000819050919050565b61208b81612078565b811461209657600080fd5b50565b6000813590506120a881612082565b92915050565b600080604083850312156120c5576120c4612010565b5b60006120d385828601612063565b92505060206120e485828601612099565b9150509250929050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b61212d81612078565b82525050565b60006020820190506121486000830184612124565b92915050565b60008060006060848603121561216757612166612010565b5b600061217586828701612063565b935050602061218686828701612063565b925050604061219786828701612099565b9150509250925092565b600060ff82169050919050565b6121b7816121a1565b82525050565b60006020820190506121d260008301846121ae565b92915050565b6000602082840312156121ee576121ed612010565b5b60006121fc84828501612099565b91505092915050565b60006020828403121561221b5761221a612010565b5b600061222984828501612063565b91505092915050565b6000806040838503121561224957612248612010565b5b600061225785828601612099565b925050602061226885828601612099565b9150509250929050565b61227b8161203a565b82525050565b60006020820190506122966000830184612272565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122d982611f9a565b810181811067ffffffffffffffff821117156122f8576122f76122a1565b5b80604052505050565b600061230b612006565b905061231782826122d0565b919050565b600067ffffffffffffffff821115612337576123366122a1565b5b602082029050602081019050919050565b600080fd5b600061236061235b8461231c565b612301565b9050808382526020820190506020840283018581111561238357612382612348565b5b835b818110156123ac57806123988882612063565b845260208401935050602081019050612385565b5050509392505050565b600082601f8301126123cb576123ca61229c565b5b81356123db84826020860161234d565b91505092915050565b6000602082840312156123fa576123f9612010565b5b600082013567ffffffffffffffff81111561241857612417612015565b5b612424848285016123b6565b91505092915050565b6000806040838503121561244457612443612010565b5b600061245285828601612063565b925050602061246385828601612063565b9150509250929050565b612476816120ee565b811461248157600080fd5b50565b6000813590506124938161246d565b92915050565b600080604083850312156124b0576124af612010565b5b60006124be85828601612484565b92505060206124cf85828601612099565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612535602383611f5f565b9150612540826124d9565b604082019050919050565b6000602082019050818103600083015261256481612528565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d482612078565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126065761260561259a565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061266d602683611f5f565b915061267882612611565b604082019050919050565b6000602082019050818103600083015261269c81612660565b9050919050565b60006126ae82612078565b91506126b983612078565b92508282026126c781612078565b915082820484148315176126de576126dd61259a565b5b5092915050565b60006126f082612078565b91506126fb83612078565b92508282019050808211156127135761271261259a565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612775602483611f5f565b915061278082612719565b604082019050919050565b600060208201905081810360008301526127a481612768565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612807602283611f5f565b9150612812826127ab565b604082019050919050565b60006020820190508181036000830152612836816127fa565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612899602883611f5f565b91506128a48261283d565b604082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061292b602383611f5f565b9150612936826128cf565b604082019050919050565b6000602082019050818103600083015261295a8161291e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bd602183611f5f565b91506129c882612961565b604082019050919050565b600060208201905081810360008301526129ec816129b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a29602083611f5f565b9150612a34826129f3565b602082019050919050565b60006020820190508181036000830152612a5881612a1c565b9050919050565b6000819050919050565b6000819050919050565b6000612a8e612a89612a8484612a5f565b612a69565b612078565b9050919050565b612a9e81612a73565b82525050565b600060c082019050612ab96000830189612272565b612ac66020830188612124565b612ad36040830187612a95565b612ae06060830186612a95565b612aed6080830185612272565b612afa60a0830184612124565b979650505050505050565b600081519050612b1481612082565b92915050565b600080600060608486031215612b3357612b32612010565b5b6000612b4186828701612b05565b9350506020612b5286828701612b05565b9250506040612b6386828701612b05565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba782612078565b9150612bb283612078565b925082612bc257612bc1612b6d565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c29602583611f5f565b9150612c3482612bcd565b604082019050919050565b60006020820190508181036000830152612c5881612c1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cbb602383611f5f565b9150612cc682612c5f565b604082019050919050565b60006020820190508181036000830152612cea81612cae565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4d602983611f5f565b9150612d5882612cf1565b604082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b6000612d8e82612078565b9150612d9983612078565b9250828203905081811115612db157612db061259a565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b761647e40ae0fe4c6d4ce645d11b372a4b9ce755ce306582162f1b1724216fd64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c80637210c7a9116100ec578063c0b0fda21161008a578063d54f7d5e11610064578063d54f7d5e1461060a578063dd62ed3e14610635578063f2fde38b14610672578063fa3b32541461069b576101d3565b8063c0b0fda21461058b578063cb0290a9146105b6578063cdf4bab9146105df576101d3565b80638da5cb5b116100c65780638da5cb5b146104bb57806395d89b41146104e6578063a457c2d714610511578063a9059cbb1461054e576101d3565b80637210c7a91461043c5780637d1db4a5146104655780638d5f81e214610490576101d3565b806340b9a54b1161015957806351c6590a1161013357806351c6590a146103a1578063590f897e146103bd57806370a08231146103e8578063715018a614610425576101d3565b806340b9a54b1461031057806342966c681461033b5780634fbee19314610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a857806339509351146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe4565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ae565b610701565b6040516102379190612109565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612133565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214e565b610729565b60405161029f9190612109565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bd565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f591906120ae565b61080b565b6040516103079190612109565b60405180910390f35b34801561031c57600080fd5b506103256108be565b6040516103329190612133565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d91906121d8565b6108c4565b005b34801561037057600080fd5b5061038b60048036038101906103869190612205565b6108d8565b6040516103989190612109565b60405180910390f35b6103bb60048036038101906103b691906121d8565b61092e565b005b3480156103c957600080fd5b506103d261098b565b6040516103df9190612133565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190612205565b610991565b60405161041c9190612133565b60405180910390f35b34801561043157600080fd5b5061043a6109da565b005b34801561044857600080fd5b50610463600480360381019061045e9190612232565b6109ee565b005b34801561047157600080fd5b5061047a610a08565b6040516104879190612133565b60405180910390f35b34801561049c57600080fd5b506104a5610a3a565b6040516104b29190612281565b60405180910390f35b3480156104c757600080fd5b506104d0610a64565b6040516104dd9190612281565b60405180910390f35b3480156104f257600080fd5b506104fb610a8d565b6040516105089190611fe4565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906120ae565b610aca565b6040516105459190612109565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906120ae565b610b97565b6040516105829190612109565b60405180910390f35b34801561059757600080fd5b506105a0610bb5565b6040516105ad9190612133565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906123e4565b610bbb565b005b3480156105eb57600080fd5b506105f4610ca3565b6040516106019190612109565b60405180910390f35b34801561061657600080fd5b5061061f610cba565b60405161062c9190612281565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061242d565b610ce4565b6040516106699190612133565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190612205565b610d6b565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190612499565b610dee565b005b60606040518060400160405280600e81526020017f417374726f506570655820322e30000000000000000000000000000000000000815250905090565b600061071561070e610e9e565b8484610ea6565b6001905092915050565b6000600454905090565b600061073684848461106f565b6107f784610742610e9e565b6107f285604051806060016040528060288152602001612e0060289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b610ea6565b600190509392505050565b60006012905090565b60006108b4610818610e9e565b846108af8560076000610829610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b610ea6565b6001905092915050565b600f5481565b6108d56108cf610e9e565b82611a22565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610936611bc5565b6001600860146101000a81548160ff02191690831515021790555061096361095c610a64565b308361106f565b61096d8134611c43565b6000600860146101000a81548160ff02191690831515021790555050565b600d5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e2611bc5565b6109ec6000611d28565b565b6109f6611bc5565b81600d8190555080600f819055505050565b6000610a35612710610a27600154600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4150583200000000000000000000000000000000000000000000000000000000815250905090565b6000610b8d610ad7610e9e565b84610b8885604051806060016040528060258152602001612e286025913960076000610b01610e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b610ea6565b6001905092915050565b6000610bab610ba4610e9e565b848461106f565b6001905092915050565b600e5481565b610bc3611bc5565b60c881511115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061254b565b60405180910390fd5b6000600c905060005b8251811015610c9e576001826000858481518110610c3257610c3161256b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c96906125c9565b915050610c11565b505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73611bc5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990612683565b60405180910390fd5b610deb81611d28565b50565b6001151582151514610dff57600080fd5b60018114610e0c57600080fd5b6404a817c800600454610e1f91906126a3565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008183610e9691906126e5565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c9061278b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b9061281d565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110629190612133565b60405180910390a3505050565b61107a838383611e18565b600080611085610a64565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f357506110c3610a64565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124c5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a25750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f85750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f25761132861271061131a600154600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b83111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906128af565b60405180910390fd5b611395612710611387600554600454611dec90919063ffffffff16565b611e0290919063ffffffff16565b6113b0846113a287610991565b610e8890919063ffffffff16565b11156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612941565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b1561151b576114a961271061149b600e5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b91506114d46127106114c6600d5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611666576115f46127106115e6600e5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b915061161f612710611611600f5486611dec90919063ffffffff16565b611e0290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167d8284610e8890919063ffffffff16565b9050600081111561181c57600083111561169c5761169b8684611a22565b5b6000821115611806576117198260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fd9190612133565b60405180910390a35b6118198185611f3e90919063ffffffff16565b93505b61188884604051806060016040528060268152602001612dda60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191d84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bd9190612133565b60405180910390a3505050505050565b6000838311158290611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c9190611fe4565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906129d3565b60405180910390fd5b611afd81604051806060016040528060228152602001612db860229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cd9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b5581600454611f3e90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bb99190612133565b60405180910390a35050565b611bcd610e9e565b73ffffffffffffffffffffffffffffffffffffffff16611beb610a64565b73ffffffffffffffffffffffffffffffffffffffff1614611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890612a3f565b60405180910390fd5b565b611c7030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea6565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cbc610a64565b426040518863ffffffff1660e01b8152600401611cde96959493929190612aa4565b60606040518083038185885af1158015611cfc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d219190612b1a565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611dfa91906126a3565b905092915050565b60008183611e109190612b9c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e90612c3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90612cd1565b60405180910390fd5b60008111611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090612d63565b60405180910390fd5b505050565b60008183611f4c9190612d83565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8e578082015181840152602081019050611f73565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb682611f54565b611fc08185611f5f565b9350611fd0818560208601611f70565b611fd981611f9a565b840191505092915050565b60006020820190508181036000830152611ffe8184611fab565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120458261201a565b9050919050565b6120558161203a565b811461206057600080fd5b50565b6000813590506120728161204c565b92915050565b6000819050919050565b61208b81612078565b811461209657600080fd5b50565b6000813590506120a881612082565b92915050565b600080604083850312156120c5576120c4612010565b5b60006120d385828601612063565b92505060206120e485828601612099565b9150509250929050565b60008115159050919050565b612103816120ee565b82525050565b600060208201905061211e60008301846120fa565b92915050565b61212d81612078565b82525050565b60006020820190506121486000830184612124565b92915050565b60008060006060848603121561216757612166612010565b5b600061217586828701612063565b935050602061218686828701612063565b925050604061219786828701612099565b9150509250925092565b600060ff82169050919050565b6121b7816121a1565b82525050565b60006020820190506121d260008301846121ae565b92915050565b6000602082840312156121ee576121ed612010565b5b60006121fc84828501612099565b91505092915050565b60006020828403121561221b5761221a612010565b5b600061222984828501612063565b91505092915050565b6000806040838503121561224957612248612010565b5b600061225785828601612099565b925050602061226885828601612099565b9150509250929050565b61227b8161203a565b82525050565b60006020820190506122966000830184612272565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122d982611f9a565b810181811067ffffffffffffffff821117156122f8576122f76122a1565b5b80604052505050565b600061230b612006565b905061231782826122d0565b919050565b600067ffffffffffffffff821115612337576123366122a1565b5b602082029050602081019050919050565b600080fd5b600061236061235b8461231c565b612301565b9050808382526020820190506020840283018581111561238357612382612348565b5b835b818110156123ac57806123988882612063565b845260208401935050602081019050612385565b5050509392505050565b600082601f8301126123cb576123ca61229c565b5b81356123db84826020860161234d565b91505092915050565b6000602082840312156123fa576123f9612010565b5b600082013567ffffffffffffffff81111561241857612417612015565b5b612424848285016123b6565b91505092915050565b6000806040838503121561244457612443612010565b5b600061245285828601612063565b925050602061246385828601612063565b9150509250929050565b612476816120ee565b811461248157600080fd5b50565b6000813590506124938161246d565b92915050565b600080604083850312156124b0576124af612010565b5b60006124be85828601612484565b92505060206124cf85828601612099565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612535602383611f5f565b9150612540826124d9565b604082019050919050565b6000602082019050818103600083015261256481612528565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d482612078565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126065761260561259a565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061266d602683611f5f565b915061267882612611565b604082019050919050565b6000602082019050818103600083015261269c81612660565b9050919050565b60006126ae82612078565b91506126b983612078565b92508282026126c781612078565b915082820484148315176126de576126dd61259a565b5b5092915050565b60006126f082612078565b91506126fb83612078565b92508282019050808211156127135761271261259a565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612775602483611f5f565b915061278082612719565b604082019050919050565b600060208201905081810360008301526127a481612768565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612807602283611f5f565b9150612812826127ab565b604082019050919050565b60006020820190508181036000830152612836816127fa565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612899602883611f5f565b91506128a48261283d565b604082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b600061292b602383611f5f565b9150612936826128cf565b604082019050919050565b6000602082019050818103600083015261295a8161291e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129bd602183611f5f565b91506129c882612961565b604082019050919050565b600060208201905081810360008301526129ec816129b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a29602083611f5f565b9150612a34826129f3565b602082019050919050565b60006020820190508181036000830152612a5881612a1c565b9050919050565b6000819050919050565b6000819050919050565b6000612a8e612a89612a8484612a5f565b612a69565b612078565b9050919050565b612a9e81612a73565b82525050565b600060c082019050612ab96000830189612272565b612ac66020830188612124565b612ad36040830187612a95565b612ae06060830186612a95565b612aed6080830185612272565b612afa60a0830184612124565b979650505050505050565b600081519050612b1481612082565b92915050565b600080600060608486031215612b3357612b32612010565b5b6000612b4186828701612b05565b9350506020612b5286828701612b05565b9250506040612b6386828701612b05565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba782612078565b9150612bb283612078565b925082612bc257612bc1612b6d565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c29602583611f5f565b9150612c3482612bcd565b604082019050919050565b60006020820190508181036000830152612c5881612c1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cbb602383611f5f565b9150612cc682612c5f565b604082019050919050565b60006020820190508181036000830152612cea81612cae565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4d602983611f5f565b9150612d5882612cf1565b604082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b6000612d8e82612078565b9150612d9983612078565b9250828203905081811115612db157612db061259a565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b761647e40ae0fe4c6d4ce645d11b372a4b9ce755ce306582162f1b1724216fd64736f6c63430008120033

Deployed Bytecode Sourcemap

21212:12825:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33414:10;;;;;;;;;;21212:12825;;;;;23812:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24667:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25743:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23908:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24885:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22175:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31033:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31132:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33440:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22107:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23999:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;31845:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25601:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29334:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23712:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24126:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22141:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30689:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33278:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29839:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24350:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31639:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23812:88;23849:13;23882:10;;;;;;;;;;;;;;;;;23875:17;;23812:88;:::o;24667:210::-;24786:4;24808:39;24817:12;:10;:12::i;:::-;24831:7;24840:6;24808:8;:39::i;:::-;24865:4;24858:11;;24667:210;;;;:::o;24559:100::-;24612:7;24639:12;;24632:19;;24559:100;:::o;25743:454::-;25883:4;25900:36;25910:6;25918:9;25929:6;25900:9;:36::i;:::-;25947:220;25970:6;25991:12;:10;:12::i;:::-;26018:138;26074:6;26018:138;;;;;;;;;;;;;;;;;:11;:19;26030:6;26018:19;;;;;;;;;;;;;;;:33;26038:12;:10;:12::i;:::-;26018:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25947:8;:220::i;:::-;26185:4;26178:11;;25743:454;;;;;:::o;23908:83::-;23949:5;22457:2;23967:16;;23908:83;:::o;24885:300::-;25000:4;25022:133;25045:12;:10;:12::i;:::-;25072:7;25094:50;25133:10;25094:11;:25;25106:12;:10;:12::i;:::-;25094:25;;;;;;;;;;;;;;;:34;25120:7;25094:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25022:8;:133::i;:::-;25173:4;25166:11;;24885:300;;;;:::o;22175:26::-;;;;:::o;31033:91::-;31089:27;31095:12;:10;:12::i;:::-;31109:6;31089:5;:27::i;:::-;31033:91;:::o;31132:128::-;31199:4;31223:19;:29;31243:8;31223:29;;;;;;;;;;;;;;;;;;;;;;;;;31216:36;;31132:128;;;:::o;33440:234::-;1965:13;:11;:13::i;:::-;32499:4:::1;32488:8;;:15;;;;;;;;;;;;;;;;;;33572:46:::2;33582:7;:5;:7::i;:::-;33599:4;33606:11;33572:9;:46::i;:::-;33629:37;33643:11;33656:9;33629:13;:37::i;:::-;32537:5:::1;32526:8;;:16;;;;;;;;;;;;;;;;;;33440:234:::0;:::o;22107:27::-;;;;:::o;23999:119::-;24065:7;24092:9;:18;24102:7;24092:18;;;;;;;;;;;;;;;;24085:25;;23999:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;31845:116::-;1965:13;:11;:13::i;:::-;31928:2:::1;31917:8;:13;;;;31951:2;31941:7;:12;;;;31845:116:::0;;:::o;25601:134::-;25646:7;25673:54;21973:5;25673:40;25690:22;;25673:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25666:61;;25601:134;:::o;29334:96::-;29381:7;29408:14;;;;;;;;;;;29401:21;;29334:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23712:92::-;23751:13;23784:12;;;;;;;;;;;;;;;;;23777:19;;23712:92;:::o;25193:400::-;25313:4;25335:228;25358:12;:10;:12::i;:::-;25385:7;25407:145;25464:15;25407:145;;;;;;;;;;;;;;;;;:11;:25;25419:12;:10;:12::i;:::-;25407:25;;;;;;;;;;;;;;;:34;25433:7;25407:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25335:8;:228::i;:::-;25581:4;25574:11;;25193:400;;;;:::o;24126:216::-;24248:4;24270:42;24280:12;:10;:12::i;:::-;24294:9;24305:6;24270:9;:42::i;:::-;24330:4;24323:11;;24126:216;;;;:::o;22141:27::-;;;;:::o;30689:336::-;1965:13;:11;:13::i;:::-;30793:3:::1;30773:9;:16;:23;;30765:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30849:36;30888:19;30849:58;;30925:9;30920:98;30944:9;:16;30940:1;:20;30920:98;;;31002:4;30982:3;:17;30986:9;30996:1;30986:12;;;;;;;;:::i;:::-;;;;;;;;30982:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30962:3;;;;;:::i;:::-;;;;30920:98;;;;30754:271;30689:336:::0;:::o;33278:85::-;33323:4;33347:8;;;;;;;;;;;33340:15;;33278:85;:::o;29839:109::-;29888:7;29923:16;;;;;;;;;;;29908:32;;29839:109;:::o;24350:201::-;24484:7;24516:11;:18;24528:5;24516:18;;;;;;;;;;;;;;;:27;24535:7;24516:27;;;;;;;;;;;;;;;;24509:34;;24350: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;31639:198::-;31726:4;31717:13;;:5;:13;;;31709:22;;;;;;31760:1;31750:6;:11;31742:20;;;;;;31818:11;31803:12;;:26;;;;:::i;:::-;31773:9;:27;31783:16;;;;;;;;;;;31773:27;;;;;;;;;;;;;;;:56;;;;31639:198;;:::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;29956:378::-;30109:1;30092:19;;:5;:19;;;30084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30190:1;30171:21;;:7;:21;;;30163:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30272:6;30242:11;:18;30254:5;30242:18;;;;;;;;;;;;;;;:27;30261:7;30242:27;;;;;;;;;;;;;;;:36;;;;30310:7;30294:32;;30303:5;30294:32;;;30319:6;30294:32;;;;;;:::i;:::-;;;;;;;;29956:378;;;:::o;26205:2799::-;26337:42;26353:6;26361:9;26372:6;26337:15;:42::i;:::-;26390:15;26420:14;26463:7;:5;:7::i;:::-;26453:17;;:6;:17;;;;:41;;;;;26487:7;:5;:7::i;:::-;26474:20;;:9;:20;;;;26453:41;26449:1823;;;26534:19;:27;26554:6;26534:27;;;;;;;;;;;;;;;;;;;;;;;;;26533:28;:63;;;;;26566:19;:30;26586:9;26566:30;;;;;;;;;;;;;;;;;;;;;;;;;26565:31;26533:63;26511:1750;;;26667:14;;;;;;;;;;;26657:24;;:6;:24;;;:87;;;;;26727:16;;;;;;;;;;;26706:38;;:9;:38;;;;26657:87;:144;;;;;26770:20;:31;26791:9;26770:31;;;;;;;;;;;;;;;;;;;;;;;;;26769:32;26657:144;:198;;;;;26827:20;:28;26848:6;26827:28;;;;;;;;;;;;;;;;;;;;;;;;;26826:29;26657:198;26631:904;;;26971:118;21973:5;26971:40;26988:22;;26971:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26932:6;:157;;26898:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27305:123;21973:5;27305:45;27322:27;;27305:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27240:32;27265:6;27240:20;27250:9;27240;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27206:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26631:904;27598:14;;;;;;;;;;;27585:27;;:9;:27;;;:54;;;;;27634:4;27616:23;;:6;:23;;;;27585:54;27581:274;;;27674:34;21973:5;27674:20;27685:8;;27674:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27664:44;;27740:34;21973:5;27740:20;27751:8;;27740:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27731:43;;27823:12;27797;:23;27810:9;27797:23;;;;;;;;;;;;;;;:38;;;;27581:274;27936:14;;;;;;;;;;;27926:24;;:6;:24;;;:87;;;;;27996:16;;;;;;;;;;;27975:38;;:9;:38;;;;27926:87;27900:346;;;28066:34;21973:5;28066:20;28077:8;;28066:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28056:44;;28132:33;21973:5;28132:19;28143:7;;28132:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28123:42;;28214:12;28188;:23;28201:9;28188:23;;;;;;;;;;;;;;;:38;;;;27900:346;26511:1750;26449:1823;28282:16;28301:19;28313:6;28301:7;:11;;:19;;;;:::i;:::-;28282:38;;28346:1;28335:8;:12;28331:406;;;28378:1;28368:7;:11;28364:74;;;28400:22;28406:6;28414:7;28400:5;:22::i;:::-;28364:74;28467:1;28458:6;:10;28454:226;;;28519:79;28573:6;28519:9;:27;28529:16;;;;;;;;;;;28519:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28489:9;:27;28499:16;;;;;;;;;;;28489:27;;;;;;;;;;;;;;;:109;;;;28639:16;;;;;;;;;;;28622:42;;28631:6;28622:42;;;28657:6;28622:42;;;;;;:::i;:::-;;;;;;;;28454:226;28705:20;28716:8;28705:6;:10;;:20;;;;:::i;:::-;28696:29;;28331:406;28769:108;28805:6;28769:108;;;;;;;;;;;;;;;;;:9;:17;28779:6;28769:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28749:9;:17;28759:6;28749:17;;;;;;;;;;;;;;;:128;;;;28911:32;28936:6;28911:9;:20;28921:9;28911:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28888:9;:20;28898:9;28888:20;;;;;;;;;;;;;;;:55;;;;28978:9;28961:35;;28970:6;28961:35;;;28989:6;28961:35;;;;;;:::i;:::-;;;;;;;;26326:2678;;;26205:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;29438:391::-;29541:1;29522:21;;:7;:21;;;29514:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29613:105;29650:6;29613:105;;;;;;;;;;;;;;;;;:9;:18;29623:7;29613:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29592:9;:18;29602:7;29592:18;;;;;;;;;;;;;;;:126;;;;29744:24;29761:6;29744:12;;:16;;:24;;;;:::i;:::-;29729:12;:39;;;;29810:1;29784:37;;29793:7;29784:37;;;29814:6;29784:37;;;;;;:::i;:::-;;;;;;;;29438:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31268:363::-;31350:63;31367:4;31382:16;;;;;;;;;;;31401:11;31350:8;:63::i;:::-;31424:16;;;;;;;;;;;:32;;;31464:9;31497:4;31517:11;31543:1;31559;31575:7;:5;:7::i;:::-;31597:15;31424:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31268: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;33682:352::-;33832:1;33816:18;;:4;:18;;;33808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33909:1;33895:16;;:2;:16;;;33887:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33979:1;33970:6;:10;33962:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33682: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:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::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:116::-;9747:21;9762:5;9747:21;:::i;:::-;9740:5;9737:32;9727:60;;9783:1;9780;9773:12;9727:60;9677:116;:::o;9799:133::-;9842:5;9880:6;9867:20;9858:29;;9896:30;9920:5;9896:30;:::i;:::-;9799:133;;;;:::o;9938:468::-;10003:6;10011;10060:2;10048:9;10039:7;10035:23;10031:32;10028:119;;;10066:79;;:::i;:::-;10028:119;10186:1;10211:50;10253:7;10244:6;10233:9;10229:22;10211:50;:::i;:::-;10201:60;;10157:114;10310:2;10336:53;10381:7;10372:6;10361:9;10357:22;10336:53;:::i;:::-;10326:63;;10281:118;9938:468;;;;;:::o;10412:222::-;10552:34;10548:1;10540:6;10536:14;10529:58;10621:5;10616:2;10608:6;10604:15;10597:30;10412:222;:::o;10640:366::-;10782:3;10803:67;10867:2;10862:3;10803:67;:::i;:::-;10796:74;;10879:93;10968:3;10879:93;:::i;:::-;10997:2;10992:3;10988:12;10981:19;;10640:366;;;:::o;11012:419::-;11178:4;11216:2;11205:9;11201:18;11193:26;;11265:9;11259:4;11255:20;11251:1;11240:9;11236:17;11229:47;11293:131;11419:4;11293:131;:::i;:::-;11285:139;;11012:419;;;:::o;11437:180::-;11485:77;11482:1;11475:88;11582:4;11579:1;11572:15;11606:4;11603:1;11596:15;11623:180;11671:77;11668:1;11661:88;11768:4;11765:1;11758:15;11792:4;11789:1;11782:15;11809:233;11848:3;11871:24;11889:5;11871:24;:::i;:::-;11862:33;;11917:66;11910:5;11907:77;11904:103;;11987:18;;:::i;:::-;11904:103;12034:1;12027:5;12023:13;12016:20;;11809:233;;;:::o;12048:225::-;12188:34;12184:1;12176:6;12172:14;12165:58;12257:8;12252:2;12244:6;12240:15;12233:33;12048:225;:::o;12279:366::-;12421:3;12442:67;12506:2;12501:3;12442:67;:::i;:::-;12435:74;;12518:93;12607:3;12518:93;:::i;:::-;12636:2;12631:3;12627:12;12620:19;;12279:366;;;:::o;12651:419::-;12817:4;12855:2;12844:9;12840:18;12832:26;;12904:9;12898:4;12894:20;12890:1;12879:9;12875:17;12868:47;12932:131;13058:4;12932:131;:::i;:::-;12924:139;;12651:419;;;:::o;13076:410::-;13116:7;13139:20;13157:1;13139:20;:::i;:::-;13134:25;;13173:20;13191:1;13173:20;:::i;:::-;13168:25;;13228:1;13225;13221:9;13250:30;13268:11;13250:30;:::i;:::-;13239:41;;13429:1;13420:7;13416:15;13413:1;13410:22;13390:1;13383:9;13363:83;13340:139;;13459:18;;:::i;:::-;13340:139;13124:362;13076:410;;;;:::o;13492:191::-;13532:3;13551:20;13569:1;13551:20;:::i;:::-;13546:25;;13585:20;13603:1;13585:20;:::i;:::-;13580:25;;13628:1;13625;13621:9;13614:16;;13649:3;13646:1;13643:10;13640:36;;;13656:18;;:::i;:::-;13640:36;13492:191;;;;:::o;13689:223::-;13829:34;13825:1;13817:6;13813:14;13806:58;13898:6;13893:2;13885:6;13881:15;13874:31;13689:223;:::o;13918:366::-;14060:3;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14157:93;14246:3;14157:93;:::i;:::-;14275:2;14270:3;14266:12;14259:19;;13918:366;;;:::o;14290:419::-;14456:4;14494:2;14483:9;14479:18;14471:26;;14543:9;14537:4;14533:20;14529:1;14518:9;14514:17;14507:47;14571:131;14697:4;14571:131;:::i;:::-;14563:139;;14290:419;;;:::o;14715:221::-;14855:34;14851:1;14843:6;14839:14;14832:58;14924:4;14919:2;14911:6;14907:15;14900:29;14715:221;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:227::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:10;15943:2;15935:6;15931:15;15924:35;15739:227;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:419::-;16510:4;16548:2;16537:9;16533:18;16525:26;;16597:9;16591:4;16587:20;16583:1;16572:9;16568:17;16561:47;16625:131;16751:4;16625:131;:::i;:::-;16617:139;;16344:419;;;:::o;16769:222::-;16909:34;16905:1;16897:6;16893:14;16886:58;16978:5;16973:2;16965:6;16961:15;16954:30;16769:222;:::o;16997:366::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:419::-;17535:4;17573:2;17562:9;17558:18;17550:26;;17622:9;17616:4;17612:20;17608:1;17597:9;17593:17;17586:47;17650:131;17776:4;17650:131;:::i;:::-;17642:139;;17369:419;;;:::o;17794:220::-;17934:34;17930:1;17922:6;17918:14;17911:58;18003:3;17998:2;17990:6;17986:15;17979:28;17794:220;:::o;18020:366::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:419::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:131;18799:4;18673:131;:::i;:::-;18665:139;;18392:419;;;:::o;18817:182::-;18957:34;18953:1;18945:6;18941:14;18934:58;18817:182;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:85::-;19847:7;19876:5;19865:16;;19802:85;;;:::o;19893:60::-;19921:3;19942:5;19935:12;;19893:60;;;:::o;19959:158::-;20017:9;20050:61;20068:42;20077:32;20103:5;20077:32;:::i;:::-;20068:42;:::i;:::-;20050:61;:::i;:::-;20037:74;;19959:158;;;:::o;20123:147::-;20218:45;20257:5;20218:45;:::i;:::-;20213:3;20206:58;20123:147;;:::o;20276:807::-;20525:4;20563:3;20552:9;20548:19;20540:27;;20577:71;20645:1;20634:9;20630:17;20621:6;20577:71;:::i;:::-;20658:72;20726:2;20715:9;20711:18;20702:6;20658:72;:::i;:::-;20740:80;20816:2;20805:9;20801:18;20792:6;20740:80;:::i;:::-;20830;20906:2;20895:9;20891:18;20882:6;20830:80;:::i;:::-;20920:73;20988:3;20977:9;20973:19;20964:6;20920:73;:::i;:::-;21003;21071:3;21060:9;21056:19;21047:6;21003:73;:::i;:::-;20276:807;;;;;;;;;:::o;21089:143::-;21146:5;21177:6;21171:13;21162:22;;21193:33;21220:5;21193:33;:::i;:::-;21089:143;;;;:::o;21238:663::-;21326:6;21334;21342;21391:2;21379:9;21370:7;21366:23;21362:32;21359:119;;;21397:79;;:::i;:::-;21359:119;21517:1;21542:64;21598:7;21589:6;21578:9;21574:22;21542:64;:::i;:::-;21532:74;;21488:128;21655:2;21681:64;21737:7;21728:6;21717:9;21713:22;21681:64;:::i;:::-;21671:74;;21626:129;21794:2;21820:64;21876:7;21867:6;21856:9;21852:22;21820:64;:::i;:::-;21810:74;;21765:129;21238:663;;;;;:::o;21907:180::-;21955:77;21952:1;21945:88;22052:4;22049:1;22042:15;22076:4;22073:1;22066:15;22093:185;22133:1;22150:20;22168:1;22150:20;:::i;:::-;22145:25;;22184:20;22202:1;22184:20;:::i;:::-;22179:25;;22223:1;22213:35;;22228:18;;:::i;:::-;22213:35;22270:1;22267;22263:9;22258:14;;22093:185;;;;:::o;22284:224::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:7;22488:2;22480:6;22476:15;22469:32;22284:224;:::o;22514:366::-;22656:3;22677:67;22741:2;22736:3;22677:67;:::i;:::-;22670:74;;22753:93;22842:3;22753:93;:::i;:::-;22871:2;22866:3;22862:12;22855:19;;22514:366;;;:::o;22886:419::-;23052:4;23090:2;23079:9;23075:18;23067:26;;23139:9;23133:4;23129:20;23125:1;23114:9;23110:17;23103:47;23167:131;23293:4;23167:131;:::i;:::-;23159:139;;22886:419;;;:::o;23311:222::-;23451:34;23447:1;23439:6;23435:14;23428:58;23520:5;23515:2;23507:6;23503:15;23496:30;23311:222;:::o;23539:366::-;23681:3;23702:67;23766:2;23761:3;23702:67;:::i;:::-;23695:74;;23778:93;23867:3;23778:93;:::i;:::-;23896:2;23891:3;23887:12;23880:19;;23539:366;;;:::o;23911:419::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:228::-;24476:34;24472:1;24464:6;24460:14;24453:58;24545:11;24540:2;24532:6;24528:15;24521:36;24336:228;:::o;24570:366::-;24712:3;24733:67;24797:2;24792:3;24733:67;:::i;:::-;24726:74;;24809:93;24898:3;24809:93;:::i;:::-;24927:2;24922:3;24918:12;24911:19;;24570:366;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:194::-;25407:4;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25461:20;25479:1;25461:20;:::i;:::-;25456:25;;25505:1;25502;25498:9;25490:17;;25529:1;25523:4;25520:11;25517:37;;;25534:18;;:::i;:::-;25517:37;25367:194;;;;:::o

Swarm Source

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