ETH Price: $2,270.57 (-6.19%)

Token

Hams2 Coin (HAMS2)
 

Overview

Max Total Supply

420,690,000,000,000 HAMS2

Holders

133

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,511,262,714,279.804339632802488369 HAMS2

Value
$0.00
0xb54b8876f464356dc2a757434167e5111e0c4d53
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:
Hams2Coin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-21
*/

/**
 *Submitted for verification at Etherscan.io on 2023-07-06
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

/*

        _           _
      (`-`;-"```"-;`-`)
       \.'         './
       /             \
       ;   0     0   ;
      /| =         = |\
     ; \   '._Y_.'   / ;
    ;   `-._ \|/ _.-'   ;
   ;        `"""`        ;
   ;    `""-.   .-""`    ;
   /;  '--._ \ / _.--   ;\
  :  `.   `/|| ||\`   .'  :
   '.  '-._       _.-'   .'        2.0
   (((-'`  `"""""`   `'-)))

Twitter:                   
https://twitter.com/Hams2Coin
Telegram: 
t.me/hams2coin
*/
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: yeyozerookay.sol





 
pragma solidity ^0.8.0;
 
contract Hams2Coin is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    bool public limited;
    bool taxesEnabled;
    uint256 public maxHoldingAmount;
    uint256 public buyTaxPercent = 1;
    uint256 public sellTaxPercent = 1;
    uint256 minAmountToSwapTaxes = (totalSupply() * 1) / 1000;
 
    bool inSwapAndLiq;
    bool paused = true;
 
    address public marketingWallet;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("Hams2 Coin", "HAMS2") {
        _mint(msg.sender, 420690000000000000000000000000000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
        _isExcludedFromFees[address(this)] = true;
 
        marketingWallet = 0x0f10fe9F72e3058B6b990FFf077637a7974aC2B5;
    }
 
    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");
        require(amount > 0, "ERC20: transfer must be greater than 0");
 
        if (paused) {
            require(
                from == owner() || from == address(this),
                "Trading not active yet"
            );
        }
  
        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
 
        uint256 taxAmount;
        if (taxesEnabled) {
            //Buy
            if (from == uniswapV2Pair && buyTaxPercent != 0) {
                if (!_isExcludedFromFees[to]) {
                    taxAmount = (amount * buyTaxPercent) / 100;
                }
            }
            // Sell
            if (to == uniswapV2Pair && sellTaxPercent != 0) {
                if (!_isExcludedFromFees[from]) {
                    taxAmount = (amount * sellTaxPercent) / 100;
                }
            }
 
            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinTokenBalance = contractTokenBalance >=
                minAmountToSwapTaxes;
 
            if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) {
                handleTax();
            }
        }
 
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }
 
    function handleTax() internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balanceOf(address(this)),
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }
 
    function changeMarketingWallet(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet = _newMarketingWallet;
    }
 
    function changeTaxPercent(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        buyTaxPercent = _newBuyTaxPercent;
        sellTaxPercent = _newSellTaxPercent;
    }
 
    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }
 
    function changeMinAmountToSwapTaxes(
        uint256 newMinAmount
    ) external onlyOwner {
        require(newMinAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinAmount;
    }
 
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
 
    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }
 
    function activate() external onlyOwner {
        paused = !paused;
    }
 
    function toggleLimited() external onlyOwner {
        limited = !limited;
    }
 
    function setRule(
        bool _limited,
        uint256 _maxHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
    }
 
    function airdrop(
        address[] memory recipients,
        uint[] memory values
    ) external onlyOwner {
        uint256 total = 0;
        for (uint256 i; i < recipients.length; i++) total += values[i];
        _transfer(msg.sender, address(this), total);
        for (uint i; i < recipients.length; i++) {
            _transfer(address(this), recipients[i], values[i]);
        }
    }
}
 
// Interfaces
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;
}
 
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;
}
 
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);
}
 
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;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"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":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600160085560016009556103e86001620000236200053e60201b60201c565b6200002f9190620007c5565b6200003b91906200083f565b600a556001600b60016101000a81548160ff0219169083151502179055503480156200006657600080fd5b506040518060400160405280600a81526020017f48616d733220436f696e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f48414d5332000000000000000000000000000000000000000000000000000000815250620000f3620000e76200054860201b60201c565b6200055060201b60201c565b816004908162000104919062000ae7565b50806005908162000116919062000ae7565b50505062000139336d14bddab3e51a57cff87a500000006200061460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c6919062000c38565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000254919062000c38565b6040518363ffffffff1660e01b81526004016200027392919062000c7b565b6020604051808303816000875af115801562000293573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b9919062000c38565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550730f10fe9f72e3058b6b990fff077637a7974ac2b5600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000d94565b6000600354905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000686576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067d9062000d09565b60405180910390fd5b6200069a600083836200078260201b60201c565b8060036000828254620006ae919062000d2b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000762919062000d77565b60405180910390a36200077e600083836200078760201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007d2826200078c565b9150620007df836200078c565b9250828202620007ef816200078c565b9150828204841483151762000809576200080862000796565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200084c826200078c565b915062000859836200078c565b9250826200086c576200086b62000810565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008f957607f821691505b6020821081036200090f576200090e620008b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200093a565b6200098586836200093a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009c8620009c2620009bc846200078c565b6200099d565b6200078c565b9050919050565b6000819050919050565b620009e483620009a7565b620009fc620009f382620009cf565b84845462000947565b825550505050565b600090565b62000a1362000a04565b62000a20818484620009d9565b505050565b5b8181101562000a485762000a3c60008262000a09565b60018101905062000a26565b5050565b601f82111562000a975762000a618162000915565b62000a6c846200092a565b8101602085101562000a7c578190505b62000a9462000a8b856200092a565b83018262000a25565b50505b505050565b600082821c905092915050565b600062000abc6000198460080262000a9c565b1980831691505092915050565b600062000ad7838362000aa9565b9150826002028217905092915050565b62000af28262000877565b67ffffffffffffffff81111562000b0e5762000b0d62000882565b5b62000b1a8254620008e0565b62000b2782828562000a4c565b600060209050601f83116001811462000b5f576000841562000b4a578287015190505b62000b56858262000ac9565b86555062000bc6565b601f19841662000b6f8662000915565b60005b8281101562000b995784890151825560018201915060208501945060208101905062000b72565b8683101562000bb9578489015162000bb5601f89168262000aa9565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c008262000bd3565b9050919050565b62000c128162000bf3565b811462000c1e57600080fd5b50565b60008151905062000c328162000c07565b92915050565b60006020828403121562000c515762000c5062000bce565b5b600062000c618482850162000c21565b91505092915050565b62000c758162000bf3565b82525050565b600060408201905062000c92600083018562000c6a565b62000ca1602083018462000c6a565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cf1601f8362000ca8565b915062000cfe8262000cb9565b602082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b600062000d38826200078c565b915062000d45836200078c565b925082820190508082111562000d605762000d5f62000796565b5b92915050565b62000d71816200078c565b82525050565b600060208201905062000d8e600083018462000d66565b92915050565b6130878062000da46000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a57806397f92e95116100ad578063c02466681161007c578063c02466681461057e578063d21079e61461059a578063dd62ed3e146105b6578063e0bf7fd1146105e6578063f2fde38b14610616576101fb565b806397f92e95146104e6578063a457c2d714610502578063a9059cbb14610532578063bb85c6d114610562576101fb565b8063860a32ec116100e9578063860a32ec1461046e57806389f9a1d31461048c5780638da5cb5b146104aa57806395d89b41146104c8576101fb565b806370a08231146103f8578063715018a61461042857806375f0a874146104325780637df405a414610450576101fb565b8063302757441161019257806342966c681161016157806342966c681461038457806349bd5a5e146103a057806367243482146103be5780636fb1896c146103da576101fb565b806330275744146102fe578063313ce5671461031a57806339509351146103385780633d5369f614610368576101fb565b80631694505e116101ce5780631694505e1461026257806316c021291461028057806318160ddd146102b057806323b872dd146102ce576101fb565b806303417ed51461020057806306fdde031461020a578063095ea7b3146102285780630f15f4c014610258575b600080fd5b610208610632565b005b610212610666565b60405161021f9190611e0e565b60405180910390f35b610242600480360381019061023d9190611ed8565b6106f8565b60405161024f9190611f33565b60405180910390f35b61026061071b565b005b61026a61074f565b6040516102779190611fad565b60405180910390f35b61029a60048036038101906102959190611fc8565b610775565b6040516102a79190611f33565b60405180910390f35b6102b8610795565b6040516102c59190612004565b60405180910390f35b6102e860048036038101906102e3919061201f565b61079f565b6040516102f59190611f33565b60405180910390f35b6103186004803603810190610313919061209e565b6107ce565b005b6103226107f3565b60405161032f91906120e7565b60405180910390f35b610352600480360381019061034d9190611ed8565b6107fc565b60405161035f9190611f33565b60405180910390f35b610382600480360381019061037d9190612102565b610833565b005b61039e60048036038101906103999190612102565b610888565b005b6103a8610895565b6040516103b5919061213e565b60405180910390f35b6103d860048036038101906103d39190612364565b6108bb565b005b6103e261097b565b6040516103ef9190612004565b60405180910390f35b610412600480360381019061040d9190611fc8565b610981565b60405161041f9190612004565b60405180910390f35b6104306109ca565b005b61043a6109de565b604051610447919061213e565b60405180910390f35b610458610a04565b6040516104659190612004565b60405180910390f35b610476610a0a565b6040516104839190611f33565b60405180910390f35b610494610a1d565b6040516104a19190612004565b60405180910390f35b6104b2610a23565b6040516104bf919061213e565b60405180910390f35b6104d0610a4c565b6040516104dd9190611e0e565b60405180910390f35b61050060048036038101906104fb91906123dc565b610ade565b005b61051c60048036038101906105179190611ed8565b610af8565b6040516105299190611f33565b60405180910390f35b61054c60048036038101906105479190611ed8565b610b6f565b6040516105599190611f33565b60405180910390f35b61057c60048036038101906105779190611fc8565b610b92565b005b6105986004803603810190610593919061241c565b610bde565b005b6105b460048036038101906105af919061245c565b610c41565b005b6105d060048036038101906105cb919061249c565b610c6e565b6040516105dd9190612004565b60405180910390f35b61060060048036038101906105fb9190611fc8565b610cf5565b60405161060d9190611f33565b60405180910390f35b610630600480360381019061062b9190611fc8565b610d15565b005b61063a610d98565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546106759061250b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061250b565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600080610703610e16565b9050610710818585610e1e565b600191505092915050565b610723610d98565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806107aa610e16565b90506107b7858285610fe7565b6107c2858585611073565b60019150509392505050565b6107d6610d98565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610807610e16565b90506108288185856108198589610c6e565b610823919061256b565b610e1e565b600191505092915050565b61083b610d98565b6000811161087e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610875906125eb565b60405180910390fd5b80600a8190555050565b61089233826115be565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c3610d98565b6000805b835181101561090b578281815181106108e3576108e261260b565b5b6020026020010151826108f6919061256b565b915080806109039061263a565b9150506108c7565b50610917333083611073565b60005b8351811015610975576109623085838151811061093a5761093961260b565b5b60200260200101518584815181106109555761095461260b565b5b6020026020010151611073565b808061096d9061263a565b91505061091a565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d2610d98565b6109dc600061178d565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a5b9061250b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a879061250b565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b610ae6610d98565b81600881905550806009819055505050565b600080610b03610e16565b90506000610b118286610c6e565b905083811015610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906126f4565b60405180910390fd5b610b638286868403610e1e565b60019250505092915050565b600080610b7a610e16565b9050610b87818585611073565b600191505092915050565b610b9a610d98565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610be6610d98565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610c49610d98565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610d1d610d98565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612786565b60405180910390fd5b610d958161178d565b50565b610da0610e16565b73ffffffffffffffffffffffffffffffffffffffff16610dbe610a23565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906127f2565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612916565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fda9190612004565b60405180910390a3505050565b6000610ff38484610c6e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461106d578181101561105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612982565b60405180910390fd5b61106c8484848403610e1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890612aa6565b60405180910390fd5b60008111611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90612b38565b60405180910390fd5b600b60019054906101000a900460ff1615611255576111b1610a23565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061121557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90612ba4565b60405180910390fd5b5b600660149054906101000a900460ff1680156112be5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561131c57600754816112d084610981565b6112da919061256b565b111561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612c10565b60405180910390fd5b5b6000600660159054906101000a900460ff161561157757600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113935750600060085414155b1561140757600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611406576064600854836113f99190612c30565b6114039190612ca1565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114675750600060095414155b156114db57600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114da576064600954836114cd9190612c30565b6114d79190612ca1565b90505b5b60006114e630610981565b90506000600a54821015905080801561150c5750600b60009054906101000a900460ff16155b80156115665750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561157457611573611851565b5b50505b60008111156115ac576000818361158e9190612cd2565b905061159b853084611afb565b6115a6858583611afb565b506115b8565b6115b7848484611afb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490612d78565b60405180910390fd5b61163982600083611d74565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790612e0a565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117749190612004565b60405180910390a361178883600084611d79565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156118895761188861215e565b5b6040519080825280602002602001820160405280156118b75781602001602082028036833780820191505090505b50905030816000815181106118cf576118ce61260b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199a9190612e3f565b816001815181106119ae576119ad61260b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a1d30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a1830610981565b610e1e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611a6430610981565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611aab959493929190612f65565b600060405180830381600087803b158015611ac557600080fd5b505af1158015611ad9573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190612a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090612aa6565b60405180910390fd5b611be4838383611d74565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613031565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d5b9190612004565b60405180910390a3611d6e848484611d79565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611db8578082015181840152602081019050611d9d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611de082611d7e565b611dea8185611d89565b9350611dfa818560208601611d9a565b611e0381611dc4565b840191505092915050565b60006020820190508181036000830152611e288184611dd5565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e6f82611e44565b9050919050565b611e7f81611e64565b8114611e8a57600080fd5b50565b600081359050611e9c81611e76565b92915050565b6000819050919050565b611eb581611ea2565b8114611ec057600080fd5b50565b600081359050611ed281611eac565b92915050565b60008060408385031215611eef57611eee611e3a565b5b6000611efd85828601611e8d565b9250506020611f0e85828601611ec3565b9150509250929050565b60008115159050919050565b611f2d81611f18565b82525050565b6000602082019050611f486000830184611f24565b92915050565b6000819050919050565b6000611f73611f6e611f6984611e44565b611f4e565b611e44565b9050919050565b6000611f8582611f58565b9050919050565b6000611f9782611f7a565b9050919050565b611fa781611f8c565b82525050565b6000602082019050611fc26000830184611f9e565b92915050565b600060208284031215611fde57611fdd611e3a565b5b6000611fec84828501611e8d565b91505092915050565b611ffe81611ea2565b82525050565b60006020820190506120196000830184611ff5565b92915050565b60008060006060848603121561203857612037611e3a565b5b600061204686828701611e8d565b935050602061205786828701611e8d565b925050604061206886828701611ec3565b9150509250925092565b61207b81611f18565b811461208657600080fd5b50565b60008135905061209881612072565b92915050565b6000602082840312156120b4576120b3611e3a565b5b60006120c284828501612089565b91505092915050565b600060ff82169050919050565b6120e1816120cb565b82525050565b60006020820190506120fc60008301846120d8565b92915050565b60006020828403121561211857612117611e3a565b5b600061212684828501611ec3565b91505092915050565b61213881611e64565b82525050565b6000602082019050612153600083018461212f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61219682611dc4565b810181811067ffffffffffffffff821117156121b5576121b461215e565b5b80604052505050565b60006121c8611e30565b90506121d4828261218d565b919050565b600067ffffffffffffffff8211156121f4576121f361215e565b5b602082029050602081019050919050565b600080fd5b600061221d612218846121d9565b6121be565b905080838252602082019050602084028301858111156122405761223f612205565b5b835b8181101561226957806122558882611e8d565b845260208401935050602081019050612242565b5050509392505050565b600082601f83011261228857612287612159565b5b813561229884826020860161220a565b91505092915050565b600067ffffffffffffffff8211156122bc576122bb61215e565b5b602082029050602081019050919050565b60006122e06122db846122a1565b6121be565b9050808382526020820190506020840283018581111561230357612302612205565b5b835b8181101561232c57806123188882611ec3565b845260208401935050602081019050612305565b5050509392505050565b600082601f83011261234b5761234a612159565b5b813561235b8482602086016122cd565b91505092915050565b6000806040838503121561237b5761237a611e3a565b5b600083013567ffffffffffffffff81111561239957612398611e3f565b5b6123a585828601612273565b925050602083013567ffffffffffffffff8111156123c6576123c5611e3f565b5b6123d285828601612336565b9150509250929050565b600080604083850312156123f3576123f2611e3a565b5b600061240185828601611ec3565b925050602061241285828601611ec3565b9150509250929050565b6000806040838503121561243357612432611e3a565b5b600061244185828601611e8d565b925050602061245285828601612089565b9150509250929050565b6000806040838503121561247357612472611e3a565b5b600061248185828601612089565b925050602061249285828601611ec3565b9150509250929050565b600080604083850312156124b3576124b2611e3a565b5b60006124c185828601611e8d565b92505060206124d285828601611e8d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061252357607f821691505b602082108103612536576125356124dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061257682611ea2565b915061258183611ea2565b92508282019050808211156125995761259861253c565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b60006125d5601283611d89565b91506125e08261259f565b602082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061264582611ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126775761267661253c565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126de602583611d89565b91506126e982612682565b604082019050919050565b6000602082019050818103600083015261270d816126d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612770602683611d89565b915061277b82612714565b604082019050919050565b6000602082019050818103600083015261279f81612763565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127dc602083611d89565b91506127e7826127a6565b602082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061286e602483611d89565b915061287982612812565b604082019050919050565b6000602082019050818103600083015261289d81612861565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612900602283611d89565b915061290b826128a4565b604082019050919050565b6000602082019050818103600083015261292f816128f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061296c601d83611d89565b915061297782612936565b602082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129fe602583611d89565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a90602383611d89565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612b22602683611d89565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612b8e601683611d89565b9150612b9982612b58565b602082019050919050565b60006020820190508181036000830152612bbd81612b81565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612bfa600683611d89565b9150612c0582612bc4565b602082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b6000612c3b82611ea2565b9150612c4683611ea2565b9250828202612c5481611ea2565b91508282048414831517612c6b57612c6a61253c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cac82611ea2565b9150612cb783611ea2565b925082612cc757612cc6612c72565b5b828204905092915050565b6000612cdd82611ea2565b9150612ce883611ea2565b9250828203905081811115612d0057612cff61253c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d62602183611d89565b9150612d6d82612d06565b604082019050919050565b60006020820190508181036000830152612d9181612d55565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612df4602283611d89565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b600081519050612e3981611e76565b92915050565b600060208284031215612e5557612e54611e3a565b5b6000612e6384828501612e2a565b91505092915050565b6000819050919050565b6000612e91612e8c612e8784612e6c565b611f4e565b611ea2565b9050919050565b612ea181612e76565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612edc81611e64565b82525050565b6000612eee8383612ed3565b60208301905092915050565b6000602082019050919050565b6000612f1282612ea7565b612f1c8185612eb2565b9350612f2783612ec3565b8060005b83811015612f58578151612f3f8882612ee2565b9750612f4a83612efa565b925050600181019050612f2b565b5085935050505092915050565b600060a082019050612f7a6000830188611ff5565b612f876020830187612e98565b8181036040830152612f998186612f07565b9050612fa8606083018561212f565b612fb56080830184611ff5565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061301b602683611d89565b915061302682612fbf565b604082019050919050565b6000602082019050818103600083015261304a8161300e565b905091905056fea2646970667358221220d75ee226b1c073a2c4e34d2c3330d239b81d1d19fd2ec1cf08ebf35c1f264aa564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a57806397f92e95116100ad578063c02466681161007c578063c02466681461057e578063d21079e61461059a578063dd62ed3e146105b6578063e0bf7fd1146105e6578063f2fde38b14610616576101fb565b806397f92e95146104e6578063a457c2d714610502578063a9059cbb14610532578063bb85c6d114610562576101fb565b8063860a32ec116100e9578063860a32ec1461046e57806389f9a1d31461048c5780638da5cb5b146104aa57806395d89b41146104c8576101fb565b806370a08231146103f8578063715018a61461042857806375f0a874146104325780637df405a414610450576101fb565b8063302757441161019257806342966c681161016157806342966c681461038457806349bd5a5e146103a057806367243482146103be5780636fb1896c146103da576101fb565b806330275744146102fe578063313ce5671461031a57806339509351146103385780633d5369f614610368576101fb565b80631694505e116101ce5780631694505e1461026257806316c021291461028057806318160ddd146102b057806323b872dd146102ce576101fb565b806303417ed51461020057806306fdde031461020a578063095ea7b3146102285780630f15f4c014610258575b600080fd5b610208610632565b005b610212610666565b60405161021f9190611e0e565b60405180910390f35b610242600480360381019061023d9190611ed8565b6106f8565b60405161024f9190611f33565b60405180910390f35b61026061071b565b005b61026a61074f565b6040516102779190611fad565b60405180910390f35b61029a60048036038101906102959190611fc8565b610775565b6040516102a79190611f33565b60405180910390f35b6102b8610795565b6040516102c59190612004565b60405180910390f35b6102e860048036038101906102e3919061201f565b61079f565b6040516102f59190611f33565b60405180910390f35b6103186004803603810190610313919061209e565b6107ce565b005b6103226107f3565b60405161032f91906120e7565b60405180910390f35b610352600480360381019061034d9190611ed8565b6107fc565b60405161035f9190611f33565b60405180910390f35b610382600480360381019061037d9190612102565b610833565b005b61039e60048036038101906103999190612102565b610888565b005b6103a8610895565b6040516103b5919061213e565b60405180910390f35b6103d860048036038101906103d39190612364565b6108bb565b005b6103e261097b565b6040516103ef9190612004565b60405180910390f35b610412600480360381019061040d9190611fc8565b610981565b60405161041f9190612004565b60405180910390f35b6104306109ca565b005b61043a6109de565b604051610447919061213e565b60405180910390f35b610458610a04565b6040516104659190612004565b60405180910390f35b610476610a0a565b6040516104839190611f33565b60405180910390f35b610494610a1d565b6040516104a19190612004565b60405180910390f35b6104b2610a23565b6040516104bf919061213e565b60405180910390f35b6104d0610a4c565b6040516104dd9190611e0e565b60405180910390f35b61050060048036038101906104fb91906123dc565b610ade565b005b61051c60048036038101906105179190611ed8565b610af8565b6040516105299190611f33565b60405180910390f35b61054c60048036038101906105479190611ed8565b610b6f565b6040516105599190611f33565b60405180910390f35b61057c60048036038101906105779190611fc8565b610b92565b005b6105986004803603810190610593919061241c565b610bde565b005b6105b460048036038101906105af919061245c565b610c41565b005b6105d060048036038101906105cb919061249c565b610c6e565b6040516105dd9190612004565b60405180910390f35b61060060048036038101906105fb9190611fc8565b610cf5565b60405161060d9190611f33565b60405180910390f35b610630600480360381019061062b9190611fc8565b610d15565b005b61063a610d98565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546106759061250b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a19061250b565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600080610703610e16565b9050610710818585610e1e565b600191505092915050565b610723610d98565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806107aa610e16565b90506107b7858285610fe7565b6107c2858585611073565b60019150509392505050565b6107d6610d98565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610807610e16565b90506108288185856108198589610c6e565b610823919061256b565b610e1e565b600191505092915050565b61083b610d98565b6000811161087e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610875906125eb565b60405180910390fd5b80600a8190555050565b61089233826115be565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108c3610d98565b6000805b835181101561090b578281815181106108e3576108e261260b565b5b6020026020010151826108f6919061256b565b915080806109039061263a565b9150506108c7565b50610917333083611073565b60005b8351811015610975576109623085838151811061093a5761093961260b565b5b60200260200101518584815181106109555761095461260b565b5b6020026020010151611073565b808061096d9061263a565b91505061091a565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d2610d98565b6109dc600061178d565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a5b9061250b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a879061250b565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b610ae6610d98565b81600881905550806009819055505050565b600080610b03610e16565b90506000610b118286610c6e565b905083811015610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906126f4565b60405180910390fd5b610b638286868403610e1e565b60019250505092915050565b600080610b7a610e16565b9050610b87818585611073565b600191505092915050565b610b9a610d98565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610be6610d98565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610c49610d98565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610d1d610d98565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612786565b60405180910390fd5b610d958161178d565b50565b610da0610e16565b73ffffffffffffffffffffffffffffffffffffffff16610dbe610a23565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906127f2565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612916565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fda9190612004565b60405180910390a3505050565b6000610ff38484610c6e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461106d578181101561105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612982565b60405180910390fd5b61106c8484848403610e1e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890612aa6565b60405180910390fd5b60008111611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90612b38565b60405180910390fd5b600b60019054906101000a900460ff1615611255576111b1610a23565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061121557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b90612ba4565b60405180910390fd5b5b600660149054906101000a900460ff1680156112be5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561131c57600754816112d084610981565b6112da919061256b565b111561131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290612c10565b60405180910390fd5b5b6000600660159054906101000a900460ff161561157757600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156113935750600060085414155b1561140757600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611406576064600854836113f99190612c30565b6114039190612ca1565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156114675750600060095414155b156114db57600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114da576064600954836114cd9190612c30565b6114d79190612ca1565b90505b5b60006114e630610981565b90506000600a54821015905080801561150c5750600b60009054906101000a900460ff16155b80156115665750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561157457611573611851565b5b50505b60008111156115ac576000818361158e9190612cd2565b905061159b853084611afb565b6115a6858583611afb565b506115b8565b6115b7848484611afb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490612d78565b60405180910390fd5b61163982600083611d74565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790612e0a565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117749190612004565b60405180910390a361178883600084611d79565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156118895761188861215e565b5b6040519080825280602002602001820160405280156118b75781602001602082028036833780820191505090505b50905030816000815181106118cf576118ce61260b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199a9190612e3f565b816001815181106119ae576119ad61260b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a1d30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a1830610981565b610e1e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611a6430610981565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611aab959493929190612f65565b600060405180830381600087803b158015611ac557600080fd5b505af1158015611ad9573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190612a14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd090612aa6565b60405180910390fd5b611be4838383611d74565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613031565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d5b9190612004565b60405180910390a3611d6e848484611d79565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611db8578082015181840152602081019050611d9d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611de082611d7e565b611dea8185611d89565b9350611dfa818560208601611d9a565b611e0381611dc4565b840191505092915050565b60006020820190508181036000830152611e288184611dd5565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e6f82611e44565b9050919050565b611e7f81611e64565b8114611e8a57600080fd5b50565b600081359050611e9c81611e76565b92915050565b6000819050919050565b611eb581611ea2565b8114611ec057600080fd5b50565b600081359050611ed281611eac565b92915050565b60008060408385031215611eef57611eee611e3a565b5b6000611efd85828601611e8d565b9250506020611f0e85828601611ec3565b9150509250929050565b60008115159050919050565b611f2d81611f18565b82525050565b6000602082019050611f486000830184611f24565b92915050565b6000819050919050565b6000611f73611f6e611f6984611e44565b611f4e565b611e44565b9050919050565b6000611f8582611f58565b9050919050565b6000611f9782611f7a565b9050919050565b611fa781611f8c565b82525050565b6000602082019050611fc26000830184611f9e565b92915050565b600060208284031215611fde57611fdd611e3a565b5b6000611fec84828501611e8d565b91505092915050565b611ffe81611ea2565b82525050565b60006020820190506120196000830184611ff5565b92915050565b60008060006060848603121561203857612037611e3a565b5b600061204686828701611e8d565b935050602061205786828701611e8d565b925050604061206886828701611ec3565b9150509250925092565b61207b81611f18565b811461208657600080fd5b50565b60008135905061209881612072565b92915050565b6000602082840312156120b4576120b3611e3a565b5b60006120c284828501612089565b91505092915050565b600060ff82169050919050565b6120e1816120cb565b82525050565b60006020820190506120fc60008301846120d8565b92915050565b60006020828403121561211857612117611e3a565b5b600061212684828501611ec3565b91505092915050565b61213881611e64565b82525050565b6000602082019050612153600083018461212f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61219682611dc4565b810181811067ffffffffffffffff821117156121b5576121b461215e565b5b80604052505050565b60006121c8611e30565b90506121d4828261218d565b919050565b600067ffffffffffffffff8211156121f4576121f361215e565b5b602082029050602081019050919050565b600080fd5b600061221d612218846121d9565b6121be565b905080838252602082019050602084028301858111156122405761223f612205565b5b835b8181101561226957806122558882611e8d565b845260208401935050602081019050612242565b5050509392505050565b600082601f83011261228857612287612159565b5b813561229884826020860161220a565b91505092915050565b600067ffffffffffffffff8211156122bc576122bb61215e565b5b602082029050602081019050919050565b60006122e06122db846122a1565b6121be565b9050808382526020820190506020840283018581111561230357612302612205565b5b835b8181101561232c57806123188882611ec3565b845260208401935050602081019050612305565b5050509392505050565b600082601f83011261234b5761234a612159565b5b813561235b8482602086016122cd565b91505092915050565b6000806040838503121561237b5761237a611e3a565b5b600083013567ffffffffffffffff81111561239957612398611e3f565b5b6123a585828601612273565b925050602083013567ffffffffffffffff8111156123c6576123c5611e3f565b5b6123d285828601612336565b9150509250929050565b600080604083850312156123f3576123f2611e3a565b5b600061240185828601611ec3565b925050602061241285828601611ec3565b9150509250929050565b6000806040838503121561243357612432611e3a565b5b600061244185828601611e8d565b925050602061245285828601612089565b9150509250929050565b6000806040838503121561247357612472611e3a565b5b600061248185828601612089565b925050602061249285828601611ec3565b9150509250929050565b600080604083850312156124b3576124b2611e3a565b5b60006124c185828601611e8d565b92505060206124d285828601611e8d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061252357607f821691505b602082108103612536576125356124dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061257682611ea2565b915061258183611ea2565b92508282019050808211156125995761259861253c565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b60006125d5601283611d89565b91506125e08261259f565b602082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061264582611ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126775761267661253c565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126de602583611d89565b91506126e982612682565b604082019050919050565b6000602082019050818103600083015261270d816126d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612770602683611d89565b915061277b82612714565b604082019050919050565b6000602082019050818103600083015261279f81612763565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127dc602083611d89565b91506127e7826127a6565b602082019050919050565b6000602082019050818103600083015261280b816127cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061286e602483611d89565b915061287982612812565b604082019050919050565b6000602082019050818103600083015261289d81612861565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612900602283611d89565b915061290b826128a4565b604082019050919050565b6000602082019050818103600083015261292f816128f3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061296c601d83611d89565b915061297782612936565b602082019050919050565b6000602082019050818103600083015261299b8161295f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129fe602583611d89565b9150612a09826129a2565b604082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a90602383611d89565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612b22602683611d89565b9150612b2d82612ac6565b604082019050919050565b60006020820190508181036000830152612b5181612b15565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612b8e601683611d89565b9150612b9982612b58565b602082019050919050565b60006020820190508181036000830152612bbd81612b81565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612bfa600683611d89565b9150612c0582612bc4565b602082019050919050565b60006020820190508181036000830152612c2981612bed565b9050919050565b6000612c3b82611ea2565b9150612c4683611ea2565b9250828202612c5481611ea2565b91508282048414831517612c6b57612c6a61253c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cac82611ea2565b9150612cb783611ea2565b925082612cc757612cc6612c72565b5b828204905092915050565b6000612cdd82611ea2565b9150612ce883611ea2565b9250828203905081811115612d0057612cff61253c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d62602183611d89565b9150612d6d82612d06565b604082019050919050565b60006020820190508181036000830152612d9181612d55565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612df4602283611d89565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b600081519050612e3981611e76565b92915050565b600060208284031215612e5557612e54611e3a565b5b6000612e6384828501612e2a565b91505092915050565b6000819050919050565b6000612e91612e8c612e8784612e6c565b611f4e565b611ea2565b9050919050565b612ea181612e76565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612edc81611e64565b82525050565b6000612eee8383612ed3565b60208301905092915050565b6000602082019050919050565b6000612f1282612ea7565b612f1c8185612eb2565b9350612f2783612ec3565b8060005b83811015612f58578151612f3f8882612ee2565b9750612f4a83612efa565b925050600181019050612f2b565b5085935050505092915050565b600060a082019050612f7a6000830188611ff5565b612f876020830187612e98565b8181036040830152612f998186612f07565b9050612fa8606083018561212f565b612fb56080830184611ff5565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061301b602683611d89565b915061302682612fbf565b604082019050919050565b6000602082019050818103600083015261304a8161300e565b905091905056fea2646970667358221220d75ee226b1c073a2c4e34d2c3330d239b81d1d19fd2ec1cf08ebf35c1f264aa564736f6c63430008120033

Deployed Bytecode Sourcemap

22088:5676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27072:81;;;:::i;:::-;;7170:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9530:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26989:74;;;:::i;:::-;;22132:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22538:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8299:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10311:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26885:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8141:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10981:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26581:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26795:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22503:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27358:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22307:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8470:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21203:103;;;:::i;:::-;;22466:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22268:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22180:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20562:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7389:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26173:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11722:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8803:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26013:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26405:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27162:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9059:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22587:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21461:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27072:81;20448:13;:11;:13::i;:::-;27138:7:::1;;;;;;;;;;;27137:8;27127:7;;:18;;;;;;;;;;;;;;;;;;27072:81::o:0;7170:100::-;7224:13;7257:5;7250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7170:100;:::o;9530:201::-;9613:4;9630:13;9646:12;:10;:12::i;:::-;9630:28;;9669:32;9678:5;9685:7;9694:6;9669:8;:32::i;:::-;9719:4;9712:11;;;9530:201;;;;:::o;26989:74::-;20448:13;:11;:13::i;:::-;27049:6:::1;;;;;;;;;;;27048:7;27039:6;;:16;;;;;;;;;;;;;;;;;;26989:74::o:0;22132:41::-;;;;;;;;;;;;;:::o;22538:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8299:108::-;8360:7;8387:12;;8380:19;;8299:108;:::o;10311:261::-;10408:4;10425:15;10443:12;:10;:12::i;:::-;10425:30;;10466:38;10482:4;10488:7;10497:6;10466:15;:38::i;:::-;10515:27;10525:4;10531:2;10535:6;10515:9;:27::i;:::-;10560:4;10553:11;;;10311:261;;;;;:::o;26885:95::-;20448:13;:11;:13::i;:::-;26965:7:::1;26950:12;;:22;;;;;;;;;;;;;;;;;;26885:95:::0;:::o;8141:93::-;8199:5;8224:2;8217:9;;8141:93;:::o;10981:238::-;11069:4;11086:13;11102:12;:10;:12::i;:::-;11086:28;;11125:64;11134:5;11141:7;11178:10;11150:25;11160:5;11167:7;11150:9;:25::i;:::-;:38;;;;:::i;:::-;11125:8;:64::i;:::-;11207:4;11200:11;;;10981:238;;;;:::o;26581:205::-;20448:13;:11;:13::i;:::-;26708:1:::1;26693:12;:16;26685:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;26766:12;26743:20;:35;;;;26581:205:::0;:::o;26795:81::-;26844:24;26850:10;26862:5;26844;:24::i;:::-;26795:81;:::o;22503:28::-;;;;;;;;;;;;;:::o;27358:403::-;20448:13;:11;:13::i;:::-;27481::::1;27514:9:::0;27509:62:::1;27529:10;:17;27525:1;:21;27509:62;;;27562:6;27569:1;27562:9;;;;;;;;:::i;:::-;;;;;;;;27553:18;;;;;:::i;:::-;;;27548:3;;;;;:::i;:::-;;;;27509:62;;;;27582:43;27592:10;27612:4;27619:5;27582:9;:43::i;:::-;27641:6;27636:118;27653:10;:17;27649:1;:21;27636:118;;;27692:50;27710:4;27717:10;27728:1;27717:13;;;;;;;;:::i;:::-;;;;;;;;27732:6;27739:1;27732:9;;;;;;;;:::i;:::-;;;;;;;;27692;:50::i;:::-;27672:3;;;;;:::i;:::-;;;;27636:118;;;;27470:291;27358:403:::0;;:::o;22307:33::-;;;;:::o;8470:127::-;8544:7;8571:9;:18;8581:7;8571:18;;;;;;;;;;;;;;;;8564:25;;8470:127;;;:::o;21203:103::-;20448:13;:11;:13::i;:::-;21268:30:::1;21295:1;21268:18;:30::i;:::-;21203:103::o:0;22466:30::-;;;;;;;;;;;;;:::o;22268:32::-;;;;:::o;22180:19::-;;;;;;;;;;;;;:::o;22230:31::-;;;;:::o;20562:87::-;20608:7;20635:6;;;;;;;;;;;20628:13;;20562:87;:::o;7389:104::-;7445:13;7478:7;7471:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7389:104;:::o;26173:223::-;20448:13;:11;:13::i;:::-;26325:17:::1;26309:13;:33;;;;26370:18;26353:14;:35;;;;26173:223:::0;;:::o;11722:436::-;11815:4;11832:13;11848:12;:10;:12::i;:::-;11832:28;;11871:24;11898:25;11908:5;11915:7;11898:9;:25::i;:::-;11871:52;;11962:15;11942:16;:35;;11934:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12055:60;12064:5;12071:7;12099:15;12080:16;:34;12055:8;:60::i;:::-;12146:4;12139:11;;;;11722:436;;;;:::o;8803:193::-;8882:4;8899:13;8915:12;:10;:12::i;:::-;8899:28;;8938;8948:5;8955:2;8959:6;8938:9;:28::i;:::-;8984:4;8977:11;;;8803:193;;;;:::o;26013:151::-;20448:13;:11;:13::i;:::-;26137:19:::1;26119:15;;:37;;;;;;;;;;;;;;;;;;26013:151:::0;:::o;26405:167::-;20448:13;:11;:13::i;:::-;26553:11:::1;26521:19;:29;26541:8;26521:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26405:167:::0;;:::o;27162:187::-;20448:13;:11;:13::i;:::-;27286:8:::1;27276:7;;:18;;;;;;;;;;;;;;;;;;27324:17;27305:16;:36;;;;27162:187:::0;;:::o;9059:151::-;9148:7;9175:11;:18;9187:5;9175:18;;;;;;;;;;;;;;;:27;9194:7;9175:27;;;;;;;;;;;;;;;;9168:34;;9059:151;;;;:::o;22587:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21461:201::-;20448:13;:11;:13::i;:::-;21570:1:::1;21550:22;;:8;:22;;::::0;21542:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21626:28;21645:8;21626:18;:28::i;:::-;21461:201:::0;:::o;20727:132::-;20802:12;:10;:12::i;:::-;20791:23;;:7;:5;:7::i;:::-;:23;;;20783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20727:132::o;4808:98::-;4861:7;4888:10;4881:17;;4808:98;:::o;15715:346::-;15834:1;15817:19;;:5;:19;;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15915:1;15896:21;;:7;:21;;;15888:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15999:6;15969:11;:18;15981:5;15969:18;;;;;;;;;;;;;;;:27;15988:7;15969:27;;;;;;;;;;;;;;;:36;;;;16037:7;16021:32;;16030:5;16021:32;;;16046:6;16021:32;;;;;;:::i;:::-;;;;;;;;15715:346;;;:::o;16352:419::-;16453:24;16480:25;16490:5;16497:7;16480:9;:25::i;:::-;16453:52;;16540:17;16520:16;:37;16516:248;;16602:6;16582:16;:26;;16574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16686:51;16695:5;16702:7;16730:6;16711:16;:25;16686:8;:51::i;:::-;16516:248;16442:329;16352:419;;;:::o;23538:1801::-;23686:1;23670:18;;:4;:18;;;23662:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23763:1;23749:16;;:2;:16;;;23741:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23833:1;23824:6;:10;23816:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23895:6;;;;;;;;;;;23891:163;;;23952:7;:5;:7::i;:::-;23944:15;;:4;:15;;;:40;;;;23979:4;23963:21;;:4;:21;;;23944:40;23918:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;23891:163;24072:7;;;;;;;;;;;:32;;;;;24091:13;;;;;;;;;;;24083:21;;:4;:21;;;24072:32;24068:126;;;24155:16;;24145:6;24129:13;24139:2;24129:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;24121:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24068:126;24207:17;24239:12;;;;;;;;;;;24235:802;;;24299:13;;;;;;;;;;;24291:21;;:4;:21;;;:43;;;;;24333:1;24316:13;;:18;;24291:43;24287:198;;;24360:19;:23;24380:2;24360:23;;;;;;;;;;;;;;;;;;;;;;;;;24355:115;;24447:3;24430:13;;24421:6;:22;;;;:::i;:::-;24420:30;;;;:::i;:::-;24408:42;;24355:115;24287:198;24530:13;;;;;;;;;;;24524:19;;:2;:19;;;:42;;;;;24565:1;24547:14;;:19;;24524:42;24520:200;;;24592:19;:25;24612:4;24592:25;;;;;;;;;;;;;;;;;;;;;;;;;24587:118;;24682:3;24664:14;;24655:6;:23;;;;:::i;:::-;24654:31;;;;:::i;:::-;24642:43;;24587:118;24520:200;24737:28;24768:24;24786:4;24768:9;:24::i;:::-;24737:55;;24807:24;24875:20;;24834;:61;;24807:88;;24917:19;:36;;;;;24941:12;;;;;;;;;;;24940:13;24917:36;:61;;;;;24965:13;;;;;;;;;;;24957:21;;:4;:21;;;;24917:61;24913:113;;;24999:11;:9;:11::i;:::-;24913:113;24253:784;;24235:802;25083:1;25071:9;:13;25067:265;;;25101:18;25131:9;25122:6;:18;;;;:::i;:::-;25101:39;;25155:47;25171:4;25185;25192:9;25155:15;:47::i;:::-;25217:37;25233:4;25239:2;25243:10;25217:15;:37::i;:::-;25086:180;25067:265;;;25287:33;25303:4;25309:2;25313:6;25287:15;:33::i;:::-;25067:265;23651:1688;23538:1801;;;:::o;14602:675::-;14705:1;14686:21;;:7;:21;;;14678:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14758:49;14779:7;14796:1;14800:6;14758:20;:49::i;:::-;14820:22;14845:9;:18;14855:7;14845:18;;;;;;;;;;;;;;;;14820:43;;14900:6;14882:14;:24;;14874:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15019:6;15002:14;:23;14981:9;:18;14991:7;14981:18;;;;;;;;;;;;;;;:44;;;;15136:6;15120:12;;:22;;;;;;;;;;;15197:1;15171:37;;15180:7;15171:37;;;15201:6;15171:37;;;;;;:::i;:::-;;;;;;;;15221:48;15241:7;15258:1;15262:6;15221:19;:48::i;:::-;14667:610;14602:675;;:::o;21822:191::-;21896:16;21915:6;;;;;;;;;;;21896:25;;21941:8;21932:6;;:17;;;;;;;;;;;;;;;;;;21996:8;21965:40;;21986:8;21965:40;;;;;;;;;;;;21885:128;21822:191;:::o;25348:656::-;22697:4;22682:12;;:19;;;;;;;;;;;;;;;;;;25461:21:::1;25499:1;25485:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25461:40;;25530:4;25512;25517:1;25512:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;25556:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25546:4;25551:1;25546:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;25592:125;25623:4;25651:15;;;;;;;;;;;25682:24;25700:4;25682:9;:24::i;:::-;25592:8;:125::i;:::-;25757:15;;;;;;;;;;;:66;;;25838:24;25856:4;25838:9;:24::i;:::-;25877:1;25921:4;25940:15;;;;;;;;;;;25970;25757:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25390:614;22739:5:::0;22724:12;;:20;;;;;;;;;;;;;;;;;;25348:656::o;12628:806::-;12741:1;12725:18;;:4;:18;;;12717:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12818:1;12804:16;;:2;:16;;;12796:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12873:38;12894:4;12900:2;12904:6;12873:20;:38::i;:::-;12924:19;12946:9;:15;12956:4;12946:15;;;;;;;;;;;;;;;;12924:37;;12995:6;12980:11;:21;;12972:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13112:6;13098:11;:20;13080:9;:15;13090:4;13080:15;;;;;;;;;;;;;;;:38;;;;13315:6;13298:9;:13;13308:2;13298:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13365:2;13350:26;;13359:4;13350:26;;;13369:6;13350:26;;;;;;:::i;:::-;;;;;;;;13389:37;13409:4;13415:2;13419:6;13389:19;:37::i;:::-;12706:728;12628:806;;;:::o;17371:91::-;;;;:::o;18066:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:329::-;4483:6;4532:2;4520:9;4511:7;4507:23;4503:32;4500:119;;;4538:79;;:::i;:::-;4500:119;4658:1;4683:53;4728:7;4719:6;4708:9;4704:22;4683:53;:::i;:::-;4673:63;;4629:117;4424:329;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:116::-;5806:21;5821:5;5806:21;:::i;:::-;5799:5;5796:32;5786:60;;5842:1;5839;5832:12;5786:60;5736:116;:::o;5858:133::-;5901:5;5939:6;5926:20;5917:29;;5955:30;5979:5;5955:30;:::i;:::-;5858:133;;;;:::o;5997:323::-;6053:6;6102:2;6090:9;6081:7;6077:23;6073:32;6070:119;;;6108:79;;:::i;:::-;6070:119;6228:1;6253:50;6295:7;6286:6;6275:9;6271:22;6253:50;:::i;:::-;6243:60;;6199:114;5997:323;;;;:::o;6326:86::-;6361:7;6401:4;6394:5;6390:16;6379:27;;6326:86;;;:::o;6418:112::-;6501:22;6517:5;6501:22;:::i;:::-;6496:3;6489:35;6418:112;;:::o;6536:214::-;6625:4;6663:2;6652:9;6648:18;6640:26;;6676:67;6740:1;6729:9;6725:17;6716:6;6676:67;:::i;:::-;6536:214;;;;:::o;6756:329::-;6815:6;6864:2;6852:9;6843:7;6839:23;6835:32;6832:119;;;6870:79;;:::i;:::-;6832:119;6990:1;7015:53;7060:7;7051:6;7040:9;7036:22;7015:53;:::i;:::-;7005:63;;6961:117;6756:329;;;;:::o;7091:118::-;7178:24;7196:5;7178:24;:::i;:::-;7173:3;7166:37;7091:118;;:::o;7215:222::-;7308:4;7346:2;7335:9;7331:18;7323:26;;7359:71;7427:1;7416:9;7412:17;7403:6;7359:71;:::i;:::-;7215:222;;;;:::o;7443:117::-;7552:1;7549;7542:12;7566:180;7614:77;7611:1;7604:88;7711:4;7708:1;7701:15;7735:4;7732:1;7725:15;7752:281;7835:27;7857:4;7835:27;:::i;:::-;7827:6;7823:40;7965:6;7953:10;7950:22;7929:18;7917:10;7914:34;7911:62;7908:88;;;7976:18;;:::i;:::-;7908:88;8016:10;8012:2;8005:22;7795:238;7752:281;;:::o;8039:129::-;8073:6;8100:20;;:::i;:::-;8090:30;;8129:33;8157:4;8149:6;8129:33;:::i;:::-;8039:129;;;:::o;8174:311::-;8251:4;8341:18;8333:6;8330:30;8327:56;;;8363:18;;:::i;:::-;8327:56;8413:4;8405:6;8401:17;8393:25;;8473:4;8467;8463:15;8455:23;;8174:311;;;:::o;8491:117::-;8600:1;8597;8590:12;8631:710;8727:5;8752:81;8768:64;8825:6;8768:64;:::i;:::-;8752:81;:::i;:::-;8743:90;;8853:5;8882:6;8875:5;8868:21;8916:4;8909:5;8905:16;8898:23;;8969:4;8961:6;8957:17;8949:6;8945:30;8998:3;8990:6;8987:15;8984:122;;;9017:79;;:::i;:::-;8984:122;9132:6;9115:220;9149:6;9144:3;9141:15;9115:220;;;9224:3;9253:37;9286:3;9274:10;9253:37;:::i;:::-;9248:3;9241:50;9320:4;9315:3;9311:14;9304:21;;9191:144;9175:4;9170:3;9166:14;9159:21;;9115:220;;;9119:21;8733:608;;8631:710;;;;;:::o;9364:370::-;9435:5;9484:3;9477:4;9469:6;9465:17;9461:27;9451:122;;9492:79;;:::i;:::-;9451:122;9609:6;9596:20;9634:94;9724:3;9716:6;9709:4;9701:6;9697:17;9634:94;:::i;:::-;9625:103;;9441:293;9364:370;;;;:::o;9740:311::-;9817:4;9907:18;9899:6;9896:30;9893:56;;;9929:18;;:::i;:::-;9893:56;9979:4;9971:6;9967:17;9959:25;;10039:4;10033;10029:15;10021:23;;9740:311;;;:::o;10074:710::-;10170:5;10195:81;10211:64;10268:6;10211:64;:::i;:::-;10195:81;:::i;:::-;10186:90;;10296:5;10325:6;10318:5;10311:21;10359:4;10352:5;10348:16;10341:23;;10412:4;10404:6;10400:17;10392:6;10388:30;10441:3;10433:6;10430:15;10427:122;;;10460:79;;:::i;:::-;10427:122;10575:6;10558:220;10592:6;10587:3;10584:15;10558:220;;;10667:3;10696:37;10729:3;10717:10;10696:37;:::i;:::-;10691:3;10684:50;10763:4;10758:3;10754:14;10747:21;;10634:144;10618:4;10613:3;10609:14;10602:21;;10558:220;;;10562:21;10176:608;;10074:710;;;;;:::o;10807:370::-;10878:5;10927:3;10920:4;10912:6;10908:17;10904:27;10894:122;;10935:79;;:::i;:::-;10894:122;11052:6;11039:20;11077:94;11167:3;11159:6;11152:4;11144:6;11140:17;11077:94;:::i;:::-;11068:103;;10884:293;10807:370;;;;:::o;11183:894::-;11301:6;11309;11358:2;11346:9;11337:7;11333:23;11329:32;11326:119;;;11364:79;;:::i;:::-;11326:119;11512:1;11501:9;11497:17;11484:31;11542:18;11534:6;11531:30;11528:117;;;11564:79;;:::i;:::-;11528:117;11669:78;11739:7;11730:6;11719:9;11715:22;11669:78;:::i;:::-;11659:88;;11455:302;11824:2;11813:9;11809:18;11796:32;11855:18;11847:6;11844:30;11841:117;;;11877:79;;:::i;:::-;11841:117;11982:78;12052:7;12043:6;12032:9;12028:22;11982:78;:::i;:::-;11972:88;;11767:303;11183:894;;;;;:::o;12083:474::-;12151:6;12159;12208:2;12196:9;12187:7;12183:23;12179:32;12176:119;;;12214:79;;:::i;:::-;12176:119;12334:1;12359:53;12404:7;12395:6;12384:9;12380:22;12359:53;:::i;:::-;12349:63;;12305:117;12461:2;12487:53;12532:7;12523:6;12512:9;12508:22;12487:53;:::i;:::-;12477:63;;12432:118;12083:474;;;;;:::o;12563:468::-;12628:6;12636;12685:2;12673:9;12664:7;12660:23;12656:32;12653:119;;;12691:79;;:::i;:::-;12653:119;12811:1;12836:53;12881:7;12872:6;12861:9;12857:22;12836:53;:::i;:::-;12826:63;;12782:117;12938:2;12964:50;13006:7;12997:6;12986:9;12982:22;12964:50;:::i;:::-;12954:60;;12909:115;12563:468;;;;;:::o;13037:::-;13102:6;13110;13159:2;13147:9;13138:7;13134:23;13130:32;13127:119;;;13165:79;;:::i;:::-;13127:119;13285:1;13310:50;13352:7;13343:6;13332:9;13328:22;13310:50;:::i;:::-;13300:60;;13256:114;13409:2;13435:53;13480:7;13471:6;13460:9;13456:22;13435:53;:::i;:::-;13425:63;;13380:118;13037:468;;;;;:::o;13511:474::-;13579:6;13587;13636:2;13624:9;13615:7;13611:23;13607:32;13604:119;;;13642:79;;:::i;:::-;13604:119;13762:1;13787:53;13832:7;13823:6;13812:9;13808:22;13787:53;:::i;:::-;13777:63;;13733:117;13889:2;13915:53;13960:7;13951:6;13940:9;13936:22;13915:53;:::i;:::-;13905:63;;13860:118;13511:474;;;;;:::o;13991:180::-;14039:77;14036:1;14029:88;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15;14177:320;14221:6;14258:1;14252:4;14248:12;14238:22;;14305:1;14299:4;14295:12;14326:18;14316:81;;14382:4;14374:6;14370:17;14360:27;;14316:81;14444:2;14436:6;14433:14;14413:18;14410:38;14407:84;;14463:18;;:::i;:::-;14407:84;14228:269;14177:320;;;:::o;14503:180::-;14551:77;14548:1;14541:88;14648:4;14645:1;14638:15;14672:4;14669:1;14662:15;14689:191;14729:3;14748:20;14766:1;14748:20;:::i;:::-;14743:25;;14782:20;14800:1;14782:20;:::i;:::-;14777:25;;14825:1;14822;14818:9;14811:16;;14846:3;14843:1;14840:10;14837:36;;;14853:18;;:::i;:::-;14837:36;14689:191;;;;:::o;14886:168::-;15026:20;15022:1;15014:6;15010:14;15003:44;14886:168;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:233;16082:3;16105:24;16123:5;16105:24;:::i;:::-;16096:33;;16151:66;16144:5;16141:77;16138:103;;16221:18;;:::i;:::-;16138:103;16268:1;16261:5;16257:13;16250:20;;16043:233;;;:::o;16282:224::-;16422:34;16418:1;16410:6;16406:14;16399:58;16491:7;16486:2;16478:6;16474:15;16467:32;16282:224;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:225::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:8;17513:2;17505:6;17501:15;17494:33;17309:225;:::o;17540:366::-;17682:3;17703:67;17767:2;17762:3;17703:67;:::i;:::-;17696:74;;17779:93;17868:3;17779:93;:::i;:::-;17897:2;17892:3;17888:12;17881:19;;17540:366;;;:::o;17912:419::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:131;18319:4;18193:131;:::i;:::-;18185:139;;17912:419;;;:::o;18337:182::-;18477:34;18473:1;18465:6;18461:14;18454:58;18337:182;:::o;18525:366::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:419::-;19063:4;19101:2;19090:9;19086:18;19078:26;;19150:9;19144:4;19140:20;19136:1;19125:9;19121:17;19114:47;19178:131;19304:4;19178:131;:::i;:::-;19170:139;;18897:419;;;:::o;19322:223::-;19462:34;19458:1;19450:6;19446:14;19439:58;19531:6;19526:2;19518:6;19514:15;19507:31;19322:223;:::o;19551:366::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:419::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:221::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:4;20552:2;20544:6;20540:15;20533:29;20348:221;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:179::-;21512:31;21508:1;21500:6;21496:14;21489:55;21372:179;:::o;21557:366::-;21699:3;21720:67;21784:2;21779:3;21720:67;:::i;:::-;21713:74;;21796:93;21885:3;21796:93;:::i;:::-;21914:2;21909:3;21905:12;21898:19;;21557:366;;;:::o;21929:419::-;22095:4;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;21929:419;;;:::o;22354:224::-;22494:34;22490:1;22482:6;22478:14;22471:58;22563:7;22558:2;22550:6;22546:15;22539:32;22354:224;:::o;22584:366::-;22726:3;22747:67;22811:2;22806:3;22747:67;:::i;:::-;22740:74;;22823:93;22912:3;22823:93;:::i;:::-;22941:2;22936:3;22932:12;22925:19;;22584:366;;;:::o;22956:419::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23209:9;23203:4;23199:20;23195:1;23184:9;23180:17;23173:47;23237:131;23363:4;23237:131;:::i;:::-;23229:139;;22956:419;;;:::o;23381:222::-;23521:34;23517:1;23509:6;23505:14;23498:58;23590:5;23585:2;23577:6;23573:15;23566:30;23381:222;:::o;23609:366::-;23751:3;23772:67;23836:2;23831:3;23772:67;:::i;:::-;23765:74;;23848:93;23937:3;23848:93;:::i;:::-;23966:2;23961:3;23957:12;23950:19;;23609:366;;;:::o;23981:419::-;24147:4;24185:2;24174:9;24170:18;24162:26;;24234:9;24228:4;24224:20;24220:1;24209:9;24205:17;24198:47;24262:131;24388:4;24262:131;:::i;:::-;24254:139;;23981:419;;;:::o;24406:225::-;24546:34;24542:1;24534:6;24530:14;24523:58;24615:8;24610:2;24602:6;24598:15;24591:33;24406:225;:::o;24637:366::-;24779:3;24800:67;24864:2;24859:3;24800:67;:::i;:::-;24793:74;;24876:93;24965:3;24876:93;:::i;:::-;24994:2;24989:3;24985:12;24978:19;;24637:366;;;:::o;25009:419::-;25175:4;25213:2;25202:9;25198:18;25190:26;;25262:9;25256:4;25252:20;25248:1;25237:9;25233:17;25226:47;25290:131;25416:4;25290:131;:::i;:::-;25282:139;;25009:419;;;:::o;25434:172::-;25574:24;25570:1;25562:6;25558:14;25551:48;25434:172;:::o;25612:366::-;25754:3;25775:67;25839:2;25834:3;25775:67;:::i;:::-;25768:74;;25851:93;25940:3;25851:93;:::i;:::-;25969:2;25964:3;25960:12;25953:19;;25612:366;;;:::o;25984:419::-;26150:4;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;25984:419;;;:::o;26409:156::-;26549:8;26545:1;26537:6;26533:14;26526:32;26409:156;:::o;26571:365::-;26713:3;26734:66;26798:1;26793:3;26734:66;:::i;:::-;26727:73;;26809:93;26898:3;26809:93;:::i;:::-;26927:2;26922:3;26918:12;26911:19;;26571:365;;;:::o;26942:419::-;27108:4;27146:2;27135:9;27131:18;27123:26;;27195:9;27189:4;27185:20;27181:1;27170:9;27166:17;27159:47;27223:131;27349:4;27223:131;:::i;:::-;27215:139;;26942:419;;;:::o;27367:410::-;27407:7;27430:20;27448:1;27430:20;:::i;:::-;27425:25;;27464:20;27482:1;27464:20;:::i;:::-;27459:25;;27519:1;27516;27512:9;27541:30;27559:11;27541:30;:::i;:::-;27530:41;;27720:1;27711:7;27707:15;27704:1;27701:22;27681:1;27674:9;27654:83;27631:139;;27750:18;;:::i;:::-;27631:139;27415:362;27367:410;;;;:::o;27783:180::-;27831:77;27828:1;27821:88;27928:4;27925:1;27918:15;27952:4;27949:1;27942:15;27969:185;28009:1;28026:20;28044:1;28026:20;:::i;:::-;28021:25;;28060:20;28078:1;28060:20;:::i;:::-;28055:25;;28099:1;28089:35;;28104:18;;:::i;:::-;28089:35;28146:1;28143;28139:9;28134:14;;27969:185;;;;:::o;28160:194::-;28200:4;28220:20;28238:1;28220:20;:::i;:::-;28215:25;;28254:20;28272:1;28254:20;:::i;:::-;28249:25;;28298:1;28295;28291:9;28283:17;;28322:1;28316:4;28313:11;28310:37;;;28327:18;;:::i;:::-;28310:37;28160:194;;;;:::o;28360:220::-;28500:34;28496:1;28488:6;28484:14;28477:58;28569:3;28564:2;28556:6;28552:15;28545:28;28360:220;:::o;28586:366::-;28728:3;28749:67;28813:2;28808:3;28749:67;:::i;:::-;28742:74;;28825:93;28914:3;28825:93;:::i;:::-;28943:2;28938:3;28934:12;28927:19;;28586:366;;;:::o;28958:419::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:221::-;29523:34;29519:1;29511:6;29507:14;29500:58;29592:4;29587:2;29579:6;29575:15;29568:29;29383:221;:::o;29610:366::-;29752:3;29773:67;29837:2;29832:3;29773:67;:::i;:::-;29766:74;;29849:93;29938:3;29849:93;:::i;:::-;29967:2;29962:3;29958:12;29951:19;;29610:366;;;:::o;29982:419::-;30148:4;30186:2;30175:9;30171:18;30163:26;;30235:9;30229:4;30225:20;30221:1;30210:9;30206:17;30199:47;30263:131;30389:4;30263:131;:::i;:::-;30255:139;;29982:419;;;:::o;30407:143::-;30464:5;30495:6;30489:13;30480:22;;30511:33;30538:5;30511:33;:::i;:::-;30407:143;;;;:::o;30556:351::-;30626:6;30675:2;30663:9;30654:7;30650:23;30646:32;30643:119;;;30681:79;;:::i;:::-;30643:119;30801:1;30826:64;30882:7;30873:6;30862:9;30858:22;30826:64;:::i;:::-;30816:74;;30772:128;30556:351;;;;:::o;30913:85::-;30958:7;30987:5;30976:16;;30913:85;;;:::o;31004:158::-;31062:9;31095:61;31113:42;31122:32;31148:5;31122:32;:::i;:::-;31113:42;:::i;:::-;31095:61;:::i;:::-;31082:74;;31004:158;;;:::o;31168:147::-;31263:45;31302:5;31263:45;:::i;:::-;31258:3;31251:58;31168:147;;:::o;31321:114::-;31388:6;31422:5;31416:12;31406:22;;31321:114;;;:::o;31441:184::-;31540:11;31574:6;31569:3;31562:19;31614:4;31609:3;31605:14;31590:29;;31441:184;;;;:::o;31631:132::-;31698:4;31721:3;31713:11;;31751:4;31746:3;31742:14;31734:22;;31631:132;;;:::o;31769:108::-;31846:24;31864:5;31846:24;:::i;:::-;31841:3;31834:37;31769:108;;:::o;31883:179::-;31952:10;31973:46;32015:3;32007:6;31973:46;:::i;:::-;32051:4;32046:3;32042:14;32028:28;;31883:179;;;;:::o;32068:113::-;32138:4;32170;32165:3;32161:14;32153:22;;32068:113;;;:::o;32217:732::-;32336:3;32365:54;32413:5;32365:54;:::i;:::-;32435:86;32514:6;32509:3;32435:86;:::i;:::-;32428:93;;32545:56;32595:5;32545:56;:::i;:::-;32624:7;32655:1;32640:284;32665:6;32662:1;32659:13;32640:284;;;32741:6;32735:13;32768:63;32827:3;32812:13;32768:63;:::i;:::-;32761:70;;32854:60;32907:6;32854:60;:::i;:::-;32844:70;;32700:224;32687:1;32684;32680:9;32675:14;;32640:284;;;32644:14;32940:3;32933:10;;32341:608;;;32217:732;;;;:::o;32955:831::-;33218:4;33256:3;33245:9;33241:19;33233:27;;33270:71;33338:1;33327:9;33323:17;33314:6;33270:71;:::i;:::-;33351:80;33427:2;33416:9;33412:18;33403:6;33351:80;:::i;:::-;33478:9;33472:4;33468:20;33463:2;33452:9;33448:18;33441:48;33506:108;33609:4;33600:6;33506:108;:::i;:::-;33498:116;;33624:72;33692:2;33681:9;33677:18;33668:6;33624:72;:::i;:::-;33706:73;33774:3;33763:9;33759:19;33750:6;33706:73;:::i;:::-;32955:831;;;;;;;;:::o;33792:225::-;33932:34;33928:1;33920:6;33916:14;33909:58;34001:8;33996:2;33988:6;33984:15;33977:33;33792:225;:::o;34023:366::-;34165:3;34186:67;34250:2;34245:3;34186:67;:::i;:::-;34179:74;;34262:93;34351:3;34262:93;:::i;:::-;34380:2;34375:3;34371:12;34364:19;;34023:366;;;:::o;34395:419::-;34561:4;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34395:419;;;:::o

Swarm Source

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