ETH Price: $3,455.30 (-0.92%)
Gas: 2 Gwei

Token

DEA (DEA)
 

Overview

Max Total Supply

166,662.271676502725361452 DEA

Holders

1,976 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.295325152442796808 DEA

Value
$0.00
0x8edaf13697bcc248a428df216b42610f9af5df54
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DEA token contract has migrated to 0xde5ed76e7c05ec5e4572cfc88d1acea165109e44.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DEAToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2020-10-12
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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, 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) {
        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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 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(uint256 a, uint256 b) internal pure returns (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 0;
        }

        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.6.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/GSN/Context.sol



pragma solidity ^0.6.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: browser/ERC20.sol



pragma solidity ^0.6.2;




/**
 * @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 returns (string memory) {
        return _name;
    }

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public virtual view override returns (uint256) {//added virtual
        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);
    }

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

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

    /**
     * @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 {
        _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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/EnumerableSet.sol



pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControl.sol



pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: browser/DEAToken.sol

//Be name khoda

pragma solidity ^0.6.12;



contract DEAToken is ERC20, AccessControl{

    using SafeMath for uint256;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE");

    uint256 public rebaseMultiplier = 1e18;
    uint256 public scale = 1e18;

    event Rebase(uint256 oldCoefficient, uint256 newCoefficient);

    constructor() public ERC20("DEA", "DEA") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);	
        _mint(msg.sender, 166670e18);
    }

    function mint(address to, uint256 amount) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        _mint(to, amount.mul(scale).div(rebaseMultiplier));
    }

    function burn(address from, uint256 amount) public {
        require(hasRole(BURNER_ROLE, msg.sender), "Caller is not a burner");
        _burn(from, amount.mul(scale).div(rebaseMultiplier));
    }

    function rebase(uint256 _rebaseMultiplier) public {
        require(hasRole(REBASER_ROLE, msg.sender), "Caller is not a rebaser");
        emit Rebase(rebaseMultiplier, _rebaseMultiplier);
        rebaseMultiplier = _rebaseMultiplier;
    }


    function totalSupply() public view override returns (uint256){
        return super.totalSupply().mul(rebaseMultiplier).div(scale);
    }
    function balanceOf(address account) public view override returns (uint256){
        return super.balanceOf(account).mul(rebaseMultiplier).div(scale);
    }


    function allowance(address owner, address spender) public view override returns (uint256){
        return super.allowance(owner, spender);
    }
    function approve(address spender, uint256 amount) public override returns (bool){
        return super.approve(spender, amount);
    }
    function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }
    function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        return super.transfer(recipient, amount.mul(scale).div(rebaseMultiplier));
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override {
        emit Transfer(from, to, value.mul(rebaseMultiplier).div(scale));
    }
}

//Dar panah khoda

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldCoefficient","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCoefficient","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rebaseMultiplier","type":"uint256"}],"name":"rebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rebaseMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052670de0b6b3a7640000600755670de0b6b3a76400006008553480156200002957600080fd5b506040518060400160405280600381526020017f44454100000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f44454100000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ae929190620006fd565b508060049080519060200190620000c7929190620006fd565b506012600560006101000a81548160ff021916908360ff1602179055505050620000fb6000801b336200011d60201b60201c565b620001173369234b32e4d87e737800006200013360201b60201c565b620007a3565b6200012f8282620002ab60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620001eb600083836200034f60201b60201c565b6200020781600254620003ef60201b620011d11790919060201c565b60028190555062000265816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003ef60201b620011d11790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b620002da81600660008581526020019081526020016000206000016200047860201b620012591790919060201c565b156200034b57620002f0620004b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003d5600854620003c160075487620004b860201b620012891790919060201c565b6200054360201b6200130f1790919060201c565b6040518082815260200191505060405180910390a3505050565b6000808284019050838110156200046e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000620004a8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200059560201b60201c565b905092915050565b600033905090565b600080831415620004cd57600090506200053d565b6000828402905082848281620004df57fe5b041462000538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062002d2e6021913960400191505060405180910390fd5b809150505b92915050565b60006200058d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200060f60201b60201c565b905092915050565b6000620005a98383620006da60201b60201c565b6200060457826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000609565b600090505b92915050565b60008083118290620006bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200068357808201518184015260208101905062000666565b50505050905090810190601f168015620006b15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581620006cc57fe5b049050809150509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074057805160ff191683800117855562000771565b8280016001018555821562000771579182015b828111156200077057825182559160200191906001019062000753565b5b50905062000780919062000784565b5090565b5b808211156200079f57600081600090555060010162000785565b5090565b61257b80620007b36000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80639010d07c116100f9578063ad32e84c11610097578063d539139311610071578063d539139314610887578063d547741f146108a5578063dd62ed3e146108f3578063f51e181a1461096b576101a9565b8063ad32e84c146107f9578063bc4f2d6d14610817578063ca15c87314610845576101a9565b80639dc29fac116100d35780639dc29fac146106c5578063a217fddf14610713578063a457c2d714610731578063a9059cbb14610795576101a9565b80639010d07c1461057c57806391d14854146105de57806395d89b4114610642576101a9565b80632f2ff15d116101665780633950935111610140578063395093511461045457806340c10f19146104b857806370a082311461050657806383eb70e51461055e576101a9565b80632f2ff15d14610397578063313ce567146103e557806336568abe14610406576101a9565b806306fdde03146101ae578063095ea7b31461023157806318160ddd1461029557806323b872dd146102b3578063248a9ca314610337578063282c51f314610379575b600080fd5b6101b6610989565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2b565b60405180821515815260200191505060405180910390f35b61029d610a3f565b6040518082815260200191505060405180910390f35b61031f600480360360608110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a76565b60405180821515815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b8101908080359060200190929190505050610b04565b6040518082815260200191505060405180910390f35b610381610b24565b6040518082815260200191505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b48565b005b6103ed610bd2565b604051808260ff16815260200191505060405180910390f35b6104526004803603604081101561041c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610be9565b005b6104a06004803603604081101561046a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c82565b60405180821515815260200191505060405180910390f35b610504600480360360408110156104ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c96565b005b6105486004803603602081101561051c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d68565b6040518082815260200191505060405180910390f35b610566610da2565b6040518082815260200191505060405180910390f35b6105b26004803603604081101561059257600080fd5b810190808035906020019092919080359060200190929190505050610dc6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61062a600480360360408110156105f457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df8565b60405180821515815260200191505060405180910390f35b61064a610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561068a57808201518184015260208101905061066f565b50505050905090810190601f1680156106b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610711600480360360408110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b005b61071b610f9e565b6040518082815260200191505060405180910390f35b61077d6004803603604081101561074757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b6107e1600480360360408110156107ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb9565b60405180821515815260200191505060405180910390f35b610801610ff5565b6040518082815260200191505060405180910390f35b6108436004803603602081101561082d57600080fd5b8101908080359060200190929190505050610ffb565b005b6108716004803603602081101561085b57600080fd5b81019080803590602001909291905050506110e2565b6040518082815260200191505060405180910390f35b61088f611109565b6040518082815260200191505060405180910390f35b6108f1600480360360408110156108bb57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061112d565b005b6109556004803603604081101561090957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111b7565b6040518082815260200191505060405180910390f35b6109736111cb565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a378383611359565b905092915050565b6000610a71600854610a63600754610a55611377565b61128990919063ffffffff16565b61130f90919063ffffffff16565b905090565b6000610aab8484610aa6600754610a986008548861128990919063ffffffff16565b61130f90919063ffffffff16565b611381565b610af984610ab76115dd565b610af48560405180606001604052806028815260200161246060289139610ae58a610ae06115dd565b6111b7565b6115e59092919063ffffffff16565b6116a5565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610b6f6006600084815260200190815260200160002060020154610b6a6115dd565b610df8565b610bc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612376602f913960400191505060405180910390fd5b610bce828261189c565b5050565b6000600560009054906101000a900460ff16905090565b610bf16115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612517602f913960400191505060405180910390fd5b610c7e8282611930565b5050565b6000610c8e83836119c4565b905092915050565b610cc07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610df8565b610d32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610d6482610d5f600754610d516008548661128990919063ffffffff16565b61130f90919063ffffffff16565b611a77565b5050565b6000610d9b600854610d8d600754610d7f86611bd8565b61128990919063ffffffff16565b61130f90919063ffffffff16565b9050919050565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000610df08260066000868152602001908152602001600020600001611c2090919063ffffffff16565b905092915050565b6000610e228260066000868152602001908152602001600020600001611c3a90919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b610ef67f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610df8565b610f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206275726e65720000000000000000000081525060200191505060405180910390fd5b610f9a82610f95600754610f876008548661128990919063ffffffff16565b61130f90919063ffffffff16565b611c6a565b5050565b6000801b81565b6000610fb18383611dc8565b905092915050565b6000610fed83610fe8600754610fda6008548761128990919063ffffffff16565b61130f90919063ffffffff16565b611e95565b905092915050565b60075481565b6110257f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610df8565b611097576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f742061207265626173657200000000000000000081525060200191505060405180910390fd5b7f11c6bf55864ff83827df712625d7a80e5583eef0264921025e7cd22003a2151160075482604051808381526020018281526020019250505060405180910390a18060078190555050565b600061110260066000848152602001908152602001600020600001611eb3565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611154600660008481526020019081526020016000206002015461114f6115dd565b610df8565b6111a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061240f6030913960400191505060405180910390fd5b6111b38282611930565b5050565b60006111c38383611ec8565b905092915050565b60085481565b60008082840190508381101561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611281836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611f4f565b905092915050565b60008083141561129c5760009050611309565b60008284029050828482816112ad57fe5b0414611304576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061243f6021913960400191505060405180910390fd5b809150505b92915050565b600061135183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fbf565b905092915050565b600061136d6113666115dd565b84846116a5565b6001905092915050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806124a96025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806123536023913960400191505060405180910390fd5b611498838383612085565b611503816040518060600160405280602681526020016123e9602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611596816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600033905090565b6000838311158290611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561165757808201518184015260208101905061163c565b50505050905090810190601f1680156116845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806124ce6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123c76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6118c4816006600085815260200190815260200160002060000161125990919063ffffffff16565b1561192c576118d16115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611958816006600085815260200190815260200160002060000161211790919063ffffffff16565b156119c0576119656115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611a6d6119d16115dd565b84611a6885600160006119e26115dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6116a5565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611b2660008383612085565b611b3b816002546111d190919063ffffffff16565b600281905550611b92816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611c2f8360000183612147565b60001c905092915050565b6000611c62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121ca565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806124886021913960400191505060405180910390fd5b611cfc82600083612085565b611d67816040518060600160405280602281526020016123a5602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dbe816002546121ed90919063ffffffff16565b6002819055505050565b6000611e8b611dd56115dd565b84611e86856040518060600160405280602581526020016124f26025913960016000611dff6115dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6116a5565b6001905092915050565b6000611ea9611ea26115dd565b8484611381565b6001905092915050565b6000611ec182600001612237565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611f5b83836121ca565b611fb4578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611fb9565b600090505b92915050565b6000808311829061206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612030578082015181840152602081019050612015565b50505050905090810190601f16801561205d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161207757fe5b049050809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6120fd6008546120ef6007548761128990919063ffffffff16565b61130f90919063ffffffff16565b6040518082815260200191505060405180910390a3505050565b600061213f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612248565b905092915050565b6000818360000180549050116121a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123316022913960400191505060405180910390fd5b8260000182815481106121b757fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600061222f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115e5565b905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612324576000600182039050600060018660000180549050039050600086600001828154811061229357fe5b90600052602060002001549050808760000184815481106122b057fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806122e857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061232a565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220506cddd447b0b31545b9a37d6a11541ff9317c5012a354654a530077b3a7740164736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80639010d07c116100f9578063ad32e84c11610097578063d539139311610071578063d539139314610887578063d547741f146108a5578063dd62ed3e146108f3578063f51e181a1461096b576101a9565b8063ad32e84c146107f9578063bc4f2d6d14610817578063ca15c87314610845576101a9565b80639dc29fac116100d35780639dc29fac146106c5578063a217fddf14610713578063a457c2d714610731578063a9059cbb14610795576101a9565b80639010d07c1461057c57806391d14854146105de57806395d89b4114610642576101a9565b80632f2ff15d116101665780633950935111610140578063395093511461045457806340c10f19146104b857806370a082311461050657806383eb70e51461055e576101a9565b80632f2ff15d14610397578063313ce567146103e557806336568abe14610406576101a9565b806306fdde03146101ae578063095ea7b31461023157806318160ddd1461029557806323b872dd146102b3578063248a9ca314610337578063282c51f314610379575b600080fd5b6101b6610989565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2b565b60405180821515815260200191505060405180910390f35b61029d610a3f565b6040518082815260200191505060405180910390f35b61031f600480360360608110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a76565b60405180821515815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b8101908080359060200190929190505050610b04565b6040518082815260200191505060405180910390f35b610381610b24565b6040518082815260200191505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b48565b005b6103ed610bd2565b604051808260ff16815260200191505060405180910390f35b6104526004803603604081101561041c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610be9565b005b6104a06004803603604081101561046a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c82565b60405180821515815260200191505060405180910390f35b610504600480360360408110156104ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c96565b005b6105486004803603602081101561051c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d68565b6040518082815260200191505060405180910390f35b610566610da2565b6040518082815260200191505060405180910390f35b6105b26004803603604081101561059257600080fd5b810190808035906020019092919080359060200190929190505050610dc6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61062a600480360360408110156105f457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df8565b60405180821515815260200191505060405180910390f35b61064a610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561068a57808201518184015260208101905061066f565b50505050905090810190601f1680156106b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610711600480360360408110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b005b61071b610f9e565b6040518082815260200191505060405180910390f35b61077d6004803603604081101561074757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b6107e1600480360360408110156107ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb9565b60405180821515815260200191505060405180910390f35b610801610ff5565b6040518082815260200191505060405180910390f35b6108436004803603602081101561082d57600080fd5b8101908080359060200190929190505050610ffb565b005b6108716004803603602081101561085b57600080fd5b81019080803590602001909291905050506110e2565b6040518082815260200191505060405180910390f35b61088f611109565b6040518082815260200191505060405180910390f35b6108f1600480360360408110156108bb57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061112d565b005b6109556004803603604081101561090957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111b7565b6040518082815260200191505060405180910390f35b6109736111cb565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a378383611359565b905092915050565b6000610a71600854610a63600754610a55611377565b61128990919063ffffffff16565b61130f90919063ffffffff16565b905090565b6000610aab8484610aa6600754610a986008548861128990919063ffffffff16565b61130f90919063ffffffff16565b611381565b610af984610ab76115dd565b610af48560405180606001604052806028815260200161246060289139610ae58a610ae06115dd565b6111b7565b6115e59092919063ffffffff16565b6116a5565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610b6f6006600084815260200190815260200160002060020154610b6a6115dd565b610df8565b610bc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612376602f913960400191505060405180910390fd5b610bce828261189c565b5050565b6000600560009054906101000a900460ff16905090565b610bf16115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612517602f913960400191505060405180910390fd5b610c7e8282611930565b5050565b6000610c8e83836119c4565b905092915050565b610cc07f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610df8565b610d32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610d6482610d5f600754610d516008548661128990919063ffffffff16565b61130f90919063ffffffff16565b611a77565b5050565b6000610d9b600854610d8d600754610d7f86611bd8565b61128990919063ffffffff16565b61130f90919063ffffffff16565b9050919050565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000610df08260066000868152602001908152602001600020600001611c2090919063ffffffff16565b905092915050565b6000610e228260066000868152602001908152602001600020600001611c3a90919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b610ef67f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610df8565b610f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616c6c6572206973206e6f742061206275726e65720000000000000000000081525060200191505060405180910390fd5b610f9a82610f95600754610f876008548661128990919063ffffffff16565b61130f90919063ffffffff16565b611c6a565b5050565b6000801b81565b6000610fb18383611dc8565b905092915050565b6000610fed83610fe8600754610fda6008548761128990919063ffffffff16565b61130f90919063ffffffff16565b611e95565b905092915050565b60075481565b6110257f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7533610df8565b611097576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616c6c6572206973206e6f742061207265626173657200000000000000000081525060200191505060405180910390fd5b7f11c6bf55864ff83827df712625d7a80e5583eef0264921025e7cd22003a2151160075482604051808381526020018281526020019250505060405180910390a18060078190555050565b600061110260066000848152602001908152602001600020600001611eb3565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611154600660008481526020019081526020016000206002015461114f6115dd565b610df8565b6111a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061240f6030913960400191505060405180910390fd5b6111b38282611930565b5050565b60006111c38383611ec8565b905092915050565b60085481565b60008082840190508381101561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611281836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611f4f565b905092915050565b60008083141561129c5760009050611309565b60008284029050828482816112ad57fe5b0414611304576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061243f6021913960400191505060405180910390fd5b809150505b92915050565b600061135183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fbf565b905092915050565b600061136d6113666115dd565b84846116a5565b6001905092915050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806124a96025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806123536023913960400191505060405180910390fd5b611498838383612085565b611503816040518060600160405280602681526020016123e9602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611596816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b600033905090565b6000838311158290611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561165757808201518184015260208101905061163c565b50505050905090810190601f1680156116845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806124ce6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123c76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6118c4816006600085815260200190815260200160002060000161125990919063ffffffff16565b1561192c576118d16115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611958816006600085815260200190815260200160002060000161211790919063ffffffff16565b156119c0576119656115dd565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000611a6d6119d16115dd565b84611a6885600160006119e26115dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6116a5565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611b2660008383612085565b611b3b816002546111d190919063ffffffff16565b600281905550611b92816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611c2f8360000183612147565b60001c905092915050565b6000611c62836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121ca565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806124886021913960400191505060405180910390fd5b611cfc82600083612085565b611d67816040518060600160405280602281526020016123a5602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dbe816002546121ed90919063ffffffff16565b6002819055505050565b6000611e8b611dd56115dd565b84611e86856040518060600160405280602581526020016124f26025913960016000611dff6115dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e59092919063ffffffff16565b6116a5565b6001905092915050565b6000611ea9611ea26115dd565b8484611381565b6001905092915050565b6000611ec182600001612237565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611f5b83836121ca565b611fb4578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611fb9565b600090505b92915050565b6000808311829061206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612030578082015181840152602081019050612015565b50505050905090810190601f16801561205d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161207757fe5b049050809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6120fd6008546120ef6007548761128990919063ffffffff16565b61130f90919063ffffffff16565b6040518082815260200191505060405180910390a3505050565b600061213f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612248565b905092915050565b6000818360000180549050116121a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123316022913960400191505060405180910390fd5b8260000182815481106121b757fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600061222f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115e5565b905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612324576000600182039050600060018660000180549050039050600086600001828154811061229357fe5b90600052602060002001549050808760000184815481106122b057fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806122e857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061232a565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220506cddd447b0b31545b9a37d6a11541ff9317c5012a354654a530077b3a7740164736f6c634300060c0033

Deployed Bytecode Sourcemap

44079:2944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11484:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45805:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45341:139;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46301:344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40772:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44233:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41148:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12411:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42357:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45947:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44675:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45486:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44302:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40445:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39406:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11686:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44879:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38151:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46118:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46653:176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44375:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45087:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39719:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44164:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41620:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45653:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44420:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11484:83;11521:13;11554:5;11547:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11484:83;:::o;45805:136::-;45880:4;45903:30;45917:7;45926:6;45903:13;:30::i;:::-;45896:37;;45805:136;;;;:::o;45341:139::-;45394:7;45420:52;45466:5;;45420:41;45444:16;;45420:19;:17;:19::i;:::-;:23;;:41;;;;:::i;:::-;:45;;:52;;;;:::i;:::-;45413:59;;45341:139;:::o;46301:344::-;46399:4;46416:69;46426:6;46434:9;46445:39;46467:16;;46445:17;46456:5;;46445:6;:10;;:17;;;;:::i;:::-;:21;;:39;;;;:::i;:::-;46416:9;:69::i;:::-;46496:119;46505:6;46513:12;:10;:12::i;:::-;46527:87;46563:6;46527:87;;;;;;;;;;;;;;;;;:31;46537:6;46545:12;:10;:12::i;:::-;46527:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;46496:8;:119::i;:::-;46633:4;46626:11;;46301:344;;;;;:::o;40772:114::-;40829:7;40856:6;:12;40863:4;40856:12;;;;;;;;;;;:22;;;40849:29;;40772:114;;;:::o;44233:62::-;44271:24;44233:62;:::o;41148:227::-;41232:45;41240:6;:12;41247:4;41240:12;;;;;;;;;;;:22;;;41264:12;:10;:12::i;:::-;41232:7;:45::i;:::-;41224:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41342:25;41353:4;41359:7;41342:10;:25::i;:::-;41148:227;;:::o;12411:83::-;12452:5;12477:9;;;;;;;;;;;12470:16;;12411:83;:::o;42357:209::-;42455:12;:10;:12::i;:::-;42444:23;;:7;:23;;;42436:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42532:26;42544:4;42550:7;42532:11;:26::i;:::-;42357:209;;:::o;45947:165::-;46036:4;46060:44;46084:7;46093:10;46060:23;:44::i;:::-;46053:51;;45947:165;;;;:::o;44675:196::-;44743:32;44202:24;44764:10;44743:7;:32::i;:::-;44735:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44813:50;44819:2;44823:39;44845:16;;44823:17;44834:5;;44823:6;:10;;:17;;;;:::i;:::-;:21;;:39;;;;:::i;:::-;44813:5;:50::i;:::-;44675:196;;:::o;45486:157::-;45552:7;45578:57;45629:5;;45578:46;45607:16;;45578:24;45594:7;45578:15;:24::i;:::-;:28;;:46;;;;:::i;:::-;:50;;:57;;;;:::i;:::-;45571:64;;45486:157;;;:::o;44302:64::-;44341:25;44302:64;:::o;40445:138::-;40518:7;40545:30;40569:5;40545:6;:12;40552:4;40545:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;40538:37;;40445:138;;;;:::o;39406:139::-;39475:4;39499:38;39529:7;39499:6;:12;39506:4;39499:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;39492:45;;39406:139;;;;:::o;11686:87::-;11725:13;11758:7;11751:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11686:87;:::o;44879:200::-;44949:32;44271:24;44970:10;44949:7;:32::i;:::-;44941:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45019:52;45025:4;45031:39;45053:16;;45031:17;45042:5;;45031:6;:10;;:17;;;;:::i;:::-;:21;;:39;;;;:::i;:::-;45019:5;:52::i;:::-;44879:200;;:::o;38151:49::-;38196:4;38151:49;;;:::o;46118:175::-;46212:4;46236:49;46260:7;46269:15;46236:23;:49::i;:::-;46229:56;;46118:175;;;;:::o;46653:176::-;46731:4;46755:66;46770:9;46781:39;46803:16;;46781:17;46792:5;;46781:6;:10;;:17;;;;:::i;:::-;:21;;:39;;;;:::i;:::-;46755:14;:66::i;:::-;46748:73;;46653:176;;;;:::o;44375:38::-;;;;:::o;45087:244::-;45156:33;44341:25;45178:10;45156:7;:33::i;:::-;45148:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45233:43;45240:16;;45258:17;45233:43;;;;;;;;;;;;;;;;;;;;;;;;45306:17;45287:16;:36;;;;45087:244;:::o;39719:127::-;39782:7;39809:29;:6;:12;39816:4;39809:12;;;;;;;;;;;:20;;:27;:29::i;:::-;39802:36;;39719:127;;;:::o;44164:62::-;44202:24;44164:62;:::o;41620:230::-;41705:45;41713:6;:12;41720:4;41713:12;;;;;;;;;;;:22;;;41737:12;:10;:12::i;:::-;41705:7;:45::i;:::-;41697:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41816:26;41828:4;41834:7;41816:11;:26::i;:::-;41620:230;;:::o;45653:146::-;45734:7;45760:31;45776:5;45783:7;45760:15;:31::i;:::-;45753:38;;45653:146;;;;:::o;44420:27::-;;;;:::o;1009:181::-;1067:7;1087:9;1103:1;1099;:5;1087:17;;1128:1;1123;:6;;1115:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181:1;1174:8;;;1009:181;;;;:::o;33371:143::-;33441:4;33465:41;33470:3;:10;;33498:5;33490:14;;33482:23;;33465:4;:41::i;:::-;33458:48;;33371:143;;;;:::o;2363:471::-;2421:7;2671:1;2666;:6;2662:47;;;2696:1;2689:8;;;;2662:47;2721:9;2737:1;2733;:5;2721:17;;2766:1;2761;2757;:5;;;;;;:10;2749:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2825:1;2818:8;;;2363:471;;;;;:::o;3310:132::-;3368:7;3395:39;3399:1;3402;3395:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3388:46;;3310:132;;;;:::o;13637:169::-;13720:4;13737:39;13746:12;:10;:12::i;:::-;13760:7;13769:6;13737:8;:39::i;:::-;13794:4;13787:11;;13637:169;;;;:::o;12559:124::-;12620:7;12663:12;;12656:19;;12559:124;:::o;16498:488::-;16622:1;16604:20;;:6;:20;;;;16596:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16706:1;16685:23;;:9;:23;;;;16677:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16761:47;16782:6;16790:9;16801:6;16761:20;:47::i;:::-;16841:71;16863:6;16841:71;;;;;;;;;;;;;;;;;:9;:17;16851:6;16841:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16821:9;:17;16831:6;16821:17;;;;;;;;;;;;;;;:91;;;;16946:32;16971:6;16946:9;:20;16956:9;16946:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16923:9;:20;16933:9;16923:20;;;;;;;;;;;;;;;:55;;;;16498:488;;;:::o;9002:106::-;9055:15;9090:10;9083:17;;9002:106;:::o;1912:192::-;1998:7;2031:1;2026;:6;;2034:12;2018:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2058:9;2074:1;2070;:5;2058:17;;2095:1;2088:8;;;1912:192;;;;;:::o;18729:346::-;18848:1;18831:19;;:5;:19;;;;18823:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18929:1;18910:21;;:7;:21;;;;18902:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19013:6;18983:11;:18;18995:5;18983:18;;;;;;;;;;;;;;;:27;19002:7;18983:27;;;;;;;;;;;;;;;:36;;;;19051:7;19035:32;;19044:5;19035:32;;;19060:6;19035:32;;;;;;;;;;;;;;;;;;18729:346;;;:::o;43600:188::-;43674:33;43699:7;43674:6;:12;43681:4;43674:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;43670:111;;;43756:12;:10;:12::i;:::-;43729:40;;43747:7;43729:40;;43741:4;43729:40;;;;;;;;;;43670:111;43600:188;;:::o;43796:192::-;43871:36;43899:7;43871:6;:12;43878:4;43871:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;43867:114;;;43956:12;:10;:12::i;:::-;43929:40;;43947:7;43929:40;;43941:4;43929:40;;;;;;;;;;43867:114;43796:192;;:::o;15018:218::-;15106:4;15123:83;15132:12;:10;:12::i;:::-;15146:7;15155:50;15194:10;15155:11;:25;15167:12;:10;:12::i;:::-;15155:25;;;;;;;;;;;;;;;:34;15181:7;15155:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15123:8;:83::i;:::-;15224:4;15217:11;;15018:218;;;;:::o;17268:325::-;17371:1;17352:21;;:7;:21;;;;17344:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17422:49;17451:1;17455:7;17464:6;17422:20;:49::i;:::-;17499:24;17516:6;17499:12;;:16;;:24;;;;:::i;:::-;17484:12;:39;;;;17555:30;17578:6;17555:9;:18;17565:7;17555:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17534:9;:18;17544:7;17534:18;;;;;;;;;;;;;;;:51;;;;17268:325;;:::o;12746:142::-;12820:7;12862:9;:18;12872:7;12862:18;;;;;;;;;;;;;;;;12855:25;;12746:142;;;:::o;34630:149::-;34704:7;34747:22;34751:3;:10;;34763:5;34747:3;:22::i;:::-;34739:31;;34724:47;;34630:149;;;;:::o;33925:158::-;34005:4;34029:46;34039:3;:10;;34067:5;34059:14;;34051:23;;34029:9;:46::i;:::-;34022:53;;33925:158;;;;:::o;17926:365::-;18029:1;18010:21;;:7;:21;;;;18002:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18082:49;18103:7;18120:1;18124:6;18082:20;:49::i;:::-;18165:68;18188:6;18165:68;;;;;;;;;;;;;;;;;:9;:18;18175:7;18165:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18144:9;:18;18154:7;18144:18;;;;;;;;;;;;;;;:89;;;;18259:24;18276:6;18259:12;;:16;;:24;;;;:::i;:::-;18244:12;:39;;;;17926:365;;:::o;15739:269::-;15832:4;15849:129;15858:12;:10;:12::i;:::-;15872:7;15881:96;15920:15;15881:96;;;;;;;;;;;;;;;;;:11;:25;15893:12;:10;:12::i;:::-;15881:25;;;;;;;;;;;;;;;:34;15907:7;15881:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15849:8;:129::i;:::-;15996:4;15989:11;;15739:269;;;;:::o;13101:175::-;13187:4;13204:42;13214:12;:10;:12::i;:::-;13228:9;13239:6;13204:9;:42::i;:::-;13264:4;13257:11;;13101:175;;;;:::o;34169:117::-;34232:7;34259:19;34267:3;:10;;34259:7;:19::i;:::-;34252:26;;34169:117;;;:::o;13339:151::-;13428:7;13455:11;:18;13467:5;13455:18;;;;;;;;;;;;;;;:27;13474:7;13455:27;;;;;;;;;;;;;;;;13448:34;;13339:151;;;;:::o;30025:414::-;30088:4;30110:21;30120:3;30125:5;30110:9;:21::i;:::-;30105:327;;30148:3;:11;;30165:5;30148:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30331:3;:11;;:18;;;;30309:3;:12;;:19;30322:5;30309:19;;;;;;;;;;;:40;;;;30371:4;30364:11;;;;30105:327;30415:5;30408:12;;30025:414;;;;;:::o;3938:278::-;4024:7;4056:1;4052;:5;4059:12;4044:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4083:9;4099:1;4095;:5;;;;;;4083:17;;4207:1;4200:8;;;3938:278;;;;;:::o;46841:179::-;46969:2;46954:58;;46963:4;46954:58;;;46973:38;47005:5;;46973:27;46983:16;;46973:5;:9;;:27;;;;:::i;:::-;:31;;:38;;;;:::i;:::-;46954:58;;;;;;;;;;;;;;;;;;46841:179;;;:::o;33690:149::-;33763:4;33787:44;33795:3;:10;;33823:5;33815:14;;33807:23;;33787:7;:44::i;:::-;33780:51;;33690:149;;;;:::o;32913:204::-;32980:7;33029:5;33008:3;:11;;:18;;;;:26;33000:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33091:3;:11;;33103:5;33091:18;;;;;;;;;;;;;;;;33084:25;;32913:204;;;;:::o;32245:129::-;32318:4;32365:1;32342:3;:12;;:19;32355:5;32342:19;;;;;;;;;;;;:24;;32335:31;;32245:129;;;;:::o;1473:136::-;1531:7;1558:43;1562:1;1565;1558:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1551:50;;1473:136;;;;:::o;32460:109::-;32516:7;32543:3;:11;;:18;;;;32536:25;;32460:109;;;:::o;30615:1544::-;30681:4;30799:18;30820:3;:12;;:19;30833:5;30820:19;;;;;;;;;;;;30799:40;;30870:1;30856:10;:15;30852:1300;;31218:21;31255:1;31242:10;:14;31218:38;;31271:17;31312:1;31291:3;:11;;:18;;;;:22;31271:42;;31558:17;31578:3;:11;;31590:9;31578:22;;;;;;;;;;;;;;;;31558:42;;31724:9;31695:3;:11;;31707:13;31695:26;;;;;;;;;;;;;;;:38;;;;31843:1;31827:13;:17;31801:3;:12;;:23;31814:9;31801:23;;;;;;;;;;;:43;;;;31953:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;32048:3;:12;;:19;32061:5;32048:19;;;;;;;;;;;32041:26;;;32091:4;32084:11;;;;;;;;30852:1300;32135:5;32128:12;;;30615:1544;;;;;:::o

Swarm Source

ipfs://506cddd447b0b31545b9a37d6a11541ff9317c5012a354654a530077b3a77401
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.