MOVR Price: $2.29 (-2.18%)

Contract

0x0FeD6177c230A6091E58D0081dcD31F88A256185

Overview

MOVR Balance

Moonriver Chain LogoMoonriver Chain LogoMoonriver Chain Logo0 MOVR

MOVR Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Approve95416802024-12-20 23:28:42401 days ago1734737322IN
0x0FeD6177...88A256185
0 MOVR0.000539643.4
Approve95218462024-12-19 12:46:42402 days ago1734612402IN
0x0FeD6177...88A256185
0 MOVR0.000206331.3
Approve95218442024-12-19 12:46:30402 days ago1734612390IN
0x0FeD6177...88A256185
0 MOVR0.000523773.3
Approve94949562024-12-17 14:08:18404 days ago1734444498IN
0x0FeD6177...88A256185
0 MOVR0.000238081.5
Approve70838592024-06-27 11:42:54577 days ago1719488574IN
0x0FeD6177...88A256185
0 MOVR0.000099521.25
Approve67541002024-05-14 9:14:24621 days ago1715678064IN
0x0FeD6177...88A256185
0 MOVR0.000134913.4
Approve67339182024-05-11 11:53:54624 days ago1715428434IN
0x0FeD6177...88A256185
0 MOVR0.000115072.9
Approve64147532024-03-26 2:51:06671 days ago1711421466IN
0x0FeD6177...88A256185
0 MOVR0.000128873.2385
Approve59276832024-01-12 3:23:48745 days ago1705029828IN
0x0FeD6177...88A256185
0 MOVR0.000058261.25
Approve57469322023-12-16 0:38:24772 days ago1702687104IN
0x0FeD6177...88A256185
0 MOVR0.000118983
Approve55127592023-11-11 15:13:30806 days ago1699715610IN
0x0FeD6177...88A256185
0 MOVR0.000118983
Approve55127302023-11-11 15:07:18806 days ago1699715238IN
0x0FeD6177...88A256185
0 MOVR0.000079322
Approve55126922023-11-11 14:58:54806 days ago1699714734IN
0x0FeD6177...88A256185
0 MOVR0.000118983
Approve55126712023-11-11 14:54:36806 days ago1699714476IN
0x0FeD6177...88A256185
0 MOVR0.000118983
Approve55126662023-11-11 14:53:36806 days ago1699714416IN
0x0FeD6177...88A256185
0 MOVR0.000122943.1
Approve53618112023-10-20 14:16:00828 days ago1697811360IN
0x0FeD6177...88A256185
0 MOVR0.000109432.75
Approve53618092023-10-20 14:15:36828 days ago1697811336IN
0x0FeD6177...88A256185
0 MOVR0.000117292.9475
Approve49941792023-08-29 1:00:30881 days ago1693270830IN
0x0FeD6177...88A256185
0 MOVR0.000049221.25
Approve47960852023-08-01 6:15:36908 days ago1690870536IN
0x0FeD6177...88A256185
0 MOVR0.000116072.9475
Approve46158832023-07-06 21:32:36934 days ago1688679156IN
0x0FeD6177...88A256185
0 MOVR0.000067472.77366088
Transfer40357862023-04-14 17:10:361017 days ago1681492236IN
0x0FeD6177...88A256185
0 MOVR0.00048882.75
Approve40044812023-04-10 5:58:241021 days ago1681106304IN
0x0FeD6177...88A256185
0 MOVR0.00003041.25
Approve39988232023-04-09 10:34:421022 days ago1681036482IN
0x0FeD6177...88A256185
0 MOVR0.000066892.75
Approve38751832023-03-22 17:33:541040 days ago1679506434IN
0x0FeD6177...88A256185
0 MOVR0.00003041.25
Approve38041392023-03-12 16:29:301050 days ago1678638570IN
0x0FeD6177...88A256185
0 MOVR0.000060812.5
View all transactions

View more zero value Internal Transactions in Advanced View mode

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MoonSwapToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at moonriver.moonscan.io on 2021-11-22
*/

// Sources flattened with hardhat v2.6.8 https://hardhat.org

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


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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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



pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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



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) {
        return msg.data;
    }
}


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



pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    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 default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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
     * overridden;
     *
     * 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 override 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ├╖ 2 + 1, and for v in (302): v Γêê {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}


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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File contracts/OpenZeppelin/ERC20Permit.sol



pragma solidity ^0.8.0;
// This version of ERC20Permit is from OpenZeppelin as of commit
// https://github.com/OpenZeppelin/openzeppelin-contracts/commit/5171e46c47bd6be781aa92315944ca37126d4a73


/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping (address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {
    }

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        // solhint-disable-next-line not-rely-on-time
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(
            abi.encode(
                _PERMIT_TYPEHASH,
                owner,
                spender,
                value,
                _useNonce(owner),
                deadline
            )
        );

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}


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



pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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


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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/MoonSwapToken.sol


pragma solidity ^0.8.0;
contract MoonSwapToken is ERC20Permit,ERC20Burnable, Ownable {

    address public tokenMigrator;
    constructor() ERC20("MoonSwap Token", "MOON") ERC20Permit("MoonSwap")
    {
    }

    // uint256 constant private _maxTotalSupply = 13666000e18; // 13,666,000 max boos

    function mint(address _to, uint256 _amount) public {
        // require(totalSupply() + _amount <= _maxTotalSupply, "ERC20: minting more then MaxTotalSupply");
        require(msg.sender == owner() || msg.sender == tokenMigrator,"not owner or token migrator");
        _mint(_to, _amount);
        _moveDelegates(address(0), _to, _amount);
    }

    function setTokenMigrator(address _tokenMigrator) external onlyOwner {
        tokenMigrator = _tokenMigrator;
    }


    // Returns maximum total supply of the token
    // function getMaxTotalSupply() external pure returns (uint256) {
    //     return _maxTotalSupply;
    // }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    // A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    // A record of states for signing / validating signatures
    //mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);
    

    function transferFrom(address sender, address recipient, uint256 amount) 
    public virtual override returns (bool)
    {
        bool result = super.transferFrom(sender, recipient, amount); // Call parent hook
        _moveDelegates(sender, recipient, amount);

        return result;
    }

    function transfer(address recipient, uint256 amount) 
    public virtual override returns (bool)
    {
        bool result = super.transfer(recipient, amount); // Call parent hook
        _moveDelegates(_msgSender(), recipient, amount);

        return result;
    }

    /**
     * @param delegator The address to get delegates for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "MOON::delegateBySig: invalid signature");
        require(nonce == _useNonce(signatory), "MOON::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "MOON::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "MOON::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying BOOs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld - amount;
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld + amount;
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "MOON::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }



}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenMigrator","type":"address"}],"name":"setTokenMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenMigrator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b506040518060400160405280600881526020016704d6f6f6e537761760c41b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600e81526020016d26b7b7b729bbb0b8102a37b5b2b760911b8152506040518060400160405280600481526020016326a7a7a760e11b8152508160039080519060200190620000d0929190620001d7565b508051620000e6906004906020840190620001d7565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a0181905281830198909852606081019590955260808086019390935230858301528051808603909201825293909201909252805194019390932090925261010052506200017f90503362000185565b620002ba565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e5906200027d565b90600052602060002090601f01602090048101928262000209576000855562000254565b82601f106200022457805160ff191683800117855562000254565b8280016001018555821562000254579182015b828111156200025457825182559160200191906001019062000237565b506200026292915062000266565b5090565b5b8082111562000262576000815560010162000267565b600181811c908216806200029257607f821691505b60208210811415620002b457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516123986200030a6000396000610f7d015260006114f80152600061154701526000611522015260006114a6015260006114cf01526123986000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b4b5ea57116100a2578063dd62ed3e11610071578063dd62ed3e14610463578063e7a324dc1461049c578063f1127ed8146104c3578063f2fde38b1461051a57600080fd5b8063b4b5ea5714610417578063c3cda5201461042a578063c67e9ff71461043d578063d505accf1461045057600080fd5b80638da5cb5b116100de5780638da5cb5b146103d857806395d89b41146103e9578063a457c2d7146103f1578063a9059cbb1461040457600080fd5b8063715018a614610397578063782d6fe11461039f57806379cc6790146103b25780637ecebe00146103c557600080fd5b80633950935111610187578063587cde1e11610156578063587cde1e146102dc5780635c19a95c146103205780636fcfff451461033357806370a082311461036e57600080fd5b8063395093511461028e57806340c10f19146102a157806342966c68146102b657806356180321146102c957600080fd5b806320606b70116101c357806320606b701461023d57806323b872dd14610264578063313ce567146102775780633644e5151461028657600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f261052d565b6040516101ff91906121cb565b60405180910390f35b61021b6102163660046120f0565b6105bf565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61022f7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61021b61027236600461204a565b6105d6565b604051601281526020016101ff565b61022f6105f9565b61021b61029c3660046120f0565b610608565b6102b46102af3660046120f0565b610644565b005b6102b46102c43660046121b2565b6106d2565b6102b46102d7366004611ffc565b6106df565b6103086102ea366004611ffc565b6001600160a01b039081166000908152600860205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6102b461032e366004611ffc565b610768565b610359610341366004611ffc565b600a6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101ff565b61022f61037c366004611ffc565b6001600160a01b031660009081526020819052604090205490565b6102b4610772565b61022f6103ad3660046120f0565b6107d8565b6102b46103c03660046120f0565b610a53565b61022f6103d3366004611ffc565b610ad9565b6006546001600160a01b0316610308565b6101f2610af7565b61021b6103ff3660046120f0565b610b06565b61021b6104123660046120f0565b610bb7565b61022f610425366004611ffc565b610bd8565b6102b461043836600461211a565b610c4c565b600754610308906001600160a01b031681565b6102b461045e366004612086565b610f29565b61022f610471366004612017565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61022f7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104fe6104d1366004612172565b60096020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101ff565b6102b4610528366004611ffc565b611081565b60606003805461053c906122cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610568906122cd565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105cc338484611160565b5060015b92915050565b6000806105e4858585611284565b90506105f1858585611343565b949350505050565b60006106036114a2565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105cc91859061063f908690612220565b611160565b6006546001600160a01b031633148061066757506007546001600160a01b031633145b6106b85760405162461bcd60e51b815260206004820152601b60248201527f6e6f74206f776e6572206f7220746f6b656e206d69677261746f72000000000060448201526064015b60405180910390fd5b6106c28282611595565b6106ce60008383611343565b5050565b6106dc3382611674565b50565b6006546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6106dc33826117c2565b6006546001600160a01b031633146107cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6107d6600061184e565b565b600043821061084f5760405162461bcd60e51b815260206004820152602760248201527f4d4f4f4e3a3a6765745072696f72566f7465733a206e6f74207965742064657460448201527f65726d696e65640000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b0383166000908152600a602052604090205463ffffffff168061087d5760009150506105d0565b6001600160a01b038416600090815260096020526040812084916108a26001856122a8565b63ffffffff9081168252602082019290925260400160002054161161090b576001600160a01b0384166000908152600960205260408120906108e56001846122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105d0565b6001600160a01b038416600090815260096020908152604080832083805290915290205463ffffffff168310156109465760009150506105d0565b6000806109546001846122a8565b90505b8163ffffffff168163ffffffff161115610a1c576000600261097984846122a8565b6109839190612260565b61098d90836122a8565b6001600160a01b038816600090815260096020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508714156109f0576020015194506105d09350505050565b805163ffffffff16871115610a0757819350610a15565b610a126001836122a8565b92505b5050610957565b506001600160a01b038516600090815260096020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610a5f8333610471565b905081811015610abd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016106af565b610aca8333848403611160565b610ad48383611674565b505050565b6001600160a01b0381166000908152600560205260408120546105d0565b60606004805461053c906122cd565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ba05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106af565b610bad3385858403611160565b5060019392505050565b600080610bc484846118ad565b9050610bd1338585611343565b9392505050565b6001600160a01b0381166000908152600a602052604081205463ffffffff1680610c03576000610bd1565b6001600160a01b038316600090815260096020526040812090610c276001846122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610c7761052d565b80519060200120610c854690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610db1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e3a5760405162461bcd60e51b815260206004820152602660248201527f4d4f4f4e3a3a64656c656761746542795369673a20696e76616c69642073696760448201527f6e6174757265000000000000000000000000000000000000000000000000000060648201526084016106af565b610e43816118ba565b8914610e9c5760405162461bcd60e51b815260206004820152602260248201527f4d4f4f4e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b60648201526084016106af565b87421115610f125760405162461bcd60e51b815260206004820152602660248201527f4d4f4f4e3a3a64656c656761746542795369673a207369676e6174757265206560448201527f787069726564000000000000000000000000000000000000000000000000000060648201526084016106af565b610f1c818b6117c2565b505050505b505050505050565b83421115610f795760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106af565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610fa88c6118ba565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611003826118e2565b9050600061101382878787611930565b9050896001600160a01b0316816001600160a01b0316146110765760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106af565b610f1c8a8a8a611160565b6006546001600160a01b031633146110db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6001600160a01b0381166111575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106af565b6106dc8161184e565b6001600160a01b0383166111c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106af565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611291848484611958565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561132b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016106af565b6113388533858403611160565b506001949350505050565b816001600160a01b0316836001600160a01b0316141580156113655750600081115b15610ad4576001600160a01b03831615611408576001600160a01b0383166000908152600a602052604081205463ffffffff1690816113a55760006113e8565b6001600160a01b0385166000908152600960205260408120906113c96001856122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006113f68483612291565b905061140486848484611b55565b5050505b6001600160a01b03821615610ad4576001600160a01b0382166000908152600a602052604081205463ffffffff169081611443576000611486565b6001600160a01b0384166000908152600960205260408120906114676001856122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114948483612220565b9050610f2185848484611b55565b60007f00000000000000000000000000000000000000000000000000000000000000004614156114f157507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166115eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106af565b80600260008282546115fd9190612220565b90915550506001600160a01b0382166000908152602081905260408120805483929061162a908490612220565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166116d45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106af565b6001600160a01b038216600090815260208190526040902054818110156117485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106af565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611777908490612291565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b0382811660008181526008602081815260408084208054858452828620549490935287871673ffffffffffffffffffffffffffffffffffffffff198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611848828483611343565b50505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006105cc338484611958565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b60006105d06118ef6114a2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061194187878787611cf7565b9150915061194e81611de4565b5095945050505050565b6001600160a01b0383166119d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b038216611a365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106af565b6001600160a01b03831660009081526020819052604090205481811015611ac55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611afc908490612220565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4891815260200190565b60405180910390a3611848565b6000611b794360405180606001604052806034815260200161232f60349139611f9f565b905060008463ffffffff16118015611bd357506001600160a01b038516600090815260096020526040812063ffffffff831691611bb76001886122a8565b63ffffffff908116825260208201929092526040016000205416145b15611c1c576001600160a01b03851660009081526009602052604081208391611bfd6001886122a8565b63ffffffff168152602081019190915260400160002060010155611cac565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600983528581208a851682529092529390209151825463ffffffff191691161781559051600191820155611c7b908590612238565b6001600160a01b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d2e5750600090506003611ddb565b8460ff16601b14158015611d4657508460ff16601c14155b15611d575750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611dab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b6000816004811115611df857611df8612318565b1415611e015750565b6001816004811115611e1557611e15612318565b1415611e635760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106af565b6002816004811115611e7757611e77612318565b1415611ec55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106af565b6003816004811115611ed957611ed9612318565b1415611f325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106af565b6004816004811115611f4657611f46612318565b14156106dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106af565b6000816401000000008410611fc75760405162461bcd60e51b81526004016106af91906121cb565b509192915050565b80356001600160a01b0381168114611fe657600080fd5b919050565b803560ff81168114611fe657600080fd5b60006020828403121561200e57600080fd5b610bd182611fcf565b6000806040838503121561202a57600080fd5b61203383611fcf565b915061204160208401611fcf565b90509250929050565b60008060006060848603121561205f57600080fd5b61206884611fcf565b925061207660208501611fcf565b9150604084013590509250925092565b600080600080600080600060e0888a0312156120a157600080fd5b6120aa88611fcf565b96506120b860208901611fcf565b955060408801359450606088013593506120d460808901611feb565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561210357600080fd5b61210c83611fcf565b946020939093013593505050565b60008060008060008060c0878903121561213357600080fd5b61213c87611fcf565b9550602087013594506040870135935061215860608801611feb565b92506080870135915060a087013590509295509295509295565b6000806040838503121561218557600080fd5b61218e83611fcf565b9150602083013563ffffffff811681146121a757600080fd5b809150509250929050565b6000602082840312156121c457600080fd5b5035919050565b600060208083528351808285015260005b818110156121f8578581018301518582016040015282016121dc565b8181111561220a576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561223357612233612302565b500190565b600063ffffffff80831681851680830382111561225757612257612302565b01949350505050565b600063ffffffff8084168061228557634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000828210156122a3576122a3612302565b500390565b600063ffffffff838116908316818110156122c5576122c5612302565b039392505050565b600181811c908216806122e157607f821691505b602082108114156118dc57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4d4f4f4e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220af07dfe047e0bda358890f88c51e54069ecd2241a9a85d067f127af8e46c05c164736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b4b5ea57116100a2578063dd62ed3e11610071578063dd62ed3e14610463578063e7a324dc1461049c578063f1127ed8146104c3578063f2fde38b1461051a57600080fd5b8063b4b5ea5714610417578063c3cda5201461042a578063c67e9ff71461043d578063d505accf1461045057600080fd5b80638da5cb5b116100de5780638da5cb5b146103d857806395d89b41146103e9578063a457c2d7146103f1578063a9059cbb1461040457600080fd5b8063715018a614610397578063782d6fe11461039f57806379cc6790146103b25780637ecebe00146103c557600080fd5b80633950935111610187578063587cde1e11610156578063587cde1e146102dc5780635c19a95c146103205780636fcfff451461033357806370a082311461036e57600080fd5b8063395093511461028e57806340c10f19146102a157806342966c68146102b657806356180321146102c957600080fd5b806320606b70116101c357806320606b701461023d57806323b872dd14610264578063313ce567146102775780633644e5151461028657600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f261052d565b6040516101ff91906121cb565b60405180910390f35b61021b6102163660046120f0565b6105bf565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61022f7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61021b61027236600461204a565b6105d6565b604051601281526020016101ff565b61022f6105f9565b61021b61029c3660046120f0565b610608565b6102b46102af3660046120f0565b610644565b005b6102b46102c43660046121b2565b6106d2565b6102b46102d7366004611ffc565b6106df565b6103086102ea366004611ffc565b6001600160a01b039081166000908152600860205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6102b461032e366004611ffc565b610768565b610359610341366004611ffc565b600a6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101ff565b61022f61037c366004611ffc565b6001600160a01b031660009081526020819052604090205490565b6102b4610772565b61022f6103ad3660046120f0565b6107d8565b6102b46103c03660046120f0565b610a53565b61022f6103d3366004611ffc565b610ad9565b6006546001600160a01b0316610308565b6101f2610af7565b61021b6103ff3660046120f0565b610b06565b61021b6104123660046120f0565b610bb7565b61022f610425366004611ffc565b610bd8565b6102b461043836600461211a565b610c4c565b600754610308906001600160a01b031681565b6102b461045e366004612086565b610f29565b61022f610471366004612017565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61022f7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104fe6104d1366004612172565b60096020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101ff565b6102b4610528366004611ffc565b611081565b60606003805461053c906122cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610568906122cd565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b60006105cc338484611160565b5060015b92915050565b6000806105e4858585611284565b90506105f1858585611343565b949350505050565b60006106036114a2565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105cc91859061063f908690612220565b611160565b6006546001600160a01b031633148061066757506007546001600160a01b031633145b6106b85760405162461bcd60e51b815260206004820152601b60248201527f6e6f74206f776e6572206f7220746f6b656e206d69677261746f72000000000060448201526064015b60405180910390fd5b6106c28282611595565b6106ce60008383611343565b5050565b6106dc3382611674565b50565b6006546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6106dc33826117c2565b6006546001600160a01b031633146107cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6107d6600061184e565b565b600043821061084f5760405162461bcd60e51b815260206004820152602760248201527f4d4f4f4e3a3a6765745072696f72566f7465733a206e6f74207965742064657460448201527f65726d696e65640000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b0383166000908152600a602052604090205463ffffffff168061087d5760009150506105d0565b6001600160a01b038416600090815260096020526040812084916108a26001856122a8565b63ffffffff9081168252602082019290925260400160002054161161090b576001600160a01b0384166000908152600960205260408120906108e56001846122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105d0565b6001600160a01b038416600090815260096020908152604080832083805290915290205463ffffffff168310156109465760009150506105d0565b6000806109546001846122a8565b90505b8163ffffffff168163ffffffff161115610a1c576000600261097984846122a8565b6109839190612260565b61098d90836122a8565b6001600160a01b038816600090815260096020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508714156109f0576020015194506105d09350505050565b805163ffffffff16871115610a0757819350610a15565b610a126001836122a8565b92505b5050610957565b506001600160a01b038516600090815260096020908152604080832063ffffffff9094168352929052206001015491505092915050565b6000610a5f8333610471565b905081811015610abd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016106af565b610aca8333848403611160565b610ad48383611674565b505050565b6001600160a01b0381166000908152600560205260408120546105d0565b60606004805461053c906122cd565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ba05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106af565b610bad3385858403611160565b5060019392505050565b600080610bc484846118ad565b9050610bd1338585611343565b9392505050565b6001600160a01b0381166000908152600a602052604081205463ffffffff1680610c03576000610bd1565b6001600160a01b038316600090815260096020526040812090610c276001846122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610c7761052d565b80519060200120610c854690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610db1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e3a5760405162461bcd60e51b815260206004820152602660248201527f4d4f4f4e3a3a64656c656761746542795369673a20696e76616c69642073696760448201527f6e6174757265000000000000000000000000000000000000000000000000000060648201526084016106af565b610e43816118ba565b8914610e9c5760405162461bcd60e51b815260206004820152602260248201527f4d4f4f4e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b60648201526084016106af565b87421115610f125760405162461bcd60e51b815260206004820152602660248201527f4d4f4f4e3a3a64656c656761746542795369673a207369676e6174757265206560448201527f787069726564000000000000000000000000000000000000000000000000000060648201526084016106af565b610f1c818b6117c2565b505050505b505050505050565b83421115610f795760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106af565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610fa88c6118ba565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611003826118e2565b9050600061101382878787611930565b9050896001600160a01b0316816001600160a01b0316146110765760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106af565b610f1c8a8a8a611160565b6006546001600160a01b031633146110db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106af565b6001600160a01b0381166111575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106af565b6106dc8161184e565b6001600160a01b0383166111c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106af565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106af565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611291848484611958565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561132b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016106af565b6113388533858403611160565b506001949350505050565b816001600160a01b0316836001600160a01b0316141580156113655750600081115b15610ad4576001600160a01b03831615611408576001600160a01b0383166000908152600a602052604081205463ffffffff1690816113a55760006113e8565b6001600160a01b0385166000908152600960205260408120906113c96001856122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006113f68483612291565b905061140486848484611b55565b5050505b6001600160a01b03821615610ad4576001600160a01b0382166000908152600a602052604081205463ffffffff169081611443576000611486565b6001600160a01b0384166000908152600960205260408120906114676001856122a8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114948483612220565b9050610f2185848484611b55565b60007f00000000000000000000000000000000000000000000000000000000000005054614156114f157507f1b9bf88db71c92c5425c6599c22ac187928be32b248d60e9ed110481ae10d1e390565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f4a7bec5e18b2a940af99afd4572d9a9b466df01977cce81ef30435e882bb37f0828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166115eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106af565b80600260008282546115fd9190612220565b90915550506001600160a01b0382166000908152602081905260408120805483929061162a908490612220565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166116d45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106af565b6001600160a01b038216600090815260208190526040902054818110156117485760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106af565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611777908490612291565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b0382811660008181526008602081815260408084208054858452828620549490935287871673ffffffffffffffffffffffffffffffffffffffff198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611848828483611343565b50505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006105cc338484611958565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b60006105d06118ef6114a2565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061194187878787611cf7565b9150915061194e81611de4565b5095945050505050565b6001600160a01b0383166119d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b038216611a365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106af565b6001600160a01b03831660009081526020819052604090205481811015611ac55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106af565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611afc908490612220565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4891815260200190565b60405180910390a3611848565b6000611b794360405180606001604052806034815260200161232f60349139611f9f565b905060008463ffffffff16118015611bd357506001600160a01b038516600090815260096020526040812063ffffffff831691611bb76001886122a8565b63ffffffff908116825260208201929092526040016000205416145b15611c1c576001600160a01b03851660009081526009602052604081208391611bfd6001886122a8565b63ffffffff168152602081019190915260400160002060010155611cac565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600983528581208a851682529092529390209151825463ffffffff191691161781559051600191820155611c7b908590612238565b6001600160a01b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d2e5750600090506003611ddb565b8460ff16601b14158015611d4657508460ff16601c14155b15611d575750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611dab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b6000816004811115611df857611df8612318565b1415611e015750565b6001816004811115611e1557611e15612318565b1415611e635760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106af565b6002816004811115611e7757611e77612318565b1415611ec55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106af565b6003816004811115611ed957611ed9612318565b1415611f325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106af565b6004816004811115611f4657611f46612318565b14156106dc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106af565b6000816401000000008410611fc75760405162461bcd60e51b81526004016106af91906121cb565b509192915050565b80356001600160a01b0381168114611fe657600080fd5b919050565b803560ff81168114611fe657600080fd5b60006020828403121561200e57600080fd5b610bd182611fcf565b6000806040838503121561202a57600080fd5b61203383611fcf565b915061204160208401611fcf565b90509250929050565b60008060006060848603121561205f57600080fd5b61206884611fcf565b925061207660208501611fcf565b9150604084013590509250925092565b600080600080600080600060e0888a0312156120a157600080fd5b6120aa88611fcf565b96506120b860208901611fcf565b955060408801359450606088013593506120d460808901611feb565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561210357600080fd5b61210c83611fcf565b946020939093013593505050565b60008060008060008060c0878903121561213357600080fd5b61213c87611fcf565b9550602087013594506040870135935061215860608801611feb565b92506080870135915060a087013590509295509295509295565b6000806040838503121561218557600080fd5b61218e83611fcf565b9150602083013563ffffffff811681146121a757600080fd5b809150509250929050565b6000602082840312156121c457600080fd5b5035919050565b600060208083528351808285015260005b818110156121f8578581018301518582016040015282016121dc565b8181111561220a576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561223357612233612302565b500190565b600063ffffffff80831681851680830382111561225757612257612302565b01949350505050565b600063ffffffff8084168061228557634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000828210156122a3576122a3612302565b500390565b600063ffffffff838116908316818110156122c5576122c5612302565b039392505050565b600181811c908216806122e157607f821691505b602082108114156118dc57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfe4d4f4f4e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220af07dfe047e0bda358890f88c51e54069ecd2241a9a85d067f127af8e46c05c164736f6c63430008060033

Deployed Bytecode Sourcemap

40147:9980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6527:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8694:169;;;;;;:::i;:::-;;:::i;:::-;;;3904:14:1;;3897:22;3879:41;;3867:2;3852:18;8694:169:0;3834:92:1;7647:108:0;7735:12;;7647:108;;;4077:25:1;;;4065:2;4050:18;7647:108:0;4032:76:1;42088:122:0;;42130:80;42088:122;;42930:299;;;;;;:::i;:::-;;:::i;7489:93::-;;;7572:2;17581:36:1;;17569:2;17554:18;7489:93:0;17536:87:1;36086:115:0;;;:::i;10246:215::-;;;;;;:::i;:::-;;:::i;40432:350::-;;;;;;:::i;:::-;;:::i;:::-;;37010:91;;;;;;:::i;:::-;;:::i;40790:118::-;;;;;;:::i;:::-;;:::i;43594:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;43714:21:0;;;43682:7;43714:21;;;:10;:21;;;;;;;;43594:149;;;;-1:-1:-1;;;;;3672:55:1;;;3654:74;;3642:2;3627:18;43594:149:0;3609:125:1;43887:104:0;;;;;;:::i;:::-;;:::i;41966:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17148:10:1;17136:23;;;17118:42;;17106:2;17091:18;41966:49:0;17073:93:1;7818:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7919:18:0;7892:7;7919:18;;;;;;;;;;;;7818:127;39450:94;;;:::i;46429:1253::-;;;;;;:::i;:::-;;:::i;37420:368::-;;;;;;:::i;:::-;;:::i;35828:128::-;;;;;;:::i;:::-;;:::i;38799:87::-;38872:6;;-1:-1:-1;;;;;38872:6:0;38799:87;;6746:104;;;:::i;10964:413::-;;;;;;:::i;:::-;;:::i;43237:273::-;;;;;;:::i;:::-;;:::i;45743:255::-;;;;;;:::i;:::-;;:::i;44425:1117::-;;;;;;:::i;:::-;;:::i;40217:28::-;;;;;-1:-1:-1;;;;;40217:28:0;;;34991:771;;;;;;:::i;:::-;;:::i;8396:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8512:18:0;;;8485:7;8512:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8396:151;42304:117;;42350:71;42304:117;;41827:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17373:10:1;17361:23;;;17343:42;;17416:2;17401:18;;17394:34;;;;17316:18;41827:70:0;17298:136:1;39699:192:0;;;;;;:::i;:::-;;:::i;6527:100::-;6581:13;6614:5;6607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6527:100;:::o;8694:169::-;8777:4;8794:39;4314:10;8817:7;8826:6;8794:8;:39::i;:::-;-1:-1:-1;8851:4:0;8694:169;;;;;:::o;42930:299::-;43042:4;43064:11;43078:45;43097:6;43105:9;43116:6;43078:18;:45::i;:::-;43064:59;;43154:41;43169:6;43177:9;43188:6;43154:14;:41::i;:::-;43215:6;42930:299;-1:-1:-1;;;;42930:299:0:o;36086:115::-;36146:7;36173:20;:18;:20::i;:::-;36166:27;;36086:115;:::o;10246:215::-;4314:10;10334:4;10383:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10383:34:0;;;;;;;;;;10334:4;;10351:80;;10374:7;;10383:47;;10420:10;;10383:47;:::i;:::-;10351:8;:80::i;40432:350::-;38872:6;;-1:-1:-1;;;;;38872:6:0;40610:10;:21;;:52;;-1:-1:-1;40649:13:0;;-1:-1:-1;;;;;40649:13:0;40635:10;:27;40610:52;40602:91;;;;-1:-1:-1;;;40602:91:0;;8866:2:1;40602:91:0;;;8848:21:1;8905:2;8885:18;;;8878:30;8944:29;8924:18;;;8917:57;8991:18;;40602:91:0;;;;;;;;;40704:19;40710:3;40715:7;40704:5;:19::i;:::-;40734:40;40757:1;40761:3;40766:7;40734:14;:40::i;:::-;40432:350;;:::o;37010:91::-;37066:27;4314:10;37086:6;37066:5;:27::i;:::-;37010:91;:::o;40790:118::-;38872:6;;-1:-1:-1;;;;;38872:6:0;4314:10;39019:23;39011:68;;;;-1:-1:-1;;;39011:68:0;;12774:2:1;39011:68:0;;;12756:21:1;;;12793:18;;;12786:30;12852:34;12832:18;;;12825:62;12904:18;;39011:68:0;12746:182:1;39011:68:0;40870:13:::1;:30:::0;;-1:-1:-1;;40870:30:0::1;-1:-1:-1::0;;;;;40870:30:0;;;::::1;::::0;;;::::1;::::0;;40790:118::o;43887:104::-;43951:32;43961:10;43973:9;43951;:32::i;39450:94::-;38872:6;;-1:-1:-1;;;;;38872:6:0;4314:10;39019:23;39011:68;;;;-1:-1:-1;;;39011:68:0;;12774:2:1;39011:68:0;;;12756:21:1;;;12793:18;;;12786:30;12852:34;12832:18;;;12825:62;12904:18;;39011:68:0;12746:182:1;39011:68:0;39515:21:::1;39533:1;39515:9;:21::i;:::-;39450:94::o:0;46429:1253::-;46537:7;46584:12;46570:11;:26;46562:78;;;;-1:-1:-1;;;46562:78:0;;13942:2:1;46562:78:0;;;13924:21:1;13981:2;13961:18;;;13954:30;14020:34;14000:18;;;13993:62;14091:9;14071:18;;;14064:37;14118:19;;46562:78:0;13914:229:1;46562:78:0;-1:-1:-1;;;;;46675:23:0;;46653:19;46675:23;;;:14;:23;;;;;;;;46713:17;46709:58;;46754:1;46747:8;;;;;46709:58;-1:-1:-1;;;;;46827:20:0;;;;;;:11;:20;;;;;46879:11;;46848:16;46863:1;46848:12;:16;:::i;:::-;46827:38;;;;;;;;;;;;;;;-1:-1:-1;46827:38:0;:48;;:63;46823:147;;-1:-1:-1;;;;;46914:20:0;;;;;;:11;:20;;;;;;46935:16;46950:1;46935:12;:16;:::i;:::-;46914:38;;;;;;;;;;;;;;;:44;;;46907:51;;;;;46823:147;-1:-1:-1;;;;;47031:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;47027:88:0;;;47102:1;47095:8;;;;;47027:88;47127:12;;47169:16;47184:1;47169:12;:16;:::i;:::-;47154:31;;47196:428;47211:5;47203:13;;:5;:13;;;47196:428;;;47233:13;47275:1;47258:13;47266:5;47258;:13;:::i;:::-;47257:19;;;;:::i;:::-;47249:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;47341:20:0;;47318;47341;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;47318:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;47233:43;;-1:-1:-1;47388:27:0;;47384:229;;;47443:8;;;;-1:-1:-1;47436:15:0;;-1:-1:-1;;;;47436:15:0;47384:229;47477:12;;:26;;;-1:-1:-1;47473:140:0;;;47532:6;47524:14;;47473:140;;;47587:10;47596:1;47587:6;:10;:::i;:::-;47579:18;;47473:140;47218:406;;47196:428;;;-1:-1:-1;;;;;;47641:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;46429:1253:0;;;;:::o;37420:368::-;37497:24;37524:32;37534:7;4314:10;8396:151;:::i;37524:32::-;37497:59;;37595:6;37575:16;:26;;37567:75;;;;-1:-1:-1;;;37567:75:0;;13135:2:1;37567:75:0;;;13117:21:1;13174:2;13154:18;;;13147:30;13213:34;13193:18;;;13186:62;-1:-1:-1;;;13264:18:1;;;13257:34;13308:19;;37567:75:0;13107:226:1;37567:75:0;37678:58;37687:7;4314:10;37729:6;37710:16;:25;37678:8;:58::i;:::-;37758:22;37764:7;37773:6;37758:5;:22::i;:::-;37486:302;37420:368;;:::o;35828:128::-;-1:-1:-1;;;;;35924:14:0;;35897:7;35924:14;;;:7;:14;;;;;30874;35924:24;30782:114;6746:104;6802:13;6835:7;6828:14;;;;;:::i;10964:413::-;4314:10;11057:4;11101:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11101:34:0;;;;;;;;;;11154:35;;;;11146:85;;;;-1:-1:-1;;;11146:85:0;;15568:2:1;11146:85:0;;;15550:21:1;15607:2;15587:18;;;15580:30;15646:34;15626:18;;;15619:62;15717:7;15697:18;;;15690:35;15742:19;;11146:85:0;15540:227:1;11146:85:0;11267:67;4314:10;11290:7;11318:15;11299:16;:34;11267:8;:67::i;:::-;-1:-1:-1;11365:4:0;;10964:413;-1:-1:-1;;;10964:413:0:o;43237:273::-;43329:4;43351:11;43365:33;43380:9;43391:6;43365:14;:33::i;:::-;43351:47;-1:-1:-1;43429:47:0;4314:10;43458:9;43469:6;43429:14;:47::i;:::-;43496:6;43237:273;-1:-1:-1;;;43237:273:0:o;45743:255::-;-1:-1:-1;;;;;45882:23:0;;45835:7;45882:23;;;:14;:23;;;;;;;;45923:16;:67;;45989:1;45923:67;;;-1:-1:-1;;;;;45942:20:0;;;;;;:11;:20;;;;;;45963:16;45978:1;45963:12;:16;:::i;:::-;45942:38;;;;;;;;;;;;;;;:44;;;45916:74;45743:255;-1:-1:-1;;;45743:255:0:o;44425:1117::-;44544:23;42130:80;44673:6;:4;:6::i;:::-;44657:24;;;;;;44700:12;50075:9;;49965:153;44700:12;44594:165;;;;;;;5925:25:1;;;;5966:18;;;5959:34;;;;6009:18;;;6002:34;;;;44739:4:0;6052:18:1;;;;6045:83;;;;44594:165:0;;;;;;;;;;5897:19:1;;;44594:165:0;;44570:200;;;;;;42350:71;44828:140;;;4963:25:1;-1:-1:-1;;;;;5024:55:1;;5004:18;;;4997:83;5096:18;;;5089:34;;;5139:18;;;;5132:34;;;44828:140:0;;;;;;;;;;4935:19:1;;;44828:140:0;;;44804:175;;;;;;;-1:-1:-1;;;45033:123:0;;;3369:27:1;3412:11;;;3405:27;;;3448:12;;;3441:28;;;44570:200:0;;-1:-1:-1;;;3485:12:1;;45033:123:0;;;-1:-1:-1;;45033:123:0;;;;;;;;;45009:158;;45033:123;45009:158;;;;45180:17;45200:26;;;;;;;;;6366:25:1;;;6439:4;6427:17;;6407:18;;;6400:45;;;;6461:18;;;6454:34;;;6504:18;;;6497:34;;;45009:158:0;;-1:-1:-1;45180:17:0;45200:26;;6338:19:1;;45200:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45200:26:0;;-1:-1:-1;;45200:26:0;;;-1:-1:-1;;;;;;;45245:23:0;;45237:74;;;;-1:-1:-1;;;45237:74:0;;15974:2:1;45237:74:0;;;15956:21:1;16013:2;15993:18;;;15986:30;16052:34;16032:18;;;16025:62;16123:8;16103:18;;;16096:36;16149:19;;45237:74:0;15946:228:1;45237:74:0;45339:20;45349:9;45339;:20::i;:::-;45330:5;:29;45322:76;;;;-1:-1:-1;;;45322:76:0;;10390:2:1;45322:76:0;;;10372:21:1;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;-1:-1:-1;;;10519:18:1;;;10512:32;10561:19;;45322:76:0;10362:224:1;45322:76:0;45436:6;45417:15;:25;;45409:76;;;;-1:-1:-1;;;45409:76:0;;14350:2:1;45409:76:0;;;14332:21:1;14389:2;14369:18;;;14362:30;14428:34;14408:18;;;14401:62;14499:8;14479:18;;;14472:36;14525:19;;45409:76:0;14322:228:1;45409:76:0;45503:31;45513:9;45524;45503;:31::i;:::-;45496:38;;;;44425:1117;;;;;;;:::o;34991:771::-;35220:8;35201:15;:27;;35193:69;;;;-1:-1:-1;;;35193:69:0;;10032:2:1;35193:69:0;;;10014:21:1;10071:2;10051:18;;;10044:30;10110:31;10090:18;;;10083:59;10159:18;;35193:69:0;10004:179:1;35193:69:0;35275:18;35349:16;35384:5;35408:7;35434:5;35458:16;35468:5;35458:9;:16::i;:::-;35320:196;;;;;;4400:25:1;;;;-1:-1:-1;;;;;4522:15:1;;;4502:18;;;4495:43;4574:15;;;;4554:18;;;4547:43;4606:18;;;4599:34;4649:19;;;4642:35;4693:19;;;4686:35;;;4372:19;;35320:196:0;;;;;;;;;;;;35296:231;;;;;;35275:252;;35540:12;35555:28;35572:10;35555:16;:28::i;:::-;35540:43;;35596:14;35613:28;35627:4;35633:1;35636;35639;35613:13;:28::i;:::-;35596:45;;35670:5;-1:-1:-1;;;;;35660:15:0;:6;-1:-1:-1;;;;;35660:15:0;;35652:58;;;;-1:-1:-1;;;35652:58:0;;12006:2:1;35652:58:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:32;12064:18;;;12057:60;12134:18;;35652:58:0;11978:180:1;35652:58:0;35723:31;35732:5;35739:7;35748:5;35723:8;:31::i;39699:192::-;38872:6;;-1:-1:-1;;;;;38872:6:0;4314:10;39019:23;39011:68;;;;-1:-1:-1;;;39011:68:0;;12774:2:1;39011:68:0;;;12756:21:1;;;12793:18;;;12786:30;12852:34;12832:18;;;12825:62;12904:18;;39011:68:0;12746:182:1;39011:68:0;-1:-1:-1;;;;;39788:22:0;::::1;39780:73;;;::::0;-1:-1:-1;;;39780:73:0;;9222:2:1;39780:73:0::1;::::0;::::1;9204:21:1::0;9261:2;9241:18;;;9234:30;9300:34;9280:18;;;9273:62;9371:8;9351:18;;;9344:36;9397:19;;39780:73:0::1;9194:228:1::0;39780:73:0::1;39864:19;39874:8;39864:9;:19::i;14648:380::-:0;-1:-1:-1;;;;;14784:19:0;;14776:68;;;;-1:-1:-1;;;14776:68:0;;15163:2:1;14776:68:0;;;15145:21:1;15202:2;15182:18;;;15175:30;15241:34;15221:18;;;15214:62;-1:-1:-1;;;15292:18:1;;;15285:34;15336:19;;14776:68:0;15135:226:1;14776:68:0;-1:-1:-1;;;;;14863:21:0;;14855:68;;;;-1:-1:-1;;;14855:68:0;;9629:2:1;14855:68:0;;;9611:21:1;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:32;9800:19;;14855:68:0;9601:224:1;14855:68:0;-1:-1:-1;;;;;14936:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14988:32;;4077:25:1;;;14988:32:0;;4050:18:1;14988:32:0;;;;;;;14648:380;;;:::o;9345:492::-;9485:4;9502:36;9512:6;9520:9;9531:6;9502:9;:36::i;:::-;-1:-1:-1;;;;;9578:19:0;;9551:24;9578:19;;;:11;:19;;;;;;;;4314:10;9578:33;;;;;;;;9630:26;;;;9622:79;;;;-1:-1:-1;;;9622:79:0;;12365:2:1;9622:79:0;;;12347:21:1;12404:2;12384:18;;;12377:30;12443:34;12423:18;;;12416:62;12514:10;12494:18;;;12487:38;12542:19;;9622:79:0;12337:230:1;9622:79:0;9737:57;9746:6;4314:10;9787:6;9768:16;:25;9737:8;:57::i;:::-;-1:-1:-1;9825:4:0;;9345:492;-1:-1:-1;;;;9345:492:0:o;48135:941::-;48241:6;-1:-1:-1;;;;;48231:16:0;:6;-1:-1:-1;;;;;48231:16:0;;;:30;;;;;48260:1;48251:6;:10;48231:30;48227:842;;;-1:-1:-1;;;;;48282:20:0;;;48278:382;;-1:-1:-1;;;;;48390:22:0;;48371:16;48390:22;;;:14;:22;;;;;;;;;48451:13;:60;;48510:1;48451:60;;;-1:-1:-1;;;;;48467:19:0;;;;;;:11;:19;;;;;;48487:13;48499:1;48487:9;:13;:::i;:::-;48467:34;;;;;;;;;;;;;;;:40;;;48451:60;48431:80;-1:-1:-1;48530:17:0;48550:18;48562:6;48431:80;48550:18;:::i;:::-;48530:38;;48587:57;48604:6;48612:9;48623;48634;48587:16;:57::i;:::-;48304:356;;;48278:382;-1:-1:-1;;;;;48680:20:0;;;48676:382;;-1:-1:-1;;;;;48788:22:0;;48769:16;48788:22;;;:14;:22;;;;;;;;;48849:13;:60;;48908:1;48849:60;;;-1:-1:-1;;;;;48865:19:0;;;;;;:11;:19;;;;;;48885:13;48897:1;48885:9;:13;:::i;:::-;48865:34;;;;;;;;;;;;;;;:40;;;48849:60;48829:80;-1:-1:-1;48928:17:0;48948:18;48960:6;48829:80;48948:18;:::i;:::-;48928:38;;48985:57;49002:6;49010:9;49021;49032;48985:16;:57::i;28589:281::-;28642:7;28683:16;28666:13;:33;28662:201;;;-1:-1:-1;28723:24:0;;28589:281::o;28662:201::-;-1:-1:-1;29059:73:0;;;28809:10;29059:73;;;;5436:25:1;;;;28821:12:0;5477:18:1;;;5470:34;28835:15:0;5520:18:1;;;5513:34;29103:13:0;5563:18:1;;;5556:34;29126:4:0;5606:19:1;;;;5599:84;;;;29059:73:0;;;;;;;;;;5408:19:1;;;;29059:73:0;;;29049:84;;;;;;36086:115::o;12887:399::-;-1:-1:-1;;;;;12971:21:0;;12963:65;;;;-1:-1:-1;;;12963:65:0;;16381:2:1;12963:65:0;;;16363:21:1;16420:2;16400:18;;;16393:30;16459:33;16439:18;;;16432:61;16510:18;;12963:65:0;16353:181:1;12963:65:0;13119:6;13103:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13136:18:0;;:9;:18;;;;;;;;;;:28;;13158:6;;13136:9;:28;;13158:6;;13136:28;:::i;:::-;;;;-1:-1:-1;;13180:37:0;;4077:25:1;;;-1:-1:-1;;;;;13180:37:0;;;13197:1;;13180:37;;4065:2:1;4050:18;13180:37:0;;;;;;;40432:350;;:::o;13619:591::-;-1:-1:-1;;;;;13703:21:0;;13695:67;;;;-1:-1:-1;;;13695:67:0;;13540:2:1;13695:67:0;;;13522:21:1;13579:2;13559:18;;;13552:30;13618:34;13598:18;;;13591:62;-1:-1:-1;;;13669:18:1;;;13662:31;13710:19;;13695:67:0;13512:223:1;13695:67:0;-1:-1:-1;;;;;13862:18:0;;13837:22;13862:18;;;;;;;;;;;13899:24;;;;13891:71;;;;-1:-1:-1;;;13891:71:0;;8103:2:1;13891:71:0;;;8085:21:1;8142:2;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;-1:-1:-1;;;8232:18:1;;;8225:32;8274:19;;13891:71:0;8075:224:1;13891:71:0;-1:-1:-1;;;;;13998:18:0;;:9;:18;;;;;;;;;;14019:23;;;13998:44;;14064:12;:22;;14036:6;;13998:9;14064:22;;14036:6;;14064:22;:::i;:::-;;;;-1:-1:-1;;14104:37:0;;4077:25:1;;;14130:1:0;;-1:-1:-1;;;;;14104:37:0;;;;;4065:2:1;4050:18;14104:37:0;;;;;;;37486:302;37420:368;;:::o;47690:437::-;-1:-1:-1;;;;;47807:21:0;;;47781:23;47807:21;;;:10;:21;;;;;;;;;;7919:18;;;;;;;47941:21;;;;:33;;;-1:-1:-1;;47941:33:0;;;;;;;47992:54;;47807:21;;;;;7919:18;;47941:33;;47807:21;;;47992:54;;47781:23;47992:54;48059:60;48074:15;48091:9;48102:16;48059:14;:60::i;:::-;47770:357;;47690:437;;:::o;39899:173::-;39974:6;;;-1:-1:-1;;;;;39991:17:0;;;-1:-1:-1;;39991:17:0;;;;;;;40024:40;;39974:6;;;39991:17;39974:6;;40024:40;;39955:16;;40024:40;39944:128;39899:173;:::o;8158:175::-;8244:4;8261:42;4314:10;8285:9;8296:6;8261:9;:42::i;36299:207::-;-1:-1:-1;;;;;36420:14:0;;36359:15;36420:14;;;:7;:14;;;;;30874;;31011:1;30993:19;;;;30874:14;36481:17;36376:130;36299:207;;;:::o;29783:167::-;29860:7;29887:55;29909:20;:18;:20::i;:::-;29931:10;25436:57;;-1:-1:-1;;;25436:57:0;;;3369:27:1;3412:11;;;3405:27;;;3448:12;;;3441:28;;;25399:7:0;;3485:12:1;;25436:57:0;;;;;;;;;;;;25426:68;;;;;;25419:75;;25306:196;;;;;24108:279;24236:7;24257:17;24276:18;24298:25;24309:4;24315:1;24318;24321;24298:10;:25::i;:::-;24256:67;;;;24334:18;24346:5;24334:11;:18::i;:::-;-1:-1:-1;24370:9:0;24108:279;-1:-1:-1;;;;;24108:279:0:o;11867:733::-;-1:-1:-1;;;;;12007:20:0;;11999:70;;;;-1:-1:-1;;;11999:70:0;;14757:2:1;11999:70:0;;;14739:21:1;14796:2;14776:18;;;14769:30;14835:34;14815:18;;;14808:62;14906:7;14886:18;;;14879:35;14931:19;;11999:70:0;14729:227:1;11999:70:0;-1:-1:-1;;;;;12088:23:0;;12080:71;;;;-1:-1:-1;;;12080:71:0;;7699:2:1;12080:71:0;;;7681:21:1;7738:2;7718:18;;;7711:30;7777:34;7757:18;;;7750:62;-1:-1:-1;;;7828:18:1;;;7821:33;7871:19;;12080:71:0;7671:225:1;12080:71:0;-1:-1:-1;;;;;12248:17:0;;12224:21;12248:17;;;;;;;;;;;12284:23;;;;12276:74;;;;-1:-1:-1;;;12276:74:0;;10793:2:1;12276:74:0;;;10775:21:1;10832:2;10812:18;;;10805:30;10871:34;10851:18;;;10844:62;10942:8;10922:18;;;10915:36;10968:19;;12276:74:0;10765:228:1;12276:74:0;-1:-1:-1;;;;;12386:17:0;;;:9;:17;;;;;;;;;;;12406:22;;;12386:42;;12450:20;;;;;;;;:30;;12422:6;;12386:9;12450:30;;12422:6;;12450:30;:::i;:::-;;;;;;;;12515:9;-1:-1:-1;;;;;12498:35:0;12507:6;-1:-1:-1;;;;;12498:35:0;;12526:6;12498:35;;;;4077:25:1;;4065:2;4050:18;;4032:76;12498:35:0;;;;;;;;12546:46;37420:368;49084:704;49263:18;49284:76;49291:12;49284:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;49263:97;;49392:1;49377:12;:16;;;:85;;;;-1:-1:-1;;;;;;49397:22:0;;;;;;:11;:22;;;;;:65;;;;49420:16;49435:1;49420:12;:16;:::i;:::-;49397:40;;;;;;;;;;;;;;;-1:-1:-1;49397:40:0;:50;;:65;49377:85;49373:339;;;-1:-1:-1;;;;;49479:22:0;;;;;;:11;:22;;;;;49528:8;;49502:16;49517:1;49502:12;:16;:::i;:::-;49479:40;;;;;;;;;;;;;-1:-1:-1;49479:40:0;:46;;:57;49373:339;;;49608:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49569:22:0;;-1:-1:-1;49569:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;:72;;;;-1:-1:-1;;49569:72:0;;;;;;;;-1:-1:-1;49569:72:0;;;;49684:16;;49569:36;;49684:16;:::i;:::-;-1:-1:-1;;;;;49656:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;49656:44:0;;;;;;;;;;;;49373:339;49729:51;;;16895:25:1;;;16951:2;16936:18;;16929:34;;;-1:-1:-1;;;;;49729:51:0;;;;;16868:18:1;49729:51:0;;;;;;;49252:536;49084:704;;;;:::o;22330:1639::-;22461:7;;23402:66;23389:79;;23385:163;;;-1:-1:-1;23501:1:0;;-1:-1:-1;23505:30:0;23485:51;;23385:163;23562:1;:7;;23567:2;23562:7;;:18;;;;;23573:1;:7;;23578:2;23573:7;;23562:18;23558:102;;;-1:-1:-1;23613:1:0;;-1:-1:-1;23617:30:0;23597:51;;23558:102;23774:24;;;23757:14;23774:24;;;;;;;;;6366:25:1;;;6439:4;6427:17;;6407:18;;;6400:45;;;;6461:18;;;6454:34;;;6504:18;;;6497:34;;;23774:24:0;;6338:19:1;;23774:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23774:24:0;;-1:-1:-1;;23774:24:0;;;-1:-1:-1;;;;;;;23813:20:0;;23809:103;;23866:1;23870:29;23850:50;;;;;;;23809:103;23932:6;-1:-1:-1;23940:20:0;;-1:-1:-1;22330:1639:0;;;;;;;;:::o;16992:643::-;17070:20;17061:5;:29;;;;;;;;:::i;:::-;;17057:571;;;16992:643;:::o;17057:571::-;17168:29;17159:5;:38;;;;;;;;:::i;:::-;;17155:473;;;17214:34;;-1:-1:-1;;;17214:34:0;;7346:2:1;17214:34:0;;;7328:21:1;7385:2;7365:18;;;7358:30;7424:26;7404:18;;;7397:54;7468:18;;17214:34:0;7318:174:1;17155:473:0;17279:35;17270:5;:44;;;;;;;;:::i;:::-;;17266:362;;;17331:41;;-1:-1:-1;;;17331:41:0;;8506:2:1;17331:41:0;;;8488:21:1;8545:2;8525:18;;;8518:30;8584:33;8564:18;;;8557:61;8635:18;;17331:41:0;8478:181:1;17266:362:0;17403:30;17394:5;:39;;;;;;;;:::i;:::-;;17390:238;;;17450:44;;-1:-1:-1;;;17450:44:0;;11200:2:1;17450:44:0;;;11182:21:1;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;-1:-1:-1;;;11329:18:1;;;11322:32;11371:19;;17450:44:0;11172:224:1;17390:238:0;17525:30;17516:5;:39;;;;;;;;:::i;:::-;;17512:116;;;17572:44;;-1:-1:-1;;;17572:44:0;;11603:2:1;17572:44:0;;;11585:21:1;11642:2;11622:18;;;11615:30;11681:34;11661:18;;;11654:62;-1:-1:-1;;;11732:18:1;;;11725:32;11774:19;;17572:44:0;11575:224:1;49796:161:0;49871:6;49909:12;49902:5;49898:9;;49890:32;;;;-1:-1:-1;;;49890:32:0;;;;;;;;:::i;:::-;-1:-1:-1;49947:1:0;;49796:161;-1:-1:-1;;49796:161:0:o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:156::-;281:20;;341:4;330:16;;320:27;;310:2;;361:1;358;351:12;376:186;435:6;488:2;476:9;467:7;463:23;459:32;456:2;;;504:1;501;494:12;456:2;527:29;546:9;527:29;:::i;567:260::-;635:6;643;696:2;684:9;675:7;671:23;667:32;664:2;;;712:1;709;702:12;664:2;735:29;754:9;735:29;:::i;:::-;725:39;;783:38;817:2;806:9;802:18;783:38;:::i;:::-;773:48;;654:173;;;;;:::o;832:328::-;909:6;917;925;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1017:29;1036:9;1017:29;:::i;:::-;1007:39;;1065:38;1099:2;1088:9;1084:18;1065:38;:::i;:::-;1055:48;;1150:2;1139:9;1135:18;1122:32;1112:42;;936:224;;;;;:::o;1165:606::-;1276:6;1284;1292;1300;1308;1316;1324;1377:3;1365:9;1356:7;1352:23;1348:33;1345:2;;;1394:1;1391;1384:12;1345:2;1417:29;1436:9;1417:29;:::i;:::-;1407:39;;1465:38;1499:2;1488:9;1484:18;1465:38;:::i;:::-;1455:48;;1550:2;1539:9;1535:18;1522:32;1512:42;;1601:2;1590:9;1586:18;1573:32;1563:42;;1624:37;1656:3;1645:9;1641:19;1624:37;:::i;:::-;1614:47;;1708:3;1697:9;1693:19;1680:33;1670:43;;1760:3;1749:9;1745:19;1732:33;1722:43;;1335:436;;;;;;;;;;:::o;1776:254::-;1844:6;1852;1905:2;1893:9;1884:7;1880:23;1876:32;1873:2;;;1921:1;1918;1911:12;1873:2;1944:29;1963:9;1944:29;:::i;:::-;1934:39;2020:2;2005:18;;;;1992:32;;-1:-1:-1;;;1863:167:1:o;2035:531::-;2137:6;2145;2153;2161;2169;2177;2230:3;2218:9;2209:7;2205:23;2201:33;2198:2;;;2247:1;2244;2237:12;2198:2;2270:29;2289:9;2270:29;:::i;:::-;2260:39;;2346:2;2335:9;2331:18;2318:32;2308:42;;2397:2;2386:9;2382:18;2369:32;2359:42;;2420:36;2452:2;2441:9;2437:18;2420:36;:::i;:::-;2410:46;;2503:3;2492:9;2488:19;2475:33;2465:43;;2555:3;2544:9;2540:19;2527:33;2517:43;;2188:378;;;;;;;;:::o;2571:350::-;2638:6;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:2;;;2715:1;2712;2705:12;2667:2;2738:29;2757:9;2738:29;:::i;:::-;2728:39;;2817:2;2806:9;2802:18;2789:32;2861:10;2854:5;2850:22;2843:5;2840:33;2830:2;;2887:1;2884;2877:12;2830:2;2910:5;2900:15;;;2657:264;;;;;:::o;2926:180::-;2985:6;3038:2;3026:9;3017:7;3013:23;3009:32;3006:2;;;3054:1;3051;3044:12;3006:2;-1:-1:-1;3077:23:1;;2996:110;-1:-1:-1;2996:110:1:o;6542:597::-;6654:4;6683:2;6712;6701:9;6694:21;6744:6;6738:13;6787:6;6782:2;6771:9;6767:18;6760:34;6812:1;6822:140;6836:6;6833:1;6830:13;6822:140;;;6931:14;;;6927:23;;6921:30;6897:17;;;6916:2;6893:26;6886:66;6851:10;;6822:140;;;6980:6;6977:1;6974:13;6971:2;;;7050:1;7045:2;7036:6;7025:9;7021:22;7017:31;7010:42;6971:2;-1:-1:-1;7123:2:1;7102:15;-1:-1:-1;;7098:29:1;7083:45;;;;7130:2;7079:54;;6663:476;-1:-1:-1;;;6663:476:1:o;17628:128::-;17668:3;17699:1;17695:6;17692:1;17689:13;17686:2;;;17705:18;;:::i;:::-;-1:-1:-1;17741:9:1;;17676:80::o;17761:228::-;17800:3;17828:10;17865:2;17862:1;17858:10;17895:2;17892:1;17888:10;17926:3;17922:2;17918:12;17913:3;17910:21;17907:2;;;17934:18;;:::i;:::-;17970:13;;17808:181;-1:-1:-1;;;;17808:181:1:o;17994:288::-;18033:1;18059:10;18096:2;18093:1;18089:10;18118:3;18108:2;;18164:10;18159:3;18155:20;18152:1;18145:31;18199:4;18196:1;18189:15;18227:4;18224:1;18217:15;18108:2;18260:10;;18256:20;;;;;18039:243;-1:-1:-1;;18039:243:1:o;18287:125::-;18327:4;18355:1;18352;18349:8;18346:2;;;18360:18;;:::i;:::-;-1:-1:-1;18397:9:1;;18336:76::o;18417:221::-;18456:4;18485:10;18545;;;;18515;;18567:12;;;18564:2;;;18582:18;;:::i;:::-;18619:13;;18465:173;-1:-1:-1;;;18465:173:1:o;18643:380::-;18722:1;18718:12;;;;18765;;;18786:2;;18840:4;18832:6;18828:17;18818:27;;18786:2;18893;18885:6;18882:14;18862:18;18859:38;18856:2;;;18939:10;18934:3;18930:20;18927:1;18920:31;18974:4;18971:1;18964:15;19002:4;18999:1;18992:15;19028:127;19089:10;19084:3;19080:20;19077:1;19070:31;19120:4;19117:1;19110:15;19144:4;19141:1;19134:15;19160:127;19221:10;19216:3;19212:20;19209:1;19202:31;19252:4;19249:1;19242:15;19276:4;19273:1;19266:15

Swarm Source

ipfs://af07dfe047e0bda358890f88c51e54069ecd2241a9a85d067f127af8e46c05c1

Block Transaction Gas Used Reward
view all blocks collator

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

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.