ETH Price: $1,876.16 (-6.65%)
 

Overview

Max Total Supply

731,892.361111111111111106 KNIP

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
KronicKatz.NFT: Deployer
Balance
1,720,688.541666666666666664 KNIP

Value
$0.00
0x89C99aA9Bf11f53D995f13A518d0De12Bae7dE38
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:
KatNipRewards

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-24
*/

// SPDX-License-Identifier: MIT LICENSE
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

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 `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);

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

// 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/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 v4.4.1 (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 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() == _msgSender(), "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 {
        _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: gist-e3214ae545be6390b3a67dbd0e5ba95e/KatNipRewards.sol



pragma solidity 0.8.4;






contract KatNipRewards is ERC20, ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => uint256) private _balances;
  mapping(address => bool) controllers;

  uint256 private _totalSupply;
  uint256 private MAXSUP;
  uint256 constant MAXIMUMSUPPLY=1000000*10**18;

  constructor() ERC20("KatNipRewards", "KNIP") { 
      _mint(msg.sender, 1000000 * 10 ** 18);

  }

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    require((MAXSUP+amount)<=MAXIMUMSUPPLY,"Maximum supply has been reached");
    _totalSupply = _totalSupply.add(amount);
    MAXSUP=MAXSUP.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public override {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
          super.burnFrom(account, amount);
      }
  }

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
  
  function totalSupply() public override view returns (uint256) {
    return _totalSupply;
  }

  function maxSupply() public  pure returns (uint256) {
    return MAXIMUMSUPPLY;
  }

}

Contract Security Audit

Contract ABI

API
[{"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":"controller","type":"address"}],"name":"addController","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f4b61744e697052657761726473000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4e49500000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000345565b508060049080519060200190620000af92919062000345565b505050620000d2620000c6620000f460201b60201c565b620000fc60201b60201c565b620000ee3369d3c21bcecceda1000000620001c260201b60201c565b620005a1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000235576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022c906200042d565b60405180910390fd5b62000249600083836200033b60201b60201c565b80600260008282546200025d91906200047d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002b491906200047d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031b91906200044f565b60405180910390a362000337600083836200034060201b60201c565b5050565b505050565b505050565b8280546200035390620004e4565b90600052602060002090601f016020900481019282620003775760008555620003c3565b82601f106200039257805160ff1916838001178555620003c3565b82800160010185558215620003c3579182015b82811115620003c2578251825591602001919060010190620003a5565b5b509050620003d29190620003d6565b5090565b5b80821115620003f1576000816000905550600101620003d7565b5090565b600062000404601f836200046c565b9150620004118262000578565b602082019050919050565b6200042781620004da565b82525050565b600060208201905081810360008301526200044881620003f5565b9050919050565b60006020820190506200046660008301846200041c565b92915050565b600082825260208201905092915050565b60006200048a82620004da565b91506200049783620004da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004cf57620004ce6200051a565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620004fd57607f821691505b6020821081141562000514576200051362000549565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61227780620005b16000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806379cc6790116100ad578063a9059cbb11610071578063a9059cbb14610331578063d5abeb0114610361578063dd62ed3e1461037f578063f2fde38b146103af578063f6a74ed7146103cb5761012c565b806379cc67901461028d5780638da5cb5b146102a957806395d89b41146102c7578063a457c2d7146102e5578063a7fc7a07146103155761012c565b806339509351116100f457806339509351146101eb57806340c10f191461021b57806342966c681461023757806370a0823114610253578063715018a6146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e7565b6040516101469190611a98565b60405180910390f35b6101696004803603810190610164919061179e565b610479565b6040516101769190611a7d565b60405180910390f35b61018761049c565b6040516101949190611c7a565b60405180910390f35b6101b760048036038101906101b2919061174f565b6104a6565b6040516101c49190611a7d565b60405180910390f35b6101d56104d5565b6040516101e29190611c95565b60405180910390f35b6102056004803603810190610200919061179e565b6104de565b6040516102129190611a7d565b60405180910390f35b6102356004803603810190610230919061179e565b610588565b005b610251600480360381019061024c91906117da565b610747565b005b61026d600480360381019061026891906116ea565b61075b565b60405161027a9190611c7a565b60405180910390f35b61028b6107a3565b005b6102a760048036038101906102a2919061179e565b61082b565b005b6102b161089b565b6040516102be9190611a62565b60405180910390f35b6102cf6108c5565b6040516102dc9190611a98565b60405180910390f35b6102ff60048036038101906102fa919061179e565b610957565b60405161030c9190611a7d565b60405180910390f35b61032f600480360381019061032a91906116ea565b610a41565b005b61034b6004803603810190610346919061179e565b610b18565b6040516103589190611a7d565b60405180910390f35b610369610b3b565b6040516103769190611c7a565b60405180910390f35b61039960048036038101906103949190611713565b610b4d565b6040516103a69190611c7a565b60405180910390f35b6103c960048036038101906103c491906116ea565b610bd4565b005b6103e560048036038101906103e091906116ea565b610ccc565b005b6060600380546103f690611dde565b80601f016020809104026020016040519081016040528092919081815260200182805461042290611dde565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600080610484610da3565b9050610491818585610dab565b600191505092915050565b6000600854905090565b6000806104b1610da3565b90506104be858285610f76565b6104c9858585611002565b60019150509392505050565b60006012905090565b6000806104e9610da3565b905061057d818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105789190611ccc565b610dab565b600191505092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b90611b7a565b60405180910390fd5b69d3c21bcecceda10000008160095461062d9190611ccc565b111561066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611bda565b60405180910390fd5b6106838160085461128390919063ffffffff16565b60088190555061069e8160095461128390919063ffffffff16565b6009819055506106f681600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128390919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506107438282611299565b5050565b610758610752610da3565b826113f9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ab610da3565b73ffffffffffffffffffffffffffffffffffffffff166107c961089b565b73ffffffffffffffffffffffffffffffffffffffff161461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081690611b9a565b60405180910390fd5b61082960006115d0565b565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561088c5761088782826113f9565b610897565b6108968282611696565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d490611dde565b80601f016020809104026020016040519081016040528092919081815260200182805461090090611dde565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600080610962610da3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611c3a565b60405180910390fd5b610a358286868403610dab565b60019250505092915050565b610a49610da3565b73ffffffffffffffffffffffffffffffffffffffff16610a6761089b565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611b9a565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610b23610da3565b9050610b30818585611002565b600191505092915050565b600069d3c21bcecceda1000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bdc610da3565b73ffffffffffffffffffffffffffffffffffffffff16610bfa61089b565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611afa565b60405180910390fd5b610cc9816115d0565b50565b610cd4610da3565b73ffffffffffffffffffffffffffffffffffffffff16610cf261089b565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611b9a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611c1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611b1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f699190611c7a565b60405180910390a3505050565b6000610f828484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ffc5781811015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590611b3a565b60405180910390fd5b610ffb8484848403610dab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990611bfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990611aba565b60405180910390fd5b6110ed8383836116b6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611b5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190611ccc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126a9190611c7a565b60405180910390a361127d8484846116bb565b50505050565b600081836112919190611ccc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090611c5a565b60405180910390fd5b611315600083836116b6565b80600260008282546113279190611ccc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461137c9190611ccc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e19190611c7a565b60405180910390a36113f5600083836116bb565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090611bba565b60405180910390fd5b611475826000836116b6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290611ada565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115529190611d22565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115b79190611c7a565b60405180910390a36115cb836000846116bb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116a8826116a2610da3565b83610f76565b6116b282826113f9565b5050565b505050565b505050565b6000813590506116cf81612213565b92915050565b6000813590506116e48161222a565b92915050565b6000602082840312156116fc57600080fd5b600061170a848285016116c0565b91505092915050565b6000806040838503121561172657600080fd5b6000611734858286016116c0565b9250506020611745858286016116c0565b9150509250929050565b60008060006060848603121561176457600080fd5b6000611772868287016116c0565b9350506020611783868287016116c0565b9250506040611794868287016116d5565b9150509250925092565b600080604083850312156117b157600080fd5b60006117bf858286016116c0565b92505060206117d0858286016116d5565b9150509250929050565b6000602082840312156117ec57600080fd5b60006117fa848285016116d5565b91505092915050565b61180c81611d56565b82525050565b61181b81611d68565b82525050565b600061182c82611cb0565b6118368185611cbb565b9350611846818560208601611dab565b61184f81611e6e565b840191505092915050565b6000611867602383611cbb565b915061187282611e7f565b604082019050919050565b600061188a602283611cbb565b915061189582611ece565b604082019050919050565b60006118ad602683611cbb565b91506118b882611f1d565b604082019050919050565b60006118d0602283611cbb565b91506118db82611f6c565b604082019050919050565b60006118f3601d83611cbb565b91506118fe82611fbb565b602082019050919050565b6000611916602683611cbb565b915061192182611fe4565b604082019050919050565b6000611939601983611cbb565b915061194482612033565b602082019050919050565b600061195c602083611cbb565b91506119678261205c565b602082019050919050565b600061197f602183611cbb565b915061198a82612085565b604082019050919050565b60006119a2601f83611cbb565b91506119ad826120d4565b602082019050919050565b60006119c5602583611cbb565b91506119d0826120fd565b604082019050919050565b60006119e8602483611cbb565b91506119f38261214c565b604082019050919050565b6000611a0b602583611cbb565b9150611a168261219b565b604082019050919050565b6000611a2e601f83611cbb565b9150611a39826121ea565b602082019050919050565b611a4d81611d94565b82525050565b611a5c81611d9e565b82525050565b6000602082019050611a776000830184611803565b92915050565b6000602082019050611a926000830184611812565b92915050565b60006020820190508181036000830152611ab28184611821565b905092915050565b60006020820190508181036000830152611ad38161185a565b9050919050565b60006020820190508181036000830152611af38161187d565b9050919050565b60006020820190508181036000830152611b13816118a0565b9050919050565b60006020820190508181036000830152611b33816118c3565b9050919050565b60006020820190508181036000830152611b53816118e6565b9050919050565b60006020820190508181036000830152611b7381611909565b9050919050565b60006020820190508181036000830152611b938161192c565b9050919050565b60006020820190508181036000830152611bb38161194f565b9050919050565b60006020820190508181036000830152611bd381611972565b9050919050565b60006020820190508181036000830152611bf381611995565b9050919050565b60006020820190508181036000830152611c13816119b8565b9050919050565b60006020820190508181036000830152611c33816119db565b9050919050565b60006020820190508181036000830152611c53816119fe565b9050919050565b60006020820190508181036000830152611c7381611a21565b9050919050565b6000602082019050611c8f6000830184611a44565b92915050565b6000602082019050611caa6000830184611a53565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cd782611d94565b9150611ce283611d94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1757611d16611e10565b5b828201905092915050565b6000611d2d82611d94565b9150611d3883611d94565b925082821015611d4b57611d4a611e10565b5b828203905092915050565b6000611d6182611d74565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dc9578082015181840152602081019050611dae565b83811115611dd8576000848401525b50505050565b60006002820490506001821680611df657607f821691505b60208210811415611e0a57611e09611e3f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c7920686173206265656e207265616368656400600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61221c81611d56565b811461222757600080fd5b50565b61223381611d94565b811461223e57600080fd5b5056fea26469706673582212200e05b8e1c0d1bc0ea85471530224a325e89383d92ef03652e20363dbec84c24164736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806379cc6790116100ad578063a9059cbb11610071578063a9059cbb14610331578063d5abeb0114610361578063dd62ed3e1461037f578063f2fde38b146103af578063f6a74ed7146103cb5761012c565b806379cc67901461028d5780638da5cb5b146102a957806395d89b41146102c7578063a457c2d7146102e5578063a7fc7a07146103155761012c565b806339509351116100f457806339509351146101eb57806340c10f191461021b57806342966c681461023757806370a0823114610253578063715018a6146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e7565b6040516101469190611a98565b60405180910390f35b6101696004803603810190610164919061179e565b610479565b6040516101769190611a7d565b60405180910390f35b61018761049c565b6040516101949190611c7a565b60405180910390f35b6101b760048036038101906101b2919061174f565b6104a6565b6040516101c49190611a7d565b60405180910390f35b6101d56104d5565b6040516101e29190611c95565b60405180910390f35b6102056004803603810190610200919061179e565b6104de565b6040516102129190611a7d565b60405180910390f35b6102356004803603810190610230919061179e565b610588565b005b610251600480360381019061024c91906117da565b610747565b005b61026d600480360381019061026891906116ea565b61075b565b60405161027a9190611c7a565b60405180910390f35b61028b6107a3565b005b6102a760048036038101906102a2919061179e565b61082b565b005b6102b161089b565b6040516102be9190611a62565b60405180910390f35b6102cf6108c5565b6040516102dc9190611a98565b60405180910390f35b6102ff60048036038101906102fa919061179e565b610957565b60405161030c9190611a7d565b60405180910390f35b61032f600480360381019061032a91906116ea565b610a41565b005b61034b6004803603810190610346919061179e565b610b18565b6040516103589190611a7d565b60405180910390f35b610369610b3b565b6040516103769190611c7a565b60405180910390f35b61039960048036038101906103949190611713565b610b4d565b6040516103a69190611c7a565b60405180910390f35b6103c960048036038101906103c491906116ea565b610bd4565b005b6103e560048036038101906103e091906116ea565b610ccc565b005b6060600380546103f690611dde565b80601f016020809104026020016040519081016040528092919081815260200182805461042290611dde565b801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b5050505050905090565b600080610484610da3565b9050610491818585610dab565b600191505092915050565b6000600854905090565b6000806104b1610da3565b90506104be858285610f76565b6104c9858585611002565b60019150509392505050565b60006012905090565b6000806104e9610da3565b905061057d818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105789190611ccc565b610dab565b600191505092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b90611b7a565b60405180910390fd5b69d3c21bcecceda10000008160095461062d9190611ccc565b111561066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611bda565b60405180910390fd5b6106838160085461128390919063ffffffff16565b60088190555061069e8160095461128390919063ffffffff16565b6009819055506106f681600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128390919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506107438282611299565b5050565b610758610752610da3565b826113f9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ab610da3565b73ffffffffffffffffffffffffffffffffffffffff166107c961089b565b73ffffffffffffffffffffffffffffffffffffffff161461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081690611b9a565b60405180910390fd5b61082960006115d0565b565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561088c5761088782826113f9565b610897565b6108968282611696565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108d490611dde565b80601f016020809104026020016040519081016040528092919081815260200182805461090090611dde565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600080610962610da3565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611c3a565b60405180910390fd5b610a358286868403610dab565b60019250505092915050565b610a49610da3565b73ffffffffffffffffffffffffffffffffffffffff16610a6761089b565b73ffffffffffffffffffffffffffffffffffffffff1614610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611b9a565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610b23610da3565b9050610b30818585611002565b600191505092915050565b600069d3c21bcecceda1000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bdc610da3565b73ffffffffffffffffffffffffffffffffffffffff16610bfa61089b565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611afa565b60405180910390fd5b610cc9816115d0565b50565b610cd4610da3565b73ffffffffffffffffffffffffffffffffffffffff16610cf261089b565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611b9a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611c1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611b1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f699190611c7a565b60405180910390a3505050565b6000610f828484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ffc5781811015610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590611b3a565b60405180910390fd5b610ffb8484848403610dab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990611bfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990611aba565b60405180910390fd5b6110ed8383836116b6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611b5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190611ccc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126a9190611c7a565b60405180910390a361127d8484846116bb565b50505050565b600081836112919190611ccc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090611c5a565b60405180910390fd5b611315600083836116b6565b80600260008282546113279190611ccc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461137c9190611ccc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113e19190611c7a565b60405180910390a36113f5600083836116bb565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090611bba565b60405180910390fd5b611475826000836116b6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290611ada565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115529190611d22565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115b79190611c7a565b60405180910390a36115cb836000846116bb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116a8826116a2610da3565b83610f76565b6116b282826113f9565b5050565b505050565b505050565b6000813590506116cf81612213565b92915050565b6000813590506116e48161222a565b92915050565b6000602082840312156116fc57600080fd5b600061170a848285016116c0565b91505092915050565b6000806040838503121561172657600080fd5b6000611734858286016116c0565b9250506020611745858286016116c0565b9150509250929050565b60008060006060848603121561176457600080fd5b6000611772868287016116c0565b9350506020611783868287016116c0565b9250506040611794868287016116d5565b9150509250925092565b600080604083850312156117b157600080fd5b60006117bf858286016116c0565b92505060206117d0858286016116d5565b9150509250929050565b6000602082840312156117ec57600080fd5b60006117fa848285016116d5565b91505092915050565b61180c81611d56565b82525050565b61181b81611d68565b82525050565b600061182c82611cb0565b6118368185611cbb565b9350611846818560208601611dab565b61184f81611e6e565b840191505092915050565b6000611867602383611cbb565b915061187282611e7f565b604082019050919050565b600061188a602283611cbb565b915061189582611ece565b604082019050919050565b60006118ad602683611cbb565b91506118b882611f1d565b604082019050919050565b60006118d0602283611cbb565b91506118db82611f6c565b604082019050919050565b60006118f3601d83611cbb565b91506118fe82611fbb565b602082019050919050565b6000611916602683611cbb565b915061192182611fe4565b604082019050919050565b6000611939601983611cbb565b915061194482612033565b602082019050919050565b600061195c602083611cbb565b91506119678261205c565b602082019050919050565b600061197f602183611cbb565b915061198a82612085565b604082019050919050565b60006119a2601f83611cbb565b91506119ad826120d4565b602082019050919050565b60006119c5602583611cbb565b91506119d0826120fd565b604082019050919050565b60006119e8602483611cbb565b91506119f38261214c565b604082019050919050565b6000611a0b602583611cbb565b9150611a168261219b565b604082019050919050565b6000611a2e601f83611cbb565b9150611a39826121ea565b602082019050919050565b611a4d81611d94565b82525050565b611a5c81611d9e565b82525050565b6000602082019050611a776000830184611803565b92915050565b6000602082019050611a926000830184611812565b92915050565b60006020820190508181036000830152611ab28184611821565b905092915050565b60006020820190508181036000830152611ad38161185a565b9050919050565b60006020820190508181036000830152611af38161187d565b9050919050565b60006020820190508181036000830152611b13816118a0565b9050919050565b60006020820190508181036000830152611b33816118c3565b9050919050565b60006020820190508181036000830152611b53816118e6565b9050919050565b60006020820190508181036000830152611b7381611909565b9050919050565b60006020820190508181036000830152611b938161192c565b9050919050565b60006020820190508181036000830152611bb38161194f565b9050919050565b60006020820190508181036000830152611bd381611972565b9050919050565b60006020820190508181036000830152611bf381611995565b9050919050565b60006020820190508181036000830152611c13816119b8565b9050919050565b60006020820190508181036000830152611c33816119db565b9050919050565b60006020820190508181036000830152611c53816119fe565b9050919050565b60006020820190508181036000830152611c7381611a21565b9050919050565b6000602082019050611c8f6000830184611a44565b92915050565b6000602082019050611caa6000830184611a53565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611cd782611d94565b9150611ce283611d94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d1757611d16611e10565b5b828201905092915050565b6000611d2d82611d94565b9150611d3883611d94565b925082821015611d4b57611d4a611e10565b5b828203905092915050565b6000611d6182611d74565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dc9578082015181840152602081019050611dae565b83811115611dd8576000848401525b50505050565b60006002820490506001821680611df657607f821691505b60208210811415611e0a57611e09611e3f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c7920686173206265656e207265616368656400600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61221c81611d56565b811461222757600080fd5b50565b61223381611d94565b811461223e57600080fd5b5056fea26469706673582212200e05b8e1c0d1bc0ea85471530224a325e89383d92ef03652e20363dbec84c24164736f6c63430008040033

Deployed Bytecode Sourcemap

28318:1412:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13721:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16072:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29540:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16853:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14683:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17557:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28723:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25099:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15012:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27393:103;;;:::i;:::-;;29084:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26742:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13940:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18300:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29312:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15345:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29640:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15601:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27651:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29423:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13721:100;13775:13;13808:5;13801:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13721:100;:::o;16072:201::-;16155:4;16172:13;16188:12;:10;:12::i;:::-;16172:28;;16211:32;16220:5;16227:7;16236:6;16211:8;:32::i;:::-;16261:4;16254:11;;;16072:201;;;;:::o;29540:94::-;29593:7;29616:12;;29609:19;;29540:94;:::o;16853:295::-;16984:4;17001:15;17019:12;:10;:12::i;:::-;17001:30;;17042:38;17058:4;17064:7;17073:6;17042:15;:38::i;:::-;17091:27;17101:4;17107:2;17111:6;17091:9;:27::i;:::-;17136:4;17129:11;;;16853:295;;;;;:::o;14683:93::-;14741:5;14766:2;14759:9;;14683:93;:::o;17557:240::-;17645:4;17662:13;17678:12;:10;:12::i;:::-;17662:28;;17701:66;17710:5;17717:7;17756:10;17726:11;:18;17738:5;17726:18;;;;;;;;;;;;;;;:27;17745:7;17726:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;17701:8;:66::i;:::-;17785:4;17778:11;;;17557:240;;;;:::o;28723:355::-;28789:11;:23;28801:10;28789:23;;;;;;;;;;;;;;;;;;;;;;;;;28781:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28596:14;28865:6;28858;;:13;;;;:::i;:::-;28857:30;;28849:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28944:24;28961:6;28944:12;;:16;;:24;;;;:::i;:::-;28929:12;:39;;;;28982:18;28993:6;28982;;:10;;:18;;;;:::i;:::-;28975:6;:25;;;;29023;29041:6;29023:9;:13;29033:2;29023:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;29007:9;:13;29017:2;29007:13;;;;;;;;;;;;;;;:41;;;;29055:17;29061:2;29065:6;29055:5;:17::i;:::-;28723:355;;:::o;25099:91::-;25155:27;25161:12;:10;:12::i;:::-;25175:6;25155:5;:27::i;:::-;25099:91;:::o;15012:127::-;15086:7;15113:9;:18;15123:7;15113:18;;;;;;;;;;;;;;;;15106:25;;15012:127;;;:::o;27393:103::-;26973:12;:10;:12::i;:::-;26962:23;;:7;:5;:7::i;:::-;:23;;;26954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27458:30:::1;27485:1;27458:18;:30::i;:::-;27393:103::o:0;29084:222::-;29164:11;:23;29176:10;29164:23;;;;;;;;;;;;;;;;;;;;;;;;;29160:141;;;29202:22;29208:7;29217:6;29202:5;:22::i;:::-;29160:141;;;29260:31;29275:7;29284:6;29260:14;:31::i;:::-;29160:141;29084:222;;:::o;26742:87::-;26788:7;26815:6;;;;;;;;;;;26808:13;;26742:87;:::o;13940:104::-;13996:13;14029:7;14022:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13940:104;:::o;18300:438::-;18393:4;18410:13;18426:12;:10;:12::i;:::-;18410:28;;18449:24;18476:11;:18;18488:5;18476:18;;;;;;;;;;;;;;;:27;18495:7;18476:27;;;;;;;;;;;;;;;;18449:54;;18542:15;18522:16;:35;;18514:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18635:60;18644:5;18651:7;18679:15;18660:16;:34;18635:8;:60::i;:::-;18726:4;18719:11;;;;18300:438;;;;:::o;29312:105::-;26973:12;:10;:12::i;:::-;26962:23;;:7;:5;:7::i;:::-;:23;;;26954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29407:4:::1;29381:11;:23;29393:10;29381:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;29312:105:::0;:::o;15345:193::-;15424:4;15441:13;15457:12;:10;:12::i;:::-;15441:28;;15480;15490:5;15497:2;15501:6;15480:9;:28::i;:::-;15526:4;15519:11;;;15345:193;;;;:::o;29640:85::-;29683:7;28596:14;29699:20;;29640:85;:::o;15601:151::-;15690:7;15717:11;:18;15729:5;15717:18;;;;;;;;;;;;;;;:27;15736:7;15717:27;;;;;;;;;;;;;;;;15710:34;;15601:151;;;;:::o;27651:201::-;26973:12;:10;:12::i;:::-;26962:23;;:7;:5;:7::i;:::-;:23;;;26954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27760:1:::1;27740:22;;:8;:22;;;;27732:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27816:28;27835:8;27816:18;:28::i;:::-;27651:201:::0;:::o;29423:109::-;26973:12;:10;:12::i;:::-;26962:23;;:7;:5;:7::i;:::-;:23;;;26954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29521:5:::1;29495:11;:23;29507:10;29495:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;29423:109:::0;:::o;11361:98::-;11414:7;11441:10;11434:17;;11361:98;:::o;21936:380::-;22089:1;22072:19;;:5;:19;;;;22064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22170:1;22151:21;;:7;:21;;;;22143:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22254:6;22224:11;:18;22236:5;22224:18;;;;;;;;;;;;;;;:27;22243:7;22224:27;;;;;;;;;;;;;;;:36;;;;22292:7;22276:32;;22285:5;22276:32;;;22301:6;22276:32;;;;;;:::i;:::-;;;;;;;;21936:380;;;:::o;22603:453::-;22738:24;22765:25;22775:5;22782:7;22765:9;:25::i;:::-;22738:52;;22825:17;22805:16;:37;22801:248;;22887:6;22867:16;:26;;22859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22971:51;22980:5;22987:7;23015:6;22996:16;:25;22971:8;:51::i;:::-;22801:248;22603:453;;;;:::o;19217:671::-;19364:1;19348:18;;:4;:18;;;;19340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19441:1;19427:16;;:2;:16;;;;19419:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19496:38;19517:4;19523:2;19527:6;19496:20;:38::i;:::-;19547:19;19569:9;:15;19579:4;19569:15;;;;;;;;;;;;;;;;19547:37;;19618:6;19603:11;:21;;19595:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19735:6;19721:11;:20;19703:9;:15;19713:4;19703:15;;;;;;;;;;;;;;;:38;;;;19780:6;19763:9;:13;19773:2;19763:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;19819:2;19804:26;;19813:4;19804:26;;;19823:6;19804:26;;;;;;:::i;:::-;;;;;;;;19843:37;19863:4;19869:2;19873:6;19843:19;:37::i;:::-;19217:671;;;;:::o;6517:98::-;6575:7;6606:1;6602;:5;;;;:::i;:::-;6595:12;;6517:98;;;;:::o;20175:399::-;20278:1;20259:21;;:7;:21;;;;20251:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;20329:49;20358:1;20362:7;20371:6;20329:20;:49::i;:::-;20407:6;20391:12;;:22;;;;;;;:::i;:::-;;;;;;;;20446:6;20424:9;:18;20434:7;20424:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;20489:7;20468:37;;20485:1;20468:37;;;20498:6;20468:37;;;;;;:::i;:::-;;;;;;;;20518:48;20546:1;20550:7;20559:6;20518:19;:48::i;:::-;20175:399;;:::o;20907:591::-;21010:1;20991:21;;:7;:21;;;;20983:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21063:49;21084:7;21101:1;21105:6;21063:20;:49::i;:::-;21125:22;21150:9;:18;21160:7;21150:18;;;;;;;;;;;;;;;;21125:43;;21205:6;21187:14;:24;;21179:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21324:6;21307:14;:23;21286:9;:18;21296:7;21286:18;;;;;;;;;;;;;;;:44;;;;21368:6;21352:12;;:22;;;;;;;:::i;:::-;;;;;;;;21418:1;21392:37;;21401:7;21392:37;;;21422:6;21392:37;;;;;;:::i;:::-;;;;;;;;21442:48;21462:7;21479:1;21483:6;21442:19;:48::i;:::-;20907:591;;;:::o;28012:191::-;28086:16;28105:6;;;;;;;;;;;28086:25;;28131:8;28122:6;;:17;;;;;;;;;;;;;;;;;;28186:8;28155:40;;28176:8;28155:40;;;;;;;;;;;;28012:191;;:::o;25509:164::-;25586:46;25602:7;25611:12;:10;:12::i;:::-;25625:6;25586:15;:46::i;:::-;25643:22;25649:7;25658:6;25643:5;:22::i;:::-;25509:164;;:::o;23656:125::-;;;;:::o;24385:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:221::-;18217:34;18213:1;18205:6;18201:14;18194:58;18286:4;18281:2;18273:6;18269:15;18262:29;18183:115;:::o;18304:225::-;18444:34;18440:1;18432:6;18428:14;18421:58;18513:8;18508:2;18500:6;18496:15;18489:33;18410:119;:::o;18535:221::-;18675:34;18671:1;18663:6;18659:14;18652:58;18744:4;18739:2;18731:6;18727:15;18720:29;18641:115;:::o;18762:179::-;18902:31;18898:1;18890:6;18886:14;18879:55;18868:73;:::o;18947:225::-;19087:34;19083:1;19075:6;19071:14;19064:58;19156:8;19151:2;19143:6;19139:15;19132:33;19053:119;:::o;19178:175::-;19318:27;19314:1;19306:6;19302:14;19295:51;19284:69;:::o;19359:182::-;19499:34;19495:1;19487:6;19483:14;19476:58;19465:76;:::o;19547:220::-;19687:34;19683:1;19675:6;19671:14;19664:58;19756:3;19751:2;19743:6;19739:15;19732:28;19653:114;:::o;19773:181::-;19913:33;19909:1;19901:6;19897:14;19890:57;19879:75;:::o;19960:224::-;20100:34;20096:1;20088:6;20084:14;20077:58;20169:7;20164:2;20156:6;20152:15;20145:32;20066:118;:::o;20190:223::-;20330:34;20326:1;20318:6;20314:14;20307:58;20399:6;20394:2;20386:6;20382:15;20375:31;20296:117;:::o;20419:224::-;20559:34;20555:1;20547:6;20543:14;20536:58;20628:7;20623:2;20615:6;20611:15;20604:32;20525:118;:::o;20649:181::-;20789:33;20785:1;20777:6;20773:14;20766:57;20755:75;:::o;20836:122::-;20909:24;20927:5;20909:24;:::i;:::-;20902:5;20899:35;20889:2;;20948:1;20945;20938:12;20889:2;20879:79;:::o;20964:122::-;21037:24;21055:5;21037:24;:::i;:::-;21030:5;21027:35;21017:2;;21076:1;21073;21066:12;21017:2;21007:79;:::o

Swarm Source

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