ETH Price: $2,675.40 (+10.37%)
Gas: 1 Gwei

Token

Ethereum FIL (eFIL)
 

Overview

Max Total Supply

50,154,369,105.28980097449645063 eFIL

Holders

366

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
24,363.791048612219768181 eFIL

Value
$0.00
0xf0e55fb0cd9f1109691d365764ddb5ffb6bbc8ce
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EFIL

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-20
*/

// File: node_modules\@openzeppelin\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: @openzeppelin\contracts\utils\Pausable.sol


pragma solidity ^0.6.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin\contracts\access\Ownable.sol


pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: node_modules\@openzeppelin\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: node_modules\@openzeppelin\contracts\math\SafeMath.sol


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: node_modules\@openzeppelin\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 in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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: @openzeppelin\contracts\token\ERC20\ERC20.sol


pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    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 view override returns (uint256) {
        return _totalSupply;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _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: node_modules\@openzeppelin\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: @openzeppelin\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: contracts\TransferAccess.sol

pragma solidity ^0.6.0;



contract TransferAccess is AccessControl, Ownable {

    bytes32 internal constant TRANSFER_ROLE = keccak256("TRANSFER_ROLE");
    bool private _enable;

    constructor (bool enable) internal {
        _enable = enable;
        address msgSender = _msgSender();
        super._setRoleAdmin(TRANSFER_ROLE, DEFAULT_ADMIN_ROLE);
        super._setupRole(TRANSFER_ROLE, msgSender);
        super._setupRole(DEFAULT_ADMIN_ROLE, msgSender);
    }

    /**
     * @dev Returns true if the contract is recipient access status, and false otherwise.
     */
    function transferAccessStatus() public view returns (bool) {
        return _enable;
    }

    function enableTransferAccess() public onlyOwner {
        _enable = true;
    }

    function disableTransferAccess() public onlyOwner {
        _enable = false;
    }

    function hasTransferRole(address account) public view returns(bool) {
        return super.hasRole(TRANSFER_ROLE, account);
    }

    function setupTransferRole(address account) public onlyOwner {
        super._setupRole(TRANSFER_ROLE, account);
    }

    function revokeTransferRole(address account) public onlyOwner {
        super.revokeRole(TRANSFER_ROLE, account);
    }

    modifier transferable(address recipient, address sender) {
        if (_enable) {
            require(hasTransferRole(recipient) || hasTransferRole(sender), "TransferAccess: recipient and sender do not have the transfer role");
        }
        _;
    }
}

// File: contracts\MinterAccess.sol

pragma solidity ^0.6.0;




contract MinterAccess is AccessControl, Ownable {

    bytes32 internal constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() public {
        address owner = _msgSender();
        super._setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE);
        super._setupRole(MINTER_ROLE, owner);
        super._setupRole(DEFAULT_ADMIN_ROLE, owner);
    }

    function hasMinterRole(address account) public view returns(bool) {
        return super.hasRole(MINTER_ROLE, account);
    }

    function setupMinterRole(address account) public onlyOwner {
        super._setupRole(MINTER_ROLE, account);
    }

    function revokeMinterRole(address account) public onlyOwner {
        super.revokeRole(MINTER_ROLE, account);
    }

    modifier onlyMinter() {
        require(hasMinterRole(_msgSender()), "MinterAccess: sender do not have the minter role");
        _;
    }
}

// File: contracts\BaseFil.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;





//import "./EarnERC20.sol";


contract BaseFil is ERC20, Pausable, Ownable, TransferAccess, MinterAccess {

    //holders count
    uint private holders;

    event Released(address indexed _from, address indexed _to, uint256 amount, bytes data);
    event Minted(address indexed _from, address indexed _to, uint256 amount);

    constructor (
        string memory name,
        string memory symbol,
        bool enableTransferAccess
    )
    ERC20(name, symbol)
    TransferAccess(enableTransferAccess)
    public {

    }

    function mint(address recipient, uint256 amount) external onlyMinter {
        checkNewHolder(recipient);
        super._mint(recipient, amount);
        emit Minted(address(0), recipient, amount);
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        address account = _msgSender();
        _burn(account, amount);
        checkOldHolder(account);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply銆?
     *
     * Emits a {Release} event with `to` set to the zero address锛?and with additional data.
     *
     * Requirements
     *
     * - `data` cannot be the empty.
     * - `sender` must have at least `amount` tokens.
     */
    function release(bytes memory data, uint256 amount) external {
        require(data.length != 0, "ERC20: release data is empty");

        address account = _msgSender();
        super._burn(account, amount);
        checkOldHolder(account);
        emit Released(account, address(0), amount, data);
    }

    /**
     * @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 transferable(recipient, _msgSender()) override returns (bool) {
        checkNewHolder(recipient);
        bool res = super.transfer(recipient, amount);
        address account = _msgSender();
        checkOldHolder(account);
        return res;
    }

    /**
     * @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 transferable(recipient, sender) override returns (bool) {
        checkNewHolder(recipient);
        bool res = super.transferFrom(sender, recipient, amount);
        checkOldHolder(sender);
        return res;
    }

    function holdersCount() public view returns(uint) {
        return holders;
    }

    function checkNewHolder(address account) internal {
        uint256 b = balanceOf(account);
        if (b == 0) {
            holders ++;
        }
    }

    function checkOldHolder(address account) internal {
        uint256 b = balanceOf(account);
        if (b == 0) {
            holders --;
        }
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyOwner whenNotPaused {
        _pause();
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyOwner whenPaused {
        _unpause();
    }
}


pragma solidity ^0.6.0;

contract EFIL is BaseFil {

    constructor() BaseFil("Ethereum FIL", "eFIL", false) public {

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Released","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTransferAccess","outputs":[],"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":"address","name":"account","type":"address"}],"name":"hasMinterRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"}],"name":"hasTransferRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeMinterRole","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":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeTransferRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setupMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setupTransferRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferAccessStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b115d1a195c995d5b4811925360a21b815250604051806040016040528060048152602001631951925360e21b8152506000808383816003908051906020019062000071929190620003fd565b50805162000087906004906020840190620003fd565b50506005805461ff001960ff19909116601217169055506000620000b36001600160e01b036200027016565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007805460ff60a01b1916600160a01b8315150217905560006200012462000270565b90506200016560405180806c5452414e534645525f524f4c4560981b815250600d01905060405180910390206000801b6200027560201b620015c11760201c565b620001a160405180806c5452414e534645525f524f4c4560981b815250600d019050604051809103902082620002c760201b62000a471760201c565b620001bb6000801b82620002c760201b62000a471760201c565b5060009050620001d36001600160e01b036200027016565b90506200021260405180806a4d494e5445525f524f4c4560a81b815250600b01905060405180910390206000801b6200027560201b620015c11760201c565b6200024c60405180806a4d494e5445525f524f4c4560a81b815250600b019050604051809103902082620002c760201b62000a471760201c565b620002666000801b82620002c760201b62000a471760201c565b505050506200049f565b335b90565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b620002dc82826001600160e01b03620002e016565b5050565b6000828152600660209081526040909120620003079183906200161362000364821b17901c565b15620002dc57620003206001600160e01b036200027016565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000384836001600160a01b0384166001600160e01b036200038d16565b90505b92915050565b6000620003a483836001600160e01b03620003e516565b620003dc5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000387565b50600062000387565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044057805160ff191683800117855562000470565b8280016001018555821562000470579182015b828111156200047057825182559160200191906001019062000453565b506200047e92915062000482565b5090565b6200027291905b808211156200047e576000815560010162000489565b6123eb80620004af6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063a9059cbb116100b8578063d547741f1161007c578063d547741f14610723578063dd62ed3e1461074f578063ef5472ef1461077d578063f2fde38b146107a3578063fcce8372146107c95761023d565b8063a9059cbb14610604578063ae0481f214610630578063bbaf9bd5146106d8578063bee488de146106fe578063ca15c873146107065761023d565b80639010d07c116100ff5780639010d07c1461057957806391d148541461059c57806395d89b41146105c8578063a217fddf146105d0578063a457c2d7146105d85761023d565b806370a08231146104f3578063715018a61461051957806379cc6790146105215780638456cb591461054d5780638da5cb5b146105555761023d565b806331ac045a116101c957806340c10f191161018d57806340c10f191461047457806342966c68146104a05780635c975abb146104bd57806369e2f0fb146104c55780636b4ed21b146104eb5761023d565b806331ac045a146103e65780633361f14d1461040c57806336568abe1461041457806339509351146104405780633f4ba83a1461046c5761023d565b806323331f801161021057806323331f801461033f57806323b872dd14610349578063248a9ca31461037f5780632f2ff15d1461039c578063313ce567146103c85761023d565b806306fdde0314610242578063095ea7b3146102bf578063099db017146102ff57806318160ddd14610325575b600080fd5b61024a6107ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102eb600480360360408110156102d557600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b6102eb6004803603602081101561031557600080fd5b50356001600160a01b03166108a3565b61032d6108d0565b60408051918252519081900360200190f35b6103476108d6565b005b6102eb6004803603606081101561035f57600080fd5b506001600160a01b0381358116916020810135909116906040013561093d565b61032d6004803603602081101561039557600080fd5b50356109d4565b610347600480360360408110156103b257600080fd5b50803590602001356001600160a01b03166109e9565b6103d0610a55565b6040805160ff9092168252519081900360200190f35b610347600480360360208110156103fc57600080fd5b50356001600160a01b0316610a5e565b6102eb610ae5565b6103476004803603604081101561042a57600080fd5b50803590602001356001600160a01b0316610af5565b6102eb6004803603604081101561045657600080fd5b506001600160a01b038135169060200135610b56565b610347610baf565b6103476004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610c64565b610347600480360360208110156104b657600080fd5b5035610d07565b6102eb610d26565b610347600480360360208110156104db57600080fd5b50356001600160a01b0316610d34565b61032d610db6565b61032d6004803603602081101561050957600080fd5b50356001600160a01b0316610dbc565b610347610dd7565b6103476004803603604081101561053757600080fd5b506001600160a01b038135169060200135610e79565b610347610ee2565b61055d610f92565b604080516001600160a01b039092168252519081900360200190f35b61055d6004803603604081101561058f57600080fd5b5080359060200135610fa1565b6102eb600480360360408110156105b257600080fd5b50803590602001356001600160a01b0316610fc6565b61024a610fe4565b61032d611045565b6102eb600480360360408110156105ee57600080fd5b506001600160a01b03813516906020013561104a565b6102eb6004803603604081101561061a57600080fd5b506001600160a01b0381351690602001356110b8565b6103476004803603604081101561064657600080fd5b81019060208101813564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184600183028401116401000000008311171561069557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550509135925061115e915050565b610347600480360360208110156106ee57600080fd5b50356001600160a01b031661128b565b61034761130f565b61032d6004803603602081101561071c57600080fd5b503561137c565b6103476004803603604081101561073957600080fd5b50803590602001356001600160a01b0316611393565b61032d6004803603604081101561076557600080fd5b506001600160a01b03813581169160200135166113ec565b6102eb6004803603602081101561079357600080fd5b50356001600160a01b0316611417565b610347600480360360208110156107b957600080fd5b50356001600160a01b0316611446565b610347600480360360208110156107df57600080fd5b50356001600160a01b031661153f565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611628565b848461162c565b5060015b92915050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902060009061089d9083610fc6565b60025490565b6108de611628565b6007546001600160a01b0390811691161461092e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b19169055565b60008284600760149054906101000a900460ff16156109a95761095f82611417565b8061096e575061096e81611417565b6109a95760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b6109b285611718565b60006109bf878787611737565b90506109ca876117bf565b9695505050505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610a0c90610a07611628565b610fc6565b610a475760405162461bcd60e51b815260040180806020018281038252602f815260200180612101602f913960400191505060405180910390fd5b610a5182826117df565b5050565b60055460ff1690565b610a66611628565b6007546001600160a01b03908116911614610ab6576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082611393565b50565b600754600160a01b900460ff1690565b610afd611628565b6001600160a01b0316816001600160a01b031614610b4c5760405162461bcd60e51b815260040180806020018281038252602f81526020018061235d602f913960400191505060405180910390fd5b610a51828261184e565b6000610899610b63611628565b84610baa8560016000610b74611628565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118bd16565b61162c565b610bb7611628565b6007546001600160a01b03908116911614610c07576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff16610c5a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b610c62611917565b565b610c74610c6f611628565b6108a3565b610caf5760405162461bcd60e51b81526004018080602001828103825260308152602001806122326030913960400191505060405180910390fd5b610cb882611718565b610cc282826119bb565b6040805182815290516001600160a01b038416916000917f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09181900360200190a35050565b6000610d11611628565b9050610d1d8183611ab7565b610a51816117bf565b600554610100900460ff1690565b610d3c611628565b6007546001600160a01b03908116911614610d8c576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082611393565b60085490565b6001600160a01b031660009081526020819052604090205490565b610ddf611628565b6007546001600160a01b03908116911614610e2f576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610eb6826040518060600160405280602481526020016122aa60249139610ea986610ea4611628565b6113ec565b919063ffffffff611bbf16565b9050610eca83610ec4611628565b8361162c565b610ed48383611ab7565b610edd836117bf565b505050565b610eea611628565b6007546001600160a01b03908116911614610f3a576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff1615610f8a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610c62611c56565b6007546001600160a01b031690565b6000828152600660205260408120610fbf908363ffffffff611cde16565b9392505050565b6000828152600660205260408120610fbf908363ffffffff611cea16565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b600081565b6000610899611057611628565b84610baa856040518060600160405280602581526020016123386025913960016000611081611628565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611bbf16565b6000826110c3611628565b600754600160a01b900460ff1615611128576110de82611417565b806110ed57506110ed81611417565b6111285760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b61113185611718565b600061113d8686611cff565b90506000611149611628565b9050611154816117bf565b5095945050505050565b81516111b1576040805162461bcd60e51b815260206004820152601c60248201527f45524332303a2072656c65617365206461746120697320656d70747900000000604482015290519081900360640190fd5b60006111bb611628565b90506111c78183611ab7565b6111d0816117bf565b60006001600160a01b0316816001600160a01b03167f71e9ce6ac55c7c4540d0b817879bf1d3cc8a5286217a1888406d456ae398436f84866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561124b578181015183820152602001611233565b50505050905090810190601f1680156112785780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b611293611628565b6007546001600160a01b039081169116146112e3576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082610a47565b611317611628565b6007546001600160a01b03908116911614611367576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b1916600160a01b179055565b600081815260066020526040812061089d90611d13565b6000828152600660205260409020600201546113b190610a07611628565b610b4c5760405162461bcd60e51b81526004018080602001828103825260308152602001806122026030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b604080516c5452414e534645525f524f4c4560981b8152905190819003600d01902060009061089d9083610fc6565b61144e611628565b6007546001600160a01b0390811691161461149e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e35760405162461bcd60e51b81526004018080602001828103825260268152602001806121946026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b611547611628565b6007546001600160a01b03908116911614611597576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082610a47565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b6000610fbf836001600160a01b038416611d1e565b3390565b6001600160a01b0383166116715760405162461bcd60e51b81526004018080602001828103825260248152602001806123146024913960400191505060405180910390fd5b6001600160a01b0382166116b65760405162461bcd60e51b81526004018080602001828103825260228152602001806121ba6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061172382610dbc565b905080610a51576008805460010190555050565b6000611744848484611d68565b6117b584611750611628565b610baa85604051806060016040528060288152602001612262602891396001600160a01b038a1660009081526001602052604081209061178e611628565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611bbf16565b5060019392505050565b60006117ca82610dbc565b905080610a5157600880546000190190555050565b60008281526006602052604090206117fd908263ffffffff61161316565b15610a515761180a611628565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260066020526040902061186c908263ffffffff611ecf16565b15610a5157611879611628565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610fbf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1661196a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199e611628565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611a16576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611a2260008383611ee4565b600254611a35908263ffffffff6118bd16565b6002556001600160a01b038216600090815260208190526040902054611a61908263ffffffff6118bd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611afc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122ce6021913960400191505060405180910390fd5b611b0882600083611ee4565b611b4b81604051806060016040528060228152602001612130602291396001600160a01b038516600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038316600090815260208190526040902055600254611b77908263ffffffff611f3316565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008184841115611c4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c13578181015183820152602001611bfb565b50505050905090810190601f168015611c405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff1615611ca6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e611628565b6000610fbf8383611f75565b6000610fbf836001600160a01b038416611fd9565b6000610899611d0c611628565b8484611d68565b600061089d82611ff1565b6000611d2a8383611fd9565b611d605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6001600160a01b038316611dad5760405162461bcd60e51b81526004018080602001828103825260258152602001806122ef6025913960400191505060405180910390fd5b6001600160a01b038216611df25760405162461bcd60e51b81526004018080602001828103825260238152602001806120de6023913960400191505060405180910390fd5b611dfd838383611ee4565b611e40816040518060600160405280602681526020016121dc602691396001600160a01b038616600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e75908263ffffffff6118bd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fbf836001600160a01b038416611ff5565b611eef838383610edd565b611ef7610d26565b15610edd5760405162461bcd60e51b815260040180806020018281038252602a81526020018061238c602a913960400191505060405180910390fd5b6000610fbf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bbf565b81546000908210611fb75760405162461bcd60e51b81526004018080602001828103825260228152602001806120bc6022913960400191505060405180910390fd5b826000018281548110611fc657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156120b1578354600019808301919081019060009087908390811061202857fe5b906000526020600020015490508087600001848154811061204557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207557fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061089d565b600091505061089d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63655472616e736665724163636573733a20726563697069656e7420616e642073656e64657220646f206e6f74206861766520746865207472616e7366657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654d696e7465724163636573733a2073656e64657220646f206e6f74206861766520746865206d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212207170d1d98cee9ea5280adaaf86bb8814ecb34c3e11ad23f07b7538b92ee021fd64736f6c634300060a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c806370a082311161013b578063a9059cbb116100b8578063d547741f1161007c578063d547741f14610723578063dd62ed3e1461074f578063ef5472ef1461077d578063f2fde38b146107a3578063fcce8372146107c95761023d565b8063a9059cbb14610604578063ae0481f214610630578063bbaf9bd5146106d8578063bee488de146106fe578063ca15c873146107065761023d565b80639010d07c116100ff5780639010d07c1461057957806391d148541461059c57806395d89b41146105c8578063a217fddf146105d0578063a457c2d7146105d85761023d565b806370a08231146104f3578063715018a61461051957806379cc6790146105215780638456cb591461054d5780638da5cb5b146105555761023d565b806331ac045a116101c957806340c10f191161018d57806340c10f191461047457806342966c68146104a05780635c975abb146104bd57806369e2f0fb146104c55780636b4ed21b146104eb5761023d565b806331ac045a146103e65780633361f14d1461040c57806336568abe1461041457806339509351146104405780633f4ba83a1461046c5761023d565b806323331f801161021057806323331f801461033f57806323b872dd14610349578063248a9ca31461037f5780632f2ff15d1461039c578063313ce567146103c85761023d565b806306fdde0314610242578063095ea7b3146102bf578063099db017146102ff57806318160ddd14610325575b600080fd5b61024a6107ef565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102eb600480360360408110156102d557600080fd5b506001600160a01b038135169060200135610885565b604080519115158252519081900360200190f35b6102eb6004803603602081101561031557600080fd5b50356001600160a01b03166108a3565b61032d6108d0565b60408051918252519081900360200190f35b6103476108d6565b005b6102eb6004803603606081101561035f57600080fd5b506001600160a01b0381358116916020810135909116906040013561093d565b61032d6004803603602081101561039557600080fd5b50356109d4565b610347600480360360408110156103b257600080fd5b50803590602001356001600160a01b03166109e9565b6103d0610a55565b6040805160ff9092168252519081900360200190f35b610347600480360360208110156103fc57600080fd5b50356001600160a01b0316610a5e565b6102eb610ae5565b6103476004803603604081101561042a57600080fd5b50803590602001356001600160a01b0316610af5565b6102eb6004803603604081101561045657600080fd5b506001600160a01b038135169060200135610b56565b610347610baf565b6103476004803603604081101561048a57600080fd5b506001600160a01b038135169060200135610c64565b610347600480360360208110156104b657600080fd5b5035610d07565b6102eb610d26565b610347600480360360208110156104db57600080fd5b50356001600160a01b0316610d34565b61032d610db6565b61032d6004803603602081101561050957600080fd5b50356001600160a01b0316610dbc565b610347610dd7565b6103476004803603604081101561053757600080fd5b506001600160a01b038135169060200135610e79565b610347610ee2565b61055d610f92565b604080516001600160a01b039092168252519081900360200190f35b61055d6004803603604081101561058f57600080fd5b5080359060200135610fa1565b6102eb600480360360408110156105b257600080fd5b50803590602001356001600160a01b0316610fc6565b61024a610fe4565b61032d611045565b6102eb600480360360408110156105ee57600080fd5b506001600160a01b03813516906020013561104a565b6102eb6004803603604081101561061a57600080fd5b506001600160a01b0381351690602001356110b8565b6103476004803603604081101561064657600080fd5b81019060208101813564010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184600183028401116401000000008311171561069557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550509135925061115e915050565b610347600480360360208110156106ee57600080fd5b50356001600160a01b031661128b565b61034761130f565b61032d6004803603602081101561071c57600080fd5b503561137c565b6103476004803603604081101561073957600080fd5b50803590602001356001600160a01b0316611393565b61032d6004803603604081101561076557600080fd5b506001600160a01b03813581169160200135166113ec565b6102eb6004803603602081101561079357600080fd5b50356001600160a01b0316611417565b610347600480360360208110156107b957600080fd5b50356001600160a01b0316611446565b610347600480360360208110156107df57600080fd5b50356001600160a01b031661153f565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611628565b848461162c565b5060015b92915050565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902060009061089d9083610fc6565b60025490565b6108de611628565b6007546001600160a01b0390811691161461092e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b19169055565b60008284600760149054906101000a900460ff16156109a95761095f82611417565b8061096e575061096e81611417565b6109a95760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b6109b285611718565b60006109bf878787611737565b90506109ca876117bf565b9695505050505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610a0c90610a07611628565b610fc6565b610a475760405162461bcd60e51b815260040180806020018281038252602f815260200180612101602f913960400191505060405180910390fd5b610a5182826117df565b5050565b60055460ff1690565b610a66611628565b6007546001600160a01b03908116911614610ab6576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082611393565b50565b600754600160a01b900460ff1690565b610afd611628565b6001600160a01b0316816001600160a01b031614610b4c5760405162461bcd60e51b815260040180806020018281038252602f81526020018061235d602f913960400191505060405180910390fd5b610a51828261184e565b6000610899610b63611628565b84610baa8560016000610b74611628565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6118bd16565b61162c565b610bb7611628565b6007546001600160a01b03908116911614610c07576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff16610c5a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b610c62611917565b565b610c74610c6f611628565b6108a3565b610caf5760405162461bcd60e51b81526004018080602001828103825260308152602001806122326030913960400191505060405180910390fd5b610cb882611718565b610cc282826119bb565b6040805182815290516001600160a01b038416916000917f9d228d69b5fdb8d273a2336f8fb8612d039631024ea9bf09c424a9503aa078f09181900360200190a35050565b6000610d11611628565b9050610d1d8183611ab7565b610a51816117bf565b600554610100900460ff1690565b610d3c611628565b6007546001600160a01b03908116911614610d8c576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082611393565b60085490565b6001600160a01b031660009081526020819052604090205490565b610ddf611628565b6007546001600160a01b03908116911614610e2f576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610eb6826040518060600160405280602481526020016122aa60249139610ea986610ea4611628565b6113ec565b919063ffffffff611bbf16565b9050610eca83610ec4611628565b8361162c565b610ed48383611ab7565b610edd836117bf565b505050565b610eea611628565b6007546001600160a01b03908116911614610f3a576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b600554610100900460ff1615610f8a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610c62611c56565b6007546001600160a01b031690565b6000828152600660205260408120610fbf908363ffffffff611cde16565b9392505050565b6000828152600660205260408120610fbf908363ffffffff611cea16565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561087b5780601f106108505761010080835404028352916020019161087b565b600081565b6000610899611057611628565b84610baa856040518060600160405280602581526020016123386025913960016000611081611628565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611bbf16565b6000826110c3611628565b600754600160a01b900460ff1615611128576110de82611417565b806110ed57506110ed81611417565b6111285760405162461bcd60e51b81526004018080602001828103825260428152602001806121526042913960600191505060405180910390fd5b61113185611718565b600061113d8686611cff565b90506000611149611628565b9050611154816117bf565b5095945050505050565b81516111b1576040805162461bcd60e51b815260206004820152601c60248201527f45524332303a2072656c65617365206461746120697320656d70747900000000604482015290519081900360640190fd5b60006111bb611628565b90506111c78183611ab7565b6111d0816117bf565b60006001600160a01b0316816001600160a01b03167f71e9ce6ac55c7c4540d0b817879bf1d3cc8a5286217a1888406d456ae398436f84866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561124b578181015183820152602001611233565b50505050905090810190601f1680156112785780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b611293611628565b6007546001600160a01b039081169116146112e3576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516c5452414e534645525f524f4c4560981b8152905190819003600d019020610ae29082610a47565b611317611628565b6007546001600160a01b03908116911614611367576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6007805460ff60a01b1916600160a01b179055565b600081815260066020526040812061089d90611d13565b6000828152600660205260409020600201546113b190610a07611628565b610b4c5760405162461bcd60e51b81526004018080602001828103825260308152602001806122026030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b604080516c5452414e534645525f524f4c4560981b8152905190819003600d01902060009061089d9083610fc6565b61144e611628565b6007546001600160a01b0390811691161461149e576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b6001600160a01b0381166114e35760405162461bcd60e51b81526004018080602001828103825260268152602001806121946026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b611547611628565b6007546001600160a01b03908116911614611597576040805162461bcd60e51b8152602060048201819052602482015260008051602061228a833981519152604482015290519081900360640190fd5b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610ae29082610a47565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b6000610fbf836001600160a01b038416611d1e565b3390565b6001600160a01b0383166116715760405162461bcd60e51b81526004018080602001828103825260248152602001806123146024913960400191505060405180910390fd5b6001600160a01b0382166116b65760405162461bcd60e51b81526004018080602001828103825260228152602001806121ba6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061172382610dbc565b905080610a51576008805460010190555050565b6000611744848484611d68565b6117b584611750611628565b610baa85604051806060016040528060288152602001612262602891396001600160a01b038a1660009081526001602052604081209061178e611628565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611bbf16565b5060019392505050565b60006117ca82610dbc565b905080610a5157600880546000190190555050565b60008281526006602052604090206117fd908263ffffffff61161316565b15610a515761180a611628565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260066020526040902061186c908263ffffffff611ecf16565b15610a5157611879611628565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610fbf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff1661196a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199e611628565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611a16576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611a2260008383611ee4565b600254611a35908263ffffffff6118bd16565b6002556001600160a01b038216600090815260208190526040902054611a61908263ffffffff6118bd16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611afc5760405162461bcd60e51b81526004018080602001828103825260218152602001806122ce6021913960400191505060405180910390fd5b611b0882600083611ee4565b611b4b81604051806060016040528060228152602001612130602291396001600160a01b038516600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038316600090815260208190526040902055600254611b77908263ffffffff611f3316565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008184841115611c4e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c13578181015183820152602001611bfb565b50505050905090810190601f168015611c405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff1615611ca6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861199e611628565b6000610fbf8383611f75565b6000610fbf836001600160a01b038416611fd9565b6000610899611d0c611628565b8484611d68565b600061089d82611ff1565b6000611d2a8383611fd9565b611d605750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6001600160a01b038316611dad5760405162461bcd60e51b81526004018080602001828103825260258152602001806122ef6025913960400191505060405180910390fd5b6001600160a01b038216611df25760405162461bcd60e51b81526004018080602001828103825260238152602001806120de6023913960400191505060405180910390fd5b611dfd838383611ee4565b611e40816040518060600160405280602681526020016121dc602691396001600160a01b038616600090815260208190526040902054919063ffffffff611bbf16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e75908263ffffffff6118bd16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fbf836001600160a01b038416611ff5565b611eef838383610edd565b611ef7610d26565b15610edd5760405162461bcd60e51b815260040180806020018281038252602a81526020018061238c602a913960400191505060405180910390fd5b6000610fbf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bbf565b81546000908210611fb75760405162461bcd60e51b81526004018080602001828103825260228152602001806120bc6022913960400191505060405180910390fd5b826000018281548110611fc657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b600081815260018301602052604081205480156120b1578354600019808301919081019060009087908390811061202857fe5b906000526020600020015490508087600001848154811061204557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061207557fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061089d565b600091505061089d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63655472616e736665724163636573733a20726563697069656e7420616e642073656e64657220646f206e6f74206861766520746865207472616e7366657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654d696e7465724163636573733a2073656e64657220646f206e6f74206861766520746865206d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212207170d1d98cee9ea5280adaaf86bb8814ecb34c3e11ad23f07b7538b92ee021fd64736f6c634300060a0033

Deployed Bytecode Sourcemap

53895:107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21981:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24087:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24087:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48442:127;;;;;;;;;;;;;;;;-1:-1:-1;48442:127:0;-1:-1:-1;;;;;48442:127:0;;:::i;23056:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;47246:84;;;:::i;:::-;;52413:301;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52413:301:0;;;;;;;;;;;;;;;;;:::i;43192:114::-;;;;;;;;;;;;;;;;-1:-1:-1;43192:114:0;;:::i;43568:227::-;;;;;;;;;;;;;;;;-1:-1:-1;43568:227:0;;;;;;-1:-1:-1;;;;;43568:227:0;;:::i;22908:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47605:121;;;;;;;;;;;;;;;;-1:-1:-1;47605:121:0;-1:-1:-1;;;;;47605:121:0;;:::i;47056:92::-;;;:::i;44777:209::-;;;;;;;;;;;;;;;;-1:-1:-1;44777:209:0;;;;;;-1:-1:-1;;;;;44777:209:0;;:::i;25460:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25460:218:0;;;;;;;;:::i;53783:76::-;;;:::i;49630:207::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49630:207:0;;;;;;;;:::i;49953:153::-;;;;;;;;;;;;;;;;-1:-1:-1;49953:153:0;;:::i;2061:78::-;;;:::i;48701:117::-;;;;;;;;;;;;;;;;-1:-1:-1;48701:117:0;-1:-1:-1;;;;;48701:117:0;;:::i;52722:83::-;;;:::i;23219:119::-;;;;;;;;;;;;;;;;-1:-1:-1;23219:119:0;-1:-1:-1;;;;;23219:119:0;;:::i;4971:148::-;;;:::i;50425:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50425:321:0;;;;;;;;:::i;53613:75::-;;;:::i;4329:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4329:79:0;;;;;;;;;;;;;;42865:138;;;;;;;;;;;;;;;;-1:-1:-1;42865:138:0;;;;;;;:::i;41826:139::-;;;;;;;;;;;;;;;;-1:-1:-1;41826:139:0;;;;;;-1:-1:-1;;;;;41826:139:0;;:::i;22183:87::-;;;:::i;40571:49::-;;;:::i;26181:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26181:269:0;;;;;;;;:::i;51622:317::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51622:317:0;;;;;;;;:::i;51097:312::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51097:312:0;;-1:-1:-1;;51097:312:0;;;-1:-1:-1;51097:312:0;;-1:-1:-1;;51097:312:0:i;47477:120::-;;;;;;;;;;;;;;;;-1:-1:-1;47477:120:0;-1:-1:-1;;;;;47477:120:0;;:::i;47156:82::-;;;:::i;42139:127::-;;;;;;;;;;;;;;;;-1:-1:-1;42139:127:0;;:::i;44040:230::-;;;;;;;;;;;;;;;;-1:-1:-1;44040:230:0;;;;;;-1:-1:-1;;;;;44040:230:0;;:::i;23789:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23789:151:0;;;;;;;;;;:::i;47338:131::-;;;;;;;;;;;;;;;;-1:-1:-1;47338:131:0;-1:-1:-1;;;;;47338:131:0;;:::i;5274:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5274:244:0;-1:-1:-1;;;;;5274:244:0;;:::i;48577:116::-;;;;;;;;;;;;;;;;-1:-1:-1;48577:116:0;-1:-1:-1;;;;;48577:116:0;;:::i;21981:83::-;22051:5;22044:12;;;;;;;;-1:-1:-1;;22044:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22018:13;;22044:12;;22051:5;;22044:12;;22051:5;22044:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21981:83;:::o;24087:169::-;24170:4;24187:39;24196:12;:10;:12::i;:::-;24210:7;24219:6;24187:8;:39::i;:::-;-1:-1:-1;24244:4:0;24087:169;;;;;:::o;48442:127::-;48169:24;;;-1:-1:-1;;;48169:24:0;;;;;;;;;;;;48502:4;;48526:35;;48553:7;48526:13;:35::i;23056:100::-;23136:12;;23056:100;:::o;47246:84::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;47307:7:::1;:15:::0;;-1:-1:-1;;;;47307:15:0::1;::::0;;47246:84::o;52413:301::-;52543:4;52506:9;52517:6;47806:7;;;;;;;;;;;47802:172;;;47838:26;47854:9;47838:15;:26::i;:::-;:53;;;;47868:23;47884:6;47868:15;:23::i;:::-;47830:132;;;;-1:-1:-1;;;47830:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52560:25:::1;52575:9;52560:14;:25::i;:::-;52596:8;52607:45;52626:6;52634:9;52645:6;52607:18;:45::i;:::-;52596:56;;52663:22;52678:6;52663:14;:22::i;:::-;52703:3:::0;52413:301;-1:-1:-1;;;;;;52413:301:0:o;43192:114::-;43249:7;43276:12;;;:6;:12;;;;;:22;;;;43192:114::o;43568:227::-;43660:12;;;;:6;:12;;;;;:22;;;43652:45;;43684:12;:10;:12::i;:::-;43652:7;:45::i;:::-;43644:105;;;;-1:-1:-1;;;43644:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43762:25;43773:4;43779:7;43762:10;:25::i;:::-;43568:227;;:::o;22908:83::-;22974:9;;;;22908:83;:::o;47605:121::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;46588:26:::1;::::0;;-1:-1:-1;;;46588:26:0;;;;;;;;::::1;::::0;;;47678:40:::1;::::0;47710:7;47678:16:::1;:40::i;:::-;47605:121:::0;:::o;47056:92::-;47133:7;;-1:-1:-1;;;47133:7:0;;;;;47056:92::o;44777:209::-;44875:12;:10;:12::i;:::-;-1:-1:-1;;;;;44864:23:0;:7;-1:-1:-1;;;;;44864:23:0;;44856:83;;;;-1:-1:-1;;;44856:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44952:26;44964:4;44970:7;44952:11;:26::i;25460:218::-;25548:4;25565:83;25574:12;:10;:12::i;:::-;25588:7;25597:50;25636:10;25597:11;:25;25609:12;:10;:12::i;:::-;-1:-1:-1;;;;;25597:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25597:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;25565:8;:83::i;53783:76::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;2655:7:::1;::::0;::::1;::::0;::::1;;;2647:40;;;::::0;;-1:-1:-1;;;2647:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;2647:40:0;;;;;;;;;;;;;::::1;;53841:10:::2;:8;:10::i;:::-;53783:76::o:0;49630:207::-;48867:27;48881:12;:10;:12::i;:::-;48867:13;:27::i;:::-;48859:88;;;;-1:-1:-1;;;48859:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49710:25:::1;49725:9;49710:14;:25::i;:::-;49746:30;49758:9;49769:6;49746:11;:30::i;:::-;49792:37;::::0;;;;;;;-1:-1:-1;;;;;49792:37:0;::::1;::::0;49807:1:::1;::::0;49792:37:::1;::::0;;;;::::1;::::0;;::::1;49630:207:::0;;:::o;49953:153::-;50001:15;50019:12;:10;:12::i;:::-;50001:30;;50042:22;50048:7;50057:6;50042:5;:22::i;:::-;50075:23;50090:7;50075:14;:23::i;2061:78::-;2124:7;;;;;;;;2061:78::o;48701:117::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;48169:24:::1;::::0;;-1:-1:-1;;;48169:24:0;;;;;;;;::::1;::::0;;;48772:38:::1;::::0;48802:7;48772:16:::1;:38::i;52722:83::-:0;52790:7;;52722:83;:::o;23219:119::-;-1:-1:-1;;;;;23312:18:0;23285:7;23312:18;;;;;;;;;;;;23219:119::o;4971:148::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;5062:6:::1;::::0;5041:40:::1;::::0;5078:1:::1;::::0;-1:-1:-1;;;;;5062:6:0::1;::::0;5041:40:::1;::::0;5078:1;;5041:40:::1;5092:6;:19:::0;;-1:-1:-1;;;;;;5092:19:0::1;::::0;;4971:148::o;50425:321::-;50494:26;50523:84;50560:6;50523:84;;;;;;;;;;;;;;;;;:32;50533:7;50542:12;:10;:12::i;:::-;50523:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;50494:113;;50620:51;50629:7;50638:12;:10;:12::i;:::-;50652:18;50620:8;:51::i;:::-;50682:22;50688:7;50697:6;50682:5;:22::i;:::-;50715:23;50730:7;50715:14;:23::i;:::-;50425:321;;;:::o;53613:75::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;2379:7:::1;::::0;::::1;::::0;::::1;;;2378:8;2370:37;;;::::0;;-1:-1:-1;;;2370:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;2370:37:0;;;;;;;;;;;;;::::1;;53672:8:::2;:6;:8::i;4329:79::-:0;4394:6;;-1:-1:-1;;;;;4394:6:0;4329:79;:::o;42865:138::-;42938:7;42965:12;;;:6;:12;;;;;:30;;42989:5;42965:30;:23;:30;:::i;:::-;42958:37;42865:138;-1:-1:-1;;;42865:138:0:o;41826:139::-;41895:4;41919:12;;;:6;:12;;;;;:38;;41949:7;41919:38;:29;:38;:::i;22183:87::-;22255:7;22248:14;;;;;;;;-1:-1:-1;;22248:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22222:13;;22248:14;;22255:7;;22248:14;;22255:7;22248:14;;;;;;;;;;;;;;;;;;;;;;;;40571:49;40616:4;40571:49;:::o;26181:269::-;26274:4;26291:129;26300:12;:10;:12::i;:::-;26314:7;26323:96;26362:15;26323:96;;;;;;;;;;;;;;;;;:11;:25;26335:12;:10;:12::i;:::-;-1:-1:-1;;;;;26323:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26323:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;51622:317::-;51738:4;51695:9;51706:12;:10;:12::i;:::-;47806:7;;-1:-1:-1;;;47806:7:0;;;;47802:172;;;47838:26;47854:9;47838:15;:26::i;:::-;:53;;;;47868:23;47884:6;47868:15;:23::i;:::-;47830:132;;;;-1:-1:-1;;;47830:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51755:25:::1;51770:9;51755:14;:25::i;:::-;51791:8;51802:33;51817:9;51828:6;51802:14;:33::i;:::-;51791:44;;51846:15;51864:12;:10;:12::i;:::-;51846:30;;51887:23;51902:7;51887:14;:23::i;:::-;-1:-1:-1::0;51928:3:0;51622:317;-1:-1:-1;;;;;51622:317:0:o;51097:312::-;51177:11;;51169:57;;;;;-1:-1:-1;;;51169:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51239:15;51257:12;:10;:12::i;:::-;51239:30;;51280:28;51292:7;51301:6;51280:11;:28::i;:::-;51319:23;51334:7;51319:14;:23::i;:::-;51384:1;-1:-1:-1;;;;;51358:43:0;51367:7;-1:-1:-1;;;;;51358:43:0;;51388:6;51396:4;51358:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51097:312;;;:::o;47477:120::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;46588:26:::1;::::0;;-1:-1:-1;;;46588:26:0;;;;;;;;::::1;::::0;;;47549:40:::1;::::0;47581:7;47549:16:::1;:40::i;47156:82::-:0;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;47216:7:::1;:14:::0;;-1:-1:-1;;;;47216:14:0::1;-1:-1:-1::0;;;47216:14:0::1;::::0;;47156:82::o;42139:127::-;42202:7;42229:12;;;:6;:12;;;;;:29;;:27;:29::i;44040:230::-;44133:12;;;;:6;:12;;;;;:22;;;44125:45;;44157:12;:10;:12::i;44125:45::-;44117:106;;;;-1:-1:-1;;;44117:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23789:151;-1:-1:-1;;;;;23905:18:0;;;23878:7;23905:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23789:151::o;47338:131::-;46588:26;;;-1:-1:-1;;;46588:26:0;;;;;;;;;;;;47400:4;;47424:37;;47453:7;47424:13;:37::i;5274:244::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5363:22:0;::::1;5355:73;;;;-1:-1:-1::0;;;5355:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5465:6;::::0;5444:38:::1;::::0;-1:-1:-1;;;;;5444:38:0;;::::1;::::0;5465:6:::1;::::0;5444:38:::1;::::0;5465:6:::1;::::0;5444:38:::1;5493:6;:17:::0;;-1:-1:-1;;;;;;5493:17:0::1;-1:-1:-1::0;;;;;5493:17:0;;;::::1;::::0;;;::::1;::::0;;5274:244::o;48577:116::-;4551:12;:10;:12::i;:::-;4541:6;;-1:-1:-1;;;;;4541:6:0;;;:22;;;4533:67;;;;;-1:-1:-1;;;4533:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4533:67:0;;;;;;;;;;;;;;;48169:24:::1;::::0;;-1:-1:-1;;;48169:24:0;;;;;;;;::::1;::::0;;;48647:38:::1;::::0;48677:7;48647:16:::1;:38::i;45813:199::-:0;45925:12;;;;:6;:12;;;;;;:22;;;45902:57;;45949:9;;45932:4;;45902:57;;45925:12;45902:57;45970:12;;;;:6;:12;;;;;;:22;;:34;45813:199::o;35846:143::-;35916:4;35940:41;35945:3;-1:-1:-1;;;;;35965:14:0;;35940:4;:41::i;637:106::-;725:10;637:106;:::o;29326:346::-;-1:-1:-1;;;;;29428:19:0;;29420:68;;;;-1:-1:-1;;;29420:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29507:21:0;;29499:68;;;;-1:-1:-1;;;29499:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29580:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29632:32;;;;;;;;;;;;;;;;;29326:346;;;:::o;52813:158::-;52874:9;52886:18;52896:7;52886:9;:18::i;:::-;52874:30;-1:-1:-1;52919:6:0;52915:49;;52942:7;:10;;;;;;52813:158;;:::o;24730:321::-;24836:4;24853:36;24863:6;24871:9;24882:6;24853:9;:36::i;:::-;24900:121;24909:6;24917:12;:10;:12::i;:::-;24931:89;24969:6;24931:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24931:19:0;;;;;;:11;:19;;;;;;24951:12;:10;:12::i;:::-;-1:-1:-1;;;;;24931:33:0;;;;;;;;;;;;-1:-1:-1;24931:33:0;;;:89;;:37;:89;:::i;24900:121::-;-1:-1:-1;25039:4:0;24730:321;;;;;:::o;52979:158::-;53040:9;53052:18;53062:7;53052:9;:18::i;:::-;53040:30;-1:-1:-1;53085:6:0;53081:49;;53108:7;:10;;-1:-1:-1;;53108:10:0;;;52979:158;;:::o;46020:188::-;46094:12;;;;:6;:12;;;;;:33;;46119:7;46094:33;:24;:33;:::i;:::-;46090:111;;;46176:12;:10;:12::i;:::-;-1:-1:-1;;;;;46149:40:0;46167:7;-1:-1:-1;;;;;46149:40:0;46161:4;46149:40;;;;;;;;;;46020:188;;:::o;46216:192::-;46291:12;;;;:6;:12;;;;;:36;;46319:7;46291:36;:27;:36;:::i;:::-;46287:114;;;46376:12;:10;:12::i;:::-;-1:-1:-1;;;;;46349:40:0;46367:7;-1:-1:-1;;;;;46349:40:0;46361:4;46349:40;;;;;;;;;;46216:192;;:::o;9275:181::-;9333:7;9365:5;;;9389:6;;;;9381:46;;;;;-1:-1:-1;;;9381:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3110:120;2655:7;;;;;;;2647:40;;;;;-1:-1:-1;;;2647:40:0;;;;;;;;;;;;-1:-1:-1;;;2647:40:0;;;;;;;;;;;;;;;3169:7:::1;:15:::0;;-1:-1:-1;;3169:15:0::1;::::0;;3200:22:::1;3209:12;:10;:12::i;:::-;3200:22;::::0;;-1:-1:-1;;;;;3200:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;3110:120::o:0;27760:378::-;-1:-1:-1;;;;;27844:21:0;;27836:65;;;;;-1:-1:-1;;;27836:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27914:49;27943:1;27947:7;27956:6;27914:20;:49::i;:::-;27991:12;;:24;;28008:6;27991:24;:16;:24;:::i;:::-;27976:12;:39;-1:-1:-1;;;;;28047:18:0;;:9;:18;;;;;;;;;;;:30;;28070:6;28047:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;28026:18:0;;:9;:18;;;;;;;;;;;:51;;;;28093:37;;;;;;;28026:18;;:9;;28093:37;;;;;;;;;;27760:378;;:::o;28470:418::-;-1:-1:-1;;;;;28554:21:0;;28546:67;;;;-1:-1:-1;;;28546:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28626:49;28647:7;28664:1;28668:6;28626:20;:49::i;:::-;28709:68;28732:6;28709:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28709:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;28688:18:0;;:9;:18;;;;;;;;;;:89;28803:12;;:24;;28820:6;28803:24;:16;:24;:::i;:::-;28788:12;:39;28843:37;;;;;;;;28869:1;;-1:-1:-1;;;;;28843:37:0;;;;;;;;;;;;28470:418;;:::o;10178:192::-;10264:7;10300:12;10292:6;;;;10284:29;;;;-1:-1:-1;;;10284:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10336:5:0;;;10178:192::o;2851:118::-;2379:7;;;;;;;2378:8;2370:37;;;;;-1:-1:-1;;;2370:37:0;;;;;;;;;;;;-1:-1:-1;;;2370:37:0;;;;;;;;;;;;;;;2911:7:::1;:14:::0;;-1:-1:-1;;2911:14:0::1;;;::::0;;2941:20:::1;2948:12;:10;:12::i;37105:149::-:0;37179:7;37222:22;37226:3;37238:5;37222:3;:22::i;36400:158::-;36480:4;36504:46;36514:3;-1:-1:-1;;;;;36534:14:0;;36504:9;:46::i;23551:175::-;23637:4;23654:42;23664:12;:10;:12::i;:::-;23678:9;23689:6;23654:9;:42::i;36644:117::-;36707:7;36734:19;36742:3;36734:7;:19::i;32500:414::-;32563:4;32585:21;32595:3;32600:5;32585:9;:21::i;:::-;32580:327;;-1:-1:-1;32623:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32806:18;;32784:19;;;:12;;;:19;;;;;;:40;;;;32839:11;;32580:327;-1:-1:-1;32890:5:0;32883:12;;26940:539;-1:-1:-1;;;;;27046:20:0;;27038:70;;;;-1:-1:-1;;;27038:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27127:23:0;;27119:71;;;;-1:-1:-1;;;27119:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27203:47;27224:6;27232:9;27243:6;27203:20;:47::i;:::-;27283:71;27305:6;27283:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27283:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;27263:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27388:20;;;;;;;:32;;27413:6;27388:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;27365:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27436:35;;;;;;;27365:20;;27436:35;;;;;;;;;;;;;26940:539;;;:::o;36165:149::-;36238:4;36262:44;36270:3;-1:-1:-1;;;;;36290:14:0;;36262:7;:44::i;53291:230::-;53392:44;53419:4;53425:2;53429:6;53392:26;:44::i;:::-;53458:8;:6;:8::i;:::-;53457:9;53449:64;;;;-1:-1:-1;;;53449:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9739:136;9797:7;9824:43;9828:1;9831;9824:43;;;;;;;;;;;;;;;;;:3;:43::i;35388:204::-;35483:18;;35455:7;;35483:26;-1:-1:-1;35475:73:0;;;;-1:-1:-1;;;35475:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35566:3;:11;;35578:5;35566:18;;;;;;;;;;;;;;;;35559:25;;35388:204;;;;:::o;34720:129::-;34793:4;34817:19;;;:12;;;;;:19;;;;;;:24;;;34720:129::o;34935:109::-;35018:18;;34935:109::o;33090:1544::-;33156:4;33295:19;;;:12;;;:19;;;;;;33331:15;;33327:1300;;33766:18;;-1:-1:-1;;33717:14:0;;;;33766:22;;;;33693:21;;33766:3;;:22;;34053;;;;;;;;;;;;;;34033:42;;34199:9;34170:3;:11;;34182:13;34170:26;;;;;;;;;;;;;;;;;;;:38;;;;34276:23;;;34318:1;34276:12;;;:23;;;;;;34302:17;;;34276:43;;34428:17;;34276:3;;34428:17;;;;;;;;;;;;;;;;;;;;;;34523:3;:12;;:19;34536:5;34523:19;;;;;;;;;;;34516:26;;;34566:4;34559:11;;;;;;;;33327:1300;34610:5;34603:12;;;;

Swarm Source

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