FTM Price: $0.704376 (+1.78%)
 

Overview

Max Total Supply

2,067,287.255679477494991602 SCARAB

Holders

5,151 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 FTM

Onchain Market Cap

$14,455.75

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Scarab.Finance is a brand new Tomb finance fork on the Fantom Opera network.

Market

Volume (24H):$1.86
Market Capitalization:$0.00
Circulating Supply:0.00 SCARAB
Market Data Source: Coinmarketcap

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:
Scarab

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at ftmscan.com on 2021-12-17
*/

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/GSN/[email protected]



pragma solidity >=0.6.0 <0.8.0;


// 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 Scarab 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 = 11000 ether;
    // Initial distribution for the day 2-5 SCARAB-WFTM LP -> SCARAB pool
    uint256 public constant INITIAL_TOMB_POOL_DISTRIBUTION = 140000 ether;
    // Distribution for airdrops wallet
    uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 9000 ether;

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

    /* ================= Taxation =============== */
    // Address of the Oracle
    address public tombOracle;
    // Address of the Tax Office
    address public taxOffice;

    // Current tax rate
    uint256 public taxRate;
    // Price threshold below which taxes will get burned
    uint256 public burnThreshold = 1.10e18;
    // Address of the tax collector wallet
    address public taxCollectorAddress;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18];
    uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    event TaxOfficeTransferred(address oldAddress, address newAddress);

    modifier onlyTaxOffice() {
        require(taxOffice == msg.sender, "Caller is not the tax office");
        _;
    }

    modifier onlyOperatorOrTaxOffice() {
        require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office");
        _;
    }

    /**
     * @notice Constructs the SCARAB ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("SCARAB", "SCARAB") {
        // Mints 1 SCARAB to contract creator for initial pool setup
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

        _mint(msg.sender, 1 ether);
        taxRate = _taxRate;
        taxCollectorAddress = _taxCollectorAddress;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers");
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers");
        taxTiersRates[_index] = _value;
        return true;
    }

    function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) {
        burnThreshold = _burnThreshold;
    }

    function _getTombPrice() internal view returns (uint256 _tombPrice) {
        try IOracle(tombOracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Scarab: failed to fetch SCARAB price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _tombPrice) internal returns (uint256){
        if (autoCalculateTax) {
            for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) {
                if (_tombPrice >= taxTiersTwaps[tierId]) {
                    require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%");
                    taxRate = taxTiersRates[tierId];
                    return taxTiersRates[tierId];
                }
            }
        }
    }

    function enableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = false;
    }

    function setTombOracle(address _tombOracle) public onlyOperatorOrTaxOffice {
        require(_tombOracle != address(0), "oracle address cannot be 0 address");
        tombOracle = _tombOracle;
    }

    function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice {
        require(_taxOffice != address(0), "tax office address cannot be 0 address");
        emit TaxOfficeTransferred(taxOffice, _taxOffice);
        taxOffice = _taxOffice;
    }

    function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice {
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");
        taxCollectorAddress = _taxCollectorAddress;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        taxRate = _taxRate;
    }

    function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    /**
     * @notice Operator mints SCARAB to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of SCARAB 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) {
        uint256 currentTaxRate = 0;
        bool burnTax = false;

        if (autoCalculateTax) {
            uint256 currentTombPrice = _getTombPrice();
            currentTaxRate = _updateTaxRate(currentTombPrice);
            if (currentTombPrice < burnThreshold) {
                burnTax = true;
            }
        }


        if (currentTaxRate == 0 || excludedAddresses[sender]) {
            _transfer(sender, recipient, amount);
        } else {
            _transferWithTax(sender, recipient, amount, burnTax);
        }

        _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount,
        bool burnTax
    ) internal returns (bool) {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);

        if(burnTax) {
            // Burn tax
            super.burnFrom(sender, taxAmount);
        } else {
            // Transfer tax to tax collector
            _transfer(sender, taxCollectorAddress, taxAmount);
        }

        // Transfer amount after tax to recipient
        _transfer(sender, recipient, amountAfterTax);

        return true;
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(
        address _genesisPool,
        address _tombPool,
        address _airdropWallet
    ) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_genesisPool != address(0), "!_genesisPool");
        require(_tombPool != address(0), "!_tombPool");
        require(_airdropWallet != address(0), "!_airdropWallet");
        rewardPoolDistributed = true;
        _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION);
        _mint(_tombPool, INITIAL_TOMB_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":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"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":false,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","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_TOMB_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":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"burnThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_tombPool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tombOracle","type":"address"}],"name":"setTombOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tombOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e62000647565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006a2565b503480156200017157600080fd5b506040516200306e3803806200306e833981810160405260408110156200019757600080fd5b50805160209182015160408051808201825260068082526529a1a0a920a160d11b8287018181528451808601909552918452958301959095528051939492939092620001e79160039190620006e6565b508051620001fd906004906020840190620006e6565b50506005805460ff1916601217905550600062000219620003ae565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000279620003ae565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200031c576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003635760405162461bcd60e51b815260040180806020018281038252602e81526020018062003014602e913960400191505060405180910390fd5b6200036e30620003b2565b506200038333670de0b6b3a7640000620004a9565b600991909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000770565b3390565b6000620003be620005b8565b80620003d457506008546001600160a01b031633145b620004115760405162461bcd60e51b815260040180806020018281038252602c81526020018062003042602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff161562000480576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000505576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200051360008383620005e0565b6200052f81600254620005e560201b62001ae51790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200056291839062001ae5620005e5821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005d1620003ae565b6001600160a01b031614905090565b505050565b60008282018381101562000640576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b82805482825590600052602060002090810192821562000690579160200282015b828111156200069057825182906001600160401b031690559160200191906001019062000668565b506200069e92915062000759565b5090565b82805482825590600052602060002090810192821562000690579160200282015b8281111562000690578251829061ffff16905591602001919060010190620006c3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072957805160ff191683800117855562000690565b8280016001018555821562000690579182015b82811115620006905782518255916020019190600101906200073c565b5b808211156200069e57600081556001016200075a565b61289480620007806000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a6431bba116100e9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610834578063f77411031461085a578063ff87fc7c14610862578063ffa8226e1461086a576102bb565b8063dd62ed3e146107d8578063ebca1bd914610806578063ee2a95351461082c576102bb565b8063a6431bba14610733578063a9059cbb1461073b578063b87c5a4a14610767578063c3bdf6131461078d578063c6d69a3014610795578063cf011b26146107b2576102bb565b80638da5cb5b1161013b5780638da5cb5b146106ac57806393995d4b146106b457806395d89b41146106da5780639662676c146106e25780639d6b5f21146106ea578063a457c2d714610707576102bb565b806370a082311461061c578063715018a61461064257806375be5ae11461064a578063771a3a1d1461067057806379cc6790146106785780638d3cc818146106a4576102bb565b806342966c681161022657806354575af4116101df57806354575af41461056d578063570ca735146105a35780635c29908d146105ab57806365bbacd9146105c857806366206ce9146105d057806369356d47146105f6576102bb565b806342966c68146104e357806342c6b4f1146105005780634456eda21461051d5780634e20a02c146105255780634f6d38d01461052d578063521181d514610535576102bb565b8063313ce56711610278578063313ce567146103fd5780633758e6ce1461041b57806339509351146104415780633e5f13d41461046d5780633f07d76a1461049157806340c10f19146104b7576102bb565b806306fdde03146102c0578063095ea7b31461033d5780631017bc361461037d57806318160ddd1461039757806323b872dd1461039f57806329605e77146103d5575b600080fd5b6102c8610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610909565b604080519115158252519081900360200190f35b610385610927565b60408051918252519081900360200190f35b610385610935565b610369600480360360608110156103b557600080fd5b506001600160a01b0381358116916020810135909116906040013561093b565b6103fb600480360360208110156103eb57600080fd5b50356001600160a01b0316610a16565b005b610405610a96565b6040805160ff9092168252519081900360200190f35b6103696004803603602081101561043157600080fd5b50356001600160a01b0316610a9f565b6103696004803603604081101561045757600080fd5b506001600160a01b038135169060200135610b94565b610475610be2565b604080516001600160a01b039092168252519081900360200190f35b6103fb600480360360208110156104a757600080fd5b50356001600160a01b0316610bf1565b610369600480360360408110156104cd57600080fd5b506001600160a01b038135169060200135610cf8565b6103fb600480360360208110156104f957600080fd5b5035610d72565b6103856004803603602081101561051657600080fd5b5035610d7b565b610369610d99565b610385610dbf565b610385610dcd565b6103fb6004803603606081101561054b57600080fd5b506001600160a01b038135811691602081013582169160409091013516610dd3565b6103fb6004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359160409091013516610faf565b610475611080565b610385600480360360208110156105c157600080fd5b503561108f565b6103fb61109c565b610369600480360360408110156105e657600080fd5b5060ff81351690602001356110f8565b6103fb6004803603602081101561060c57600080fd5b50356001600160a01b031661122e565b6103856004803603602081101561063257600080fd5b50356001600160a01b03166112e2565b6103fb6112fd565b6103fb6004803603602081101561066057600080fd5b50356001600160a01b03166113c1565b610385611480565b6103fb6004803603604081101561068e57600080fd5b506001600160a01b038135169060200135611486565b6103696114dd565b6104756114ed565b610369600480360360208110156106ca57600080fd5b50356001600160a01b0316611501565b6102c86115ed565b61036961164e565b6103696004803603602081101561070057600080fd5b503561165e565b6103696004803603604081101561071d57600080fd5b506001600160a01b0381351690602001356116b7565b61038561171f565b6103696004803603604081101561075157600080fd5b506001600160a01b038135169060200135611725565b6103696004803603604081101561077d57600080fd5b5060ff8135169060200135611739565b6104756117e2565b6103fb600480360360208110156107ab57600080fd5b50356117f1565b610369600480360360208110156107c857600080fd5b50356001600160a01b03166118e2565b610385600480360360408110156107ee57600080fd5b506001600160a01b03813581169160200135166118f7565b6103696004803603602081101561081c57600080fd5b50356001600160a01b0316611922565b610385611940565b6103fb6004803603602081101561084a57600080fd5b50356001600160a01b0316611946565b610475611a66565b6103fb611a75565b610385611ad7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505090505b90565b600061091d610916611b46565b8484611b4a565b5060015b92915050565b691da56a4b0835bf80000081565b60025490565b600b5460009081908190600160a01b900460ff161561097c57600061095e611c36565b905061096981611d0a565b9250600a5481101561097a57600191505b505b8115806109a157506001600160a01b0386166000908152600e602052604090205460ff165b156109b6576109b1868686611e18565b6109c4565b6109c286868684611f73565b505b610a0a866109d0611b46565b610a0587604051806060016040528060288152602001612666602891396109fe8c6109f9611b46565b6118f7565b9190611fec565b611b4a565b50600195945050505050565b610a1e611b46565b6001600160a01b0316610a2f6114ed565b6001600160a01b031614610a8a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a9381612083565b50565b60055460ff1690565b6000610aa9610d99565b80610abe57506008546001600160a01b031633145b610af95760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b67576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061091d610ba1611b46565b84610a058560016000610bb2611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ae5565b6008546001600160a01b031681565b610bf9610d99565b80610c0e57506008546001600160a01b031633145b610c495760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b038116610c8e5760405162461bcd60e51b81526004018080602001828103825260268152602001806125f26026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d445760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6000610d4f846112e2565b9050610d5b8484612120565b6000610d66856112e2565b91909111949350505050565b610a9381612210565b600c8181548110610d8857fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610db0611b46565b6001600160a01b031614905090565b6902544faa778090e0000081565b600a5481565b6006546001600160a01b03163314610e1c5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b600654600160a01b900460ff1615610e7b576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610ec6576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610f0e576040805162461bcd60e51b815260206004820152600a6024820152690857dd1bdb58941bdbdb60b21b604482015290519081900360640190fd5b6001600160a01b038116610f5b576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610f82836902544faa778090e00000612120565b610f9682691da56a4b0835bf800000612120565b610faa816901e7e4171bf4d3a00000612120565b505050565b6006546001600160a01b03163314610ff85760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561104f57600080fd5b505af1158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d8857fe5b6008546001600160a01b031633146110e9576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611148576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b61115061171f565b8360ff16106111905760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b60ff8316156111c257600c6001840360ff16815481106111ac57fe5b906000526020600020015482116111c257600080fd5b6111d560016111cf61171f565b90612221565b8360ff16101561120857600c8360010160ff16815481106111f257fe5b9060005260206000200154821061120857600080fd5b81600c8460ff168154811061121957fe5b60009182526020909120015550600192915050565b6008546001600160a01b0316331461127b576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b6001600160a01b0381166112c05760405162461bcd60e51b815260040180806020018281038252602e81526020018061268e602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b611305611b46565b6001600160a01b03166113166114ed565b6001600160a01b031614611371576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6113c9610d99565b806113de57506008546001600160a01b031633145b6114195760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b03811661145e5760405162461bcd60e51b815260040180806020018281038252602281526020018061277f6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60095481565b6006546001600160a01b031633146114cf5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6114d9828261227e565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b600061150b610d99565b8061152057506008546001600160a01b031633145b61155b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166115c8576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146116ae576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600a9190915590565b600061091d6116c4611b46565b84610a058560405180606001604052806025815260200161283a60259139600160006116ee611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fec565b600c5490565b600061091d611732611b46565b8484611e18565b6008546000906001600160a01b03163314611789576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b611791611940565b8360ff16106117d15760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b81600d8460ff168154811061121957fe5b600b546001600160a01b031681565b6008546001600160a01b0316331461183e576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156118875760405162461bcd60e51b81526004018080602001828103825260248152602001806127a16024913960400191505060405180910390fd5b61271081106118dd576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b61194e611b46565b6001600160a01b031661195f6114ed565b6001600160a01b0316146119ba576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166119ff5760405162461bcd60e51b81526004018080602001828103825260268152602001806125646026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6007546001600160a01b031681565b6008546001600160a01b03163314611ac2576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b6901e7e4171bf4d3a0000081565b600082820183811015611b3f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b8f5760405162461bcd60e51b81526004018080602001828103825260248152602001806128166024913960400191505060405180910390fd5b6001600160a01b038216611bd45760405162461bcd60e51b815260040180806020018281038252602281526020018061258a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c8f57600080fd5b505afa925050508015611cb457506040513d6020811015611caf57600080fd5b505160015b611cef5760405162461bcd60e51b815260040180806020018281038252603081526020018061272e6030913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610906565b600b54600090600160a01b900460ff1615610b8f576000611d376001611d2e61171f565b60ff16906122c7565b90505b600c8160ff1681548110611d4a57fe5b90600052602060002001548310611e0f57612710600d8260ff1681548110611d6e57fe5b906000526020600020015410611dcb576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611ddb57fe5b9060005260206000200154600981905550600d8160ff1681548110611dfc57fe5b9060005260206000200154915050610b8f565b60001901611d3a565b6001600160a01b038316611e5d5760405162461bcd60e51b81526004018080602001828103825260258152602001806127c56025913960400191505060405180910390fd5b6001600160a01b038216611ea25760405162461bcd60e51b815260040180806020018281038252602381526020018061251f6023913960400191505060405180910390fd5b611ead838383610faa565b611eea816040518060600160405280602681526020016125cc602691396001600160a01b0386166000908152602081905260409020549190611fec565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f199082611ae5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f97612710611f916009548761230990919063ffffffff16565b90612362565b90506000611fa58583612221565b90508315611fbc57611fb7878361227e565b611fd4565b600b54611fd49088906001600160a01b031684611e18565b611fdf878783611e18565b5060019695505050505050565b6000818484111561207b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612040578181015183820152602001612028565b50505050905090810190601f16801561206d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120c85760405162461bcd60e51b815260040180806020018281038252602d815260200180612618602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661217b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61218760008383610faa565b6002546121949082611ae5565b6002556001600160a01b0382166000908152602081905260409020546121ba9082611ae5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a9361221b611b46565b826123c9565b600082821115612278576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122a9826040518060600160405280602481526020016126bc602491396109fe866109f9611b46565b90506122bd836122b7611b46565b83611b4a565b610faa83836123c9565b6000611b3f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c5565b60008261231857506000610921565b8282028284828161232557fe5b0414611b3f5760405162461bcd60e51b81526004018080602001828103825260218152602001806126456021913960400191505060405180910390fd5b60008082116123b8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123c157fe5b049392505050565b6001600160a01b03821661240e5760405162461bcd60e51b815260040180806020018281038252602181526020018061275e6021913960400191505060405180910390fd5b61241a82600083610faa565b61245781604051806060016040528060228152602001612542602291396001600160a01b0385166000908152602081905260409020549190611fec565b6001600160a01b03831660009081526020819052604090205560025461247d9082612221565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff161115829061207b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204057818101518382015260200161202856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f66207461782074696572735363617261623a206661696c656420746f206665746368205343415241422070726963652066726f6d204f7261636c6545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122019fdb835527c42ee01b10f8149704516f32a6c7456f1b16b16c7a5b260c2155d64736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6ac2b9c0e196b0c7f2f46dac34bb926b0e7a3f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a6431bba116100e9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610834578063f77411031461085a578063ff87fc7c14610862578063ffa8226e1461086a576102bb565b8063dd62ed3e146107d8578063ebca1bd914610806578063ee2a95351461082c576102bb565b8063a6431bba14610733578063a9059cbb1461073b578063b87c5a4a14610767578063c3bdf6131461078d578063c6d69a3014610795578063cf011b26146107b2576102bb565b80638da5cb5b1161013b5780638da5cb5b146106ac57806393995d4b146106b457806395d89b41146106da5780639662676c146106e25780639d6b5f21146106ea578063a457c2d714610707576102bb565b806370a082311461061c578063715018a61461064257806375be5ae11461064a578063771a3a1d1461067057806379cc6790146106785780638d3cc818146106a4576102bb565b806342966c681161022657806354575af4116101df57806354575af41461056d578063570ca735146105a35780635c29908d146105ab57806365bbacd9146105c857806366206ce9146105d057806369356d47146105f6576102bb565b806342966c68146104e357806342c6b4f1146105005780634456eda21461051d5780634e20a02c146105255780634f6d38d01461052d578063521181d514610535576102bb565b8063313ce56711610278578063313ce567146103fd5780633758e6ce1461041b57806339509351146104415780633e5f13d41461046d5780633f07d76a1461049157806340c10f19146104b7576102bb565b806306fdde03146102c0578063095ea7b31461033d5780631017bc361461037d57806318160ddd1461039757806323b872dd1461039f57806329605e77146103d5575b600080fd5b6102c8610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610909565b604080519115158252519081900360200190f35b610385610927565b60408051918252519081900360200190f35b610385610935565b610369600480360360608110156103b557600080fd5b506001600160a01b0381358116916020810135909116906040013561093b565b6103fb600480360360208110156103eb57600080fd5b50356001600160a01b0316610a16565b005b610405610a96565b6040805160ff9092168252519081900360200190f35b6103696004803603602081101561043157600080fd5b50356001600160a01b0316610a9f565b6103696004803603604081101561045757600080fd5b506001600160a01b038135169060200135610b94565b610475610be2565b604080516001600160a01b039092168252519081900360200190f35b6103fb600480360360208110156104a757600080fd5b50356001600160a01b0316610bf1565b610369600480360360408110156104cd57600080fd5b506001600160a01b038135169060200135610cf8565b6103fb600480360360208110156104f957600080fd5b5035610d72565b6103856004803603602081101561051657600080fd5b5035610d7b565b610369610d99565b610385610dbf565b610385610dcd565b6103fb6004803603606081101561054b57600080fd5b506001600160a01b038135811691602081013582169160409091013516610dd3565b6103fb6004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359160409091013516610faf565b610475611080565b610385600480360360208110156105c157600080fd5b503561108f565b6103fb61109c565b610369600480360360408110156105e657600080fd5b5060ff81351690602001356110f8565b6103fb6004803603602081101561060c57600080fd5b50356001600160a01b031661122e565b6103856004803603602081101561063257600080fd5b50356001600160a01b03166112e2565b6103fb6112fd565b6103fb6004803603602081101561066057600080fd5b50356001600160a01b03166113c1565b610385611480565b6103fb6004803603604081101561068e57600080fd5b506001600160a01b038135169060200135611486565b6103696114dd565b6104756114ed565b610369600480360360208110156106ca57600080fd5b50356001600160a01b0316611501565b6102c86115ed565b61036961164e565b6103696004803603602081101561070057600080fd5b503561165e565b6103696004803603604081101561071d57600080fd5b506001600160a01b0381351690602001356116b7565b61038561171f565b6103696004803603604081101561075157600080fd5b506001600160a01b038135169060200135611725565b6103696004803603604081101561077d57600080fd5b5060ff8135169060200135611739565b6104756117e2565b6103fb600480360360208110156107ab57600080fd5b50356117f1565b610369600480360360208110156107c857600080fd5b50356001600160a01b03166118e2565b610385600480360360408110156107ee57600080fd5b506001600160a01b03813581169160200135166118f7565b6103696004803603602081101561081c57600080fd5b50356001600160a01b0316611922565b610385611940565b6103fb6004803603602081101561084a57600080fd5b50356001600160a01b0316611946565b610475611a66565b6103fb611a75565b610385611ad7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505090505b90565b600061091d610916611b46565b8484611b4a565b5060015b92915050565b691da56a4b0835bf80000081565b60025490565b600b5460009081908190600160a01b900460ff161561097c57600061095e611c36565b905061096981611d0a565b9250600a5481101561097a57600191505b505b8115806109a157506001600160a01b0386166000908152600e602052604090205460ff165b156109b6576109b1868686611e18565b6109c4565b6109c286868684611f73565b505b610a0a866109d0611b46565b610a0587604051806060016040528060288152602001612666602891396109fe8c6109f9611b46565b6118f7565b9190611fec565b611b4a565b50600195945050505050565b610a1e611b46565b6001600160a01b0316610a2f6114ed565b6001600160a01b031614610a8a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a9381612083565b50565b60055460ff1690565b6000610aa9610d99565b80610abe57506008546001600160a01b031633145b610af95760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b67576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061091d610ba1611b46565b84610a058560016000610bb2611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ae5565b6008546001600160a01b031681565b610bf9610d99565b80610c0e57506008546001600160a01b031633145b610c495760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b038116610c8e5760405162461bcd60e51b81526004018080602001828103825260268152602001806125f26026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d445760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6000610d4f846112e2565b9050610d5b8484612120565b6000610d66856112e2565b91909111949350505050565b610a9381612210565b600c8181548110610d8857fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610db0611b46565b6001600160a01b031614905090565b6902544faa778090e0000081565b600a5481565b6006546001600160a01b03163314610e1c5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b600654600160a01b900460ff1615610e7b576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610ec6576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610f0e576040805162461bcd60e51b815260206004820152600a6024820152690857dd1bdb58941bdbdb60b21b604482015290519081900360640190fd5b6001600160a01b038116610f5b576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610f82836902544faa778090e00000612120565b610f9682691da56a4b0835bf800000612120565b610faa816901e7e4171bf4d3a00000612120565b505050565b6006546001600160a01b03163314610ff85760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561104f57600080fd5b505af1158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d8857fe5b6008546001600160a01b031633146110e9576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611148576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b61115061171f565b8360ff16106111905760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b60ff8316156111c257600c6001840360ff16815481106111ac57fe5b906000526020600020015482116111c257600080fd5b6111d560016111cf61171f565b90612221565b8360ff16101561120857600c8360010160ff16815481106111f257fe5b9060005260206000200154821061120857600080fd5b81600c8460ff168154811061121957fe5b60009182526020909120015550600192915050565b6008546001600160a01b0316331461127b576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b6001600160a01b0381166112c05760405162461bcd60e51b815260040180806020018281038252602e81526020018061268e602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b611305611b46565b6001600160a01b03166113166114ed565b6001600160a01b031614611371576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6113c9610d99565b806113de57506008546001600160a01b031633145b6114195760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b03811661145e5760405162461bcd60e51b815260040180806020018281038252602281526020018061277f6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60095481565b6006546001600160a01b031633146114cf5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6114d9828261227e565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b600061150b610d99565b8061152057506008546001600160a01b031633145b61155b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ea602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166115c8576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146116ae576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600a9190915590565b600061091d6116c4611b46565b84610a058560405180606001604052806025815260200161283a60259139600160006116ee611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fec565b600c5490565b600061091d611732611b46565b8484611e18565b6008546000906001600160a01b03163314611789576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b611791611940565b8360ff16106117d15760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b81600d8460ff168154811061121957fe5b600b546001600160a01b031681565b6008546001600160a01b0316331461183e576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156118875760405162461bcd60e51b81526004018080602001828103825260248152602001806127a16024913960400191505060405180910390fd5b61271081106118dd576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b61194e611b46565b6001600160a01b031661195f6114ed565b6001600160a01b0316146119ba576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166119ff5760405162461bcd60e51b81526004018080602001828103825260268152602001806125646026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6007546001600160a01b031681565b6008546001600160a01b03163314611ac2576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b6901e7e4171bf4d3a0000081565b600082820183811015611b3f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b8f5760405162461bcd60e51b81526004018080602001828103825260248152602001806128166024913960400191505060405180910390fd5b6001600160a01b038216611bd45760405162461bcd60e51b815260040180806020018281038252602281526020018061258a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c8f57600080fd5b505afa925050508015611cb457506040513d6020811015611caf57600080fd5b505160015b611cef5760405162461bcd60e51b815260040180806020018281038252603081526020018061272e6030913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610906565b600b54600090600160a01b900460ff1615610b8f576000611d376001611d2e61171f565b60ff16906122c7565b90505b600c8160ff1681548110611d4a57fe5b90600052602060002001548310611e0f57612710600d8260ff1681548110611d6e57fe5b906000526020600020015410611dcb576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611ddb57fe5b9060005260206000200154600981905550600d8160ff1681548110611dfc57fe5b9060005260206000200154915050610b8f565b60001901611d3a565b6001600160a01b038316611e5d5760405162461bcd60e51b81526004018080602001828103825260258152602001806127c56025913960400191505060405180910390fd5b6001600160a01b038216611ea25760405162461bcd60e51b815260040180806020018281038252602381526020018061251f6023913960400191505060405180910390fd5b611ead838383610faa565b611eea816040518060600160405280602681526020016125cc602691396001600160a01b0386166000908152602081905260409020549190611fec565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f199082611ae5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f97612710611f916009548761230990919063ffffffff16565b90612362565b90506000611fa58583612221565b90508315611fbc57611fb7878361227e565b611fd4565b600b54611fd49088906001600160a01b031684611e18565b611fdf878783611e18565b5060019695505050505050565b6000818484111561207b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612040578181015183820152602001612028565b50505050905090810190601f16801561206d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120c85760405162461bcd60e51b815260040180806020018281038252602d815260200180612618602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661217b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61218760008383610faa565b6002546121949082611ae5565b6002556001600160a01b0382166000908152602081905260409020546121ba9082611ae5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a9361221b611b46565b826123c9565b600082821115612278576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122a9826040518060600160405280602481526020016126bc602491396109fe866109f9611b46565b90506122bd836122b7611b46565b83611b4a565b610faa83836123c9565b6000611b3f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c5565b60008261231857506000610921565b8282028284828161232557fe5b0414611b3f5760405162461bcd60e51b81526004018080602001828103825260218152602001806126456021913960400191505060405180910390fd5b60008082116123b8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123c157fe5b049392505050565b6001600160a01b03821661240e5760405162461bcd60e51b815260040180806020018281038252602181526020018061275e6021913960400191505060405180910390fd5b61241a82600083610faa565b61245781604051806060016040528060228152602001612542602291396001600160a01b0385166000908152602081905260409020549190611fec565b6001600160a01b03831660009081526020819052604090205560025461247d9082612221565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff161115829061207b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204057818101518382015260200161202856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f66207461782074696572735363617261623a206661696c656420746f206665746368205343415241422070726963652066726f6d204f7261636c6545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122019fdb835527c42ee01b10f8149704516f32a6c7456f1b16b16c7a5b260c2155d64736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c6ac2b9c0e196b0c7f2f46dac34bb926b0e7a3f

-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0x2c6aC2b9c0e196B0c7f2f46dAC34Bb926b0e7a3F

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000002c6ac2b9c0e196b0c7f2f46dac34bb926b0e7a3f


Deployed Bytecode Sourcemap

33560:9663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15543:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15543:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33891:69;;;:::i;:::-;;;;;;;;;;;;;;;;14496:108;;;:::i;40788:852::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40788:852:0;;;;;;;;;;;;;;;;;:::i;32839:115::-;;;;;;;;;;;;;;;;-1:-1:-1;32839:115:0;-1:-1:-1;;;;;32839:115:0;;:::i;:::-;;14340:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39538:240;;;;;;;;;;;;;;;;-1:-1:-1;39538:240:0;-1:-1:-1;;;;;39538:240:0;;:::i;16924:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16924:218:0;;;;;;;;:::i;34344:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34344:24:0;;;;;;;;;;;;;;38767:259;;;;;;;;;;;;;;;;-1:-1:-1;38767:259:0;-1:-1:-1;;;;;38767:259:0;;:::i;40261:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40261:290:0;;;;;;;;:::i;40559:83::-;;;;;;;;;;;;;;;;-1:-1:-1;40559:83:0;;:::i;34735:134::-;;;;;;;;;;;;;;;;-1:-1:-1;34735:134:0;;:::i;32731:100::-;;;:::i;33738:71::-;;;:::i;34489:38::-;;;:::i;42381:644::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42381:644:0;;;;;;;;;;;;;;;;;;;:::i;43033:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43033:187:0;;;;;;;;;;;;;;;;;:::i;32503:85::-;;;:::i;34876:113::-;;;;;;;;;;;;;;;;-1:-1:-1;34876:113:0;;:::i;38451:99::-;;;:::i;36487:545::-;;;;;;;;;;;;;;;;-1:-1:-1;36487:545:0;;;;;;;;;:::i;39034:248::-;;;;;;;;;;;;;;;;-1:-1:-1;39034:248:0;-1:-1:-1;;;;;39034:248:0;;:::i;14667:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14667:127:0;-1:-1:-1;;;;;14667:127:0;;:::i;31566:148::-;;;:::i;38558:201::-;;;;;;;;;;;;;;;;-1:-1:-1;38558:201:0;-1:-1:-1;;;;;38558:201:0;;:::i;34402:22::-;;;:::i;40650:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40650:130:0;;;;;;;;:::i;34680:28::-;;;:::i;30915:87::-;;;:::i;39786:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39786:240:0;-1:-1:-1;;;;;39786:240:0;;:::i;13607:95::-;;;:::i;34144:41::-;;;:::i;37372:135::-;;;;;;;;;;;;;;;;-1:-1:-1;37372:135:0;;:::i;17645:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17645:269:0;;;;;;;;:::i;36108:115::-;;;:::i;15007:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15007:175:0;;;;;;;;:::i;37040:324::-;;;;;;;;;;;;;;;;-1:-1:-1;37040:324:0;;;;;;;;;:::i;34578:34::-;;;:::i;39290:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39290:240:0;;:::i;35041:49::-;;;;;;;;;;;;;;;;-1:-1:-1;35041:49:0;-1:-1:-1;;;;;35041:49:0;;:::i;15245:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15245:151:0;;;;;;;;;;:::i;36354:125::-;;;;;;;;;;;;;;;;-1:-1:-1;36354:125:0;-1:-1:-1;;;;;36354:125:0;;:::i;36231:115::-;;;:::i;31869:244::-;;;;;;;;;;;;;;;;-1:-1:-1;31869:244:0;-1:-1:-1;;;;;31869:244:0;;:::i;34278:25::-;;;:::i;38346:97::-;;;:::i;34008:72::-;;;:::i;13397:91::-;13475:5;13468:12;;;;;;;;-1:-1:-1;;13468:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13442:13;;13468:12;;13475:5;;13468:12;;13475:5;13468:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:91;;:::o;15543:169::-;15626:4;15643:39;15652:12;:10;:12::i;:::-;15666:7;15675:6;15643:8;:39::i;:::-;-1:-1:-1;15700:4:0;15543:169;;;;;:::o;33891:69::-;33948:12;33891:69;:::o;14496:108::-;14584:12;;14496:108;:::o;40788:852::-;41011:16;;40920:4;;;;;;-1:-1:-1;;;41011:16:0;;;;41007:256;;;41044:24;41071:15;:13;:15::i;:::-;41044:42;;41118:32;41133:16;41118:14;:32::i;:::-;41101:49;;41188:13;;41169:16;:32;41165:87;;;41232:4;41222:14;;41165:87;41007:256;;41281:19;;;:48;;-1:-1:-1;;;;;;41304:25:0;;;;;;:17;:25;;;;;;;;41281:48;41277:202;;;41346:36;41356:6;41364:9;41375:6;41346:9;:36::i;:::-;41277:202;;;41415:52;41432:6;41440:9;41451:6;41459:7;41415:16;:52::i;:::-;;41277:202;41491:119;41500:6;41508:12;:10;:12::i;:::-;41522:87;41558:6;41522:87;;;;;;;;;;;;;;;;;:31;41532:6;41540:12;:10;:12::i;:::-;41522:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;41491:8;:119::i;:::-;-1:-1:-1;41628:4:0;;40788:852;-1:-1:-1;;;;;40788:852:0:o;32839:115::-;31146:12;:10;:12::i;:::-;-1:-1:-1;;;;;31135:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31135:23:0;;31127:68;;;;;-1:-1:-1;;;31127:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32915:31:::1;32933:12;32915:17;:31::i;:::-;32839:115:::0;:::o;14340:91::-;14414:9;;;;14340:91;:::o;39538:240::-;39620:4;35356:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35372:9:0;;-1:-1:-1;;;;;35372:9:0;35385:10;35372:23;35356:39;35348:96;;;;-1:-1:-1;;;35348:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39646:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39645:28;39637:66;;;::::0;;-1:-1:-1;;;39637:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39714:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;39714:34:0::1;39744:4;39714:34:::0;;::::1;::::0;;;35455:1:::1;39538:240:::0;;;:::o;16924:218::-;17012:4;17029:83;17038:12;:10;:12::i;:::-;17052:7;17061:50;17100:10;17061:11;:25;17073:12;:10;:12::i;:::-;-1:-1:-1;;;;;17061:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17061:25:0;;;:34;;;;;;;;;;;:38;:50::i;34344:24::-;;;-1:-1:-1;;;;;34344:24:0;;:::o;38767:259::-;35356:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35372:9:0;;-1:-1:-1;;;;;35372:9:0;35385:10;35372:23;35356:39;35348:96;;;;-1:-1:-1;;;35348:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38859:24:0;::::1;38851:75;;;;-1:-1:-1::0;;;38851:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38963:9;::::0;38942:43:::1;::::0;;-1:-1:-1;;;;;38963:9:0;;::::1;38942:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;38996:9;:22:::0;;-1:-1:-1;;;;;;38996:22:0::1;-1:-1:-1::0;;;;;38996:22:0;;;::::1;::::0;;;::::1;::::0;;38767:259::o;40261:290::-;32639:9;;40341:4;;-1:-1:-1;;;;;32639:9:0;32652:10;32639:23;32631:72;;;;-1:-1:-1;;;32631:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40358:21:::1;40382;40392:10;40382:9;:21::i;:::-;40358:45;;40414:26;40420:10;40432:7;40414:5;:26::i;:::-;40451:20;40474:21;40484:10;40474:9;:21::i;:::-;40515:28:::0;;;::::1;::::0;40261:290;-1:-1:-1;;;;40261:290:0:o;40559:83::-;40616:18;40627:6;40616:10;:18::i;34735:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34735:134:0;:::o;32731:100::-;32814:9;;32774:4;;-1:-1:-1;;;;;32814:9:0;32798:12;:10;:12::i;:::-;-1:-1:-1;;;;;32798:25:0;;32791:32;;32731:100;:::o;33738:71::-;33798:11;33738:71;:::o;34489:38::-;;;;:::o;42381:644::-;32639:9;;-1:-1:-1;;;;;32639:9:0;32652:10;32639:23;32631:72;;;;-1:-1:-1;;;32631:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42548:21:::1;::::0;-1:-1:-1;;;42548:21:0;::::1;;;42547:22;42539:59;;;::::0;;-1:-1:-1;;;42539:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42617:26:0;::::1;42609:52;;;::::0;;-1:-1:-1;;;42609:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42609:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42680:23:0;::::1;42672:46;;;::::0;;-1:-1:-1;;;42672:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42672:46:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42737:28:0;::::1;42729:56;;;::::0;;-1:-1:-1;;;42729:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42729:56:0;;;;;;;;;;;;;::::1;;42796:21;:28:::0;;-1:-1:-1;;;;42796:28:0::1;-1:-1:-1::0;;;42796:28:0::1;::::0;;42835:54:::1;42841:12:::0;33798:11:::1;42835:5;:54::i;:::-;42900:48;42906:9;33948:12;42900:5;:48::i;:::-;42959:58;42965:14;34070:10;42959:5;:58::i;:::-;42381:644:::0;;;:::o;43033:187::-;32639:9;;-1:-1:-1;;;;;32639:9:0;32652:10;32639:23;32631:72;;;;-1:-1:-1;;;32631:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43183:6:::1;-1:-1:-1::0;;;;;43183:15:0::1;;43199:3;43204:7;43183:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;43183:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;43033:187:0:o;32503:85::-;32571:9;;-1:-1:-1;;;;;32571:9:0;32503:85;:::o;34876:113::-;;;;;;;;;;38451:99;35218:9;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;38518:16:::1;:24:::0;;-1:-1:-1;;;;38518:24:0::1;::::0;;38451:99::o;36487:545::-;35218:9;;36572:4;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;36670:23:::1;:21;:23::i;:::-;36661:6;:32;;;36653:87;;;;-1:-1:-1::0;;;36653:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36755:10;::::0;::::1;::::0;36751:86:::1;;36799:13;36822:1;36813:6;:10;36799:25;;;;;;;;;;;;;;;;;;36790:6;:34;36782:43;;;::::0;::::1;;36860:30;36888:1;36860:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;36851:6;:39;;;36847:115;;;36924:13;36938:6;36947:1;36938:10;36924:25;;;;;;;;;;;;;;;;;;36915:6;:34;36907:43;;;::::0;::::1;;36996:6;36972:13;36986:6;36972:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;37020:4:0::1;36487:545:::0;;;;:::o;39034:248::-;35218:9;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39136:34:0;::::1;39128:93;;;;-1:-1:-1::0;;;39128:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39232:19;:42:::0;;-1:-1:-1;;;;;;39232:42:0::1;-1:-1:-1::0;;;;;39232:42:0;;;::::1;::::0;;;::::1;::::0;;39034:248::o;14667:127::-;-1:-1:-1;;;;;14768:18:0;14741:7;14768:18;;;;;;;;;;;;14667:127::o;31566:148::-;31146:12;:10;:12::i;:::-;-1:-1:-1;;;;;31135:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31135:23:0;;31127:68;;;;;-1:-1:-1;;;31127:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:6:::1;::::0;31636:40:::1;::::0;31673:1:::1;::::0;31657:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31657:6:0::1;::::0;31636:40:::1;::::0;31673:1;;31636:40:::1;31687:6;:19:::0;;-1:-1:-1;;;;;;31687:19:0::1;::::0;;31566:148::o;38558:201::-;35356:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35372:9:0;;-1:-1:-1;;;;;35372:9:0;35385:10;35372:23;35356:39;35348:96;;;;-1:-1:-1;;;35348:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38652:25:0;::::1;38644:72;;;;-1:-1:-1::0;;;38644:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38727:10;:24:::0;;-1:-1:-1;;;;;;38727:24:0::1;-1:-1:-1::0;;;;;38727:24:0;;;::::1;::::0;;;::::1;::::0;;38558:201::o;34402:22::-;;;;:::o;40650:130::-;32639:9;;-1:-1:-1;;;;;32639:9:0;32652:10;32639:23;32631:72;;;;-1:-1:-1;;;32631:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40741:31:::1;40756:7;40765:6;40741:14;:31::i;:::-;40650:130:::0;;:::o;34680:28::-;;;-1:-1:-1;;;34680:28:0;;;;;:::o;30915:87::-;30988:6;;;;;-1:-1:-1;;;;;30988:6:0;;30915:87::o;39786:240::-;39868:4;35356:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35372:9:0;;-1:-1:-1;;;;;35372:9:0;35385:10;35372:23;35356:39;35348:96;;;;-1:-1:-1;;;35348:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39893:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39885:65;;;::::0;;-1:-1:-1;;;39885:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39961:27:0::1;39991:5;39961:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;39961:35:0::1;::::0;;-1:-1:-1;;39786:240:0:o;13607:95::-;13687:7;13680:14;;;;;;;;-1:-1:-1;;13680:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13654:13;;13680:14;;13687:7;;13680:14;;13687:7;13680:14;;;;;;;;;;;;;;;;;;;;;;;;34144:41;;;-1:-1:-1;;;34144:41:0;;;;;:::o;37372:135::-;35218:9;;37452:4;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;37469:13:::1;:30:::0;;;;37372:135;:::o;17645:269::-;17738:4;17755:129;17764:12;:10;:12::i;:::-;17778:7;17787:96;17826:15;17787:96;;;;;;;;;;;;;;;;;:11;:25;17799:12;:10;:12::i;:::-;-1:-1:-1;;;;;17787:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17787:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;36108:115::-;36195:13;:20;36108:115;:::o;15007:175::-;15093:4;15110:42;15120:12;:10;:12::i;:::-;15134:9;15145:6;15110:9;:42::i;37040:324::-;35218:9;;37125:4;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;37223:23:::1;:21;:23::i;:::-;37214:6;:32;;;37206:87;;;;-1:-1:-1::0;;;37206:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37328:6;37304:13;37318:6;37304:21;;;;;;;;;34578:34:::0;;;-1:-1:-1;;;;;34578:34:0;;:::o;39290:240::-;35218:9;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;39369:16:::1;::::0;-1:-1:-1;;;39369:16:0;::::1;;;39368:17;39360:66;;;;-1:-1:-1::0;;;39360:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39456:5;39445:8;:16;39437:56;;;::::0;;-1:-1:-1;;;39437:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39504:7;:18:::0;39290:240::o;35041:49::-;;;;;;;;;;;;;;;:::o;15245:151::-;-1:-1:-1;;;;;15361:18:0;;;15334:7;15361:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15245:151::o;36354:125::-;-1:-1:-1;;;;;36444:27:0;36420:4;36444:27;;;:17;:27;;;;;;;;;36354:125::o;36231:115::-;36318:13;:20;36231:115;:::o;31869:244::-;31146:12;:10;:12::i;:::-;-1:-1:-1;;;;;31135:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31135:23:0;;31127:68;;;;;-1:-1:-1;;;31127:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31958:22:0;::::1;31950:73;;;;-1:-1:-1::0;;;31950:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32060:6;::::0;32039:38:::1;::::0;-1:-1:-1;;;;;32039:38:0;;::::1;::::0;32060:6:::1;::::0;::::1;;::::0;32039:38:::1;::::0;;;::::1;32088:6;:17:::0;;-1:-1:-1;;;;;32088:17:0;;::::1;;;-1:-1:-1::0;;;;;;32088:17:0;;::::1;::::0;;;::::1;::::0;;31869:244::o;34278:25::-;;;-1:-1:-1;;;;;34278:25:0;;:::o;38346:97::-;35218:9;;-1:-1:-1;;;;;35218:9:0;35231:10;35218:23;35210:64;;;;;-1:-1:-1;;;35210:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35210:64:0;;;;;;;;;;;;;;;38412:16:::1;:23:::0;;-1:-1:-1;;;;38412:23:0::1;-1:-1:-1::0;;;38412:23:0::1;::::0;;38346:97::o;34008:72::-;34070:10;34008:72;:::o;6556:179::-;6614:7;6646:5;;;6670:6;;;;6662:46;;;;;-1:-1:-1;;;6662:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6726:1;6556:179;-1:-1:-1;;;6556:179:0:o;578:106::-;666:10;578:106;:::o;20792:346::-;-1:-1:-1;;;;;20894:19:0;;20886:68;;;;-1:-1:-1;;;20886:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20973:21:0;;20965:68;;;;-1:-1:-1;;;20965:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21046:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21098:32;;;;;;;;;;;;;;;;;20792:346;;;:::o;37515:305::-;37606:10;;37598:48;;;-1:-1:-1;;;37598:48:0;;37634:4;37598:48;;;;37641:4;37598:48;;;;;;37563:18;;-1:-1:-1;;;;;37606:10:0;;37598:27;;:48;;;;;;;;;;;;;;37606:10;37598:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37598:48:0;;;37594:219;;37743:58;;-1:-1:-1;;;37743:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37594:219;37694:15;;;-1:-1:-1;37687:22:0;;37828:510;37913:16;;37890:7;;-1:-1:-1;;;37913:16:0;;;;37909:422;;;37951:12;37966:37;38001:1;37972:23;:21;:23::i;:::-;37966:34;;;;:37::i;:::-;37951:52;;37946:374;38065:13;38079:6;38065:21;;;;;;;;;;;;;;;;;;38051:10;:35;38047:258;;38143:5;38119:13;38133:6;38119:21;;;;;;;;;;;;;;;;;;:29;38111:69;;;;;-1:-1:-1;;;38111:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38213:13;38227:6;38213:21;;;;;;;;;;;;;;;;;;38203:7;:31;;;;38264:13;38278:6;38264:21;;;;;;;;;;;;;;;;;;38257:28;;;;;38047:258;-1:-1:-1;;38018:8:0;37946:374;;18404:539;-1:-1:-1;;;;;18510:20:0;;18502:70;;;;-1:-1:-1;;;18502:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18591:23:0;;18583:71;;;;-1:-1:-1;;;18583:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18667:47;18688:6;18696:9;18707:6;18667:20;:47::i;:::-;18747:71;18769:6;18747:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18747:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18727:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18852:20;;;;;;;:32;;18877:6;18852:24;:32::i;:::-;-1:-1:-1;;;;;18829:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18900:35;;;;;;;18829:20;;18900:35;;;;;;;;;;;;;18404:539;;;:::o;41648:653::-;41800:4;41817:17;41837:30;41861:5;41837:19;41848:7;;41837:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;41817:50;-1:-1:-1;41878:22:0;41903:21;:6;41817:50;41903:10;:21::i;:::-;41878:46;;41940:7;41937:225;;;41989:33;42004:6;42012:9;41989:14;:33::i;:::-;41937:225;;;42119:19;;42101:49;;42111:6;;-1:-1:-1;;;;;42119:19:0;42140:9;42101;:49::i;:::-;42225:44;42235:6;42243:9;42254:14;42225:9;:44::i;:::-;-1:-1:-1;42289:4:0;;41648:653;-1:-1:-1;;;;;;41648:653:0:o;9383:166::-;9469:7;9505:12;9497:6;;;;9489:29;;;;-1:-1:-1;;;9489:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9536:5:0;;;9383:166::o;32962:257::-;-1:-1:-1;;;;;33039:26:0;;33031:84;;;;-1:-1:-1;;;33031:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33131:45;;-1:-1:-1;;;;;33131:45:0;;;33159:1;;33131:45;;33159:1;;33131:45;33187:9;:24;;-1:-1:-1;;;;;;33187:24:0;-1:-1:-1;;;;;33187:24:0;;;;;;;;;;32962:257::o;19225:378::-;-1:-1:-1;;;;;19309:21:0;;19301:65;;;;;-1:-1:-1;;;19301:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19379:49;19408:1;19412:7;19421:6;19379:20;:49::i;:::-;19456:12;;:24;;19473:6;19456:16;:24::i;:::-;19441:12;:39;-1:-1:-1;;;;;19512:18:0;;:9;:18;;;;;;;;;;;:30;;19535:6;19512:22;:30::i;:::-;-1:-1:-1;;;;;19491:18:0;;:9;:18;;;;;;;;;;;:51;;;;19558:37;;;;;;;19491:18;;:9;;19558:37;;;;;;;;;;19225:378;;:::o;22799:91::-;22855:27;22861:12;:10;:12::i;:::-;22875:6;22855:5;:27::i;7018:158::-;7076:7;7109:1;7104;:6;;7096:49;;;;;-1:-1:-1;;;7096:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7163:5:0;;;7018:158::o;23209:295::-;23286:26;23315:84;23352:6;23315:84;;;;;;;;;;;;;;;;;:32;23325:7;23334:12;:10;:12::i;23315:84::-;23286:113;;23412:51;23421:7;23430:12;:10;:12::i;:::-;23444:18;23412:8;:51::i;:::-;23474:22;23480:7;23489:6;23474:5;:22::i;25749:130::-;25803:5;25828:43;25832:1;25835;25828:43;;;;;;;;;;;;;;;;;:3;:43::i;7435:220::-;7493:7;7517:6;7513:20;;-1:-1:-1;7532:1:0;7525:8;;7513:20;7556:5;;;7560:1;7556;:5;:1;7580:5;;;;;:10;7572:56;;;;-1:-1:-1;;;7572:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8133:153;8191:7;8223:1;8219;:5;8211:44;;;;;-1:-1:-1;;;8211:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8277:1;8273;:5;;;;;;;8133:153;-1:-1:-1;;;8133:153:0:o;19936:418::-;-1:-1:-1;;;;;20020:21:0;;20012:67;;;;-1:-1:-1;;;20012:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20092:49;20113:7;20130:1;20134:6;20092:20;:49::i;:::-;20175:68;20198:6;20175:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20175:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20154:18:0;;:9;:18;;;;;;;;;;:89;20269:12;;:24;;20286:6;20269:16;:24::i;:::-;20254:12;:39;20309:37;;;;;;;;20335:1;;-1:-1:-1;;;;;20309:37:0;;;;;;;;;;;;19936:418;;:::o;26182:184::-;26264:5;26295:1;26290:6;;:1;:6;;;;26298:12;26282:29;;;;;-1:-1:-1;;;26282:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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