Token Grape Finance

DeFi  

Overview ERC20

Price
$0.02 @ 0.001507 AVAX (+2.35%)
Fully Diluted Market Cap
Total Supply:
4,555,166.244175 GRAPE

Holders:
5,443 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

GRAPE is an algorithmic stable coin designed to maintain a 1:1 peg to MIM.

Market

Volume (24H):$136.08
Market Capitalization:$0.00
Circulating Supply:0.00 GRAPE
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
1
Swapsicle
0X5541D83EFAD1F281571B343977648B75D95CDAC2-0X130966628846BFD36FF31A822705796E8CB8C18D$0.0155
0.0000006 Btc
$89.27
5,749.434 0X5541D83EFAD1F281571B343977648B75D95CDAC2
64.6862%
2
Trader Joe
0X5541D83EFAD1F281571B343977648B75D95CDAC2-0X130966628846BFD36FF31A822705796E8CB8C18D$0.0151
0.0000005 Btc
$47.32
3,138.763 0X5541D83EFAD1F281571B343977648B75D95CDAC2
35.3138%
3
Trader Joe
0X395908AEB53D33A9B8AC35E148E9805D34A555D3-0X5541D83EFAD1F281571B343977648B75D95CDAC2$0.0146
0.0000005 Btc
$18.89
1,797.781 0X395908AEB53D33A9B8AC35E148E9805D34A555D3
20.2266%
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Grape

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowtrace.io on 2022-01-12
*/

/*

 ██████╗ ██████╗  █████╗ ██████╗ ███████╗    ███████╗██╗███╗   ██╗ █████╗ ███╗   ██╗ ██████╗███████╗
██╔════╝ ██╔══██╗██╔══██╗██╔══██╗██╔════╝    ██╔════╝██║████╗  ██║██╔══██╗████╗  ██║██╔════╝██╔════╝
██║  ███╗██████╔╝███████║██████╔╝█████╗      █████╗  ██║██╔██╗ ██║███████║██╔██╗ ██║██║     █████╗  
██║   ██║██╔══██╗██╔══██║██╔═══╝ ██╔══╝      ██╔══╝  ██║██║╚██╗██║██╔══██║██║╚██╗██║██║     ██╔══╝  
╚██████╔╝██║  ██║██║  ██║██║     ███████╗    ██║     ██║██║ ╚████║██║  ██║██║ ╚████║╚██████╗███████╗
 ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚═╝     ╚══════╝    ╚═╝     ╚═╝╚═╝  ╚═══╝╚═╝  ╚═╝╚═╝  ╚═══╝ ╚═════╝╚══════╝
                                                                                                    
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity >=0.6.0 <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);
}


// File @openzeppelin/contracts/math/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity >=0.6.0 <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 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 ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(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");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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");

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(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);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity >=0.6.0 <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 {
    using SafeMath for uint256;

    /**
     * @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 {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/math/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}


// File contracts/lib/SafeMath8.sol



pragma solidity 0.6.12;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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(uint8 a, uint8 b) internal pure returns (uint8) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint8 a, uint8 b) internal pure returns (uint8) {
        // 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 0;
        }

        uint8 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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(uint8 a, uint8 b) internal pure returns (uint8) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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(uint8 a, uint8 b) internal pure returns (uint8) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}



// File @openzeppelin/contracts/access/[email protected]

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _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() == _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 {
        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;
    }
}


// File contracts/owner/Operator.sol

pragma solidity 0.6.12;


contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}


// File contracts/interfaces/IOracle.sol

pragma solidity 0.6.12;

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut);
}


contract Grape is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    // Initial distribution for the first 24h genesis pools
    uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 2400 ether;
    // Initial distribution for the day 2-5 GRAPE-WETH LP -> GRAPE pool
    uint256 public constant INITIAL_GRAPE_POOL_DISTRIBUTION = 21600 ether;
    // Distribution for airdrops wallet
    uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 1000 ether;

    // Have the rewards been distributed to the pools
    bool public rewardPoolDistributed = false;

    address public grapeOracle;

    /**
     * @notice Constructs the GRAPE ERC-20 contract.
     */
    constructor() public ERC20("Grape Finance", "GRAPE") {
        // Mints 1 GRAPE to contract creator for initial pool setup
        _mint(msg.sender, 1 ether);   
    }

    function _getGrapePrice() internal view returns (uint256 _grapePrice) {
        try IOracle(grapeOracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Grape: failed to fetch GRAPE price from Oracle");
        }
    }

    function setGrapeOracle(address _grapeOracle) public onlyOperator {
        require(_grapeOracle != address(0), "oracle address cannot be 0 address");
        grapeOracle = _grapeOracle;
    }

    /**
     * @notice Operator mints GRAPE to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of GRAPE to mint to
     * @return whether the process has been done
     */
    function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) {
        uint256 balanceBefore = balanceOf(recipient_);
        _mint(recipient_, amount_);
        uint256 balanceAfter = balanceOf(recipient_);

        return balanceAfter > balanceBefore;
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount) public override onlyOperator {
        super.burnFrom(account, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(
        address _genesisPool,
        address _grapePool,
        address _airdropWallet
    ) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_genesisPool != address(0), "!_genesisPool");
        require(_grapePool != address(0), "!_grapePool");
        require(_airdropWallet != address(0), "!_airdropWallet");
        rewardPoolDistributed = true;
        _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION);
        _mint(_grapePool, INITIAL_GRAPE_POOL_DISTRIBUTION);
        _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":[],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GRAPE_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_genesisPool","type":"address"},{"internalType":"address","name":"_grapePool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"grapeOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_grapeOracle","type":"address"}],"name":"setGrapeOracle","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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff60a01b191690553480156200001e57600080fd5b50604080518082018252600d81526c47726170652046696e616e636560981b602080830191825283518085019094526005845264475241504560d81b9084015281519192916200007191600391620002e3565b50805162000087906004906020840190620002e3565b50506005805460ff19166012179055506000620000a362000169565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010362000169565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36200016333670de0b6b3a76400006200016d565b6200037f565b3390565b6001600160a01b038216620001c9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001d7600083836200027c565b620001f3816002546200028160201b62000f491790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022691839062000f4962000281821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002dc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032657805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035657825182559160200191906001019062000339565b506200036492915062000368565b5090565b5b8082111562000364576000815560010162000369565b6117ff806200038f6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063570ca735116100f95780639662676c11610097578063d904f44d11610071578063d904f44d1461052b578063dd62ed3e14610533578063f2fde38b14610561578063ffa8226e14610587576101c4565b80639662676c146104cb578063a457c2d7146104d3578063a9059cbb146104ff576101c4565b8063715018a6116100d3578063715018a61461048757806379cc67901461048f5780638da5cb5b146104bb57806395d89b41146104c3576101c4565b8063570ca735146104355780635c03b0261461045957806370a0823114610461576101c4565b806340c10f19116101665780634456eda2116101405780634456eda2146103b75780634e20a02c146103bf578063521181d5146103c757806354575af4146103ff576101c4565b806340c10f191461034857806342966c681461037457806343692cdd14610391576101c4565b806323b872dd116101a257806323b872dd146102a057806329605e77146102d6578063313ce567146102fe578063395093511461031c576101c4565b806306fdde03146101c9578063095ea7b31461024657806318160ddd14610286575b600080fd5b6101d161058f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610625565b604080519115158252519081900360200190f35b61028e610642565b60408051918252519081900360200190f35b610272600480360360608110156102b657600080fd5b506001600160a01b03813581169160208101359091169060400135610648565b6102fc600480360360208110156102ec57600080fd5b50356001600160a01b03166106a5565b005b610306610725565b6040805160ff9092168252519081900360200190f35b6102726004803603604081101561033257600080fd5b506001600160a01b03813516906020013561072e565b6102726004803603604081101561035e57600080fd5b506001600160a01b03813516906020013561077c565b6102fc6004803603602081101561038a57600080fd5b50356107f6565b6102fc600480360360208110156103a757600080fd5b50356001600160a01b03166107ff565b6102726108af565b61028e6108d5565b6102fc600480360360608110156103dd57600080fd5b506001600160a01b0381358116916020810135821691604090910135166108e2565b6102fc6004803603606081101561041557600080fd5b506001600160a01b03813581169160208101359160409091013516610abd565b61043d610b8e565b604080516001600160a01b039092168252519081900360200190f35b61028e610b9d565b61028e6004803603602081101561047757600080fd5b50356001600160a01b0316610bab565b6102fc610bc6565b6102fc600480360360408110156104a557600080fd5b506001600160a01b038135169060200135610c8a565b61043d610ce1565b6101d1610cf5565b610272610d56565b610272600480360360408110156104e957600080fd5b506001600160a01b038135169060200135610d66565b6102726004803603604081101561051557600080fd5b506001600160a01b038135169060200135610dce565b61043d610de2565b61028e6004803603604081101561054957600080fd5b506001600160a01b0381358116916020013516610df1565b6102fc6004803603602081101561057757600080fd5b50356001600160a01b0316610e1c565b61028e610f3c565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6000610639610632610faa565b8484610fae565b50600192915050565b60025490565b600061065584848461109a565b61069b84610661610faa565b610696856040518060600160405280602881526020016116a96028913961068f8a61068a610faa565b610df1565b91906111f5565b610fae565b5060019392505050565b6106ad610faa565b6001600160a01b03166106be610ce1565b6001600160a01b031614610719576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107228161128c565b50565b60055460ff1690565b600061063961073b610faa565b84610696856001600061074c610faa565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f49565b6006546000906001600160a01b031633146107c85760405162461bcd60e51b81526004018080602001828103825260248152602001806116f56024913960400191505060405180910390fd5b60006107d384610bab565b90506107df8484611329565b60006107ea85610bab565b91909111949350505050565b61072281611419565b6006546001600160a01b031633146108485760405162461bcd60e51b81526004018080602001828103825260248152602001806116f56024913960400191505060405180910390fd5b6001600160a01b03811661088d5760405162461bcd60e51b815260040180806020018281038252602281526020018061173a6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03166108c6610faa565b6001600160a01b031614905090565b68821ab0d4414980000081565b6006546001600160a01b0316331461092b5760405162461bcd60e51b81526004018080602001828103825260248152602001806116f56024913960400191505060405180910390fd5b600654600160a01b900460ff161561098a576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b0383166109d5576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610a1e576040805162461bcd60e51b815260206004820152600b60248201526a0857d9dc985c19541bdbdb60aa1b604482015290519081900360640190fd5b6001600160a01b038116610a6b576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610a918368821ab0d44149800000611329565b610aa582690492f037764b95800000611329565b610ab881683635c9adc5dea00000611329565b505050565b6006546001600160a01b03163314610b065760405162461bcd60e51b81526004018080602001828103825260248152602001806116f56024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610b5d57600080fd5b505af1158015610b71573d6000803e3d6000fd5b505050506040513d6020811015610b8757600080fd5b5050505050565b6006546001600160a01b031690565b690492f037764b9580000081565b6001600160a01b031660009081526020819052604090205490565b610bce610faa565b6001600160a01b0316610bdf610ce1565b6001600160a01b031614610c3a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6006546001600160a01b03163314610cd35760405162461bcd60e51b81526004018080602001828103825260248152602001806116f56024913960400191505060405180910390fd5b610cdd828261142a565b5050565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561061b5780601f106105f05761010080835404028352916020019161061b565b600654600160a01b900460ff1681565b6000610639610d73610faa565b84610696856040518060600160405280602581526020016117a56025913960016000610d9d610faa565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111f5565b6000610639610ddb610faa565b848461109a565b6007546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e24610faa565b6001600160a01b0316610e35610ce1565b6001600160a01b031614610e90576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ed55760405162461bcd60e51b815260040180806020018281038252602681526020018061160e6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b683635c9adc5dea0000081565b600082820183811015610fa3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ff35760405162461bcd60e51b81526004018080602001828103825260248152602001806117816024913960400191505060405180910390fd5b6001600160a01b0382166110385760405162461bcd60e51b81526004018080602001828103825260228152602001806116346022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110df5760405162461bcd60e51b815260040180806020018281038252602581526020018061175c6025913960400191505060405180910390fd5b6001600160a01b0382166111245760405162461bcd60e51b81526004018080602001828103825260238152602001806115c96023913960400191505060405180910390fd5b61112f838383610ab8565b61116c81604051806060016040528060268152602001611656602691396001600160a01b03861660009081526020819052604090205491906111f5565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461119b9082610f49565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611249578181015183820152602001611231565b50505050905090810190601f1680156112765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166112d15760405162461bcd60e51b815260040180806020018281038252602d81526020018061167c602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216611384576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61139060008383610ab8565b60025461139d9082610f49565b6002556001600160a01b0382166000908152602081905260409020546113c39082610f49565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610722611424610faa565b8261146f565b6000611455826040518060600160405280602481526020016116d16024913961068f8661068a610faa565b905061146983611463610faa565b83610fae565b610ab883835b6001600160a01b0382166114b45760405162461bcd60e51b81526004018080602001828103825260218152602001806117196021913960400191505060405180910390fd5b6114c082600083610ab8565b6114fd816040518060600160405280602281526020016115ec602291396001600160a01b03851660009081526020819052604090205491906111f5565b6001600160a01b038316600090815260208190526040902055600254611523908261156b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000828211156115c2576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f7245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f742062652030206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200a1978a37f9a506c1bad79e7aa50e5e8c8850b1c2fce86b67962a7165039efcd64736f6c634300060c0033

Deployed ByteCode Sourcemap

35188:3456:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15128:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17274:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17274:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16227:108;;;:::i;:::-;;;;;;;;;;;;;;;;37372:345;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37372:345:0;;;;;;;;;;;;;;;;;:::i;34465:115::-;;;;;;;;;;;;;;;;-1:-1:-1;34465:115:0;-1:-1:-1;;;;;34465:115:0;;:::i;:::-;;16071:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18655:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18655:218:0;;;;;;;;:::i;36845:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36845:290:0;;;;;;;;:::i;37143:83::-;;;;;;;;;;;;;;;;-1:-1:-1;37143:83:0;;:::i;36417:195::-;;;;;;;;;;;;;;;;-1:-1:-1;36417:195:0;-1:-1:-1;;;;;36417:195:0;;:::i;34357:100::-;;;:::i;35365:70::-;;;:::i;37797:649::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37797:649:0;;;;;;;;;;;;;;;;;;;:::i;38454:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38454:187:0;;;;;;;;;;;;;;;;;:::i;34129:85::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34129:85:0;;;;;;;;;;;;;;35515:69;;;:::i;16398:127::-;;;;;;;;;;;;;;;;-1:-1:-1;16398:127:0;-1:-1:-1;;;;;16398:127:0;;:::i;33196:148::-;;;:::i;37234:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37234:130:0;;;;;;;;:::i;32545:87::-;;;:::i;15338:95::-;;;:::i;35768:41::-;;;:::i;19376:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19376:269:0;;;;;;;;:::i;16738:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16738:175:0;;;;;;;;:::i;35818:26::-;;;:::i;16976:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16976:151:0;;;;;;;;;;:::i;33499:244::-;;;;;;;;;;;;;;;;-1:-1:-1;33499:244:0;-1:-1:-1;;;;;33499:244:0;;:::i;35632:72::-;;;:::i;15128:91::-;15206:5;15199:12;;;;;;;;-1:-1:-1;;15199:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15173:13;;15199:12;;15206:5;;15199:12;;15206:5;15199:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15128:91;:::o;17274:169::-;17357:4;17374:39;17383:12;:10;:12::i;:::-;17397:7;17406:6;17374:8;:39::i;:::-;-1:-1:-1;17431:4:0;17274:169;;;;:::o;16227:108::-;16315:12;;16227:108;:::o;37372:345::-;37504:4;37521:36;37531:6;37539:9;37550:6;37521:9;:36::i;:::-;37568:119;37577:6;37585:12;:10;:12::i;:::-;37599:87;37635:6;37599:87;;;;;;;;;;;;;;;;;:31;37609:6;37617:12;:10;:12::i;:::-;37599:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;37568:8;:119::i;:::-;-1:-1:-1;37705:4:0;37372:345;;;;;:::o;34465:115::-;32776:12;:10;:12::i;:::-;-1:-1:-1;;;;;32765:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32765:23:0;;32757:68;;;;;-1:-1:-1;;;32757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34541:31:::1;34559:12;34541:17;:31::i;:::-;34465:115:::0;:::o;16071:91::-;16145:9;;;;16071:91;:::o;18655:218::-;18743:4;18760:83;18769:12;:10;:12::i;:::-;18783:7;18792:50;18831:10;18792:11;:25;18804:12;:10;:12::i;:::-;-1:-1:-1;;;;;18792:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18792:25:0;;;:34;;;;;;;;;;;:38;:50::i;36845:290::-;34265:9;;36925:4;;-1:-1:-1;;;;;34265:9:0;34278:10;34265:23;34257:72;;;;-1:-1:-1;;;34257:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36942:21:::1;36966;36976:10;36966:9;:21::i;:::-;36942:45;;36998:26;37004:10;37016:7;36998:5;:26::i;:::-;37035:20;37058:21;37068:10;37058:9;:21::i;:::-;37099:28:::0;;;::::1;::::0;36845:290;-1:-1:-1;;;;36845:290:0:o;37143:83::-;37200:18;37211:6;37200:10;:18::i;36417:195::-;34265:9;;-1:-1:-1;;;;;34265:9:0;34278:10;34265:23;34257:72;;;;-1:-1:-1;;;34257:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36502:26:0;::::1;36494:73;;;;-1:-1:-1::0;;;36494:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36578:11;:26:::0;;-1:-1:-1;;;;;;36578:26:0::1;-1:-1:-1::0;;;;;36578:26:0;;;::::1;::::0;;;::::1;::::0;;36417:195::o;34357:100::-;34440:9;;34400:4;;-1:-1:-1;;;;;34440:9:0;34424:12;:10;:12::i;:::-;-1:-1:-1;;;;;34424:25:0;;34417:32;;34357:100;:::o;35365:70::-;35425:10;35365:70;:::o;37797:649::-;34265:9;;-1:-1:-1;;;;;34265:9:0;34278:10;34265:23;34257:72;;;;-1:-1:-1;;;34257:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37965:21:::1;::::0;-1:-1:-1;;;37965:21:0;::::1;;;37964:22;37956:59;;;::::0;;-1:-1:-1;;;37956:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38034:26:0;::::1;38026:52;;;::::0;;-1:-1:-1;;;38026:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38026:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38097:24:0;::::1;38089:48;;;::::0;;-1:-1:-1;;;38089:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38089:48:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38156:28:0;::::1;38148:56;;;::::0;;-1:-1:-1;;;38148:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38148:56:0;;;;;;;;;;;;;::::1;;38215:21;:28:::0;;-1:-1:-1;;;;38215:28:0::1;-1:-1:-1::0;;;38215:28:0::1;::::0;;38254:54:::1;38260:12:::0;35425:10:::1;38254:5;:54::i;:::-;38319:50;38325:10;35573:11;38319:5;:50::i;:::-;38380:58;38386:14;35694:10;38380:5;:58::i;:::-;37797:649:::0;;;:::o;38454:187::-;34265:9;;-1:-1:-1;;;;;34265:9:0;34278:10;34265:23;34257:72;;;;-1:-1:-1;;;34257:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38604:6:::1;-1:-1:-1::0;;;;;38604:15:0::1;;38620:3;38625:7;38604:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;38604:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;38454:187:0:o;34129:85::-;34197:9;;-1:-1:-1;;;;;34197:9:0;34129:85;:::o;35515:69::-;35573:11;35515:69;:::o;16398:127::-;-1:-1:-1;;;;;16499:18:0;16472:7;16499:18;;;;;;;;;;;;16398:127::o;33196:148::-;32776:12;:10;:12::i;:::-;-1:-1:-1;;;;;32765:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32765:23:0;;32757:68;;;;;-1:-1:-1;;;32757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33287:6:::1;::::0;33266:40:::1;::::0;33303:1:::1;::::0;33287:6:::1;::::0;::::1;-1:-1:-1::0;;;;;33287:6:0::1;::::0;33266:40:::1;::::0;33303:1;;33266:40:::1;33317:6;:19:::0;;-1:-1:-1;;;;;;33317:19:0::1;::::0;;33196:148::o;37234:130::-;34265:9;;-1:-1:-1;;;;;34265:9:0;34278:10;34265:23;34257:72;;;;-1:-1:-1;;;34257:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37325:31:::1;37340:7;37349:6;37325:14;:31::i;:::-;37234:130:::0;;:::o;32545:87::-;32618:6;;;;;-1:-1:-1;;;;;32618:6:0;;32545:87::o;15338:95::-;15418:7;15411:14;;;;;;;;-1:-1:-1;;15411:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15385:13;;15411:14;;15418:7;;15411:14;;15418:7;15411:14;;;;;;;;;;;;;;;;;;;;;;;;35768:41;;;-1:-1:-1;;;35768:41:0;;;;;:::o;19376:269::-;19469:4;19486:129;19495:12;:10;:12::i;:::-;19509:7;19518:96;19557:15;19518:96;;;;;;;;;;;;;;;;;:11;:25;19530:12;:10;:12::i;:::-;-1:-1:-1;;;;;19518:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19518:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16738:175::-;16824:4;16841:42;16851:12;:10;:12::i;:::-;16865:9;16876:6;16841:9;:42::i;35818:26::-;;;-1:-1:-1;;;;;35818:26:0;;:::o;16976:151::-;-1:-1:-1;;;;;17092:18:0;;;17065:7;17092:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16976:151::o;33499:244::-;32776:12;:10;:12::i;:::-;-1:-1:-1;;;;;32765:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32765:23:0;;32757:68;;;;;-1:-1:-1;;;32757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33588:22:0;::::1;33580:73;;;;-1:-1:-1::0;;;33580:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33690:6;::::0;33669:38:::1;::::0;-1:-1:-1;;;;;33669:38:0;;::::1;::::0;33690:6:::1;::::0;::::1;;::::0;33669:38:::1;::::0;;;::::1;33718:6;:17:::0;;-1:-1:-1;;;;;33718:17:0;;::::1;;;-1:-1:-1::0;;;;;;33718:17:0;;::::1;::::0;;;::::1;::::0;;33499:244::o;35632:72::-;35694:10;35632:72;:::o;8287:179::-;8345:7;8377:5;;;8401:6;;;;8393:46;;;;;-1:-1:-1;;;8393:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8457:1;8287:179;-1:-1:-1;;;8287:179:0:o;2309:106::-;2397:10;2309:106;:::o;22523:346::-;-1:-1:-1;;;;;22625:19:0;;22617:68;;;;-1:-1:-1;;;22617:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22704:21:0;;22696:68;;;;-1:-1:-1;;;22696:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22777:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22829:32;;;;;;;;;;;;;;;;;22523:346;;;:::o;20135:539::-;-1:-1:-1;;;;;20241:20:0;;20233:70;;;;-1:-1:-1;;;20233:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20322:23:0;;20314:71;;;;-1:-1:-1;;;20314:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20398:47;20419:6;20427:9;20438:6;20398:20;:47::i;:::-;20478:71;20500:6;20478:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20478:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;20458:17:0;;;:9;:17;;;;;;;;;;;:91;;;;20583:20;;;;;;;:32;;20608:6;20583:24;:32::i;:::-;-1:-1:-1;;;;;20560:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;20631:35;;;;;;;20560:20;;20631:35;;;;;;;;;;;;;20135:539;;;:::o;11114:166::-;11200:7;11236:12;11228:6;;;;11220:29;;;;-1:-1:-1;;;11220:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11267:5:0;;;11114:166::o;34588:257::-;-1:-1:-1;;;;;34665:26:0;;34657:84;;;;-1:-1:-1;;;34657:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34757:45;;-1:-1:-1;;;;;34757:45:0;;;34785:1;;34757:45;;34785:1;;34757:45;34813:9;:24;;-1:-1:-1;;;;;;34813:24:0;-1:-1:-1;;;;;34813:24:0;;;;;;;;;;34588:257::o;20956:378::-;-1:-1:-1;;;;;21040:21:0;;21032:65;;;;;-1:-1:-1;;;21032:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21110:49;21139:1;21143:7;21152:6;21110:20;:49::i;:::-;21187:12;;:24;;21204:6;21187:16;:24::i;:::-;21172:12;:39;-1:-1:-1;;;;;21243:18:0;;:9;:18;;;;;;;;;;;:30;;21266:6;21243:22;:30::i;:::-;-1:-1:-1;;;;;21222:18:0;;:9;:18;;;;;;;;;;;:51;;;;21289:37;;;;;;;21222:18;;:9;;21289:37;;;;;;;;;;20956:378;;:::o;24530:91::-;24586:27;24592:12;:10;:12::i;:::-;24606:6;24586:5;:27::i;24940:295::-;25017:26;25046:84;25083:6;25046:84;;;;;;;;;;;;;;;;;:32;25056:7;25065:12;:10;:12::i;25046:84::-;25017:113;;25143:51;25152:7;25161:12;:10;:12::i;:::-;25175:18;25143:8;:51::i;:::-;25205:22;25211:7;25220:6;21667:418;-1:-1:-1;;;;;21751:21:0;;21743:67;;;;-1:-1:-1;;;21743:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21823:49;21844:7;21861:1;21865:6;21823:20;:49::i;:::-;21906:68;21929:6;21906:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21906:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;21885:18:0;;:9;:18;;;;;;;;;;:89;22000:12;;:24;;22017:6;22000:16;:24::i;:::-;21985:12;:39;22040:37;;;;;;;;22066:1;;-1:-1:-1;;;;;22040:37:0;;;;;;;;;;;;21667:418;;:::o;8749:158::-;8807:7;8840:1;8835;:6;;8827:49;;;;;-1:-1:-1;;;8827:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8894:5:0;;;8749:158::o

Swarm Source

ipfs://0a1978a37f9a506c1bad79e7aa50e5e8c8850b1c2fce86b67962a7165039efcd
Loading