ETH Price: $3,010.76 (+0.25%)
Gas: 10 Gwei

Token

WadzPay Token (WTK)
 

Overview

Max Total Supply

1,000,000,000 WTK

Holders

5,552 ( 0.108%)

Total Transfers

-

Market

Price

$0.03 @ 0.000009 ETH (+2.22%)

Onchain Market Cap

$27,378,970.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

WadzPay is a blockchain-based payment platform for digital currencies that is designed to support not just cryptocurrencies but also stable coins.

Market

Volume (24H):$424,959.00
Market Capitalization:$0.00
Circulating Supply:0.00 WTK
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Bitrue
WTK-USDT$0.0272
0.0000090 Eth
$273,163.00
10,025,261.060 WTK
64.5536%
2
Uniswap V3 (Ethereum)
0X4CFF49D0A19ED6FF845A9122FA912ABCFB1F68A6-0XDAC17F958D2EE523A2206206994597C13D831EC7$0.0286
0.0000095 Eth
$69,014.00
2,373,225.447 0X4CFF49D0A19ED6FF845A9122FA912ABCFB1F68A6
15.2814%
3
Bitrue
WTK-USDC$0.0273
0.0000091 Eth
$52,024.00
1,906,912.860 WTK
12.2788%
4
BitMart
WTK-USDT$0.0295
0.0000098 Eth
$14,721.66
499,858.700 WTK
3.2186%
5
XSwap
0XB3F18B584263191A33169F6393487E43E9586329-0X951857744785E80E2DE051C32EE7B25F9C458C42$0.0279
0.0000092 Eth
$13,060.45
451,809.791 0XB3F18B584263191A33169F6393487E43E9586329
2.9092%
6
XSwap Protocol V3
0XB3F18B584263191A33169F6393487E43E9586329-0X951857744785E80E2DE051C32EE7B25F9C458C42$0.0277
0.0000092 Eth
$5,082.79
174,896.264 0XB3F18B584263191A33169F6393487E43E9586329
1.1262%
7
Uniswap V3 (Ethereum)
0X4CFF49D0A19ED6FF845A9122FA912ABCFB1F68A6-0X5DE8AB7E27F6E7A1FFF3E5B337584AA43961BEEF$0.0286
0.0000094 Eth
$2,893.31
98,163.721 0X4CFF49D0A19ED6FF845A9122FA912ABCFB1F68A6
0.6321%

Contract Source Code Verified (Exact Match)

Contract Name:
WadzPayToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-24
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 WadzPayToken is Context, IERC20, IERC20Metadata, Ownable {
    
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;


    mapping(address => bool) public blackList;
    mapping(address => uint256) private lastTxTimestamp;
    bool private antibotPaused = true;

    struct WhitelistRound {
        uint256 duration;
        uint256 amountMax;
        mapping(address => bool) addresses;
        mapping(address => uint256) purchased;
    }

    WhitelistRound[] public _tgeWhitelistRounds;

    uint256 public _tgeTimestamp;
    address public _tgePairAddress;

    uint256 private maxTxPercent = 100;
    uint256 private transferDelay = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        _name = "WadzPay Token";
        _symbol = "WTK";
        _mint(msg.sender, 250000000 * (10**uint256(decimals())));
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    function mint(address account, uint256 amount) public onlyOwner {
        _mint(account, amount * (10**uint256(decimals())));
    }

    function destroy(address account, uint256 amount) public onlyOwner {
        _burn(account, amount * (10**uint256(decimals())));
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        if (!antibotPaused) {
            if (sender != owner() && recipient != owner()) {
                require(
                    amount <= (totalSupply() * maxTxPercent) / 100,
                    "Overflow max transfer amount"
                );
            }
            require(!blackList[sender], "Blacklisted seller");
            _applyTGEWhitelist(sender, recipient, amount);
            lastTxTimestamp[recipient] = block.timestamp;
        }

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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");

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

        emit Transfer(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);
    }

    /// @notice
    /// Anti bot

    /// @notice Add bot address to blacklist
    function addBlackList(address _bot) external onlyOwner {
        blackList[_bot] = true;
        emit AddedBlackList(_bot);
    }

    /// @notice Remove the address from blacklist
    function removeBlackList(address _addr) external onlyOwner {
        blackList[_addr] = false;
        emit RemovedBlackList(_addr);
    }

    /// @notice destroy the funds of blacklist
    function destroyBlackFunds(address _blackListedUser) external onlyOwner {
        require(blackList[_blackListedUser], "This user is not a member of blacklist");
        uint dirtyFunds = balanceOf(_blackListedUser);
        _balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        emit DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);


    /*
     * createTGEWhitelist - Call this after initial Token Generation Event (TGE)
     *
     * pairAddress - address generated from createPair() event on DEX
     * durations - array of durations (seconds) for each whitelist rounds
     * amountsMax - array of max amounts (TOKEN decimals) for each whitelist round
     *
     */

    function createTGEWhitelist(address pairAddress, uint256[] calldata durations, uint256[] calldata amountsMax) external onlyOwner {
        require(durations.length == amountsMax.length, "Invalid whitelist(s)");

        _tgePairAddress = pairAddress;

        if(durations.length > 0) {

            delete _tgeWhitelistRounds;
            
            for (uint256 i = 0; i < durations.length; i++) {
                _tgeWhitelistRounds.push();
                WhitelistRound storage wlRound = _tgeWhitelistRounds[i];
                wlRound.duration = durations[i];
                wlRound.amountMax = amountsMax[i];
            }

        }
    }

    /*
     * modifyTGEWhitelistAddresses - Define what addresses are included/excluded from a whitelist round
     *
     * index - 0-based index of round to modify whitelist
     * duration - period in seconds from TGE event or previous whitelist round
     * amountMax - max amount (TOKEN decimals) for each whitelist round
     *
     */

    function modifyTGEWhitelist(uint256 index, uint256 duration, uint256 amountMax, address[] calldata addresses, bool enabled) external onlyOwner {
        require(index < _tgeWhitelistRounds.length, "Invalid index");
        require(amountMax > 0, "Invalid amountMax");

        if(duration != _tgeWhitelistRounds[index].duration)
            _tgeWhitelistRounds[index].duration = duration;

        if(amountMax != _tgeWhitelistRounds[index].amountMax)
            _tgeWhitelistRounds[index].amountMax = amountMax;

        for (uint256 i = 0; i < addresses.length; i++) {
            _tgeWhitelistRounds[index].addresses[addresses[i]] = enabled;
        }
    }

    /*
     *  getTGEWhitelistRound
     *
     *  returns:
     *
     *  1. whitelist round number ( 0 = no active round now )
     *  2. duration, in seconds, current whitelist round is active for
     *  3. timestamp current whitelist round closes at
     *  4. maximum amount a whitelister can purchase in this round
     *  5. is caller whitelisted
     *  6. how much caller has purchased in current whitelist round
     *
     */

    function getTGEWhitelistRound() public view returns (uint256, uint256, uint256, uint256, bool, uint256) {

        if(_tgeTimestamp > 0) {

            uint256 wlCloseTimestampLast = _tgeTimestamp;

            for (uint256 i = 0; i < _tgeWhitelistRounds.length; i++) {

                WhitelistRound storage wlRound = _tgeWhitelistRounds[i];

                wlCloseTimestampLast = wlCloseTimestampLast + wlRound.duration;
                if(block.timestamp <= wlCloseTimestampLast)
                    return (i+1, wlRound.duration, wlCloseTimestampLast, wlRound.amountMax, wlRound.addresses[_msgSender()], wlRound.purchased[_msgSender()]);
            }

        }

        return (0, 0, 0, 0, false, 0);
    }

    /*
     * _applyTGEWhitelist - internal function to be called initially before any transfers
     *
     */

    function _applyTGEWhitelist(address sender, address recipient, uint256 amount) internal {

        if(_tgePairAddress == address(0) || _tgeWhitelistRounds.length == 0)
            return;

        if(_tgeTimestamp == 0 && sender != _tgePairAddress && recipient == _tgePairAddress && amount > 0)
            _tgeTimestamp = block.timestamp;

        if(sender == _tgePairAddress && recipient != _tgePairAddress) {
            //buying

            (uint256 wlRoundNumber,,,,,) = getTGEWhitelistRound();

            if(wlRoundNumber > 0) {

                WhitelistRound storage wlRound = _tgeWhitelistRounds[wlRoundNumber-1];

                require(wlRound.addresses[recipient], "TGE - Buyer is not whitelisted");

                uint256 amountRemaining = 0;

                if(wlRound.purchased[recipient] < wlRound.amountMax)
                    amountRemaining = wlRound.amountMax - wlRound.purchased[recipient];

                require(amount <= amountRemaining, "TGE - Amount exceeds whitelist maximum");
                wlRound.purchased[recipient] = wlRound.purchased[recipient] + amount;

            }

        }

    }


    /// @notice Set max transaction percent
    function setMaxTxPercent(uint256 _maxTxPercent) external onlyOwner {
        maxTxPercent = _maxTxPercent;
    }

    /// @notice Set transaction time delay
    function setTransferDelay(uint256 _transferDelay) external onlyOwner {
        transferDelay = _transferDelay;
    }

    /// @notice Set antibot status
    function setAntibotPaused(bool _antibotPaused) external onlyOwner {
        antibotPaused = _antibotPaused;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","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":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tgePairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tgeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tgeWhitelistRounds","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bot","type":"address"}],"name":"addBlackList","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":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"},{"internalType":"uint256[]","name":"amountsMax","type":"uint256[]"}],"name":"createTGEWhitelist","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"destroy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTGEWhitelistRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"modifyTGEWhitelist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_antibotPaused","type":"bool"}],"name":"setAntibotPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferDelay","type":"uint256"}],"name":"setTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff191660011790556064600c556000600d553480156200002857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600d8082526c2bb0b23d2830bc902a37b5b2b760991b6020909201918252620000a091600491620001d4565b506040805180820190915260038082526257544b60e81b6020909201918252620000cd91600591620001d4565b506200010333620000dd62000109565b620000ed9060ff16600a62000322565b620000fd90630ee6b28062000417565b6200010e565b6200048c565b601290565b6001600160a01b038216620001405760405162461bcd60e51b815260040162000137906200027a565b60405180910390fd5b8060036000828254620001549190620002ba565b90915550506001600160a01b0382166000908152600160205260408120805483929062000183908490620002ba565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001c8908590620002b1565b60405180910390a35050565b828054620001e29062000439565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002d057620002d062000476565b500190565b80825b6001808611620002e9575062000319565b818704821115620002fe57620002fe62000476565b808616156200030c57918102915b9490941c938002620002d8565b94509492505050565b60006200033360001984846200033a565b9392505050565b6000826200034b5750600162000333565b816200035a5750600062000333565b81600181146200037357600281146200037e57620003b2565b600191505062000333565b60ff84111562000392576200039262000476565b6001841b915084821115620003ab57620003ab62000476565b5062000333565b5060208310610133831016604e8410600b8410161715620003ea575081810a83811115620003e457620003e462000476565b62000333565b620003f98484846001620002d5565b8086048211156200040e576200040e62000476565b02949350505050565b600081600019048311821515161562000434576200043462000476565b500290565b6002810460018216806200044e57607f821691505b602082108114156200047057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612063806200049c6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a9059cbb116100a2578063e4997dc511610071578063e4997dc5146103b8578063f2fde38b146103cb578063f3bdc228146103de578063fe72423f146103f1576101cf565b8063a9059cbb1461036c578063d543dbeb1461037f578063dd62ed3e14610392578063deb76965146103a5576101cf565b806395d89b41116100de57806395d89b41146103245780639ae407e81461032c578063a24835d114610346578063a457c2d714610359576101cf565b806370a0823114610301578063715018a6146103145780638da5cb5b1461031c576101cf565b8063325eaac1116101715780633ecea6b21161014b5780633ecea6b2146102a557806340c10f19146102ba5780634838d165146102cd578063617d7ec2146102e0576101cf565b8063325eaac11461027757806336e8c9b31461027f5780633950935114610292576101cf565b806318160ddd116101ad57806318160ddd1461022757806323b872dd1461023c5780632c0c74aa1461024f578063313ce56714610262576101cf565b806306fdde03146101d4578063095ea7b3146101f25780630ecb93c014610212575b600080fd5b6101dc610404565b6040516101e991906118e1565b60405180910390f35b6102056102003660046117e0565b610496565b6040516101e991906118d6565b6102256102203660046116db565b6104b3565b005b61022f610549565b6040516101e99190611df0565b61020561024a366004611727565b61054f565b61022561025d366004611762565b6105e8565b61026a610724565b6040516101e99190611e31565b61022f610729565b61022561028d366004611823565b61072f565b6102056102a03660046117e0565b610763565b6102ad6107b2565b6040516101e991906118a9565b6102256102c83660046117e0565b6107c1565b6102056102db3660046116db565b61081d565b6102f36102ee366004611823565b610832565b6040516101e9929190611df9565b61022f61030f3660046116db565b610860565b61022561087f565b6102ad6108f8565b6101dc610907565b610334610916565b6040516101e996959493929190611e07565b6102256103543660046117e0565b610a3b565b6102056103673660046117e0565b610a93565b61020561037a3660046117e0565b610b0e565b61022561038d366004611823565b610b22565b61022f6103a03660046116f5565b610b56565b6102256103b336600461183b565b610b81565b6102256103c63660046116db565b610d87565b6102256103d93660046116db565b610e06565b6102256103ec3660046116db565b610eb6565b6102256103ff366004611809565b610f9d565b60606004805461041390611fc1565b80601f016020809104026020016040519081016040528092919081815260200182805461043f90611fc1565b801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104aa6104a3610fdf565b8484610fe3565b50600192915050565b336104bc6108f8565b6001600160a01b0316146104eb5760405162461bcd60e51b81526004016104e290611b73565b60405180910390fd5b6001600160a01b03811660009081526006602052604090819020805460ff19166001179055517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9061053e9083906118a9565b60405180910390a150565b60035490565b600061055c848484611097565b6001600160a01b03841660009081526002602052604081208161057d610fdf565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105c05760405162461bcd60e51b81526004016104e290611b2b565b6105db856105cc610fdf565b6105d68685611faa565b610fe3565b60019150505b9392505050565b336105f16108f8565b6001600160a01b0316146106175760405162461bcd60e51b81526004016104e290611b73565b8281146106365760405162461bcd60e51b81526004016104e290611d00565b600b80546001600160a01b0319166001600160a01b038716179055821561071d5761066360096000611628565b60005b8381101561071b5760098054600101808255600082815291908390811061069d57634e487b7160e01b600052603260045260246000fd5b906000526020600020906004020190508585838181106106cd57634e487b7160e01b600052603260045260246000fd5b60200291909101358255508383838181106106f857634e487b7160e01b600052603260045260246000fd5b90506020020135816001018190555050808061071390611ffc565b915050610666565b505b5050505050565b601290565b600a5481565b336107386108f8565b6001600160a01b03161461075e5760405162461bcd60e51b81526004016104e290611b73565b600d55565b60006104aa610770610fdf565b84846002600061077e610fdf565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105d69190611e3f565b600b546001600160a01b031681565b336107ca6108f8565b6001600160a01b0316146107f05760405162461bcd60e51b81526004016104e290611b73565b610819826107fc610724565b61080a9060ff16600a611ebd565b6108149084611f8b565b6112a5565b5050565b60066020526000908152604090205460ff1681565b6009818154811061084257600080fd5b60009182526020909120600490910201805460019091015490915082565b6001600160a01b0381166000908152600160205260409020545b919050565b336108886108f8565b6001600160a01b0316146108ae5760405162461bcd60e51b81526004016104e290611b73565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461041390611fc1565b6000806000806000806000600a541115610a2057600a5460005b600954811015610a1d5760006009828154811061095d57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201905080600001548361097d9190611e3f565b9250824211610a0a57610991826001611e3f565b8154600183015485906002850160006109a8610fdf565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906109d5610fdf565b6001600160a01b03166001600160a01b0316815260200190815260200160002054985098509850985098509850505050610a33565b5080610a1581611ffc565b915050610930565b50505b5060009450849350839250829150819050805b909192939495565b33610a446108f8565b6001600160a01b031614610a6a5760405162461bcd60e51b81526004016104e290611b73565b61081982610a76610724565b610a849060ff16600a611ebd565b610a8e9084611f8b565b611359565b60008060026000610aa2610fdf565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610aee5760405162461bcd60e51b81526004016104e290611d74565b610b04610af9610fdf565b856105d68685611faa565b5060019392505050565b60006104aa610b1b610fdf565b8484611097565b33610b2b6108f8565b6001600160a01b031614610b515760405162461bcd60e51b81526004016104e290611b73565b600c55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b33610b8a6108f8565b6001600160a01b031614610bb05760405162461bcd60e51b81526004016104e290611b73565b6009548610610bd15760405162461bcd60e51b81526004016104e290611abe565b60008411610bf15760405162461bcd60e51b81526004016104e290611bdf565b60098681548110610c1257634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600001548514610c5e578460098781548110610c4c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600490910201555b60098681548110610c7f57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600101548414610ccf578360098781548110610cb957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600101819055505b60005b82811015610d7e578160098881548110610cfc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600402016002016000868685818110610d2f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d4491906116db565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d7681611ffc565b915050610cd2565b50505050505050565b33610d906108f8565b6001600160a01b031614610db65760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b03811660009081526006602052604090819020805460ff19169055517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9061053e9083906118a9565b33610e0f6108f8565b6001600160a01b031614610e355760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b038116610e5b5760405162461bcd60e51b81526004016104e290611a36565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b33610ebf6108f8565b6001600160a01b031614610ee55760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b03811660009081526006602052604090205460ff16610f1d5760405162461bcd60e51b81526004016104e290611d2e565b6000610f2882610860565b6001600160a01b0383166000908152600160205260408120819055600380549293508392909190610f5a908490611faa565b90915550506040517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c690610f9190849084906118bd565b60405180910390a15050565b33610fa66108f8565b6001600160a01b031614610fcc5760405162461bcd60e51b81526004016104e290611b73565b6008805460ff1916911515919091179055565b3390565b6001600160a01b0383166110095760405162461bcd60e51b81526004016104e290611cbc565b6001600160a01b03821661102f5760405162461bcd60e51b81526004016104e290611a7c565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108a908590611df0565b60405180910390a3505050565b6001600160a01b0383166110bd5760405162461bcd60e51b81526004016104e290611c77565b6001600160a01b0382166110e35760405162461bcd60e51b81526004016104e29061196b565b60085460ff166111d4576110f56108f8565b6001600160a01b0316836001600160a01b03161415801561112f57506111196108f8565b6001600160a01b0316826001600160a01b031614155b15611174576064600c54611141610549565b61114b9190611f8b565b6111559190611e57565b8111156111745760405162461bcd60e51b81526004016104e290611ba8565b6001600160a01b03831660009081526006602052604090205460ff16156111ad5760405162461bcd60e51b81526004016104e290611c0a565b6111b8838383611433565b6001600160a01b03821660009081526007602052604090204290555b6001600160a01b0383166000908152600160205260409020548181101561120d5760405162461bcd60e51b81526004016104e290611ae5565b6112178282611faa565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061124d908490611e3f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112979190611df0565b60405180910390a350505050565b6001600160a01b0382166112cb5760405162461bcd60e51b81526004016104e290611db9565b80600360008282546112dd9190611e3f565b90915550506001600160a01b0382166000908152600160205260408120805483929061130a908490611e3f565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061134d908590611df0565b60405180910390a35050565b6001600160a01b03821661137f5760405162461bcd60e51b81526004016104e290611c36565b6001600160a01b038216600090815260016020526040902054818110156113b85760405162461bcd60e51b81526004016104e2906119f4565b6113c28282611faa565b6001600160a01b038416600090815260016020526040812091909155600380548492906113f0908490611faa565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108a908690611df0565b600b546001600160a01b0316158061144b5750600954155b1561145557611623565b600a541580156114735750600b546001600160a01b03848116911614155b801561148c5750600b546001600160a01b038381169116145b80156114985750600081115b156114a25742600a555b600b546001600160a01b0384811691161480156114cd5750600b546001600160a01b03838116911614155b156116235760006114dc610916565b50505050509050600081111561162157600060096114fb600184611faa565b8154811061151957634e487b7160e01b600052603260045260246000fd5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166115645760405162461bcd60e51b81526004016104e290611934565b60018101546001600160a01b0385166000908152600383016020526040812054909111156115b9576001600160a01b038516600090815260038301602052604090205460018301546115b69190611faa565b90505b808411156115d95760405162461bcd60e51b81526004016104e2906119ae565b6001600160a01b03851660009081526003830160205260409020546115ff908590611e3f565b6001600160a01b03861660009081526003909301602052604090922091909155505b505b505050565b5080546000825560040290600052602060002090810190611649919061164c565b50565b5b80821115611667576000808255600182015560040161164d565b5090565b80356001600160a01b038116811461087a57600080fd5b60008083601f840112611693578182fd5b50813567ffffffffffffffff8111156116aa578182fd5b60208301915083602080830285010111156116c457600080fd5b9250929050565b8035801515811461087a57600080fd5b6000602082840312156116ec578081fd5b6105e18261166b565b60008060408385031215611707578081fd5b6117108361166b565b915061171e6020840161166b565b90509250929050565b60008060006060848603121561173b578081fd5b6117448461166b565b92506117526020850161166b565b9150604084013590509250925092565b600080600080600060608688031215611779578081fd5b6117828661166b565b9450602086013567ffffffffffffffff8082111561179e578283fd5b6117aa89838a01611682565b909650945060408801359150808211156117c2578283fd5b506117cf88828901611682565b969995985093965092949392505050565b600080604083850312156117f2578182fd5b6117fb8361166b565b946020939093013593505050565b60006020828403121561181a578081fd5b6105e1826116cb565b600060208284031215611834578081fd5b5035919050565b60008060008060008060a08789031215611853578081fd5b863595506020870135945060408701359350606087013567ffffffffffffffff81111561187e578182fd5b61188a89828a01611682565b909450925061189d9050608088016116cb565b90509295509295509295565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561190d578581018301518582016040015282016118f1565b8181111561191e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601e908201527f544745202d204275796572206973206e6f742077686974656c69737465640000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f544745202d20416d6f756e7420657863656564732077686974656c697374206d6040820152656178696d756d60d01b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600d908201526c092dcecc2d8d2c840d2dcc8caf609b1b604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4f766572666c6f77206d6178207472616e7366657220616d6f756e7400000000604082015260600190565b602080825260119082015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604082015260600190565b602080825260129082015271213630b1b5b634b9ba32b21039b2b63632b960711b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273496e76616c69642077686974656c69737428732960601b604082015260600190565b60208082526026908201527f546869732075736572206973206e6f742061206d656d626572206f6620626c6160408201526518dadb1a5cdd60d21b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b9586526020860194909452604085019290925260608401521515608083015260a082015260c00190565b60ff91909116815260200190565b60008219821115611e5257611e52612017565b500190565b600082611e7257634e487b7160e01b81526012600452602481fd5b500490565b80825b6001808611611e895750611eb4565b818704821115611e9b57611e9b612017565b80861615611ea857918102915b9490941c938002611e7a565b94509492505050565b60006105e16000198484600082611ed6575060016105e1565b81611ee3575060006105e1565b8160018114611ef95760028114611f0357611f30565b60019150506105e1565b60ff841115611f1457611f14612017565b6001841b915084821115611f2a57611f2a612017565b506105e1565b5060208310610133831016604e8410600b8410161715611f63575081810a83811115611f5e57611f5e612017565b6105e1565b611f708484846001611e77565b808604821115611f8257611f82612017565b02949350505050565b6000816000190483118215151615611fa557611fa5612017565b500290565b600082821015611fbc57611fbc612017565b500390565b600281046001821680611fd557607f821691505b60208210811415611ff657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561201057612010612017565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e2da6f3f724e6e149c0a275778c54f5fafce2fb3de76c1e5018cba8a7846abf764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a9059cbb116100a2578063e4997dc511610071578063e4997dc5146103b8578063f2fde38b146103cb578063f3bdc228146103de578063fe72423f146103f1576101cf565b8063a9059cbb1461036c578063d543dbeb1461037f578063dd62ed3e14610392578063deb76965146103a5576101cf565b806395d89b41116100de57806395d89b41146103245780639ae407e81461032c578063a24835d114610346578063a457c2d714610359576101cf565b806370a0823114610301578063715018a6146103145780638da5cb5b1461031c576101cf565b8063325eaac1116101715780633ecea6b21161014b5780633ecea6b2146102a557806340c10f19146102ba5780634838d165146102cd578063617d7ec2146102e0576101cf565b8063325eaac11461027757806336e8c9b31461027f5780633950935114610292576101cf565b806318160ddd116101ad57806318160ddd1461022757806323b872dd1461023c5780632c0c74aa1461024f578063313ce56714610262576101cf565b806306fdde03146101d4578063095ea7b3146101f25780630ecb93c014610212575b600080fd5b6101dc610404565b6040516101e991906118e1565b60405180910390f35b6102056102003660046117e0565b610496565b6040516101e991906118d6565b6102256102203660046116db565b6104b3565b005b61022f610549565b6040516101e99190611df0565b61020561024a366004611727565b61054f565b61022561025d366004611762565b6105e8565b61026a610724565b6040516101e99190611e31565b61022f610729565b61022561028d366004611823565b61072f565b6102056102a03660046117e0565b610763565b6102ad6107b2565b6040516101e991906118a9565b6102256102c83660046117e0565b6107c1565b6102056102db3660046116db565b61081d565b6102f36102ee366004611823565b610832565b6040516101e9929190611df9565b61022f61030f3660046116db565b610860565b61022561087f565b6102ad6108f8565b6101dc610907565b610334610916565b6040516101e996959493929190611e07565b6102256103543660046117e0565b610a3b565b6102056103673660046117e0565b610a93565b61020561037a3660046117e0565b610b0e565b61022561038d366004611823565b610b22565b61022f6103a03660046116f5565b610b56565b6102256103b336600461183b565b610b81565b6102256103c63660046116db565b610d87565b6102256103d93660046116db565b610e06565b6102256103ec3660046116db565b610eb6565b6102256103ff366004611809565b610f9d565b60606004805461041390611fc1565b80601f016020809104026020016040519081016040528092919081815260200182805461043f90611fc1565b801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104aa6104a3610fdf565b8484610fe3565b50600192915050565b336104bc6108f8565b6001600160a01b0316146104eb5760405162461bcd60e51b81526004016104e290611b73565b60405180910390fd5b6001600160a01b03811660009081526006602052604090819020805460ff19166001179055517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9061053e9083906118a9565b60405180910390a150565b60035490565b600061055c848484611097565b6001600160a01b03841660009081526002602052604081208161057d610fdf565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156105c05760405162461bcd60e51b81526004016104e290611b2b565b6105db856105cc610fdf565b6105d68685611faa565b610fe3565b60019150505b9392505050565b336105f16108f8565b6001600160a01b0316146106175760405162461bcd60e51b81526004016104e290611b73565b8281146106365760405162461bcd60e51b81526004016104e290611d00565b600b80546001600160a01b0319166001600160a01b038716179055821561071d5761066360096000611628565b60005b8381101561071b5760098054600101808255600082815291908390811061069d57634e487b7160e01b600052603260045260246000fd5b906000526020600020906004020190508585838181106106cd57634e487b7160e01b600052603260045260246000fd5b60200291909101358255508383838181106106f857634e487b7160e01b600052603260045260246000fd5b90506020020135816001018190555050808061071390611ffc565b915050610666565b505b5050505050565b601290565b600a5481565b336107386108f8565b6001600160a01b03161461075e5760405162461bcd60e51b81526004016104e290611b73565b600d55565b60006104aa610770610fdf565b84846002600061077e610fdf565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105d69190611e3f565b600b546001600160a01b031681565b336107ca6108f8565b6001600160a01b0316146107f05760405162461bcd60e51b81526004016104e290611b73565b610819826107fc610724565b61080a9060ff16600a611ebd565b6108149084611f8b565b6112a5565b5050565b60066020526000908152604090205460ff1681565b6009818154811061084257600080fd5b60009182526020909120600490910201805460019091015490915082565b6001600160a01b0381166000908152600160205260409020545b919050565b336108886108f8565b6001600160a01b0316146108ae5760405162461bcd60e51b81526004016104e290611b73565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461041390611fc1565b6000806000806000806000600a541115610a2057600a5460005b600954811015610a1d5760006009828154811061095d57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201905080600001548361097d9190611e3f565b9250824211610a0a57610991826001611e3f565b8154600183015485906002850160006109a8610fdf565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906109d5610fdf565b6001600160a01b03166001600160a01b0316815260200190815260200160002054985098509850985098509850505050610a33565b5080610a1581611ffc565b915050610930565b50505b5060009450849350839250829150819050805b909192939495565b33610a446108f8565b6001600160a01b031614610a6a5760405162461bcd60e51b81526004016104e290611b73565b61081982610a76610724565b610a849060ff16600a611ebd565b610a8e9084611f8b565b611359565b60008060026000610aa2610fdf565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610aee5760405162461bcd60e51b81526004016104e290611d74565b610b04610af9610fdf565b856105d68685611faa565b5060019392505050565b60006104aa610b1b610fdf565b8484611097565b33610b2b6108f8565b6001600160a01b031614610b515760405162461bcd60e51b81526004016104e290611b73565b600c55565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b33610b8a6108f8565b6001600160a01b031614610bb05760405162461bcd60e51b81526004016104e290611b73565b6009548610610bd15760405162461bcd60e51b81526004016104e290611abe565b60008411610bf15760405162461bcd60e51b81526004016104e290611bdf565b60098681548110610c1257634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600001548514610c5e578460098781548110610c4c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600490910201555b60098681548110610c7f57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600101548414610ccf578360098781548110610cb957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060040201600101819055505b60005b82811015610d7e578160098881548110610cfc57634e487b7160e01b600052603260045260246000fd5b90600052602060002090600402016002016000868685818110610d2f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d4491906116db565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d7681611ffc565b915050610cd2565b50505050505050565b33610d906108f8565b6001600160a01b031614610db65760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b03811660009081526006602052604090819020805460ff19169055517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9061053e9083906118a9565b33610e0f6108f8565b6001600160a01b031614610e355760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b038116610e5b5760405162461bcd60e51b81526004016104e290611a36565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b33610ebf6108f8565b6001600160a01b031614610ee55760405162461bcd60e51b81526004016104e290611b73565b6001600160a01b03811660009081526006602052604090205460ff16610f1d5760405162461bcd60e51b81526004016104e290611d2e565b6000610f2882610860565b6001600160a01b0383166000908152600160205260408120819055600380549293508392909190610f5a908490611faa565b90915550506040517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c690610f9190849084906118bd565b60405180910390a15050565b33610fa66108f8565b6001600160a01b031614610fcc5760405162461bcd60e51b81526004016104e290611b73565b6008805460ff1916911515919091179055565b3390565b6001600160a01b0383166110095760405162461bcd60e51b81526004016104e290611cbc565b6001600160a01b03821661102f5760405162461bcd60e51b81526004016104e290611a7c565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108a908590611df0565b60405180910390a3505050565b6001600160a01b0383166110bd5760405162461bcd60e51b81526004016104e290611c77565b6001600160a01b0382166110e35760405162461bcd60e51b81526004016104e29061196b565b60085460ff166111d4576110f56108f8565b6001600160a01b0316836001600160a01b03161415801561112f57506111196108f8565b6001600160a01b0316826001600160a01b031614155b15611174576064600c54611141610549565b61114b9190611f8b565b6111559190611e57565b8111156111745760405162461bcd60e51b81526004016104e290611ba8565b6001600160a01b03831660009081526006602052604090205460ff16156111ad5760405162461bcd60e51b81526004016104e290611c0a565b6111b8838383611433565b6001600160a01b03821660009081526007602052604090204290555b6001600160a01b0383166000908152600160205260409020548181101561120d5760405162461bcd60e51b81526004016104e290611ae5565b6112178282611faa565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061124d908490611e3f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112979190611df0565b60405180910390a350505050565b6001600160a01b0382166112cb5760405162461bcd60e51b81526004016104e290611db9565b80600360008282546112dd9190611e3f565b90915550506001600160a01b0382166000908152600160205260408120805483929061130a908490611e3f565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061134d908590611df0565b60405180910390a35050565b6001600160a01b03821661137f5760405162461bcd60e51b81526004016104e290611c36565b6001600160a01b038216600090815260016020526040902054818110156113b85760405162461bcd60e51b81526004016104e2906119f4565b6113c28282611faa565b6001600160a01b038416600090815260016020526040812091909155600380548492906113f0908490611faa565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108a908690611df0565b600b546001600160a01b0316158061144b5750600954155b1561145557611623565b600a541580156114735750600b546001600160a01b03848116911614155b801561148c5750600b546001600160a01b038381169116145b80156114985750600081115b156114a25742600a555b600b546001600160a01b0384811691161480156114cd5750600b546001600160a01b03838116911614155b156116235760006114dc610916565b50505050509050600081111561162157600060096114fb600184611faa565b8154811061151957634e487b7160e01b600052603260045260246000fd5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166115645760405162461bcd60e51b81526004016104e290611934565b60018101546001600160a01b0385166000908152600383016020526040812054909111156115b9576001600160a01b038516600090815260038301602052604090205460018301546115b69190611faa565b90505b808411156115d95760405162461bcd60e51b81526004016104e2906119ae565b6001600160a01b03851660009081526003830160205260409020546115ff908590611e3f565b6001600160a01b03861660009081526003909301602052604090922091909155505b505b505050565b5080546000825560040290600052602060002090810190611649919061164c565b50565b5b80821115611667576000808255600182015560040161164d565b5090565b80356001600160a01b038116811461087a57600080fd5b60008083601f840112611693578182fd5b50813567ffffffffffffffff8111156116aa578182fd5b60208301915083602080830285010111156116c457600080fd5b9250929050565b8035801515811461087a57600080fd5b6000602082840312156116ec578081fd5b6105e18261166b565b60008060408385031215611707578081fd5b6117108361166b565b915061171e6020840161166b565b90509250929050565b60008060006060848603121561173b578081fd5b6117448461166b565b92506117526020850161166b565b9150604084013590509250925092565b600080600080600060608688031215611779578081fd5b6117828661166b565b9450602086013567ffffffffffffffff8082111561179e578283fd5b6117aa89838a01611682565b909650945060408801359150808211156117c2578283fd5b506117cf88828901611682565b969995985093965092949392505050565b600080604083850312156117f2578182fd5b6117fb8361166b565b946020939093013593505050565b60006020828403121561181a578081fd5b6105e1826116cb565b600060208284031215611834578081fd5b5035919050565b60008060008060008060a08789031215611853578081fd5b863595506020870135945060408701359350606087013567ffffffffffffffff81111561187e578182fd5b61188a89828a01611682565b909450925061189d9050608088016116cb565b90509295509295509295565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561190d578581018301518582016040015282016118f1565b8181111561191e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601e908201527f544745202d204275796572206973206e6f742077686974656c69737465640000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f544745202d20416d6f756e7420657863656564732077686974656c697374206d6040820152656178696d756d60d01b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600d908201526c092dcecc2d8d2c840d2dcc8caf609b1b604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4f766572666c6f77206d6178207472616e7366657220616d6f756e7400000000604082015260600190565b602080825260119082015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604082015260600190565b602080825260129082015271213630b1b5b634b9ba32b21039b2b63632b960711b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273496e76616c69642077686974656c69737428732960601b604082015260600190565b60208082526026908201527f546869732075736572206973206e6f742061206d656d626572206f6620626c6160408201526518dadb1a5cdd60d21b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b9586526020860194909452604085019290925260608401521515608083015260a082015260c00190565b60ff91909116815260200190565b60008219821115611e5257611e52612017565b500190565b600082611e7257634e487b7160e01b81526012600452602481fd5b500490565b80825b6001808611611e895750611eb4565b818704821115611e9b57611e9b612017565b80861615611ea857918102915b9490941c938002611e7a565b94509492505050565b60006105e16000198484600082611ed6575060016105e1565b81611ee3575060006105e1565b8160018114611ef95760028114611f0357611f30565b60019150506105e1565b60ff841115611f1457611f14612017565b6001841b915084821115611f2a57611f2a612017565b506105e1565b5060208310610133831016604e8410600b8410161715611f63575081810a83811115611f5e57611f5e612017565b6105e1565b611f708484846001611e77565b808604821115611f8257611f82612017565b02949350505050565b6000816000190483118215151615611fa557611fa5612017565b500290565b600082821015611fbc57611fbc612017565b500390565b600281046001821680611fd557607f821691505b60208210811415611ff657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561201057612010612017565b5060010190565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e2da6f3f724e6e149c0a275778c54f5fafce2fb3de76c1e5018cba8a7846abf764736f6c63430008000033

Deployed Bytecode Sourcemap

7768:16578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9143:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11451:210;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18382:132::-;;;;;;:::i;:::-;;:::i;:::-;;10263:108;;;:::i;:::-;;;;;;;:::i;12143:493::-;;;;;;:::i;:::-;;:::i;19661:666::-;;;;;;:::i;:::-;;:::i;10105:93::-;;;:::i;:::-;;;;;;;:::i;8456:28::-;;;:::i;24066:118::-;;;;;;:::i;:::-;;:::i;13045:297::-;;;;;;:::i;:::-;;:::i;8491:30::-;;;:::i;:::-;;;;;;;:::i;14299:133::-;;;;;;:::i;:::-;;:::i;8070:41::-;;;;;;:::i;:::-;;:::i;8404:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;10434:177::-;;;;;;:::i;:::-;;:::i;5988:148::-;;;:::i;5339:87::-;;;:::i;9362:104::-;;;:::i;21822:732::-;;;:::i;:::-;;;;;;;;;;;;:::i;14440:136::-;;;;;;:::i;:::-;;:::i;13845:446::-;;;;;;:::i;:::-;;:::i;10824:216::-;;;;;;:::i;:::-;;:::i;23900:114::-;;;;;;:::i;:::-;;:::i;11103:201::-;;;;;;:::i;:::-;;:::i;20687:674::-;;;;;;:::i;:::-;;:::i;18573:141::-;;;;;;:::i;:::-;;:::i;6291:281::-;;;;;;:::i;:::-;;:::i;18770:369::-;;;;;;:::i;:::-;;:::i;24228:115::-;;;;;;:::i;:::-;;:::i;9143:100::-;9197:13;9230:5;9223:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9143:100;:::o;11451:210::-;11570:4;11592:39;11601:12;:10;:12::i;:::-;11615:7;11624:6;11592:8;:39::i;:::-;-1:-1:-1;11649:4:0;11451:210;;;;:::o;18382:132::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;18448:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;;:22;;-1:-1:-1;;18448:22:0::1;18466:4;18448:22;::::0;;18486:20;::::1;::::0;::::1;::::0;18458:4;;18486:20:::1;:::i;:::-;;;;;;;;18382:132:::0;:::o;10263:108::-;10351:12;;10263:108;:::o;12143:493::-;12283:4;12300:36;12310:6;12318:9;12329:6;12300:9;:36::i;:::-;-1:-1:-1;;;;;12376:19:0;;12349:24;12376:19;;;:11;:19;;;;;12349:24;12396:12;:10;:12::i;:::-;-1:-1:-1;;;;;12376:33:0;-1:-1:-1;;;;;12376:33:0;;;;;;;;;;;;;12349:60;;12462:6;12442:16;:26;;12420:116;;;;-1:-1:-1;;;12420:116:0;;;;;;;:::i;:::-;12547:57;12556:6;12564:12;:10;:12::i;:::-;12578:25;12597:6;12578:16;:25;:::i;:::-;12547:8;:57::i;:::-;12624:4;12617:11;;;12143:493;;;;;;:::o;19661:666::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;19809:37;;::::1;19801:70;;;;-1:-1:-1::0;;;19801:70:0::1;;;;;;;:::i;:::-;19884:15;:29:::0;;-1:-1:-1;;;;;;19884:29:0::1;-1:-1:-1::0;;;;;19884:29:0;::::1;;::::0;;19929:20;;19926:394:::1;;19968:26;19975:19;;19968:26;:::i;:::-;20028:9;20023:284;20043:20:::0;;::::1;20023:284;;;20089:19;:26:::0;;::::1;;::::0;;;-1:-1:-1;20089:26:0;;;-1:-1:-1;20089:19:0;20187:1;;20167:22;::::1;;;-1:-1:-1::0;;;20167:22:0::1;;;;;;;;;;;;;;;;;;;20134:55;;20227:9;;20237:1;20227:12;;;;;-1:-1:-1::0;;;20227:12:0::1;;;;;;;;;;;::::0;;;::::1;;20208:31:::0;;-1:-1:-1;20278:10:0;;20289:1;20278:13;;::::1;;;-1:-1:-1::0;;;20278:13:0::1;;;;;;;;;;;;;;;20258:7;:17;;:33;;;;20023:284;20065:3;;;;;:::i;:::-;;;;20023:284;;;;19926:394;19661:666:::0;;;;;:::o;10105:93::-;10188:2;10105:93;:::o;8456:28::-;;;;:::o;24066:118::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;24146:13:::1;:30:::0;24066:118::o;13045:297::-;13160:4;13182:130;13205:12;:10;:12::i;:::-;13232:7;13291:10;13254:11;:25;13266:12;:10;:12::i;:::-;-1:-1:-1;;;;;13254:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13254:25:0;;;:34;;;;;;;;;;:47;;;;:::i;8491:30::-;;;-1:-1:-1;;;;;8491:30:0;;:::o;14299:133::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;14374:50:::1;14380:7;14411:10;:8;:10::i;:::-;14399:23;::::0;14403:19:::1;;14399:2;:23;:::i;:::-;14389:34;::::0;:6;:34:::1;:::i;:::-;14374:5;:50::i;:::-;14299:133:::0;;:::o;8070:41::-;;;;;;;;;;;;;;;:::o;8404:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8404:43:0;:::o;10434:177::-;-1:-1:-1;;;;;10585:18:0;;10553:7;10585:18;;;:9;:18;;;;;;10434:177;;;;:::o;5988:148::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;6095:1:::1;6079:6:::0;;6058:40:::1;::::0;-1:-1:-1;;;;;6079:6:0;;::::1;::::0;6058:40:::1;::::0;6095:1;;6058:40:::1;6126:1;6109:19:::0;;-1:-1:-1;;;;;;6109:19:0::1;::::0;;5988:148::o;5339:87::-;5385:7;5412:6;-1:-1:-1;;;;;5412:6:0;5339:87;:::o;9362:104::-;9418:13;9451:7;9444:14;;;;;:::i;21822:732::-;21875:7;21884;21893;21902;21911:4;21917:7;21958:1;21942:13;;:17;21939:566;;;22009:13;;21978:28;22039:453;22063:19;:26;22059:30;;22039:453;;;22117:30;22150:19;22170:1;22150:22;;;;;;-1:-1:-1;;;22150:22:0;;;;;;;;;;;;;;;;;;;22117:55;;22239:7;:16;;;22216:20;:39;;;;:::i;:::-;22193:62;;22296:20;22277:15;:39;22274:202;;22347:3;:1;22349;22347:3;:::i;:::-;22352:16;;22392:17;;;;22370:20;;22411:17;;;22352:16;22429:12;:10;:12::i;:::-;-1:-1:-1;;;;;22411:31:0;;;;;;;;;;;;-1:-1:-1;22411:31:0;;;;;;;22444:17;;;;22462:12;:10;:12::i;:::-;-1:-1:-1;;;;;22444:31:0;-1:-1:-1;;;;;22444:31:0;;;;;;;;;;;;;22339:137;;;;;;;;;;;;;;;;;22274:202;-1:-1:-1;22091:3:0;;;;:::i;:::-;;;;22039:453;;;;21939:566;;-1:-1:-1;22525:1:0;;-1:-1:-1;22525:1:0;;-1:-1:-1;22525:1:0;;-1:-1:-1;22525:1:0;;-1:-1:-1;22525:1:0;;-1:-1:-1;22525:1:0;21822:732;;;;;;;:::o;14440:136::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;14518:50:::1;14524:7;14555:10;:8;:10::i;:::-;14543:23;::::0;14547:19:::1;;14543:2;:23;:::i;:::-;14533:34;::::0;:6;:34:::1;:::i;:::-;14518:5;:50::i;13845:446::-:0;13965:4;13987:24;14014:11;:25;14026:12;:10;:12::i;:::-;-1:-1:-1;;;;;14014:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14014:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14081:35:0;;;;14059:122;;;;-1:-1:-1;;;14059:122:0;;;;;;;:::i;:::-;14192:67;14201:12;:10;:12::i;:::-;14215:7;14224:34;14243:15;14224:16;:34;:::i;14192:67::-;-1:-1:-1;14279:4:0;;13845:446;-1:-1:-1;;;13845:446:0:o;10824:216::-;10946:4;10968:42;10978:12;:10;:12::i;:::-;10992:9;11003:6;10968:9;:42::i;23900:114::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;23978:12:::1;:28:::0;23900:114::o;11103:201::-;-1:-1:-1;;;;;11269:18:0;;;11237:7;11269:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11103:201::o;20687:674::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;20857:19:::1;:26:::0;20849:34;::::1;20841:60;;;;-1:-1:-1::0;;;20841:60:0::1;;;;;;;:::i;:::-;20932:1;20920:9;:13;20912:43;;;;-1:-1:-1::0;;;20912:43:0::1;;;;;;;:::i;:::-;20983:19;21003:5;20983:26;;;;;;-1:-1:-1::0;;;20983:26:0::1;;;;;;;;;;;;;;;;;;;:35;;;20971:8;:47;20968:111;;21071:8;21033:19;21053:5;21033:26;;;;;;-1:-1:-1::0;;;21033:26:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:46:::0;20968:111:::1;21108:19;21128:5;21108:26;;;;;;-1:-1:-1::0;;;21108:26:0::1;;;;;;;;;;;;;;;;;;;:36;;;21095:9;:49;21092:115;;21198:9;21159:19;21179:5;21159:26;;;;;;-1:-1:-1::0;;;21159:26:0::1;;;;;;;;;;;;;;;;;;;:36;;:48;;;;21092:115;21225:9;21220:134;21240:20:::0;;::::1;21220:134;;;21335:7;21282:19;21302:5;21282:26;;;;;;-1:-1:-1::0;;;21282:26:0::1;;;;;;;;;;;;;;;;;;;:36;;:50;21319:9;;21329:1;21319:12;;;;;-1:-1:-1::0;;;21319:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21282:50:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;21282:50:0;:60;;-1:-1:-1;;21282:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21262:3;::::1;::::0;::::1;:::i;:::-;;;;21220:134;;;;20687:674:::0;;;;;;:::o;18573:141::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18643:16:0;::::1;18662:5;18643:16:::0;;;:9:::1;:16;::::0;;;;;;:24;;-1:-1:-1;;18643:24:0::1;::::0;;18683:23;::::1;::::0;::::1;::::0;18653:5;;18683:23:::1;:::i;6291:281::-:0;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6394:22:0;::::1;6372:110;;;;-1:-1:-1::0;;;6372:110:0::1;;;;;;;:::i;:::-;6519:6;::::0;;6498:38:::1;::::0;-1:-1:-1;;;;;6498:38:0;;::::1;::::0;6519:6;::::1;::::0;6498:38:::1;::::0;::::1;6547:6;:17:::0;;-1:-1:-1;;;;;;6547:17:0::1;-1:-1:-1::0;;;;;6547:17:0;;;::::1;::::0;;;::::1;::::0;;6291:281::o;18770:369::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18861:27:0;::::1;;::::0;;;:9:::1;:27;::::0;;;;;::::1;;18853:78;;;;-1:-1:-1::0;;;18853:78:0::1;;;;;;;:::i;:::-;18942:15;18960:27;18970:16;18960:9;:27::i;:::-;-1:-1:-1::0;;;;;18998:27:0;::::1;19028:1;18998:27:::0;;;:9:::1;:27;::::0;;;;:31;;;19040:12:::1;:26:::0;;18942:45;;-1:-1:-1;18942:45:0;;19040:12;;19028:1;19040:26:::1;::::0;18942:45;;19040:26:::1;:::i;:::-;::::0;;;-1:-1:-1;;19082:49:0::1;::::0;::::1;::::0;::::1;::::0;19102:16;;19120:10;;19082:49:::1;:::i;:::-;;;;;;;;5628:1;18770:369:::0;:::o;24228:115::-;5570:10;5559:7;:5;:7::i;:::-;-1:-1:-1;;;;;5559:21:0;;5551:66;;;;-1:-1:-1;;;5551:66:0;;;;;;;:::i;:::-;24305:13:::1;:30:::0;;-1:-1:-1;;24305:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24228:115::o;3972:98::-;4052:10;3972:98;:::o;17911:380::-;-1:-1:-1;;;;;18047:19:0;;18039:68;;;;-1:-1:-1;;;18039:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18126:21:0;;18118:68;;;;-1:-1:-1;;;18118:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18199:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18251:32;;;;;18229:6;;18251:32;:::i;:::-;;;;;;;;17911:380;;;:::o;15066:1084::-;-1:-1:-1;;;;;15206:20:0;;15198:70;;;;-1:-1:-1;;;15198:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15287:23:0;;15279:71;;;;-1:-1:-1;;;15279:71:0;;;;;;;:::i;:::-;15366:13;;;;15361:459;;15410:7;:5;:7::i;:::-;-1:-1:-1;;;;;15400:17:0;:6;-1:-1:-1;;;;;15400:17:0;;;:41;;;;;15434:7;:5;:7::i;:::-;-1:-1:-1;;;;;15421:20:0;:9;-1:-1:-1;;;;;15421:20:0;;;15400:41;15396:230;;;15535:3;15519:12;;15503:13;:11;:13::i;:::-;:28;;;;:::i;:::-;15502:36;;;;:::i;:::-;15492:6;:46;;15462:148;;;;-1:-1:-1;;;15462:148:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15649:17:0;;;;;;:9;:17;;;;;;;;15648:18;15640:49;;;;-1:-1:-1;;;15640:49:0;;;;;;;:::i;:::-;15704:45;15723:6;15731:9;15742:6;15704:18;:45::i;:::-;-1:-1:-1;;;;;15764:26:0;;;;;;:15;:26;;;;;15793:15;15764:44;;15361:459;-1:-1:-1;;;;;15856:17:0;;15832:21;15856:17;;;:9;:17;;;;;;15906:23;;;;15884:111;;;;-1:-1:-1;;;15884:111:0;;;;;;;:::i;:::-;16026:22;16042:6;16026:13;:22;:::i;:::-;-1:-1:-1;;;;;16006:17:0;;;;;;;:9;:17;;;;;;:42;;;;16059:20;;;;;;;;:30;;16083:6;;16006:17;16059:30;;16083:6;;16059:30;:::i;:::-;;;;;;;;16124:9;-1:-1:-1;;;;;16107:35:0;16116:6;-1:-1:-1;;;;;16107:35:0;;16135:6;16107:35;;;;;;:::i;:::-;;;;;;;;15066:1084;;;;:::o;16432:276::-;-1:-1:-1;;;;;16516:21:0;;16508:65;;;;-1:-1:-1;;;16508:65:0;;;;;;;:::i;:::-;16602:6;16586:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16619:18:0;;;;;;:9;:18;;;;;:28;;16641:6;;16619:18;:28;;16641:6;;16619:28;:::i;:::-;;;;-1:-1:-1;;16663:37:0;;-1:-1:-1;;;;;16663:37:0;;;16680:1;;16663:37;;;;16693:6;;16663:37;:::i;:::-;;;;;;;;16432:276;;:::o;17041:432::-;-1:-1:-1;;;;;17125:21:0;;17117:67;;;;-1:-1:-1;;;17117:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17222:18:0;;17197:22;17222:18;;;:9;:18;;;;;;17259:24;;;;17251:71;;;;-1:-1:-1;;;17251:71:0;;;;;;;:::i;:::-;17354:23;17371:6;17354:14;:23;:::i;:::-;-1:-1:-1;;;;;17333:18:0;;;;;;:9;:18;;;;;:44;;;;17388:12;:22;;17404:6;;17333:18;17388:22;;17404:6;;17388:22;:::i;:::-;;;;-1:-1:-1;;17428:37:0;;17454:1;;-1:-1:-1;;;;;17428:37:0;;;;;;;17458:6;;17428:37;:::i;22680:1165::-;22784:15;;-1:-1:-1;;;;;22784:15:0;:29;;:64;;-1:-1:-1;22817:19:0;:26;:31;22784:64;22781:89;;;22863:7;;22781:89;22885:13;;:18;:47;;;;-1:-1:-1;22917:15:0;;-1:-1:-1;;;;;22907:25:0;;;22917:15;;22907:25;;22885:47;:79;;;;-1:-1:-1;22949:15:0;;-1:-1:-1;;;;;22936:28:0;;;22949:15;;22936:28;22885:79;:93;;;;;22977:1;22968:6;:10;22885:93;22882:142;;;23009:15;22993:13;:31;22882:142;23050:15;;-1:-1:-1;;;;;23040:25:0;;;23050:15;;23040:25;:57;;;;-1:-1:-1;23082:15:0;;-1:-1:-1;;;;;23069:28:0;;;23082:15;;23069:28;;23040:57;23037:799;;;23139:21;23169:22;:20;:22::i;:::-;23138:53;;;;;;;23227:1;23211:13;:17;23208:615;;;23251:30;23284:19;23304:15;23318:1;23304:13;:15;:::i;:::-;23284:36;;;;;;-1:-1:-1;;;23284:36:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23349:28:0;;;;:17;23284:36;;;;;23349:17;;;:28;;;;;;;23284:36;;-1:-1:-1;23349:28:0;;23341:71;;;;-1:-1:-1;;;23341:71:0;;;;;;;:::i;:::-;23515:17;;;;-1:-1:-1;;;;;23484:28:0;;23433:23;23484:28;;;:17;;;:28;;;;;;23433:23;;-1:-1:-1;23481:140:0;;;-1:-1:-1;;;;;23593:28:0;;;;;;:17;;;:28;;;;;;23573:17;;;;:48;;23593:28;23573:48;:::i;:::-;23555:66;;23481:140;23660:15;23650:6;:25;;23642:76;;;;-1:-1:-1;;;23642:76:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23768:28:0;;;;;;:17;;;:28;;;;;;:37;;23799:6;;23768:37;:::i;:::-;-1:-1:-1;;;;;23737:28:0;;;;;;:17;;;;:28;;;;;;:68;;;;-1:-1:-1;23208:615:0;23037:799;;22680:1165;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:404;;;327:3;320:4;312:6;308:17;304:27;294:2;;352:8;342;335:26;294:2;-1:-1:-1;382:20:1;;425:18;414:30;;411:2;;;464:8;454;447:26;411:2;508:4;500:6;496:17;484:29;;571:3;564:4;556;548:6;544:17;536:6;532:30;528:41;525:50;522:2;;;588:1;585;578:12;522:2;284:314;;;;;:::o;603:162::-;670:20;;726:13;;719:21;709:32;;699:2;;755:1;752;745:12;770:198;;882:2;870:9;861:7;857:23;853:32;850:2;;;903:6;895;888:22;850:2;931:31;952:9;931:31;:::i;973:274::-;;;1102:2;1090:9;1081:7;1077:23;1073:32;1070:2;;;1123:6;1115;1108:22;1070:2;1151:31;1172:9;1151:31;:::i;:::-;1141:41;;1201:40;1237:2;1226:9;1222:18;1201:40;:::i;:::-;1191:50;;1060:187;;;;;:::o;1252:342::-;;;;1398:2;1386:9;1377:7;1373:23;1369:32;1366:2;;;1419:6;1411;1404:22;1366:2;1447:31;1468:9;1447:31;:::i;:::-;1437:41;;1497:40;1533:2;1522:9;1518:18;1497:40;:::i;:::-;1487:50;;1584:2;1573:9;1569:18;1556:32;1546:42;;1356:238;;;;;:::o;1599:891::-;;;;;;1815:2;1803:9;1794:7;1790:23;1786:32;1783:2;;;1836:6;1828;1821:22;1783:2;1864:31;1885:9;1864:31;:::i;:::-;1854:41;;1946:2;1935:9;1931:18;1918:32;1969:18;2010:2;2002:6;1999:14;1996:2;;;2031:6;2023;2016:22;1996:2;2075:76;2143:7;2134:6;2123:9;2119:22;2075:76;:::i;:::-;2170:8;;-1:-1:-1;2049:102:1;-1:-1:-1;2258:2:1;2243:18;;2230:32;;-1:-1:-1;2274:16:1;;;2271:2;;;2308:6;2300;2293:22;2271:2;;2352:78;2422:7;2411:8;2400:9;2396:24;2352:78;:::i;:::-;1773:717;;;;-1:-1:-1;1773:717:1;;-1:-1:-1;2449:8:1;;2326:104;1773:717;-1:-1:-1;;;1773:717:1:o;2495:266::-;;;2624:2;2612:9;2603:7;2599:23;2595:32;2592:2;;;2645:6;2637;2630:22;2592:2;2673:31;2694:9;2673:31;:::i;:::-;2663:41;2751:2;2736:18;;;;2723:32;;-1:-1:-1;;;2582:179:1:o;2766:192::-;;2875:2;2863:9;2854:7;2850:23;2846:32;2843:2;;;2896:6;2888;2881:22;2843:2;2924:28;2942:9;2924:28;:::i;2963:190::-;;3075:2;3063:9;3054:7;3050:23;3046:32;3043:2;;;3096:6;3088;3081:22;3043:2;-1:-1:-1;3124:23:1;;3033:120;-1:-1:-1;3033:120:1:o;3158:739::-;;;;;;;3370:3;3358:9;3349:7;3345:23;3341:33;3338:2;;;3392:6;3384;3377:22;3338:2;3433:9;3420:23;3410:33;;3490:2;3479:9;3475:18;3462:32;3452:42;;3541:2;3530:9;3526:18;3513:32;3503:42;;3596:2;3585:9;3581:18;3568:32;3623:18;3615:6;3612:30;3609:2;;;3660:6;3652;3645:22;3609:2;3704:76;3772:7;3763:6;3752:9;3748:22;3704:76;:::i;:::-;3799:8;;-1:-1:-1;3678:102:1;-1:-1:-1;3853:38:1;;-1:-1:-1;3886:3:1;3871:19;;3853:38;:::i;:::-;3843:48;;3328:569;;;;;;;;:::o;3902:203::-;-1:-1:-1;;;;;4066:32:1;;;;4048:51;;4036:2;4021:18;;4003:102::o;4110:274::-;-1:-1:-1;;;;;4302:32:1;;;;4284:51;;4366:2;4351:18;;4344:34;4272:2;4257:18;;4239:145::o;4389:187::-;4554:14;;4547:22;4529:41;;4517:2;4502:18;;4484:92::o;4581:603::-;;4722:2;4751;4740:9;4733:21;4783:6;4777:13;4826:6;4821:2;4810:9;4806:18;4799:34;4851:4;4864:140;4878:6;4875:1;4872:13;4864:140;;;4973:14;;;4969:23;;4963:30;4939:17;;;4958:2;4935:26;4928:66;4893:10;;4864:140;;;5022:6;5019:1;5016:13;5013:2;;;5092:4;5087:2;5078:6;5067:9;5063:22;5059:31;5052:45;5013:2;-1:-1:-1;5168:2:1;5147:15;-1:-1:-1;;5143:29:1;5128:45;;;;5175:2;5124:54;;4702:482;-1:-1:-1;;;4702:482:1:o;5189:354::-;5391:2;5373:21;;;5430:2;5410:18;;;5403:30;5469:32;5464:2;5449:18;;5442:60;5534:2;5519:18;;5363:180::o;5548:399::-;5750:2;5732:21;;;5789:2;5769:18;;;5762:30;5828:34;5823:2;5808:18;;5801:62;-1:-1:-1;;;5894:2:1;5879:18;;5872:33;5937:3;5922:19;;5722:225::o;5952:402::-;6154:2;6136:21;;;6193:2;6173:18;;;6166:30;6232:34;6227:2;6212:18;;6205:62;-1:-1:-1;;;6298:2:1;6283:18;;6276:36;6344:3;6329:19;;6126:228::o;6359:398::-;6561:2;6543:21;;;6600:2;6580:18;;;6573:30;6639:34;6634:2;6619:18;;6612:62;-1:-1:-1;;;6705:2:1;6690:18;;6683:32;6747:3;6732:19;;6533:224::o;6762:402::-;6964:2;6946:21;;;7003:2;6983:18;;;6976:30;7042:34;7037:2;7022:18;;7015:62;-1:-1:-1;;;7108:2:1;7093:18;;7086:36;7154:3;7139:19;;6936:228::o;7169:398::-;7371:2;7353:21;;;7410:2;7390:18;;;7383:30;7449:34;7444:2;7429:18;;7422:62;-1:-1:-1;;;7515:2:1;7500:18;;7493:32;7557:3;7542:19;;7343:224::o;7572:337::-;7774:2;7756:21;;;7813:2;7793:18;;;7786:30;-1:-1:-1;;;7847:2:1;7832:18;;7825:43;7900:2;7885:18;;7746:163::o;7914:402::-;8116:2;8098:21;;;8155:2;8135:18;;;8128:30;8194:34;8189:2;8174:18;;8167:62;-1:-1:-1;;;8260:2:1;8245:18;;8238:36;8306:3;8291:19;;8088:228::o;8321:404::-;8523:2;8505:21;;;8562:2;8542:18;;;8535:30;8601:34;8596:2;8581:18;;8574:62;-1:-1:-1;;;8667:2:1;8652:18;;8645:38;8715:3;8700:19;;8495:230::o;8730:356::-;8932:2;8914:21;;;8951:18;;;8944:30;9010:34;9005:2;8990:18;;8983:62;9077:2;9062:18;;8904:182::o;9091:352::-;9293:2;9275:21;;;9332:2;9312:18;;;9305:30;9371;9366:2;9351:18;;9344:58;9434:2;9419:18;;9265:178::o;9448:341::-;9650:2;9632:21;;;9689:2;9669:18;;;9662:30;-1:-1:-1;;;9723:2:1;9708:18;;9701:47;9780:2;9765:18;;9622:167::o;9794:342::-;9996:2;9978:21;;;10035:2;10015:18;;;10008:30;-1:-1:-1;;;10069:2:1;10054:18;;10047:48;10127:2;10112:18;;9968:168::o;10141:397::-;10343:2;10325:21;;;10382:2;10362:18;;;10355:30;10421:34;10416:2;10401:18;;10394:62;-1:-1:-1;;;10487:2:1;10472:18;;10465:31;10528:3;10513:19;;10315:223::o;10543:401::-;10745:2;10727:21;;;10784:2;10764:18;;;10757:30;10823:34;10818:2;10803:18;;10796:62;-1:-1:-1;;;10889:2:1;10874:18;;10867:35;10934:3;10919:19;;10717:227::o;10949:400::-;11151:2;11133:21;;;11190:2;11170:18;;;11163:30;11229:34;11224:2;11209:18;;11202:62;-1:-1:-1;;;11295:2:1;11280:18;;11273:34;11339:3;11324:19;;11123:226::o;11354:344::-;11556:2;11538:21;;;11595:2;11575:18;;;11568:30;-1:-1:-1;;;11629:2:1;11614:18;;11607:50;11689:2;11674:18;;11528:170::o;11703:402::-;11905:2;11887:21;;;11944:2;11924:18;;;11917:30;11983:34;11978:2;11963:18;;11956:62;-1:-1:-1;;;12049:2:1;12034:18;;12027:36;12095:3;12080:19;;11877:228::o;12110:401::-;12312:2;12294:21;;;12351:2;12331:18;;;12324:30;12390:34;12385:2;12370:18;;12363:62;-1:-1:-1;;;12456:2:1;12441:18;;12434:35;12501:3;12486:19;;12284:227::o;12516:355::-;12718:2;12700:21;;;12757:2;12737:18;;;12730:30;12796:33;12791:2;12776:18;;12769:61;12862:2;12847:18;;12690:181::o;12876:177::-;13022:25;;;13010:2;12995:18;;12977:76::o;13058:248::-;13232:25;;;13288:2;13273:18;;13266:34;13220:2;13205:18;;13187:119::o;13311:545::-;13592:25;;;13648:2;13633:18;;13626:34;;;;13691:2;13676:18;;13669:34;;;;13734:2;13719:18;;13712:34;13790:14;13783:22;13777:3;13762:19;;13755:51;13837:3;13822:19;;13815:35;13579:3;13564:19;;13546:310::o;13861:184::-;14033:4;14021:17;;;;14003:36;;13991:2;13976:18;;13958:87::o;14050:128::-;;14121:1;14117:6;14114:1;14111:13;14108:2;;;14127:18;;:::i;:::-;-1:-1:-1;14163:9:1;;14098:80::o;14183:217::-;;14249:1;14239:2;;-1:-1:-1;;;14274:31:1;;14328:4;14325:1;14318:15;14356:4;14281:1;14346:15;14239:2;-1:-1:-1;14385:9:1;;14229:171::o;14405:453::-;14501:6;14524:5;14538:314;14587:1;14624:2;14614:8;14611:16;14601:2;;14631:5;;;14601:2;14672:4;14667:3;14663:14;14657:4;14654:24;14651:2;;;14681:18;;:::i;:::-;14731:2;14721:8;14717:17;14714:2;;;14746:16;;;;14714:2;14825:17;;;;;14785:15;;14538:314;;;14482:376;;;;;;;:::o;14863:139::-;;14952:44;-1:-1:-1;;14979:8:1;14973:4;15007:922;15091:8;15081:2;;-1:-1:-1;15132:1:1;15146:5;;15081:2;15180:4;15170:2;;-1:-1:-1;15217:1:1;15231:5;;15170:2;15262:4;15280:1;15275:59;;;;15348:1;15343:183;;;;15255:271;;15275:59;15305:1;15296:10;;15319:5;;;15343:183;15380:3;15370:8;15367:17;15364:2;;;15387:18;;:::i;:::-;15443:1;15433:8;15429:16;15420:25;;15471:3;15464:5;15461:14;15458:2;;;15478:18;;:::i;:::-;15511:5;;;15255:271;;15610:2;15600:8;15597:16;15591:3;15585:4;15582:13;15578:36;15572:2;15562:8;15559:16;15554:2;15548:4;15545:12;15541:35;15538:77;15535:2;;;-1:-1:-1;15647:19:1;;;15682:14;;;15679:2;;;15699:18;;:::i;:::-;15732:5;;15535:2;15779:42;15817:3;15807:8;15801:4;15798:1;15779:42;:::i;:::-;15854:6;15849:3;15845:16;15836:7;15833:29;15830:2;;;15865:18;;:::i;:::-;15903:20;;15071:858;-1:-1:-1;;;;15071:858:1:o;15934:168::-;;16040:1;16036;16032:6;16028:14;16025:1;16022:21;16017:1;16010:9;16003:17;15999:45;15996:2;;;16047:18;;:::i;:::-;-1:-1:-1;16087:9:1;;15986:116::o;16107:125::-;;16175:1;16172;16169:8;16166:2;;;16180:18;;:::i;:::-;-1:-1:-1;16217:9:1;;16156:76::o;16237:380::-;16322:1;16312:12;;16369:1;16359:12;;;16380:2;;16434:4;16426:6;16422:17;16412:27;;16380:2;16487;16479:6;16476:14;16456:18;16453:38;16450:2;;;16533:10;16528:3;16524:20;16521:1;16514:31;16568:4;16565:1;16558:15;16596:4;16593:1;16586:15;16450:2;;16292:325;;;:::o;16622:135::-;;-1:-1:-1;;16682:17:1;;16679:2;;;16702:18;;:::i;:::-;-1:-1:-1;16749:1:1;16738:13;;16669:88::o;16762:127::-;16823:10;16818:3;16814:20;16811:1;16804:31;16854:4;16851:1;16844:15;16878:4;16875:1;16868:15

Swarm Source

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