ETH Price: $3,013.72 (+4.39%)
Gas: 3 Gwei

Contract

0x0c572544a4Ee47904d54aaA6A970AF96B6f00E1b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Wasder Token (WAS) (@$0.0094)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Transfer198789312024-05-16 0:22:352 hrs ago1715818955IN
Wasder: WAS Token
0 ETH0.000252764.56433474
Approve198786652024-05-15 23:28:113 hrs ago1715815691IN
Wasder: WAS Token
0 ETH0.000091653.3499003
Approve198786612024-05-15 23:27:233 hrs ago1715815643IN
Wasder: WAS Token
0 ETH0.000168533.56596718
Approve198785042024-05-15 22:55:473 hrs ago1715813747IN
Wasder: WAS Token
0 ETH0.000121964.51290337
Approve198784132024-05-15 22:37:113 hrs ago1715812631IN
Wasder: WAS Token
0 ETH0.000126754.69024963
Transfer198783872024-05-15 22:31:593 hrs ago1715812319IN
Wasder: WAS Token
0 ETH0.000323755.37998448
Approve198783592024-05-15 22:26:234 hrs ago1715811983IN
Wasder: WAS Token
0 ETH0.000120214.44829518
Approve198783542024-05-15 22:25:234 hrs ago1715811923IN
Wasder: WAS Token
0 ETH0.000122954.54949989
Approve198783492024-05-15 22:24:234 hrs ago1715811863IN
Wasder: WAS Token
0 ETH0.000230634.9148798
Transfer198780882024-05-15 21:32:114 hrs ago1715808731IN
Wasder: WAS Token
0 ETH0.0005296513.84134424
Transfer198780522024-05-15 21:24:595 hrs ago1715808299IN
Wasder: WAS Token
0 ETH0.000399677.22193661
Transfer198777592024-05-15 20:26:116 hrs ago1715804771IN
Wasder: WAS Token
0 ETH0.0006764317.66049234
Transfer198777342024-05-15 20:20:476 hrs ago1715804447IN
Wasder: WAS Token
0 ETH0.0004152910.84266504
Transfer198776612024-05-15 20:06:116 hrs ago1715803571IN
Wasder: WAS Token
0 ETH0.0013840923
Transfer198774352024-05-15 19:20:477 hrs ago1715800847IN
Wasder: WAS Token
0 ETH0.0004307211.24541423
Transfer198773672024-05-15 19:07:117 hrs ago1715800031IN
Wasder: WAS Token
0 ETH0.0005110313.34651895
Transfer198771382024-05-15 18:20:598 hrs ago1715797259IN
Wasder: WAS Token
0 ETH0.000345519.02078518
Transfer198768592024-05-15 17:25:119 hrs ago1715793911IN
Wasder: WAS Token
0 ETH0.0005823815.20978895
Transfer198768462024-05-15 17:22:359 hrs ago1715793755IN
Wasder: WAS Token
0 ETH0.0006161510.23675494
Transfer198766292024-05-15 16:39:119 hrs ago1715791151IN
Wasder: WAS Token
0 ETH0.0009043821
Transfer198758222024-05-15 13:56:4712 hrs ago1715781407IN
Wasder: WAS Token
0 ETH0.0008426422
Transfer198758152024-05-15 13:55:2312 hrs ago1715781323IN
Wasder: WAS Token
0 ETH0.0009842317.76529548
Approve198743932024-05-15 9:10:1117 hrs ago1715764211IN
Wasder: WAS Token
0 ETH0.000385938.17641923
Transfer198742602024-05-15 8:43:3517 hrs ago1715762615IN
Wasder: WAS Token
0 ETH0.000581159.65529502
Approve198735032024-05-15 6:11:3520 hrs ago1715753495IN
Wasder: WAS Token
0 ETH0.000247935.25268684
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WasderToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-05-06
*/

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

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

 
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}




contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}



abstract contract IERC677Receiver {
  function onTokenTransfer(address _sender, uint _value, bytes memory _data) public virtual;
}



/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}





 
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}



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



contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}


 
 
 
/**
 * @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 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 += amount;
        _balances[account] += 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);

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



 
/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * 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, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

    /**
     * @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 override 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 override {
        require(hasRole(getRoleAdmin(role), _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 override {
        require(hasRole(getRoleAdmin(role), _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 override {
        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, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

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

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



 

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}



// ERC20 token
// - Burnable
// - Snapshot
// - EIP712 - human readable signed messages
// - ERC677 - transfer and call - approve tokens and call a function on another contract in one transaction
contract WasderToken is ERC20Snapshot, AccessControl, EIP712Base {

    uint256 public constant INITIAL_SUPPLY = 1000000000 * 10**18; //1,000,000,000 tokens (18 decimals)

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

    constructor(address to) ERC20("Wasder Token", "WAS") {
        _mint(to, INITIAL_SUPPLY); 

        _initializeEIP712("Wasder Token"); // domain

        _setupRole(DEFAULT_ADMIN_ROLE, to);

    }

    function burn(uint256 amount) external {
        require(hasRole(BURNER_ROLE, _msgSender()), "Caller is not a burner");
        require(amount > 0, "Amount to burn cannot be zero");

        _burn(msg.sender, amount);
    }

    function snapshot() external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not a admin");

        _snapshot();
    }

    // ERC677 Transfer and call
    event Transfer(address indexed from, address indexed to, uint256 value, bytes data);

    /**
    * @dev transfer token to a contract address with additional data if the recipient is a contact.
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    * @param _data The extra data to be passed to the receiving contract.
    */
    function transferAndCall(address _to, uint _value, bytes memory _data)
        external
        returns (bool success)
    {
        super.transfer(_to, _value);
        emit Transfer(_msgSender(), _to, _value, _data);
        if (isContract(_to)) {
            IERC677Receiver receiver = IERC677Receiver(_to);
            receiver.onTokenTransfer(_msgSender(), _value, _data);
        }
        return true;
    }

    function isContract(address _addr) private view returns (bool hasCode)
    {
        uint length;
        assembly { length := extcodesize(_addr) }
        return length > 0;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"to","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","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":[],"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":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162003b8a38038062003b8a833981810160405281019062000052919062000949565b6040518060400160405280600c81526020017f57617364657220546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f57415300000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d692919062000882565b508060049080519060200190620000ef92919062000882565b50505062000110816b033b2e3c9fd0803ce80000006200017260201b60201c565b620001566040518060400160405280600c81526020017f57617364657220546f6b656e0000000000000000000000000000000000000000815250620002d760201b60201c565b6200016b6000801b826200035960201b60201c565b5062000c89565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001dc9062000aab565b60405180910390fd5b620001f9600083836200036f60201b60201c565b80600260008282546200020d919062000afb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000264919062000afb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002cb919062000acd565b60405180910390a35050565b600a60009054906101000a900460ff16156200032a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003219062000a89565b60405180910390fd5b6200033b816200046a60201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b6200036b82826200051960201b60201c565b5050565b620003878383836200060b60201b620010711760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620003e457620003ce826200061060201b60201c565b620003de6200067360201b60201c565b62000465565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000441576200042b836200061060201b60201c565b6200043b6200067360201b60201c565b62000464565b62000452836200061060201b60201c565b62000463826200061060201b60201c565b5b5b505050565b6040518060800160405280604f815260200162003b3b604f91398051906020012081805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012030620004e16200069760201b60201c565b60001b604051602001620004fa95949392919062000a2c565b60405160208183030381529060405280519060200120600b8190555050565b6200052b8282620006a460201b60201c565b620006075760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ac6200070f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b62000670600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000664836200071760201b60201c565b6200075f60201b60201c565b50565b62000695600662000689620007f260201b60201c565b6200075f60201b60201c565b565b6000804690508091505090565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620007786008620007fc60201b620010761760201c565b9050806200078f846000016200080a60201b60201c565b1015620007ed5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b600081600001549050919050565b600080828054905014156200082357600090506200087d565b816001838054905062000837919062000b58565b815481106200086f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b828054620008909062000bdb565b90600052602060002090601f016020900481019282620008b4576000855562000900565b82601f10620008cf57805160ff191683800117855562000900565b8280016001018555821562000900579182015b82811115620008ff578251825591602001919060010190620008e2565b5b5090506200090f919062000913565b5090565b5b808211156200092e57600081600090555060010162000914565b5090565b600081519050620009438162000c6f565b92915050565b6000602082840312156200095c57600080fd5b60006200096c8482850162000932565b91505092915050565b620009808162000b93565b82525050565b620009918162000ba7565b82525050565b6000620009a6600e8362000aea565b91507f616c726561647920696e697465640000000000000000000000000000000000006000830152602082019050919050565b6000620009e8601f8362000aea565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000a268162000bd1565b82525050565b600060a08201905062000a43600083018862000986565b62000a52602083018762000986565b62000a61604083018662000986565b62000a70606083018562000975565b62000a7f608083018462000986565b9695505050505050565b6000602082019050818103600083015262000aa48162000997565b9050919050565b6000602082019050818103600083015262000ac681620009d9565b9050919050565b600060208201905062000ae4600083018462000a1b565b92915050565b600082825260208201905092915050565b600062000b088262000bd1565b915062000b158362000bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b4d5762000b4c62000c11565b5b828201905092915050565b600062000b658262000bd1565b915062000b728362000bd1565b92508282101562000b885762000b8762000c11565b5b828203905092915050565b600062000ba08262000bb1565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000bf457607f821691505b6020821081141562000c0b5762000c0a62000c40565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000c7a8162000b93565b811462000c8657600080fd5b50565b612ea28062000c996000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806339509351116100f95780639711715a11610097578063a457c2d711610071578063a457c2d714610533578063a9059cbb14610563578063d547741f14610593578063dd62ed3e146105af576101c4565b80639711715a146104db578063981b24d0146104e5578063a217fddf14610515576101c4565b80634ee2cd7e116100d35780634ee2cd7e1461042d57806370a082311461045d57806391d148541461048d57806395d89b41146104bd576101c4565b806339509351146103b15780634000aea0146103e157806342966c6814610411576101c4565b8063248a9ca3116101665780632ff2e9dc116101405780632ff2e9dc1461033b578063313ce567146103595780633408e4701461037757806336568abe14610395576101c4565b8063248a9ca3146102d1578063282c51f3146103015780632f2ff15d1461031f576101c4565b80630f7e5970116101a25780630f7e59701461024757806318160ddd1461026557806320379ee51461028357806323b872dd146102a1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061208c565b6105df565b6040516101f091906127e1565b60405180910390f35b610201610659565b60405161020e9190612817565b60405180910390f35b610231600480360381019061022c9190611f84565b6106eb565b60405161023e91906127e1565b60405180910390f35b61024f610709565b60405161025c9190612817565b60405180910390f35b61026d610742565b60405161027a9190612a59565b60405180910390f35b61028b61074c565b60405161029891906127fc565b60405180910390f35b6102bb60048036038101906102b69190611f35565b610756565b6040516102c891906127e1565b60405180910390f35b6102eb60048036038101906102e69190612027565b610857565b6040516102f891906127fc565b60405180910390f35b610309610877565b60405161031691906127fc565b60405180910390f35b61033960048036038101906103349190612050565b61089b565b005b610343610901565b6040516103509190612a59565b60405180910390f35b610361610911565b60405161036e9190612aa4565b60405180910390f35b61037f61091a565b60405161038c9190612a59565b60405180910390f35b6103af60048036038101906103aa9190612050565b610927565b005b6103cb60048036038101906103c69190611f84565b6109aa565b6040516103d891906127e1565b60405180910390f35b6103fb60048036038101906103f69190611fc0565b610a56565b60405161040891906127e1565b60405180910390f35b61042b600480360381019061042691906120b5565b610b67565b005b61044760048036038101906104429190611f84565b610c27565b6040516104549190612a59565b60405180910390f35b61047760048036038101906104729190611ed0565b610c97565b6040516104849190612a59565b60405180910390f35b6104a760048036038101906104a29190612050565b610cdf565b6040516104b491906127e1565b60405180910390f35b6104c5610d4a565b6040516104d29190612817565b60405180910390f35b6104e3610ddc565b005b6104ff60048036038101906104fa91906120b5565b610e3a565b60405161050c9190612a59565b60405180910390f35b61051d610e6b565b60405161052a91906127fc565b60405180910390f35b61054d60048036038101906105489190611f84565b610e72565b60405161055a91906127e1565b60405180910390f35b61057d60048036038101906105789190611f84565b610f66565b60405161058a91906127e1565b60405180910390f35b6105ad60048036038101906105a89190612050565b610f84565b005b6105c960048036038101906105c49190611ef9565b610fea565b6040516105d69190612a59565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610652575061065182611084565b5b9050919050565b60606003805461066890612ce0565b80601f016020809104026020016040519081016040528092919081815260200182805461069490612ce0565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b60006106ff6106f86110ee565b84846110f6565b6001905092915050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600254905090565b6000600b54905090565b60006107638484846112c1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107ae6110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561082e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082590612959565b60405180910390fd5b61084b8561083a6110ee565b85846108469190612bdf565b6110f6565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6108b46108a783610857565b6108af6110ee565b610cdf565b6108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90612899565b60405180910390fd5b6108fd8282611540565b5050565b6b033b2e3c9fd0803ce800000081565b60006012905090565b6000804690508091505090565b61092f6110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612a39565b60405180910390fd5b6109a68282611621565b5050565b6000610a4c6109b76110ee565b8484600160006109c56110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a479190612b58565b6110f6565b6001905092915050565b6000610a628484610f66565b508373ffffffffffffffffffffffffffffffffffffffff16610a826110ee565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168585604051610ac9929190612a74565b60405180910390a3610ada84611703565b15610b5c5760008490508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed36610b086110ee565b86866040518463ffffffff1660e01b8152600401610b28939291906127a3565b600060405180830381600087803b158015610b4257600080fd5b505af1158015610b56573d6000803e3d6000fd5b50505050505b600190509392505050565b610b987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610b936110ee565b610cdf565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612939565b60405180910390fd5b60008111610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906129f9565b60405180910390fd5b610c243382611716565b50565b6000806000610c7484600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206118ea565b9150915081610c8b57610c8685610c97565b610c8d565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610d5990612ce0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8590612ce0565b8015610dd25780601f10610da757610100808354040283529160200191610dd2565b820191906000526020600020905b815481529060010190602001808311610db557829003601f168201915b5050505050905090565b610df06000801b610deb6110ee565b610cdf565b610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612839565b60405180910390fd5b610e37611a08565b50565b6000806000610e4a8460066118ea565b9150915081610e6057610e5b610742565b610e62565b805b92505050919050565b6000801b81565b60008060016000610e816110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612a19565b60405180910390fd5b610f5b610f496110ee565b858584610f569190612bdf565b6110f6565b600191505092915050565b6000610f7a610f736110ee565b84846112c1565b6001905092915050565b610f9d610f9083610857565b610f986110ee565b610cdf565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612919565b60405180910390fd5b610fe68282611621565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906129b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906128d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112b49190612a59565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612999565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612879565b60405180910390fd5b6113ac838383611a60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906128f9565b60405180910390fd5b818161143e9190612bdf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ce9190612b58565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115329190612a59565b60405180910390a350505050565b61154a8282610cdf565b61161d5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c26110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61162b8282610cdf565b156116ff5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116a46110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612979565b60405180910390fd5b61179282600083611a60565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906128b9565b60405180910390fd5b81816118249190612bdf565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118789190612bdf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118dd9190612a59565b60405180910390a3505050565b60008060008411611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906129d9565b60405180910390fd5b61193a6008611076565b84111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612859565b60405180910390fd5b60006119948585600001611b1a90919063ffffffff16565b905083600001805490508114156119b2576000809250925050611a01565b60018460010182815481106119f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611a146008611c40565b6000611a206008611076565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a519190612a59565b60405180910390a18091505090565b611a6b838383611071565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ab657611aa982611c56565b611ab1611ca9565b611b15565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0157611af483611c56565b611afc611ca9565b611b14565b611b0a83611c56565b611b1382611c56565b5b5b505050565b60008083805490501415611b315760009050611c3a565b600080848054905090505b80821015611bbb576000611b508383611cbd565b905084868281548110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611ba557809150611bb5565b600181611bb29190612b58565b92505b50611b3c565b600082118015611c1957508385600184611bd59190612bdf565b81548110611c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611c3457600182611c2b9190612bdf565b92505050611c3a565b81925050505b92915050565b6001816000016000828254019250508190555050565b611ca6600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ca183610c97565b611d24565b50565b611cbb6006611cb6610742565b611d24565b565b600060028083611ccd9190612d12565b600285611cda9190612d12565b611ce49190612b58565b611cee9190612bae565b600283611cfb9190612bae565b600285611d089190612bae565b611d129190612b58565b611d1c9190612b58565b905092915050565b6000611d306008611076565b905080611d3f84600001611da1565b1015611d9c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611db85760009050611e0f565b8160018380549050611dca9190612bdf565b81548110611e01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000611e27611e2284612af0565b612abf565b905082815260208101848484011115611e3f57600080fd5b611e4a848285612c9e565b509392505050565b600081359050611e6181612e10565b92915050565b600081359050611e7681612e27565b92915050565b600081359050611e8b81612e3e565b92915050565b600082601f830112611ea257600080fd5b8135611eb2848260208601611e14565b91505092915050565b600081359050611eca81612e55565b92915050565b600060208284031215611ee257600080fd5b6000611ef084828501611e52565b91505092915050565b60008060408385031215611f0c57600080fd5b6000611f1a85828601611e52565b9250506020611f2b85828601611e52565b9150509250929050565b600080600060608486031215611f4a57600080fd5b6000611f5886828701611e52565b9350506020611f6986828701611e52565b9250506040611f7a86828701611ebb565b9150509250925092565b60008060408385031215611f9757600080fd5b6000611fa585828601611e52565b9250506020611fb685828601611ebb565b9150509250929050565b600080600060608486031215611fd557600080fd5b6000611fe386828701611e52565b9350506020611ff486828701611ebb565b925050604084013567ffffffffffffffff81111561201157600080fd5b61201d86828701611e91565b9150509250925092565b60006020828403121561203957600080fd5b600061204784828501611e67565b91505092915050565b6000806040838503121561206357600080fd5b600061207185828601611e67565b925050602061208285828601611e52565b9150509250929050565b60006020828403121561209e57600080fd5b60006120ac84828501611e7c565b91505092915050565b6000602082840312156120c757600080fd5b60006120d584828501611ebb565b91505092915050565b6120e781612c13565b82525050565b6120f681612c25565b82525050565b61210581612c31565b82525050565b600061211682612b20565b6121208185612b36565b9350612130818560208601612cad565b61213981612dff565b840191505092915050565b600061214f82612b2b565b6121598185612b47565b9350612169818560208601612cad565b61217281612dff565b840191505092915050565b600061218a601583612b47565b91507f43616c6c6572206973206e6f7420612061646d696e00000000000000000000006000830152602082019050919050565b60006121ca601d83612b47565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b600061220a602383612b47565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612270602f83612b47565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b60006122d6602283612b47565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061233c602283612b47565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123a2602683612b47565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612408603083612b47565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b600061246e601683612b47565b91507f43616c6c6572206973206e6f742061206275726e6572000000000000000000006000830152602082019050919050565b60006124ae602883612b47565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612514602183612b47565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061257a602583612b47565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125e0602483612b47565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612646601683612b47565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b6000612686601d83612b47565b91507f416d6f756e7420746f206275726e2063616e6e6f74206265207a65726f0000006000830152602082019050919050565b60006126c6602583612b47565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061272c602f83612b47565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61278e81612c87565b82525050565b61279d81612c91565b82525050565b60006060820190506127b860008301866120de565b6127c56020830185612785565b81810360408301526127d7818461210b565b9050949350505050565b60006020820190506127f660008301846120ed565b92915050565b600060208201905061281160008301846120fc565b92915050565b600060208201905081810360008301526128318184612144565b905092915050565b600060208201905081810360008301526128528161217d565b9050919050565b60006020820190508181036000830152612872816121bd565b9050919050565b60006020820190508181036000830152612892816121fd565b9050919050565b600060208201905081810360008301526128b281612263565b9050919050565b600060208201905081810360008301526128d2816122c9565b9050919050565b600060208201905081810360008301526128f28161232f565b9050919050565b6000602082019050818103600083015261291281612395565b9050919050565b60006020820190508181036000830152612932816123fb565b9050919050565b6000602082019050818103600083015261295281612461565b9050919050565b60006020820190508181036000830152612972816124a1565b9050919050565b6000602082019050818103600083015261299281612507565b9050919050565b600060208201905081810360008301526129b28161256d565b9050919050565b600060208201905081810360008301526129d2816125d3565b9050919050565b600060208201905081810360008301526129f281612639565b9050919050565b60006020820190508181036000830152612a1281612679565b9050919050565b60006020820190508181036000830152612a32816126b9565b9050919050565b60006020820190508181036000830152612a528161271f565b9050919050565b6000602082019050612a6e6000830184612785565b92915050565b6000604082019050612a896000830185612785565b8181036020830152612a9b818461210b565b90509392505050565b6000602082019050612ab96000830184612794565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612ae657612ae5612dd0565b5b8060405250919050565b600067ffffffffffffffff821115612b0b57612b0a612dd0565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b6382612c87565b9150612b6e83612c87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba357612ba2612d43565b5b828201905092915050565b6000612bb982612c87565b9150612bc483612c87565b925082612bd457612bd3612d72565b5b828204905092915050565b6000612bea82612c87565b9150612bf583612c87565b925082821015612c0857612c07612d43565b5b828203905092915050565b6000612c1e82612c67565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612ccb578082015181840152602081019050612cb0565b83811115612cda576000848401525b50505050565b60006002820490506001821680612cf857607f821691505b60208210811415612d0c57612d0b612da1565b5b50919050565b6000612d1d82612c87565b9150612d2883612c87565b925082612d3857612d37612d72565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612e1981612c13565b8114612e2457600080fd5b50565b612e3081612c31565b8114612e3b57600080fd5b50565b612e4781612c3b565b8114612e5257600080fd5b50565b612e5e81612c87565b8114612e6957600080fd5b5056fea264697066735822122007bccdde86ccb58a8ee910e4c18049afc4feac88b26270876b629364e680417b64736f6c63430008000033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000081ffdf1551e96c14e76040b310c17c3666ecea07

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806339509351116100f95780639711715a11610097578063a457c2d711610071578063a457c2d714610533578063a9059cbb14610563578063d547741f14610593578063dd62ed3e146105af576101c4565b80639711715a146104db578063981b24d0146104e5578063a217fddf14610515576101c4565b80634ee2cd7e116100d35780634ee2cd7e1461042d57806370a082311461045d57806391d148541461048d57806395d89b41146104bd576101c4565b806339509351146103b15780634000aea0146103e157806342966c6814610411576101c4565b8063248a9ca3116101665780632ff2e9dc116101405780632ff2e9dc1461033b578063313ce567146103595780633408e4701461037757806336568abe14610395576101c4565b8063248a9ca3146102d1578063282c51f3146103015780632f2ff15d1461031f576101c4565b80630f7e5970116101a25780630f7e59701461024757806318160ddd1461026557806320379ee51461028357806323b872dd146102a1576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061208c565b6105df565b6040516101f091906127e1565b60405180910390f35b610201610659565b60405161020e9190612817565b60405180910390f35b610231600480360381019061022c9190611f84565b6106eb565b60405161023e91906127e1565b60405180910390f35b61024f610709565b60405161025c9190612817565b60405180910390f35b61026d610742565b60405161027a9190612a59565b60405180910390f35b61028b61074c565b60405161029891906127fc565b60405180910390f35b6102bb60048036038101906102b69190611f35565b610756565b6040516102c891906127e1565b60405180910390f35b6102eb60048036038101906102e69190612027565b610857565b6040516102f891906127fc565b60405180910390f35b610309610877565b60405161031691906127fc565b60405180910390f35b61033960048036038101906103349190612050565b61089b565b005b610343610901565b6040516103509190612a59565b60405180910390f35b610361610911565b60405161036e9190612aa4565b60405180910390f35b61037f61091a565b60405161038c9190612a59565b60405180910390f35b6103af60048036038101906103aa9190612050565b610927565b005b6103cb60048036038101906103c69190611f84565b6109aa565b6040516103d891906127e1565b60405180910390f35b6103fb60048036038101906103f69190611fc0565b610a56565b60405161040891906127e1565b60405180910390f35b61042b600480360381019061042691906120b5565b610b67565b005b61044760048036038101906104429190611f84565b610c27565b6040516104549190612a59565b60405180910390f35b61047760048036038101906104729190611ed0565b610c97565b6040516104849190612a59565b60405180910390f35b6104a760048036038101906104a29190612050565b610cdf565b6040516104b491906127e1565b60405180910390f35b6104c5610d4a565b6040516104d29190612817565b60405180910390f35b6104e3610ddc565b005b6104ff60048036038101906104fa91906120b5565b610e3a565b60405161050c9190612a59565b60405180910390f35b61051d610e6b565b60405161052a91906127fc565b60405180910390f35b61054d60048036038101906105489190611f84565b610e72565b60405161055a91906127e1565b60405180910390f35b61057d60048036038101906105789190611f84565b610f66565b60405161058a91906127e1565b60405180910390f35b6105ad60048036038101906105a89190612050565b610f84565b005b6105c960048036038101906105c49190611ef9565b610fea565b6040516105d69190612a59565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610652575061065182611084565b5b9050919050565b60606003805461066890612ce0565b80601f016020809104026020016040519081016040528092919081815260200182805461069490612ce0565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b60006106ff6106f86110ee565b84846110f6565b6001905092915050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600254905090565b6000600b54905090565b60006107638484846112c1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107ae6110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561082e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082590612959565b60405180910390fd5b61084b8561083a6110ee565b85846108469190612bdf565b6110f6565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6108b46108a783610857565b6108af6110ee565b610cdf565b6108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90612899565b60405180910390fd5b6108fd8282611540565b5050565b6b033b2e3c9fd0803ce800000081565b60006012905090565b6000804690508091505090565b61092f6110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099390612a39565b60405180910390fd5b6109a68282611621565b5050565b6000610a4c6109b76110ee565b8484600160006109c56110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a479190612b58565b6110f6565b6001905092915050565b6000610a628484610f66565b508373ffffffffffffffffffffffffffffffffffffffff16610a826110ee565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168585604051610ac9929190612a74565b60405180910390a3610ada84611703565b15610b5c5760008490508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed36610b086110ee565b86866040518463ffffffff1660e01b8152600401610b28939291906127a3565b600060405180830381600087803b158015610b4257600080fd5b505af1158015610b56573d6000803e3d6000fd5b50505050505b600190509392505050565b610b987f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610b936110ee565b610cdf565b610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612939565b60405180910390fd5b60008111610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906129f9565b60405180910390fd5b610c243382611716565b50565b6000806000610c7484600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206118ea565b9150915081610c8b57610c8685610c97565b610c8d565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610d5990612ce0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8590612ce0565b8015610dd25780601f10610da757610100808354040283529160200191610dd2565b820191906000526020600020905b815481529060010190602001808311610db557829003601f168201915b5050505050905090565b610df06000801b610deb6110ee565b610cdf565b610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612839565b60405180910390fd5b610e37611a08565b50565b6000806000610e4a8460066118ea565b9150915081610e6057610e5b610742565b610e62565b805b92505050919050565b6000801b81565b60008060016000610e816110ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590612a19565b60405180910390fd5b610f5b610f496110ee565b858584610f569190612bdf565b6110f6565b600191505092915050565b6000610f7a610f736110ee565b84846112c1565b6001905092915050565b610f9d610f9083610857565b610f986110ee565b610cdf565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612919565b60405180910390fd5b610fe68282611621565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906129b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906128d9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112b49190612a59565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612999565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612879565b60405180910390fd5b6113ac838383611a60565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906128f9565b60405180910390fd5b818161143e9190612bdf565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ce9190612b58565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115329190612a59565b60405180910390a350505050565b61154a8282610cdf565b61161d5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115c26110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61162b8282610cdf565b156116ff5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116a46110ee565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612979565b60405180910390fd5b61179282600083611a60565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906128b9565b60405180910390fd5b81816118249190612bdf565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118789190612bdf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118dd9190612a59565b60405180910390a3505050565b60008060008411611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906129d9565b60405180910390fd5b61193a6008611076565b84111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612859565b60405180910390fd5b60006119948585600001611b1a90919063ffffffff16565b905083600001805490508114156119b2576000809250925050611a01565b60018460010182815481106119f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611a146008611c40565b6000611a206008611076565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a519190612a59565b60405180910390a18091505090565b611a6b838383611071565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ab657611aa982611c56565b611ab1611ca9565b611b15565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0157611af483611c56565b611afc611ca9565b611b14565b611b0a83611c56565b611b1382611c56565b5b5b505050565b60008083805490501415611b315760009050611c3a565b600080848054905090505b80821015611bbb576000611b508383611cbd565b905084868281548110611b8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611ba557809150611bb5565b600181611bb29190612b58565b92505b50611b3c565b600082118015611c1957508385600184611bd59190612bdf565b81548110611c0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611c3457600182611c2b9190612bdf565b92505050611c3a565b81925050505b92915050565b6001816000016000828254019250508190555050565b611ca6600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ca183610c97565b611d24565b50565b611cbb6006611cb6610742565b611d24565b565b600060028083611ccd9190612d12565b600285611cda9190612d12565b611ce49190612b58565b611cee9190612bae565b600283611cfb9190612bae565b600285611d089190612bae565b611d129190612b58565b611d1c9190612b58565b905092915050565b6000611d306008611076565b905080611d3f84600001611da1565b1015611d9c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60008082805490501415611db85760009050611e0f565b8160018380549050611dca9190612bdf565b81548110611e01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000611e27611e2284612af0565b612abf565b905082815260208101848484011115611e3f57600080fd5b611e4a848285612c9e565b509392505050565b600081359050611e6181612e10565b92915050565b600081359050611e7681612e27565b92915050565b600081359050611e8b81612e3e565b92915050565b600082601f830112611ea257600080fd5b8135611eb2848260208601611e14565b91505092915050565b600081359050611eca81612e55565b92915050565b600060208284031215611ee257600080fd5b6000611ef084828501611e52565b91505092915050565b60008060408385031215611f0c57600080fd5b6000611f1a85828601611e52565b9250506020611f2b85828601611e52565b9150509250929050565b600080600060608486031215611f4a57600080fd5b6000611f5886828701611e52565b9350506020611f6986828701611e52565b9250506040611f7a86828701611ebb565b9150509250925092565b60008060408385031215611f9757600080fd5b6000611fa585828601611e52565b9250506020611fb685828601611ebb565b9150509250929050565b600080600060608486031215611fd557600080fd5b6000611fe386828701611e52565b9350506020611ff486828701611ebb565b925050604084013567ffffffffffffffff81111561201157600080fd5b61201d86828701611e91565b9150509250925092565b60006020828403121561203957600080fd5b600061204784828501611e67565b91505092915050565b6000806040838503121561206357600080fd5b600061207185828601611e67565b925050602061208285828601611e52565b9150509250929050565b60006020828403121561209e57600080fd5b60006120ac84828501611e7c565b91505092915050565b6000602082840312156120c757600080fd5b60006120d584828501611ebb565b91505092915050565b6120e781612c13565b82525050565b6120f681612c25565b82525050565b61210581612c31565b82525050565b600061211682612b20565b6121208185612b36565b9350612130818560208601612cad565b61213981612dff565b840191505092915050565b600061214f82612b2b565b6121598185612b47565b9350612169818560208601612cad565b61217281612dff565b840191505092915050565b600061218a601583612b47565b91507f43616c6c6572206973206e6f7420612061646d696e00000000000000000000006000830152602082019050919050565b60006121ca601d83612b47565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b600061220a602383612b47565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612270602f83612b47565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b60006122d6602283612b47565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061233c602283612b47565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123a2602683612b47565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612408603083612b47565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b600061246e601683612b47565b91507f43616c6c6572206973206e6f742061206275726e6572000000000000000000006000830152602082019050919050565b60006124ae602883612b47565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612514602183612b47565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061257a602583612b47565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125e0602483612b47565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612646601683612b47565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b6000612686601d83612b47565b91507f416d6f756e7420746f206275726e2063616e6e6f74206265207a65726f0000006000830152602082019050919050565b60006126c6602583612b47565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061272c602f83612b47565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61278e81612c87565b82525050565b61279d81612c91565b82525050565b60006060820190506127b860008301866120de565b6127c56020830185612785565b81810360408301526127d7818461210b565b9050949350505050565b60006020820190506127f660008301846120ed565b92915050565b600060208201905061281160008301846120fc565b92915050565b600060208201905081810360008301526128318184612144565b905092915050565b600060208201905081810360008301526128528161217d565b9050919050565b60006020820190508181036000830152612872816121bd565b9050919050565b60006020820190508181036000830152612892816121fd565b9050919050565b600060208201905081810360008301526128b281612263565b9050919050565b600060208201905081810360008301526128d2816122c9565b9050919050565b600060208201905081810360008301526128f28161232f565b9050919050565b6000602082019050818103600083015261291281612395565b9050919050565b60006020820190508181036000830152612932816123fb565b9050919050565b6000602082019050818103600083015261295281612461565b9050919050565b60006020820190508181036000830152612972816124a1565b9050919050565b6000602082019050818103600083015261299281612507565b9050919050565b600060208201905081810360008301526129b28161256d565b9050919050565b600060208201905081810360008301526129d2816125d3565b9050919050565b600060208201905081810360008301526129f281612639565b9050919050565b60006020820190508181036000830152612a1281612679565b9050919050565b60006020820190508181036000830152612a32816126b9565b9050919050565b60006020820190508181036000830152612a528161271f565b9050919050565b6000602082019050612a6e6000830184612785565b92915050565b6000604082019050612a896000830185612785565b8181036020830152612a9b818461210b565b90509392505050565b6000602082019050612ab96000830184612794565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612ae657612ae5612dd0565b5b8060405250919050565b600067ffffffffffffffff821115612b0b57612b0a612dd0565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b6382612c87565b9150612b6e83612c87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba357612ba2612d43565b5b828201905092915050565b6000612bb982612c87565b9150612bc483612c87565b925082612bd457612bd3612d72565b5b828204905092915050565b6000612bea82612c87565b9150612bf583612c87565b925082821015612c0857612c07612d43565b5b828203905092915050565b6000612c1e82612c67565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612ccb578082015181840152602081019050612cb0565b83811115612cda576000848401525b50505050565b60006002820490506001821680612cf857607f821691505b60208210811415612d0c57612d0b612da1565b5b50919050565b6000612d1d82612c87565b9150612d2883612c87565b925082612d3857612d37612d72565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612e1981612c13565b8114612e2457600080fd5b50565b612e3081612c31565b8114612e3b57600080fd5b50565b612e4781612c3b565b8114612e5257600080fd5b50565b612e5e81612c87565b8114612e6957600080fd5b5056fea264697066735822122007bccdde86ccb58a8ee910e4c18049afc4feac88b26270876b629364e680417b64736f6c63430008000033

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

00000000000000000000000081ffdf1551e96c14e76040b310c17c3666ecea07

-----Decoded View---------------
Arg [0] : to (address): 0x81Ffdf1551E96C14E76040B310c17C3666eCea07

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000081ffdf1551e96c14e76040b310c17c3666ecea07


Deployed Bytecode Sourcemap

37388:1891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25174:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12902:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15042:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9253:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13995:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10031:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15693:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25811:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37568:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26196:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37462:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13846:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10140:161;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27415:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16524:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38656:425;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37850:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33289:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14166:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25483:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13112:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38086:147;;;:::i;:::-;;33659:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23939:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17242:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14506:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26673:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14744:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25174:217;25259:4;25298:32;25283:47;;;:11;:47;;;;:100;;;;25347:36;25371:11;25347:23;:36::i;:::-;25283:100;25276:107;;25174:217;;;:::o;12902:91::-;12947:13;12980:5;12973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12902:91;:::o;15042:169::-;15125:4;15142:39;15151:12;:10;:12::i;:::-;15165:7;15174:6;15142:8;:39::i;:::-;15199:4;15192:11;;15042:169;;;;:::o;9253:43::-;;;;;;;;;;;;;;;;;;;:::o;13995:108::-;14056:7;14083:12;;14076:19;;13995:108;:::o;10031:101::-;10082:7;10109:15;;10102:22;;10031:101;:::o;15693:422::-;15799:4;15816:36;15826:6;15834:9;15845:6;15816:9;:36::i;:::-;15865:24;15892:11;:19;15904:6;15892:19;;;;;;;;;;;;;;;:33;15912:12;:10;:12::i;:::-;15892:33;;;;;;;;;;;;;;;;15865:60;;15964:6;15944:16;:26;;15936:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16026:57;16035:6;16043:12;:10;:12::i;:::-;16076:6;16057:16;:25;;;;:::i;:::-;16026:8;:57::i;:::-;16103:4;16096:11;;;15693:422;;;;;:::o;25811:123::-;25877:7;25904:6;:12;25911:4;25904:12;;;;;;;;;;;:22;;;25897:29;;25811:123;;;:::o;37568:62::-;37606:24;37568:62;:::o;26196:232::-;26289:41;26297:18;26310:4;26297:12;:18::i;:::-;26317:12;:10;:12::i;:::-;26289:7;:41::i;:::-;26281:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;26395:25;26406:4;26412:7;26395:10;:25::i;:::-;26196:232;;:::o;37462:60::-;37503:19;37462:60;:::o;13846:84::-;13895:5;13920:2;13913:9;;13846:84;:::o;10140:161::-;10183:7;10203:10;10254:9;10248:15;;10291:2;10284:9;;;10140:161;:::o;27415:218::-;27522:12;:10;:12::i;:::-;27511:23;;:7;:23;;;27503:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;27599:26;27611:4;27617:7;27599:11;:26::i;:::-;27415:218;;:::o;16524:215::-;16612:4;16629:80;16638:12;:10;:12::i;:::-;16652:7;16698:10;16661:11;:25;16673:12;:10;:12::i;:::-;16661:25;;;;;;;;;;;;;;;:34;16687:7;16661:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;16629:8;:80::i;:::-;16727:4;16720:11;;16524:215;;;;:::o;38656:425::-;38763:12;38793:27;38808:3;38813:6;38793:14;:27::i;:::-;;38859:3;38836:42;;38845:12;:10;:12::i;:::-;38836:42;;;38864:6;38872:5;38836:42;;;;;;;:::i;:::-;;;;;;;;38893:15;38904:3;38893:10;:15::i;:::-;38889:163;;;38925:24;38968:3;38925:47;;38987:8;:24;;;39012:12;:10;:12::i;:::-;39026:6;39034:5;38987:53;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38889:163;;39069:4;39062:11;;38656:425;;;;;:::o;37850:228::-;37908:34;37606:24;37929:12;:10;:12::i;:::-;37908:7;:34::i;:::-;37900:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;37997:1;37988:6;:10;37980:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;38045:25;38051:10;38063:6;38045:5;:25::i;:::-;37850:228;:::o;33289:266::-;33376:7;33397:16;33415:13;33432:55;33441:10;33453:24;:33;33478:7;33453:33;;;;;;;;;;;;;;;33432:8;:55::i;:::-;33396:91;;;;33507:11;:40;;33529:18;33539:7;33529:9;:18::i;:::-;33507:40;;;33521:5;33507:40;33500:47;;;;33289:266;;;;:::o;14166:127::-;14240:7;14267:9;:18;14277:7;14267:18;;;;;;;;;;;;;;;;14260:25;;14166:127;;;:::o;25483:139::-;25561:4;25585:6;:12;25592:4;25585:12;;;;;;;;;;;:20;;:29;25606:7;25585:29;;;;;;;;;;;;;;;;;;;;;;;;;25578:36;;25483:139;;;;:::o;13112:95::-;13159:13;13192:7;13185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13112:95;:::o;38086:147::-;38134:41;23984:4;38142:18;;38162:12;:10;:12::i;:::-;38134:7;:41::i;:::-;38126:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38214:11;:9;:11::i;:::-;;38086:147::o;33659:233::-;33730:7;33751:16;33769:13;33786:43;33795:10;33807:21;33786:8;:43::i;:::-;33750:79;;;;33849:11;:35;;33871:13;:11;:13::i;:::-;33849:35;;;33863:5;33849:35;33842:42;;;;33659:233;;;:::o;23939:49::-;23984:4;23939:49;;;:::o;17242:377::-;17335:4;17352:24;17379:11;:25;17391:12;:10;:12::i;:::-;17379:25;;;;;;;;;;;;;;;:34;17405:7;17379:34;;;;;;;;;;;;;;;;17352:61;;17452:15;17432:16;:35;;17424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17520:67;17529:12;:10;:12::i;:::-;17543:7;17571:15;17552:16;:34;;;;:::i;:::-;17520:8;:67::i;:::-;17607:4;17600:11;;;17242:377;;;;:::o;14506:175::-;14592:4;14609:42;14619:12;:10;:12::i;:::-;14633:9;14644:6;14609:9;:42::i;:::-;14669:4;14662:11;;14506:175;;;;:::o;26673:235::-;26767:41;26775:18;26788:4;26775:12;:18::i;:::-;26795:12;:10;:12::i;:::-;26767:7;:41::i;:::-;26759:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;26874:26;26886:4;26892:7;26874:11;:26::i;:::-;26673:235;;:::o;14744:151::-;14833:7;14860:11;:18;14872:5;14860:18;;;;;;;;;;;;;;;:27;14879:7;14860:27;;;;;;;;;;;;;;;;14853:34;;14744:151;;;;:::o;21547:92::-;;;;:::o;3894:114::-;3959:7;3986;:14;;;3979:21;;3894:114;;;:::o;6179:157::-;6264:4;6303:25;6288:40;;;:11;:40;;;;6281:47;;6179:157;;;:::o;599:98::-;652:7;679:10;672:17;;599:98;:::o;20598:346::-;20717:1;20700:19;;:5;:19;;;;20692:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20798:1;20779:21;;:7;:21;;;;20771:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20882:6;20852:11;:18;20864:5;20852:18;;;;;;;;;;;;;;;:27;20871:7;20852:27;;;;;;;;;;;;;;;:36;;;;20920:7;20904:32;;20913:5;20904:32;;;20929:6;20904:32;;;;;;:::i;:::-;;;;;;;;20598:346;;;:::o;18109:604::-;18233:1;18215:20;;:6;:20;;;;18207:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18317:1;18296:23;;:9;:23;;;;18288:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18372:47;18393:6;18401:9;18412:6;18372:20;:47::i;:::-;18432:21;18456:9;:17;18466:6;18456:17;;;;;;;;;;;;;;;;18432:41;;18509:6;18492:13;:23;;18484:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18605:6;18589:13;:22;;;;:::i;:::-;18569:9;:17;18579:6;18569:17;;;;;;;;;;;;;;;:42;;;;18646:6;18622:9;:20;18632:9;18622:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;18687:9;18670:35;;18679:6;18670:35;;;18698:6;18670:35;;;;;;:::i;:::-;;;;;;;;18109:604;;;;:::o;28663:229::-;28738:22;28746:4;28752:7;28738;:22::i;:::-;28733:152;;28809:4;28777:6;:12;28784:4;28777:12;;;;;;;;;;;:20;;:29;28798:7;28777:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;28860:12;:10;:12::i;:::-;28833:40;;28851:7;28833:40;;28845:4;28833:40;;;;;;;;;;28733:152;28663:229;;:::o;28900:230::-;28975:22;28983:4;28989:7;28975;:22::i;:::-;28971:152;;;29046:5;29014:6;:12;29021:4;29014:12;;;;;;;;;;;:20;;:29;29035:7;29014:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29098:12;:10;:12::i;:::-;29071:40;;29089:7;29071:40;;29083:4;29071:40;;;;;;;;;;28971:152;28900:230;;:::o;39089:185::-;39146:12;39176:11;39231:5;39219:18;39209:28;;39265:1;39256:6;:10;39249:17;;;39089:185;;;:::o;19666:494::-;19769:1;19750:21;;:7;:21;;;;19742:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19822:49;19843:7;19860:1;19864:6;19822:20;:49::i;:::-;19884:22;19909:9;:18;19919:7;19909:18;;;;;;;;;;;;;;;;19884:43;;19964:6;19946:14;:24;;19938:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20058:6;20041:14;:23;;;;:::i;:::-;20020:9;:18;20030:7;20020:18;;;;;;;;;;;;;;;:44;;;;20091:6;20075:12;;:22;;;;;;;:::i;:::-;;;;;;;;20141:1;20115:37;;20124:7;20115:37;;;20145:6;20115:37;;;;;;:::i;:::-;;;;;;;;19666:494;;;:::o;34661:1692::-;34759:4;34765:7;34811:1;34798:10;:14;34790:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;34926:28;:18;:26;:28::i;:::-;34912:10;:42;;34904:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;36127:13;36143:40;36172:10;36143:9;:13;;:28;;:40;;;;:::i;:::-;36127:56;;36209:9;:13;;:20;;;;36200:5;:29;36196:150;;;36254:5;36261:1;36246:17;;;;;;;36196:150;36304:4;36310:9;:16;;36327:5;36310:23;;;;;;;;;;;;;;;;;;;;;;;;36296:38;;;;;34661:1692;;;;;;:::o;32949:228::-;32996:7;33016:30;:18;:28;:30::i;:::-;33059:17;33079:28;:18;:26;:28::i;:::-;33059:48;;33123:19;33132:9;33123:19;;;;;;:::i;:::-;;;;;;;;33160:9;33153:16;;;32949:228;:::o;34111:542::-;34218:44;34245:4;34251:2;34255:6;34218:26;:44::i;:::-;34293:1;34277:18;;:4;:18;;;34273:373;;;34325:26;34348:2;34325:22;:26::i;:::-;34362:28;:26;:28::i;:::-;34273:373;;;34424:1;34410:16;;:2;:16;;;34406:240;;;34456:28;34479:4;34456:22;:28::i;:::-;34495;:26;:28::i;:::-;34406:240;;;34571:28;34594:4;34571:22;:28::i;:::-;34610:26;34633:2;34610:22;:26::i;:::-;34406:240;34273:373;34111:542;;;:::o;2235:918::-;2324:7;2364:1;2348:5;:12;;;;:17;2344:58;;;2389:1;2382:8;;;;2344:58;2414:11;2440:12;2455:5;:12;;;;2440:27;;2480:424;2493:4;2487:3;:10;2480:424;;;2514:11;2528:23;2541:3;2546:4;2528:12;:23::i;:::-;2514:37;;2785:7;2772:5;2778:3;2772:10;;;;;;;;;;;;;;;;;;;;;;;;:20;2768:125;;;2820:3;2813:10;;2768:125;;;2876:1;2870:3;:7;;;;:::i;:::-;2864:13;;2768:125;2480:424;;;;3030:1;3024:3;:7;:36;;;;;3053:7;3035:5;3047:1;3041:3;:7;;;;:::i;:::-;3035:14;;;;;;;;;;;;;;;;;;;;;;;;:25;3024:36;3020:126;;;3090:1;3084:3;:7;;;;:::i;:::-;3077:14;;;;;;3020:126;3131:3;3124:10;;;;2235:918;;;;;:::o;4016:127::-;4123:1;4105:7;:14;;;:19;;;;;;;;;;;4016:127;:::o;36361:146::-;36429:70;36445:24;:33;36470:7;36445:33;;;;;;;;;;;;;;;36480:18;36490:7;36480:9;:18::i;:::-;36429:15;:70::i;:::-;36361:146;:::o;36515:118::-;36572:53;36588:21;36611:13;:11;:13::i;:::-;36572:15;:53::i;:::-;36515:118::o;1522:193::-;1584:7;1705:1;1700;1696;:5;;;;:::i;:::-;1692:1;1688;:5;;;;:::i;:::-;:13;;;;:::i;:::-;1687:19;;;;:::i;:::-;1681:1;1677;:5;;;;:::i;:::-;1671:1;1667;:5;;;;:::i;:::-;1666:17;;;;:::i;:::-;:41;;;;:::i;:::-;1659:48;;1522:193;;;;:::o;36641:315::-;36736:17;36756:28;:18;:26;:28::i;:::-;36736:48;;36832:9;36799:30;36815:9;:13;;36799:15;:30::i;:::-;:42;36795:154;;;36858:9;:13;;36877:9;36858:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36902:9;:16;;36924:12;36902:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36795:154;36641:315;;;:::o;36964:212::-;37034:7;37072:1;37058:3;:10;;;;:15;37054:115;;;37097:1;37090:8;;;;37054:115;37138:3;37155:1;37142:3;:10;;;;:14;;;;:::i;:::-;37138:19;;;;;;;;;;;;;;;;;;;;;;;;37131:26;;36964:212;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:139::-;;584:6;571:20;562:29;;600:33;627:5;600:33;:::i;:::-;552:87;;;;:::o;645:137::-;;728:6;715:20;706:29;;744:32;770:5;744:32;:::i;:::-;696:86;;;;:::o;801:271::-;;905:3;898:4;890:6;886:17;882:27;872:2;;923:1;920;913:12;872:2;963:6;950:20;988:78;1062:3;1054:6;1047:4;1039:6;1035:17;988:78;:::i;:::-;979:87;;862:210;;;;;:::o;1078:139::-;;1162:6;1149:20;1140:29;;1178:33;1205:5;1178:33;:::i;:::-;1130:87;;;;:::o;1223:262::-;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1347:1;1344;1337:12;1299:2;1390:1;1415:53;1460:7;1451:6;1440:9;1436:22;1415:53;:::i;:::-;1405:63;;1361:117;1289:196;;;;:::o;1491:407::-;;;1616:2;1604:9;1595:7;1591:23;1587:32;1584:2;;;1632:1;1629;1622:12;1584:2;1675:1;1700:53;1745:7;1736:6;1725:9;1721:22;1700:53;:::i;:::-;1690:63;;1646:117;1802:2;1828:53;1873:7;1864:6;1853:9;1849:22;1828:53;:::i;:::-;1818:63;;1773:118;1574:324;;;;;:::o;1904:552::-;;;;2046:2;2034:9;2025:7;2021:23;2017:32;2014:2;;;2062:1;2059;2052:12;2014:2;2105:1;2130:53;2175:7;2166:6;2155:9;2151:22;2130:53;:::i;:::-;2120:63;;2076:117;2232:2;2258:53;2303:7;2294:6;2283:9;2279:22;2258:53;:::i;:::-;2248:63;;2203:118;2360:2;2386:53;2431:7;2422:6;2411:9;2407:22;2386:53;:::i;:::-;2376:63;;2331:118;2004:452;;;;;:::o;2462:407::-;;;2587:2;2575:9;2566:7;2562:23;2558:32;2555:2;;;2603:1;2600;2593:12;2555:2;2646:1;2671:53;2716:7;2707:6;2696:9;2692:22;2671:53;:::i;:::-;2661:63;;2617:117;2773:2;2799:53;2844:7;2835:6;2824:9;2820:22;2799:53;:::i;:::-;2789:63;;2744:118;2545:324;;;;;:::o;2875:663::-;;;;3026:2;3014:9;3005:7;3001:23;2997:32;2994:2;;;3042:1;3039;3032:12;2994:2;3085:1;3110:53;3155:7;3146:6;3135:9;3131:22;3110:53;:::i;:::-;3100:63;;3056:117;3212:2;3238:53;3283:7;3274:6;3263:9;3259:22;3238:53;:::i;:::-;3228:63;;3183:118;3368:2;3357:9;3353:18;3340:32;3399:18;3391:6;3388:30;3385:2;;;3431:1;3428;3421:12;3385:2;3459:62;3513:7;3504:6;3493:9;3489:22;3459:62;:::i;:::-;3449:72;;3311:220;2984:554;;;;;:::o;3544:262::-;;3652:2;3640:9;3631:7;3627:23;3623:32;3620:2;;;3668:1;3665;3658:12;3620:2;3711:1;3736:53;3781:7;3772:6;3761:9;3757:22;3736:53;:::i;:::-;3726:63;;3682:117;3610:196;;;;:::o;3812:407::-;;;3937:2;3925:9;3916:7;3912:23;3908:32;3905:2;;;3953:1;3950;3943:12;3905:2;3996:1;4021:53;4066:7;4057:6;4046:9;4042:22;4021:53;:::i;:::-;4011:63;;3967:117;4123:2;4149:53;4194:7;4185:6;4174:9;4170:22;4149:53;:::i;:::-;4139:63;;4094:118;3895:324;;;;;:::o;4225:260::-;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:52;4460:7;4451:6;4440:9;4436:22;4416:52;:::i;:::-;4406:62;;4362:116;4290:195;;;;:::o;4491:262::-;;4599:2;4587:9;4578:7;4574:23;4570:32;4567:2;;;4615:1;4612;4605:12;4567:2;4658:1;4683:53;4728:7;4719:6;4708:9;4704:22;4683:53;:::i;:::-;4673:63;;4629:117;4557:196;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4824:53;;:::o;4883:109::-;4964:21;4979:5;4964:21;:::i;:::-;4959:3;4952:34;4942:50;;:::o;4998:118::-;5085:24;5103:5;5085:24;:::i;:::-;5080:3;5073:37;5063:53;;:::o;5122:360::-;;5236:38;5268:5;5236:38;:::i;:::-;5290:70;5353:6;5348:3;5290:70;:::i;:::-;5283:77;;5369:52;5414:6;5409:3;5402:4;5395:5;5391:16;5369:52;:::i;:::-;5446:29;5468:6;5446:29;:::i;:::-;5441:3;5437:39;5430:46;;5212:270;;;;;:::o;5488:364::-;;5604:39;5637:5;5604:39;:::i;:::-;5659:71;5723:6;5718:3;5659:71;:::i;:::-;5652:78;;5739:52;5784:6;5779:3;5772:4;5765:5;5761:16;5739:52;:::i;:::-;5816:29;5838:6;5816:29;:::i;:::-;5811:3;5807:39;5800:46;;5580:272;;;;;:::o;5858:319::-;;6021:67;6085:2;6080:3;6021:67;:::i;:::-;6014:74;;6118:23;6114:1;6109:3;6105:11;6098:44;6168:2;6163:3;6159:12;6152:19;;6004:173;;;:::o;6183:327::-;;6346:67;6410:2;6405:3;6346:67;:::i;:::-;6339:74;;6443:31;6439:1;6434:3;6430:11;6423:52;6501:2;6496:3;6492:12;6485:19;;6329:181;;;:::o;6516:367::-;;6679:67;6743:2;6738:3;6679:67;:::i;:::-;6672:74;;6776:34;6772:1;6767:3;6763:11;6756:55;6842:5;6837:2;6832:3;6828:12;6821:27;6874:2;6869:3;6865:12;6858:19;;6662:221;;;:::o;6889:379::-;;7052:67;7116:2;7111:3;7052:67;:::i;:::-;7045:74;;7149:34;7145:1;7140:3;7136:11;7129:55;7215:17;7210:2;7205:3;7201:12;7194:39;7259:2;7254:3;7250:12;7243:19;;7035:233;;;:::o;7274:366::-;;7437:67;7501:2;7496:3;7437:67;:::i;:::-;7430:74;;7534:34;7530:1;7525:3;7521:11;7514:55;7600:4;7595:2;7590:3;7586:12;7579:26;7631:2;7626:3;7622:12;7615:19;;7420:220;;;:::o;7646:366::-;;7809:67;7873:2;7868:3;7809:67;:::i;:::-;7802:74;;7906:34;7902:1;7897:3;7893:11;7886:55;7972:4;7967:2;7962:3;7958:12;7951:26;8003:2;7998:3;7994:12;7987:19;;7792:220;;;:::o;8018:370::-;;8181:67;8245:2;8240:3;8181:67;:::i;:::-;8174:74;;8278:34;8274:1;8269:3;8265:11;8258:55;8344:8;8339:2;8334:3;8330:12;8323:30;8379:2;8374:3;8370:12;8363:19;;8164:224;;;:::o;8394:380::-;;8557:67;8621:2;8616:3;8557:67;:::i;:::-;8550:74;;8654:34;8650:1;8645:3;8641:11;8634:55;8720:18;8715:2;8710:3;8706:12;8699:40;8765:2;8760:3;8756:12;8749:19;;8540:234;;;:::o;8780:320::-;;8943:67;9007:2;9002:3;8943:67;:::i;:::-;8936:74;;9040:24;9036:1;9031:3;9027:11;9020:45;9091:2;9086:3;9082:12;9075:19;;8926:174;;;:::o;9106:372::-;;9269:67;9333:2;9328:3;9269:67;:::i;:::-;9262:74;;9366:34;9362:1;9357:3;9353:11;9346:55;9432:10;9427:2;9422:3;9418:12;9411:32;9469:2;9464:3;9460:12;9453:19;;9252:226;;;:::o;9484:365::-;;9647:67;9711:2;9706:3;9647:67;:::i;:::-;9640:74;;9744:34;9740:1;9735:3;9731:11;9724:55;9810:3;9805:2;9800:3;9796:12;9789:25;9840:2;9835:3;9831:12;9824:19;;9630:219;;;:::o;9855:369::-;;10018:67;10082:2;10077:3;10018:67;:::i;:::-;10011:74;;10115:34;10111:1;10106:3;10102:11;10095:55;10181:7;10176:2;10171:3;10167:12;10160:29;10215:2;10210:3;10206:12;10199:19;;10001:223;;;:::o;10230:368::-;;10393:67;10457:2;10452:3;10393:67;:::i;:::-;10386:74;;10490:34;10486:1;10481:3;10477:11;10470:55;10556:6;10551:2;10546:3;10542:12;10535:28;10589:2;10584:3;10580:12;10573:19;;10376:222;;;:::o;10604:320::-;;10767:67;10831:2;10826:3;10767:67;:::i;:::-;10760:74;;10864:24;10860:1;10855:3;10851:11;10844:45;10915:2;10910:3;10906:12;10899:19;;10750:174;;;:::o;10930:327::-;;11093:67;11157:2;11152:3;11093:67;:::i;:::-;11086:74;;11190:31;11186:1;11181:3;11177:11;11170:52;11248:2;11243:3;11239:12;11232:19;;11076:181;;;:::o;11263:369::-;;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11523:34;11519:1;11514:3;11510:11;11503:55;11589:7;11584:2;11579:3;11575:12;11568:29;11623:2;11618:3;11614:12;11607:19;;11409:223;;;:::o;11638:379::-;;11801:67;11865:2;11860:3;11801:67;:::i;:::-;11794:74;;11898:34;11894:1;11889:3;11885:11;11878:55;11964:17;11959:2;11954:3;11950:12;11943:39;12008:2;12003:3;11999:12;11992:19;;11784:233;;;:::o;12023:118::-;12110:24;12128:5;12110:24;:::i;:::-;12105:3;12098:37;12088:53;;:::o;12147:112::-;12230:22;12246:5;12230:22;:::i;:::-;12225:3;12218:35;12208:51;;:::o;12265:529::-;;12470:2;12459:9;12455:18;12447:26;;12483:71;12551:1;12540:9;12536:17;12527:6;12483:71;:::i;:::-;12564:72;12632:2;12621:9;12617:18;12608:6;12564:72;:::i;:::-;12683:9;12677:4;12673:20;12668:2;12657:9;12653:18;12646:48;12711:76;12782:4;12773:6;12711:76;:::i;:::-;12703:84;;12437:357;;;;;;:::o;12800:210::-;;12925:2;12914:9;12910:18;12902:26;;12938:65;13000:1;12989:9;12985:17;12976:6;12938:65;:::i;:::-;12892:118;;;;:::o;13016:222::-;;13147:2;13136:9;13132:18;13124:26;;13160:71;13228:1;13217:9;13213:17;13204:6;13160:71;:::i;:::-;13114:124;;;;:::o;13244:313::-;;13395:2;13384:9;13380:18;13372:26;;13444:9;13438:4;13434:20;13430:1;13419:9;13415:17;13408:47;13472:78;13545:4;13536:6;13472:78;:::i;:::-;13464:86;;13362:195;;;;:::o;13563:419::-;;13767:2;13756:9;13752:18;13744:26;;13816:9;13810:4;13806:20;13802:1;13791:9;13787:17;13780:47;13844:131;13970:4;13844:131;:::i;:::-;13836:139;;13734:248;;;:::o;13988:419::-;;14192:2;14181:9;14177:18;14169:26;;14241:9;14235:4;14231:20;14227:1;14216:9;14212:17;14205:47;14269:131;14395:4;14269:131;:::i;:::-;14261:139;;14159:248;;;:::o;14413:419::-;;14617:2;14606:9;14602:18;14594:26;;14666:9;14660:4;14656:20;14652:1;14641:9;14637:17;14630:47;14694:131;14820:4;14694:131;:::i;:::-;14686:139;;14584:248;;;:::o;14838:419::-;;15042:2;15031:9;15027:18;15019:26;;15091:9;15085:4;15081:20;15077:1;15066:9;15062:17;15055:47;15119:131;15245:4;15119:131;:::i;:::-;15111:139;;15009:248;;;:::o;15263:419::-;;15467:2;15456:9;15452:18;15444:26;;15516:9;15510:4;15506:20;15502:1;15491:9;15487:17;15480:47;15544:131;15670:4;15544:131;:::i;:::-;15536:139;;15434:248;;;:::o;15688:419::-;;15892:2;15881:9;15877:18;15869:26;;15941:9;15935:4;15931:20;15927:1;15916:9;15912:17;15905:47;15969:131;16095:4;15969:131;:::i;:::-;15961:139;;15859:248;;;:::o;16113:419::-;;16317:2;16306:9;16302:18;16294:26;;16366:9;16360:4;16356:20;16352:1;16341:9;16337:17;16330:47;16394:131;16520:4;16394:131;:::i;:::-;16386:139;;16284:248;;;:::o;16538:419::-;;16742:2;16731:9;16727:18;16719:26;;16791:9;16785:4;16781:20;16777:1;16766:9;16762:17;16755:47;16819:131;16945:4;16819:131;:::i;:::-;16811:139;;16709:248;;;:::o;16963:419::-;;17167:2;17156:9;17152:18;17144:26;;17216:9;17210:4;17206:20;17202:1;17191:9;17187:17;17180:47;17244:131;17370:4;17244:131;:::i;:::-;17236:139;;17134:248;;;:::o;17388:419::-;;17592:2;17581:9;17577:18;17569:26;;17641:9;17635:4;17631:20;17627:1;17616:9;17612:17;17605:47;17669:131;17795:4;17669:131;:::i;:::-;17661:139;;17559:248;;;:::o;17813:419::-;;18017:2;18006:9;18002:18;17994:26;;18066:9;18060:4;18056:20;18052:1;18041:9;18037:17;18030:47;18094:131;18220:4;18094:131;:::i;:::-;18086:139;;17984:248;;;:::o;18238:419::-;;18442:2;18431:9;18427:18;18419:26;;18491:9;18485:4;18481:20;18477:1;18466:9;18462:17;18455:47;18519:131;18645:4;18519:131;:::i;:::-;18511:139;;18409:248;;;:::o;18663:419::-;;18867:2;18856:9;18852:18;18844:26;;18916:9;18910:4;18906:20;18902:1;18891:9;18887:17;18880:47;18944:131;19070:4;18944:131;:::i;:::-;18936:139;;18834:248;;;:::o;19088:419::-;;19292:2;19281:9;19277:18;19269:26;;19341:9;19335:4;19331:20;19327:1;19316:9;19312:17;19305:47;19369:131;19495:4;19369:131;:::i;:::-;19361:139;;19259:248;;;:::o;19513:419::-;;19717:2;19706:9;19702:18;19694:26;;19766:9;19760:4;19756:20;19752:1;19741:9;19737:17;19730:47;19794:131;19920:4;19794:131;:::i;:::-;19786:139;;19684:248;;;:::o;19938:419::-;;20142:2;20131:9;20127:18;20119:26;;20191:9;20185:4;20181:20;20177:1;20166:9;20162:17;20155:47;20219:131;20345:4;20219:131;:::i;:::-;20211:139;;20109:248;;;:::o;20363:419::-;;20567:2;20556:9;20552:18;20544:26;;20616:9;20610:4;20606:20;20602:1;20591:9;20587:17;20580:47;20644:131;20770:4;20644:131;:::i;:::-;20636:139;;20534:248;;;:::o;20788:222::-;;20919:2;20908:9;20904:18;20896:26;;20932:71;21000:1;20989:9;20985:17;20976:6;20932:71;:::i;:::-;20886:124;;;;:::o;21016:419::-;;21193:2;21182:9;21178:18;21170:26;;21206:71;21274:1;21263:9;21259:17;21250:6;21206:71;:::i;:::-;21324:9;21318:4;21314:20;21309:2;21298:9;21294:18;21287:48;21352:76;21423:4;21414:6;21352:76;:::i;:::-;21344:84;;21160:275;;;;;:::o;21441:214::-;;21568:2;21557:9;21553:18;21545:26;;21581:67;21645:1;21634:9;21630:17;21621:6;21581:67;:::i;:::-;21535:120;;;;:::o;21661:283::-;;21727:2;21721:9;21711:19;;21769:4;21761:6;21757:17;21876:6;21864:10;21861:22;21840:18;21828:10;21825:34;21822:62;21819:2;;;21887:18;;:::i;:::-;21819:2;21927:10;21923:2;21916:22;21701:243;;;;:::o;21950:331::-;;22101:18;22093:6;22090:30;22087:2;;;22123:18;;:::i;:::-;22087:2;22208:4;22204:9;22197:4;22189:6;22185:17;22181:33;22173:41;;22269:4;22263;22259:15;22251:23;;22016:265;;;:::o;22287:98::-;;22372:5;22366:12;22356:22;;22345:40;;;:::o;22391:99::-;;22477:5;22471:12;22461:22;;22450:40;;;:::o;22496:168::-;;22613:6;22608:3;22601:19;22653:4;22648:3;22644:14;22629:29;;22591:73;;;;:::o;22670:169::-;;22788:6;22783:3;22776:19;22828:4;22823:3;22819:14;22804:29;;22766:73;;;;:::o;22845:305::-;;22904:20;22922:1;22904:20;:::i;:::-;22899:25;;22938:20;22956:1;22938:20;:::i;:::-;22933:25;;23092:1;23024:66;23020:74;23017:1;23014:81;23011:2;;;23098:18;;:::i;:::-;23011:2;23142:1;23139;23135:9;23128:16;;22889:261;;;;:::o;23156:185::-;;23213:20;23231:1;23213:20;:::i;:::-;23208:25;;23247:20;23265:1;23247:20;:::i;:::-;23242:25;;23286:1;23276:2;;23291:18;;:::i;:::-;23276:2;23333:1;23330;23326:9;23321:14;;23198:143;;;;:::o;23347:191::-;;23407:20;23425:1;23407:20;:::i;:::-;23402:25;;23441:20;23459:1;23441:20;:::i;:::-;23436:25;;23480:1;23477;23474:8;23471:2;;;23485:18;;:::i;:::-;23471:2;23530:1;23527;23523:9;23515:17;;23392:146;;;;:::o;23544:96::-;;23610:24;23628:5;23610:24;:::i;:::-;23599:35;;23589:51;;;:::o;23646:90::-;;23723:5;23716:13;23709:21;23698:32;;23688:48;;;:::o;23742:77::-;;23808:5;23797:16;;23787:32;;;:::o;23825:149::-;;23901:66;23894:5;23890:78;23879:89;;23869:105;;;:::o;23980:126::-;;24057:42;24050:5;24046:54;24035:65;;24025:81;;;:::o;24112:77::-;;24178:5;24167:16;;24157:32;;;:::o;24195:86::-;;24270:4;24263:5;24259:16;24248:27;;24238:43;;;:::o;24287:154::-;24371:6;24366:3;24361;24348:30;24433:1;24424:6;24419:3;24415:16;24408:27;24338:103;;;:::o;24447:307::-;24515:1;24525:113;24539:6;24536:1;24533:13;24525:113;;;24624:1;24619:3;24615:11;24609:18;24605:1;24600:3;24596:11;24589:39;24561:2;24558:1;24554:10;24549:15;;24525:113;;;24656:6;24653:1;24650:13;24647:2;;;24736:1;24727:6;24722:3;24718:16;24711:27;24647:2;24496:258;;;;:::o;24760:320::-;;24841:1;24835:4;24831:12;24821:22;;24888:1;24882:4;24878:12;24909:18;24899:2;;24965:4;24957:6;24953:17;24943:27;;24899:2;25027;25019:6;25016:14;24996:18;24993:38;24990:2;;;25046:18;;:::i;:::-;24990:2;24811:269;;;;:::o;25086:176::-;;25135:20;25153:1;25135:20;:::i;:::-;25130:25;;25169:20;25187:1;25169:20;:::i;:::-;25164:25;;25208:1;25198:2;;25213:18;;:::i;:::-;25198:2;25254:1;25251;25247:9;25242:14;;25120:142;;;;:::o;25268:180::-;25316:77;25313:1;25306:88;25413:4;25410:1;25403:15;25437:4;25434:1;25427:15;25454:180;25502:77;25499:1;25492:88;25599:4;25596:1;25589:15;25623:4;25620:1;25613:15;25640:180;25688:77;25685:1;25678:88;25785:4;25782:1;25775:15;25809:4;25806:1;25799:15;25826:180;25874:77;25871:1;25864:88;25971:4;25968:1;25961:15;25995:4;25992:1;25985:15;26012:102;;26104:2;26100:7;26095:2;26088:5;26084:14;26080:28;26070:38;;26060:54;;;:::o;26120:122::-;26193:24;26211:5;26193:24;:::i;:::-;26186:5;26183:35;26173:2;;26232:1;26229;26222:12;26173:2;26163:79;:::o;26248:122::-;26321:24;26339:5;26321:24;:::i;:::-;26314:5;26311:35;26301:2;;26360:1;26357;26350:12;26301:2;26291:79;:::o;26376:120::-;26448:23;26465:5;26448:23;:::i;:::-;26441:5;26438:34;26428:2;;26486:1;26483;26476:12;26428:2;26418:78;:::o;26502:122::-;26575:24;26593:5;26575:24;:::i;:::-;26568:5;26565:35;26555:2;;26614:1;26611;26604:12;26555:2;26545:79;:::o

Swarm Source

ipfs://07bccdde86ccb58a8ee910e4c18049afc4feac88b26270876b629364e680417b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Wasder is a social media network built for gamers. It features a tokenized ecosystem, NFTs, and functionality like Match Making and Party Chats.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.