ETH Price: $2,603.48 (-0.29%)

Token

BidenX (BidenX)
 

Overview

Max Total Supply

100,000,000 BidenX

Holders

667

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,603.928335305598866726 BidenX

Value
$0.00
0xfb9fbd400b803978c21a05a8e69d226874f326e3
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:
BidenX

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

/**
President Joe Biden announced that he is dropping out of the 2024 presidential race. In a statement on X, Biden said, “I believe it is in the best interest of my party and the country for me to stand down
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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 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 BidenXis not 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 theBidenX 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);
    }
}

// OpenZeppelin Contracts (last BidenXupdated 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` BidenXtokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowanceBidenX 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 BidenXcaller'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 BidenXof tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     BidenX
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// 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.
 *BidenX
 * _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 "./extensions/IERC20Metadata.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}.
 BidenXEIP 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;

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
    BidenXny of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, 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 increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        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 BidenXallowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount BidenXexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allBidenX 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);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint BidenXto 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 _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from BidenXthe zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn BidenXamount 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 _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: BidenXapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero BidenXaddress");

        _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 BidenXintegers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two BidenXunsigned 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 BidenXunsigned 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 BidenXis negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication BidenXof two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
    BidenX
     * 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.
     *
    BidenXrevert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

// 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 BidenX is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

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

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

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees; uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    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("BidenX", "BidenX") {

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

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


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

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

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

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


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

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be BidenXremoved from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }


    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 BidenXzero address");
        require(to != address(0), "ERC20: transfer to the zero 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;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

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

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _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 _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        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(developmentWallet).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":"_maxlSupply","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":"buyTotalFees","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFroomEnobleTrading","outputs":[],"stateMutability":"nonpayable","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":[],"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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600681526020017f426964656e5800000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f426964656e58000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20426964656e58617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062000b93602a8362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20426964656e60008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b600062000c2b60288362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420426964656e58746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000cf160258362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161323062000d6a6000396000818161086901528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132306000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b80631694505e116101a05780631694505e1461026357806318160ddd1461028e57806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd57806316402f5a1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612373565b6107b6565b005b34801561026f57600080fd5b50610278610867565b6040516102859190612412565b60405180910390f35b34801561029a57600080fd5b506102a361088b565b6040516102b0919061243c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b604051610401919061243c565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b604051610469919061243c565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b604051610518919061243c565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612373565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b604051610667919061243c565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a4919061243c565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf919061243c565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b6107be610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161085b919061232c565b60405180910390a25050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f96919061243c565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612a19565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a85565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612ba9565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612c15565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c35565b6115979190612ca6565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c35565b6115ca9190612ca6565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c35565b6115fd9190612ca6565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c35565b6116c09190612ca6565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c35565b6116f39190612ca6565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c35565b6117269190612ca6565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cd7565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b46919061243c565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c35565b611bab9190612ca6565b611bb59190612ca6565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cd7565b611c629190612cd7565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c35565b905092915050565b60008183611e259190612ca6565b905092915050565b505050565b505050565b60008183611e459190612cd7565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b61235081612311565b811461235b57600080fd5b50565b60008135905061236d81612347565b92915050565b6000806040838503121561238a57612389612238565b5b600061239885828601612286565b92505060206123a98582860161235e565b9150509250929050565b6000819050919050565b60006123d86123d36123ce8461223d565b6123b3565b61223d565b9050919050565b60006123ea826123bd565b9050919050565b60006123fc826123df565b9050919050565b61240c816123f1565b82525050565b60006020820190506124276000830184612403565b92915050565b6124368161229b565b82525050565b6000602082019050612451600083018461242d565b92915050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920426964656e586163746976652e000000600082015250565b6000612671601d83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204260008201527f6964656e5872656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b6000612729604b83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420426964656e58616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865426964656e582060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20426964656e58617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006128df602a83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20426964656e60008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f4f776e61626c653a2063616c6c657220426964656e586973206e6f742074686560008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612a03602683612191565b9150612a0e826129a7565b604082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a6f601d83612191565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e736665722066726f6d2074686520426964656e587a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612b01602b83612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b93602383612191565b9150612b9e82612b37565b604082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612bff601883612191565b9150612c0a82612bc9565b602082019050919050565b60006020820190508181036000830152612c2e81612bf2565b9050919050565b6000612c408261229b565b9150612c4b8361229b565b9250828202612c598161229b565b91508282048414831517612c7057612c6f6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb18261229b565b9150612cbc8361229b565b925082612ccc57612ccb612c77565b5b828204905092915050565b6000612ce28261229b565b9150612ced8361229b565b9250828203905081811115612d0557612d046125d8565b5b92915050565b7f45524332303a20426964656e587472616e736665722066726f6d20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612d67602b83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f426964656e5845524332303a207472616e7366657220746f20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612df9602983612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e7420426964656e5865786360008201527f656564732062616c616e63650000000000000000000000000000000000000000602082015250565b6000612e8b602c83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed6600083018661242d565b612ee3602083018561242d565b612ef0604083018461242d565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b6123b3565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec600083018861242d565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a60608301856124aa565b613127608083018461242d565b9695505050505050565b600060c08201905061314660008301896124aa565b613153602083018861242d565b613160604083018761300a565b61316d606083018661300a565b61317a60808301856124aa565b61318760a083018461242d565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220cf2b5bf4ee95b99c8321300e881f5b2651d88cba915a2340048cb0998f9fa69c64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b80631694505e116101a05780631694505e1461026357806318160ddd1461028e57806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd57806316402f5a1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612373565b6107b6565b005b34801561026f57600080fd5b50610278610867565b6040516102859190612412565b60405180910390f35b34801561029a57600080fd5b506102a361088b565b6040516102b0919061243c565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b604051610401919061243c565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b604051610469919061243c565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b604051610518919061243c565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612373565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b604051610667919061243c565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a4919061243c565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf919061243c565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b6107be610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161085b919061232c565b60405180910390a25050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f96919061243c565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612a19565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a85565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612ba9565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612c15565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c35565b6115979190612ca6565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c35565b6115ca9190612ca6565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c35565b6115fd9190612ca6565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c35565b6116c09190612ca6565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c35565b6116f39190612ca6565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c35565b6117269190612ca6565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cd7565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b46919061243c565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c35565b611bab9190612ca6565b611bb59190612ca6565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cd7565b611c629190612cd7565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c35565b905092915050565b60008183611e259190612ca6565b905092915050565b505050565b505050565b60008183611e459190612cd7565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b61235081612311565b811461235b57600080fd5b50565b60008135905061236d81612347565b92915050565b6000806040838503121561238a57612389612238565b5b600061239885828601612286565b92505060206123a98582860161235e565b9150509250929050565b6000819050919050565b60006123d86123d36123ce8461223d565b6123b3565b61223d565b9050919050565b60006123ea826123bd565b9050919050565b60006123fc826123df565b9050919050565b61240c816123f1565b82525050565b60006020820190506124276000830184612403565b92915050565b6124368161229b565b82525050565b6000602082019050612451600083018461242d565b92915050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920426964656e586163746976652e000000600082015250565b6000612671601d83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204260008201527f6964656e5872656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b6000612729604b83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420426964656e58616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865426964656e582060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20426964656e58617070726f76652066726f6d20746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006128df602a83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20426964656e60008201527f5861646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f4f776e61626c653a2063616c6c657220426964656e586973206e6f742074686560008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000612a03602683612191565b9150612a0e826129a7565b604082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a6f601d83612191565b9150612a7a82612a39565b602082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e736665722066726f6d2074686520426964656e587a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612b01602b83612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b93602383612191565b9150612b9e82612b37565b604082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612bff601883612191565b9150612c0a82612bc9565b602082019050919050565b60006020820190508181036000830152612c2e81612bf2565b9050919050565b6000612c408261229b565b9150612c4b8361229b565b9250828202612c598161229b565b91508282048414831517612c7057612c6f6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cb18261229b565b9150612cbc8361229b565b925082612ccc57612ccb612c77565b5b828204905092915050565b6000612ce28261229b565b9150612ced8361229b565b9250828203905081811115612d0557612d046125d8565b5b92915050565b7f45524332303a20426964656e587472616e736665722066726f6d20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612d67602b83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f426964656e5845524332303a207472616e7366657220746f20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612df9602983612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e7420426964656e5865786360008201527f656564732062616c616e63650000000000000000000000000000000000000000602082015250565b6000612e8b602c83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed6600083018661242d565b612ee3602083018561242d565b612ef0604083018461242d565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b6123b3565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec600083018861242d565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a60608301856124aa565b613127608083018461242d565b9695505050505050565b600060c08201905061314660008301896124aa565b613153602083018861242d565b613160604083018761300a565b61316d606083018661300a565b61317a60808301856124aa565b61318760a083018461242d565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220cf2b5bf4ee95b99c8321300e881f5b2651d88cba915a2340048cb0998f9fa69c64736f6c63430008110033

Deployed Bytecode Sourcemap

26697:8669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7482:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9319:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29721:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26773:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8259:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9569:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26981:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8101:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9872:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26831:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27043:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27329:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27076:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8430:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2032:103;;;;;;;;;;;;;:::i;:::-;;26868:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29532:179;;;;;;;;;;;;;:::i;:::-;;1385:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7021:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7701:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29935:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10150:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8813:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26905:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26944:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27179:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9110:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27137:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2290:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7482:100;7536:13;7569:5;7562:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7482:100;:::o;9319:242::-;9438:4;9460:13;9476:12;:10;:12::i;:::-;9460:28;;9499:32;9508:5;9515:7;9524:6;9499:8;:32::i;:::-;9549:4;9542:11;;;9319:242;;;;:::o;29721:206::-;1271:13;:11;:13::i;:::-;29861:8:::1;29824:25;:34;29850:7;29824:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29901:7;29885:34;;;29910:8;29885:34;;;;;;:::i;:::-;;;;;;;;29721:206:::0;;:::o;26773:51::-;;;:::o;8259:108::-;8320:7;8347:12;;8340:19;;8259:108;:::o;9569:295::-;9700:4;9717:15;9735:12;:10;:12::i;:::-;9717:30;;9758:38;9774:4;9780:7;9789:6;9758:15;:38::i;:::-;9807:27;9817:4;9823:2;9827:6;9807:9;:27::i;:::-;9852:4;9845:11;;;9569:295;;;;;:::o;26981:53::-;27027:6;26981:53;:::o;8101:93::-;8159:5;8184:2;8177:9;;8101:93;:::o;9872:270::-;9987:4;10009:13;10025:12;:10;:12::i;:::-;10009:28;;10048:64;10057:5;10064:7;10101:10;10073:25;10083:5;10090:7;10073:9;:25::i;:::-;:38;;;;:::i;:::-;10048:8;:64::i;:::-;10130:4;10123:11;;;9872:270;;;;:::o;26831:28::-;;;;;;;;;;;;;:::o;27043:26::-;;;;;;;;;;;;;:::o;27329:28::-;;;;:::o;27076:23::-;;;;;;;;;;;;;:::o;8430:177::-;8549:7;8581:9;:18;8591:7;8581:18;;;;;;;;;;;;;;;;8574:25;;8430:177;;;:::o;2032:103::-;1271:13;:11;:13::i;:::-;2097:30:::1;2124:1;2097:18;:30::i;:::-;2032:103::o:0;26868:30::-;;;;;;;;;;;;;:::o;29532:179::-;1271:13;:11;:13::i;:::-;29594:14:::1;;;;;;;;;;;29593:15;29585:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29670:4;29653:14;;:21;;;;;;;;;;;;;;;;;;29699:4;29685:11;;:18;;;;;;;;;;;;;;;;;;29532:179::o:0;1385:87::-;1431:7;1458:6;;;;;;;;;;;1451:13;;1385:87;:::o;7021:26::-;;;;:::o;7701:104::-;7757:13;7790:7;7783:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701:104;:::o;29935:260::-;1271:13;:11;:13::i;:::-;30042::::1;;;;;;;;;;;30034:21;;:4;:21;;::::0;30026:109:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30146:41;30175:4;30181:5;30146:28;:41::i;:::-;29935:260:::0;;:::o;10150:511::-;10270:4;10292:13;10308:12;:10;:12::i;:::-;10292:28;;10331:24;10358:25;10368:5;10375:7;10358:9;:25::i;:::-;10331:52;;10436:15;10416:16;:35;;10394:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;10558:60;10567:5;10574:7;10602:15;10583:16;:34;10558:8;:60::i;:::-;10649:4;10642:11;;;;10150:511;;;;:::o;8813:234::-;8928:4;8950:13;8966:12;:10;:12::i;:::-;8950:28;;8989;8999:5;9006:2;9010:6;8989:9;:28::i;:::-;9035:4;9028:11;;;8813:234;;;;:::o;26905:32::-;;;;;;;;;;;;;:::o;26944:30::-;;;;;;;;;;;;;:::o;27179:27::-;;;;:::o;9110:201::-;9244:7;9276:11;:18;9288:5;9276:18;;;;;;;;;;;;;;;:27;9295:7;9276:27;;;;;;;;;;;;;;;;9269:34;;9110:201;;;;:::o;27137:33::-;;;;:::o;2290:244::-;1271:13;:11;:13::i;:::-;2413:1:::1;2393:22;;:8;:22;;::::0;2371:116:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2498:28;2517:8;2498:18;:28::i;:::-;2290:244:::0;:::o;437:98::-;490:7;517:10;510:17;;437:98;:::o;12835:392::-;12988:1;12971:19;;:5;:19;;;12963:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13075:1;13056:21;;:7;:21;;;13048:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13165:6;13135:11;:18;13147:5;13135:18;;;;;;;;;;;;;;;:27;13154:7;13135:27;;;;;;;;;;;;;;;:36;;;;13203:7;13187:32;;13196:5;13187:32;;;13212:6;13187:32;;;;;;:::i;:::-;;;;;;;;12835:392;;;:::o;1550:138::-;1625:12;:10;:12::i;:::-;1614:23;;:7;:5;:7::i;:::-;:23;;;1606:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1550:138::o;13235:502::-;13370:24;13397:25;13407:5;13414:7;13397:9;:25::i;:::-;13370:52;;13457:17;13437:16;:37;13433:297;;13537:6;13517:16;:26;;13491:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13652:51;13661:5;13668:7;13696:6;13677:16;:25;13652:8;:51::i;:::-;13433:297;13359:378;13235:502;;;:::o;30401:2454::-;30549:1;30533:18;;:4;:18;;;30525:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30632:1;30618:16;;:2;:16;;;30610:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30693:14;;;;;;;;;;;:49;;;;30711:25;:31;30737:4;30711:31;;;;;;;;;;;;;;;;;;;;;;;;;30693:49;:82;;;;30746:25;:29;30772:2;30746:29;;;;;;;;;;;;;;;;;;;;;;;;;30693:82;30685:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30829:1;30819:6;:11;30815:93;;30847:28;30863:4;30869:2;30873:1;30847:15;:28::i;:::-;30890:7;;30815:93;30922:28;30953:24;30971:4;30953:9;:24::i;:::-;30922:55;;30990:12;31029:18;;31005:20;:42;;30990:57;;31078:7;:35;;;;;31102:11;;;;;;;;;;;31078:35;:48;;;;;31117:9;;;;;;;;;;;31116:10;31078:48;:82;;;;;31128:26;:32;31155:4;31128:32;;;;;;;;;;;;;;;;;;;;;;;;;31078:82;:131;;;;;31178:25;:31;31204:4;31178:31;;;;;;;;;;;;;;;;;;;;;;;;;31177:32;31078:131;:178;;;;;31227:25;:29;31253:2;31227:29;;;;;;;;;;;;;;;;;;;;;;;;;31226:30;31078:178;31060:313;;;31295:4;31283:9;;:16;;;;;;;;;;;;;;;;;;31316:11;:9;:11::i;:::-;31356:5;31344:9;;:17;;;;;;;;;;;;;;;;;;31060:313;31385:12;31401:9;;;;;;;;;;;31400:10;31385:25;;31427;:31;31453:4;31427:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31462:25;:29;31488:2;31462:29;;;;;;;;;;;;;;;;;;;;;;;;;31427:64;31423:112;;;31518:5;31508:15;;31423:112;31547:12;31580:7;31576:1187;;;31632:26;:30;31659:2;31632:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31682:1;31666:13;;:17;31632:51;31628:986;;;31711:36;31741:5;31711:25;31722:13;;31711:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31704:43;;31860:13;;31818:17;;31811:4;:24;;;;:::i;:::-;31810:63;;;;:::i;:::-;31766:19;;:107;;;;;;;:::i;:::-;;;;;;;;31986:13;;31944:17;;31937:4;:24;;;;:::i;:::-;31936:63;;;;:::i;:::-;31892:19;;:107;;;;;;;:::i;:::-;;;;;;;;32116:13;;32072:19;;32065:4;:26;;;;:::i;:::-;32064:65;;;;:::i;:::-;32018:21;;:111;;;;;;;:::i;:::-;;;;;;;;31628:986;;;32191:26;:32;32218:4;32191:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32242:1;32227:12;;:16;32191:52;32187:427;;;32271:35;32300:5;32271:24;32282:12;;32271:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32264:42;;32376:12;;32356:16;;32349:4;:23;;;;:::i;:::-;32348:40;;;;:::i;:::-;32325:19;;:63;;;;;;;:::i;:::-;;;;;;;;32458:12;;32438:16;;32431:4;:23;;;;:::i;:::-;32430:40;;;;:::i;:::-;32407:19;;:63;;;;;;;:::i;:::-;;;;;;;;32586:12;;32543:18;;32536:4;:25;;;;:::i;:::-;32535:63;;;;:::i;:::-;32489:21;;:109;;;;;;;:::i;:::-;;;;;;;;32187:427;31628:986;32641:1;32634:4;:8;32630:91;;;32663:42;32679:4;32693;32700;32663:15;:42::i;:::-;32630:91;32747:4;32737:14;;;;;:::i;:::-;;;31576:1187;32775:33;32791:4;32797:2;32801:6;32775:15;:33::i;:::-;32835:12;;32819:13;:28;;;;30514:2341;;;;30401:2454;;;;:::o;2694:191::-;2768:16;2787:6;;;;;;;;;;;2768:25;;2813:8;2804:6;;:17;;;;;;;;;;;;;;;;;;2868:8;2837:40;;2858:8;2837:40;;;;;;;;;;;;2757:128;2694:191;:::o;30205:188::-;30324:5;30289:26;:32;30316:4;30289:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30379:5;30345:40;;30373:4;30345:40;;;;;;;;;;;;30205:188;;:::o;10669:901::-;10816:1;10800:18;;:4;:18;;;10792:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10899:1;10885:16;;:2;:16;;;10877:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10960:38;10981:4;10987:2;10991:6;10960:20;:38::i;:::-;11011:19;11033:9;:15;11043:4;11033:15;;;;;;;;;;;;;;;;11011:37;;11096:6;11081:11;:21;;11059:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;11242:6;11228:11;:20;11210:9;:15;11220:4;11210:15;;;;;;;;;;;;;;;:38;;;;11451:6;11434:9;:13;11444:2;11434:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11501:2;11486:26;;11495:4;11486:26;;;11505:6;11486:26;;;;;;:::i;:::-;;;;;;;;11525:37;11545:4;11551:2;11555:6;11525:19;:37::i;:::-;10781:789;10669:901;;;:::o;33754:1607::-;33795:23;33821:24;33839:4;33821:9;:24::i;:::-;33795:50;;33856:25;33954:21;;33919:19;;33884;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33856:119;;33986:12;34013:23;34127:1;34094:17;34058:19;;34040:15;:37;;;;:::i;:::-;34039:72;;;;:::i;:::-;:89;;;;:::i;:::-;34013:115;;34139:26;34168:36;34188:15;34168;:19;;:36;;;;:::i;:::-;34139:65;;34217:25;34245:21;34217:49;;34279:37;34297:18;34279:17;:37::i;:::-;34329:18;34350:44;34376:17;34350:21;:25;;:44;;;;:::i;:::-;34329:65;;34407:23;34433:82;34487:17;34433:35;34448:19;;34433:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34407:108;;34528:25;34556:84;34612:17;34556:37;34571:21;;34556:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34528:112;;34653:23;34736:17;34705:15;34679:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34653:100;;34788:1;34766:19;:23;;;;34822:1;34800:19;:23;;;;34858:1;34834:21;:25;;;;34894:1;34876:15;:19;:42;;;;;34917:1;34899:15;:19;34876:42;34872:280;;;34935:47;34949:15;34966;34935:13;:47::i;:::-;35002:138;35035:18;35072:15;35106:19;;35002:138;;;;;;;;:::i;:::-;;;;;;;;34872:280;35186:17;;;;;;;;;;;35178:31;;35217:17;35178:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35164:75;;;;;35274:15;;;;;;;;;;;35266:29;;35317:21;35266:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35252:101;;;;;33784:1577;;;;;;;;;;33754:1607::o;17394:98::-;17452:7;17483:1;17479;:5;;;;:::i;:::-;17472:12;;17394:98;;;;:::o;17793:::-;17851:7;17882:1;17878;:5;;;;:::i;:::-;17871:12;;17793:98;;;;:::o;13745:125::-;;;;:::o;13878:124::-;;;;:::o;17031:98::-;17089:7;17120:1;17116;:5;;;;:::i;:::-;17109:12;;17031:98;;;;:::o;32863:503::-;32931:21;32969:1;32955:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32931:40;;33000:4;32982;32987:1;32982:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33026:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33016:4;33021:1;33016:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33061:62;33078:4;33093:15;33111:11;33061:8;:62::i;:::-;33162:15;:66;;;33243:11;33269:1;33285:4;33312;33332:15;33162:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32920:446;32863:503;:::o;33374:372::-;33457:62;33474:4;33489:15;33507:11;33457:8;:62::i;:::-;33532:15;:31;;;33571:9;33604:4;33624:11;33650:1;33666;33682:15;;;;;;;;;;;33712;33532:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33374: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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:468::-;3772:6;3780;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;4082:2;4108:50;4150:7;4141:6;4130:9;4126:22;4108:50;:::i;:::-;4098:60;;4053:115;3707:468;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:118::-;5246:24;5264:5;5246:24;:::i;:::-;5241:3;5234:37;5159:118;;:::o;5283:222::-;5376:4;5414:2;5403:9;5399:18;5391:26;;5427:71;5495:1;5484:9;5480:17;5471:6;5427:71;:::i;:::-;5283:222;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:118::-;6223:24;6241:5;6223:24;:::i;:::-;6218:3;6211:37;6136:118;;:::o;6260:222::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6404:71;6472:1;6461:9;6457:17;6448:6;6404:71;:::i;:::-;6260:222;;;;:::o;6488:86::-;6523:7;6563:4;6556:5;6552:16;6541:27;;6488:86;;;:::o;6580:112::-;6663:22;6679:5;6663:22;:::i;:::-;6658:3;6651:35;6580:112;;:::o;6698:214::-;6787:4;6825:2;6814:9;6810:18;6802:26;;6838:67;6902:1;6891:9;6887:17;6878:6;6838:67;:::i;:::-;6698:214;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::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:179::-;8768:31;8764:1;8756:6;8752:14;8745:55;8628:179;:::o;8813:366::-;8955:3;8976:67;9040:2;9035:3;8976:67;:::i;:::-;8969:74;;9052:93;9141:3;9052:93;:::i;:::-;9170:2;9165:3;9161:12;9154:19;;8813:366;;;:::o;9185:419::-;9351:4;9389:2;9378:9;9374:18;9366:26;;9438:9;9432:4;9428:20;9424:1;9413:9;9409:17;9402:47;9466:131;9592:4;9466:131;:::i;:::-;9458:139;;9185:419;;;:::o;9610:299::-;9750:34;9746:1;9738:6;9734:14;9727:58;9819:34;9814:2;9806:6;9802:15;9795:59;9888:13;9883:2;9875:6;9871:15;9864:38;9610:299;:::o;9915:366::-;10057:3;10078:67;10142:2;10137:3;10078:67;:::i;:::-;10071:74;;10154:93;10243:3;10154:93;:::i;:::-;10272:2;10267:3;10263:12;10256:19;;9915:366;;;:::o;10287:419::-;10453:4;10491:2;10480:9;10476:18;10468:26;;10540:9;10534:4;10530:20;10526:1;10515:9;10511:17;10504:47;10568:131;10694:4;10568:131;:::i;:::-;10560:139;;10287:419;;;:::o;10712:230::-;10852:34;10848:1;10840:6;10836:14;10829:58;10921:13;10916:2;10908:6;10904:15;10897:38;10712:230;:::o;10948:366::-;11090:3;11111:67;11175:2;11170:3;11111:67;:::i;:::-;11104:74;;11187:93;11276:3;11187:93;:::i;:::-;11305:2;11300:3;11296:12;11289:19;;10948:366;;;:::o;11320:419::-;11486:4;11524:2;11513:9;11509:18;11501:26;;11573:9;11567:4;11563:20;11559:1;11548:9;11544:17;11537:47;11601:131;11727:4;11601:131;:::i;:::-;11593:139;;11320:419;;;:::o;11745:231::-;11885:34;11881:1;11873:6;11869:14;11862:58;11954:14;11949:2;11941:6;11937:15;11930:39;11745:231;:::o;11982:366::-;12124:3;12145:67;12209:2;12204:3;12145:67;:::i;:::-;12138:74;;12221:93;12310:3;12221:93;:::i;:::-;12339:2;12334:3;12330:12;12323:19;;11982:366;;;:::o;12354:419::-;12520:4;12558:2;12547:9;12543:18;12535:26;;12607:9;12601:4;12597:20;12593:1;12582:9;12578:17;12571:47;12635:131;12761:4;12635:131;:::i;:::-;12627:139;;12354:419;;;:::o;12779:229::-;12919:34;12915:1;12907:6;12903:14;12896:58;12988:12;12983:2;12975:6;12971:15;12964:37;12779:229;:::o;13014:366::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:419::-;13552:4;13590:2;13579:9;13575:18;13567:26;;13639:9;13633:4;13629:20;13625:1;13614:9;13610:17;13603:47;13667:131;13793:4;13667:131;:::i;:::-;13659:139;;13386:419;;;:::o;13811:227::-;13951:34;13947:1;13939:6;13935:14;13928:58;14020:10;14015:2;14007:6;14003:15;13996:35;13811:227;:::o;14044:366::-;14186:3;14207:67;14271:2;14266:3;14207:67;:::i;:::-;14200:74;;14283:93;14372:3;14283:93;:::i;:::-;14401:2;14396:3;14392:12;14385:19;;14044:366;;;:::o;14416:419::-;14582:4;14620:2;14609:9;14605:18;14597:26;;14669:9;14663:4;14659:20;14655:1;14644:9;14640:17;14633:47;14697:131;14823:4;14697:131;:::i;:::-;14689:139;;14416:419;;;:::o;14841:225::-;14981:34;14977:1;14969:6;14965:14;14958:58;15050:8;15045:2;15037:6;15033:15;15026:33;14841:225;:::o;15072:366::-;15214:3;15235:67;15299:2;15294:3;15235:67;:::i;:::-;15228:74;;15311:93;15400:3;15311:93;:::i;:::-;15429:2;15424:3;15420:12;15413:19;;15072:366;;;:::o;15444:419::-;15610:4;15648:2;15637:9;15633:18;15625:26;;15697:9;15691:4;15687:20;15683:1;15672:9;15668:17;15661:47;15725:131;15851:4;15725:131;:::i;:::-;15717:139;;15444:419;;;:::o;15869:179::-;16009:31;16005:1;15997:6;15993:14;15986:55;15869:179;:::o;16054:366::-;16196:3;16217:67;16281:2;16276:3;16217:67;:::i;:::-;16210:74;;16293:93;16382:3;16293:93;:::i;:::-;16411:2;16406:3;16402:12;16395:19;;16054:366;;;:::o;16426:419::-;16592:4;16630:2;16619:9;16615:18;16607:26;;16679:9;16673:4;16669:20;16665:1;16654:9;16650:17;16643:47;16707:131;16833:4;16707:131;:::i;:::-;16699:139;;16426:419;;;:::o;16851:230::-;16991:34;16987:1;16979:6;16975:14;16968:58;17060:13;17055:2;17047:6;17043:15;17036:38;16851:230;:::o;17087:366::-;17229:3;17250:67;17314:2;17309:3;17250:67;:::i;:::-;17243:74;;17326:93;17415:3;17326:93;:::i;:::-;17444:2;17439:3;17435:12;17428:19;;17087:366;;;:::o;17459:419::-;17625:4;17663:2;17652:9;17648:18;17640:26;;17712:9;17706:4;17702:20;17698:1;17687:9;17683:17;17676:47;17740:131;17866:4;17740:131;:::i;:::-;17732:139;;17459:419;;;:::o;17884:222::-;18024:34;18020:1;18012:6;18008:14;18001:58;18093:5;18088:2;18080:6;18076:15;18069:30;17884:222;:::o;18112:366::-;18254:3;18275:67;18339:2;18334:3;18275:67;:::i;:::-;18268:74;;18351:93;18440:3;18351:93;:::i;:::-;18469:2;18464:3;18460:12;18453:19;;18112:366;;;:::o;18484:419::-;18650:4;18688:2;18677:9;18673:18;18665:26;;18737:9;18731:4;18727:20;18723:1;18712:9;18708:17;18701:47;18765:131;18891:4;18765:131;:::i;:::-;18757:139;;18484:419;;;:::o;18909:174::-;19049:26;19045:1;19037:6;19033:14;19026:50;18909:174;:::o;19089:366::-;19231:3;19252:67;19316:2;19311:3;19252:67;:::i;:::-;19245:74;;19328:93;19417:3;19328:93;:::i;:::-;19446:2;19441:3;19437:12;19430:19;;19089:366;;;:::o;19461:419::-;19627:4;19665:2;19654:9;19650:18;19642:26;;19714:9;19708:4;19704:20;19700:1;19689:9;19685:17;19678:47;19742:131;19868:4;19742:131;:::i;:::-;19734:139;;19461:419;;;:::o;19886:410::-;19926:7;19949:20;19967:1;19949:20;:::i;:::-;19944:25;;19983:20;20001:1;19983:20;:::i;:::-;19978:25;;20038:1;20035;20031:9;20060:30;20078:11;20060:30;:::i;:::-;20049:41;;20239:1;20230:7;20226:15;20223:1;20220:22;20200:1;20193:9;20173:83;20150:139;;20269:18;;:::i;:::-;20150:139;19934:362;19886:410;;;;:::o;20302:180::-;20350:77;20347:1;20340:88;20447:4;20444:1;20437:15;20471:4;20468:1;20461:15;20488:185;20528:1;20545:20;20563:1;20545:20;:::i;:::-;20540:25;;20579:20;20597:1;20579:20;:::i;:::-;20574:25;;20618:1;20608:35;;20623:18;;:::i;:::-;20608:35;20665:1;20662;20658:9;20653:14;;20488:185;;;;:::o;20679:194::-;20719:4;20739:20;20757:1;20739:20;:::i;:::-;20734:25;;20773:20;20791:1;20773:20;:::i;:::-;20768:25;;20817:1;20814;20810:9;20802:17;;20841:1;20835:4;20832:11;20829:37;;;20846:18;;:::i;:::-;20829:37;20679:194;;;;:::o;20879:230::-;21019:34;21015:1;21007:6;21003:14;20996:58;21088:13;21083:2;21075:6;21071:15;21064:38;20879:230;:::o;21115:366::-;21257:3;21278:67;21342:2;21337:3;21278:67;:::i;:::-;21271:74;;21354:93;21443:3;21354:93;:::i;:::-;21472:2;21467:3;21463:12;21456:19;;21115:366;;;:::o;21487:419::-;21653:4;21691:2;21680:9;21676:18;21668:26;;21740:9;21734:4;21730:20;21726:1;21715:9;21711:17;21704:47;21768:131;21894:4;21768:131;:::i;:::-;21760:139;;21487:419;;;:::o;21912:228::-;22052:34;22048:1;22040:6;22036:14;22029:58;22121:11;22116:2;22108:6;22104:15;22097:36;21912:228;:::o;22146:366::-;22288:3;22309:67;22373:2;22368:3;22309:67;:::i;:::-;22302:74;;22385:93;22474:3;22385:93;:::i;:::-;22503:2;22498:3;22494:12;22487:19;;22146:366;;;:::o;22518:419::-;22684:4;22722:2;22711:9;22707:18;22699:26;;22771:9;22765:4;22761:20;22757:1;22746:9;22742:17;22735:47;22799:131;22925:4;22799:131;:::i;:::-;22791:139;;22518:419;;;:::o;22943:231::-;23083:34;23079:1;23071:6;23067:14;23060:58;23152:14;23147:2;23139:6;23135:15;23128:39;22943:231;:::o;23180:366::-;23322:3;23343:67;23407:2;23402:3;23343:67;:::i;:::-;23336:74;;23419:93;23508:3;23419:93;:::i;:::-;23537:2;23532:3;23528:12;23521:19;;23180:366;;;:::o;23552:419::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:442::-;24126:4;24164:2;24153:9;24149:18;24141:26;;24177:71;24245:1;24234:9;24230:17;24221:6;24177:71;:::i;:::-;24258:72;24326:2;24315:9;24311:18;24302:6;24258:72;:::i;:::-;24340;24408:2;24397:9;24393:18;24384:6;24340:72;:::i;:::-;23977:442;;;;;;:::o;24425:147::-;24526:11;24563:3;24548:18;;24425:147;;;;:::o;24578:114::-;;:::o;24698:398::-;24857:3;24878:83;24959:1;24954:3;24878:83;:::i;:::-;24871:90;;24970:93;25059:3;24970:93;:::i;:::-;25088:1;25083:3;25079:11;25072:18;;24698:398;;;:::o;25102:379::-;25286:3;25308:147;25451:3;25308:147;:::i;:::-;25301:154;;25472:3;25465:10;;25102:379;;;:::o;25487:180::-;25535:77;25532:1;25525:88;25632:4;25629:1;25622:15;25656:4;25653:1;25646:15;25673:180;25721:77;25718:1;25711:88;25818:4;25815:1;25808:15;25842:4;25839:1;25832:15;25859:143;25916:5;25947:6;25941:13;25932:22;;25963:33;25990:5;25963:33;:::i;:::-;25859:143;;;;:::o;26008:351::-;26078:6;26127:2;26115:9;26106:7;26102:23;26098:32;26095:119;;;26133:79;;:::i;:::-;26095:119;26253:1;26278:64;26334:7;26325:6;26314:9;26310:22;26278:64;:::i;:::-;26268:74;;26224:128;26008:351;;;;:::o;26365:85::-;26410:7;26439:5;26428:16;;26365:85;;;:::o;26456:158::-;26514:9;26547:61;26565:42;26574:32;26600:5;26574:32;:::i;:::-;26565:42;:::i;:::-;26547:61;:::i;:::-;26534:74;;26456:158;;;:::o;26620:147::-;26715:45;26754:5;26715:45;:::i;:::-;26710:3;26703:58;26620:147;;:::o;26773:114::-;26840:6;26874:5;26868:12;26858:22;;26773:114;;;:::o;26893:184::-;26992:11;27026:6;27021:3;27014:19;27066:4;27061:3;27057:14;27042:29;;26893:184;;;;:::o;27083:132::-;27150:4;27173:3;27165:11;;27203:4;27198:3;27194:14;27186:22;;27083:132;;;:::o;27221:108::-;27298:24;27316:5;27298:24;:::i;:::-;27293:3;27286:37;27221:108;;:::o;27335:179::-;27404:10;27425:46;27467:3;27459:6;27425:46;:::i;:::-;27503:4;27498:3;27494:14;27480:28;;27335:179;;;;:::o;27520:113::-;27590:4;27622;27617:3;27613:14;27605:22;;27520:113;;;:::o;27669:732::-;27788:3;27817:54;27865:5;27817:54;:::i;:::-;27887:86;27966:6;27961:3;27887:86;:::i;:::-;27880:93;;27997:56;28047:5;27997:56;:::i;:::-;28076:7;28107:1;28092:284;28117:6;28114:1;28111:13;28092:284;;;28193:6;28187:13;28220:63;28279:3;28264:13;28220:63;:::i;:::-;28213:70;;28306:60;28359:6;28306:60;:::i;:::-;28296:70;;28152:224;28139:1;28136;28132:9;28127:14;;28092:284;;;28096:14;28392:3;28385:10;;27793:608;;;27669:732;;;;:::o;28407:831::-;28670:4;28708:3;28697:9;28693:19;28685:27;;28722:71;28790:1;28779:9;28775:17;28766:6;28722:71;:::i;:::-;28803:80;28879:2;28868:9;28864:18;28855:6;28803:80;:::i;:::-;28930:9;28924:4;28920:20;28915:2;28904:9;28900:18;28893:48;28958:108;29061:4;29052:6;28958:108;:::i;:::-;28950:116;;29076:72;29144:2;29133:9;29129:18;29120:6;29076:72;:::i;:::-;29158:73;29226:3;29215:9;29211:19;29202:6;29158:73;:::i;:::-;28407:831;;;;;;;;:::o;29244:807::-;29493:4;29531:3;29520:9;29516:19;29508:27;;29545:71;29613:1;29602:9;29598:17;29589:6;29545:71;:::i;:::-;29626:72;29694:2;29683:9;29679:18;29670:6;29626:72;:::i;:::-;29708:80;29784:2;29773:9;29769:18;29760:6;29708:80;:::i;:::-;29798;29874:2;29863:9;29859:18;29850:6;29798:80;:::i;:::-;29888:73;29956:3;29945:9;29941:19;29932:6;29888:73;:::i;:::-;29971;30039:3;30028:9;30024:19;30015:6;29971:73;:::i;:::-;29244:807;;;;;;;;;:::o;30057:143::-;30114:5;30145:6;30139:13;30130:22;;30161:33;30188:5;30161:33;:::i;:::-;30057:143;;;;:::o;30206:663::-;30294:6;30302;30310;30359:2;30347:9;30338:7;30334:23;30330:32;30327:119;;;30365:79;;:::i;:::-;30327:119;30485:1;30510:64;30566:7;30557:6;30546:9;30542:22;30510:64;:::i;:::-;30500:74;;30456:128;30623:2;30649:64;30705:7;30696:6;30685:9;30681:22;30649:64;:::i;:::-;30639:74;;30594:129;30762:2;30788:64;30844:7;30835:6;30824:9;30820:22;30788:64;:::i;:::-;30778:74;;30733:129;30206:663;;;;;:::o

Swarm Source

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