ETH Price: $2,445.77 (+3.08%)

Token

ARZ (ARZ)
 

Overview

Max Total Supply

21,000,000 ARZ

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,814,027 ARZ

Value
$0.00
0x4151e7432a280bfce2ad01e8c480ef7fe848c40c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ARZToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-02
*/

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

// SPDX-License-Identifier: MIT

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol
pragma solidity 0.8.4;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol

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

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

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

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: node_modules\@openzeppelin\contracts\security\Pausable.sol

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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin\contracts\token\ERC20\extensions\ERC20Pausable.sol

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

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

// File: node_modules\@openzeppelin\contracts\utils\Strings.sol

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol

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

// File: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol

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

// File: node_modules\@openzeppelin\contracts\access\AccessControl.sol

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

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, msg.sender);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

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

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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

// File: node_modules\@openzeppelin\contracts\utils\structs\EnumerableSet.sol

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

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

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: contracts\Token.sol

contract ARZToken is Context, AccessControlEnumerable, ERC20Pausable  {

    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    uint8 public constant override decimals = 18;

    constructor() ERC20("ARZ", "ARZ") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(ADMIN_ROLE, msg.sender);
    }


    function mint(address to, uint256 amount) external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to mint");
        _mint(to, amount);
    }    

    function burn(uint256 amount) external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to burn");
        _burn(msg.sender, amount);
    }

    function burnFrom(address account, uint256 amount) external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to burnFrom");
        uint256 currentAllowance = allowance(account, msg.sender);
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        //_approve(account, msg.sender, currentAllowance - amount);
        decreaseAllowance(msg.sender, amount);
        _burn(account, amount);
    }    

    function pause() external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to pause");
        _pause();
    }

    function unpause() external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to unpause");
        _unpause();
    }
    
    /**
    * @dev Manage tokens sent to this contract
    */
    function tokenBalanceOf(address addressToken) public view returns (string memory, uint256) {        
        IERC20Metadata token = IERC20Metadata(addressToken);
        return (token.symbol(), token.balanceOf(address(this)));
    }
    
    function tokenWithdraw(address addressToken) external {
        require(hasRole(ADMIN_ROLE, msg.sender), "Token: must have admin role to tokenWithdraw");
        IERC20 token = IERC20(addressToken);
        uint256 balance = token.balanceOf(address(this));
        bool success = token.transfer(msg.sender, balance);
        require (success, "Token transfer not successfull");
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToken","type":"address"}],"name":"tokenBalanceOf","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToken","type":"address"}],"name":"tokenWithdraw","outputs":[],"stateMutability":"nonpayable","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f41525a00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41525a000000000000000000000000000000000000000000000000000000000081525081600590805190602001906200009692919062000399565b508060069080519060200190620000af92919062000399565b5050506000600760006101000a81548160ff021916908315150217905550620000e26000801b336200011a60201b60201c565b620001147fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336200011a60201b60201c565b620004ae565b6200013182826200016260201b620012621760201c565b6200015d81600160008581526020019081526020016000206200017860201b620012701790919060201c565b505050565b620001748282620001b060201b60201c565b5050565b6000620001a8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200029260201b60201c565b905092915050565b620001c282826200030c60201b60201c565b6200028e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002a683836200037660201b60201c565b6200030157826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000306565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003a79062000449565b90600052602060002090601f016020900481019282620003cb576000855562000417565b82601f10620003e657805160ff191683800117855562000417565b8280016001018555821562000417579182015b8281111562000416578251825591602001919060010190620003f9565b5b5090506200042691906200042a565b5090565b5b80821115620004455760008160009055506001016200042b565b5090565b600060028204905060018216806200046257607f821691505b602082108114156200047957620004786200047f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c7f80620004be6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a217fddf116100a2578063ca15c87311610071578063ca15c87314610542578063d547741f14610572578063dd62ed3e1461058e578063e42c08f2146105be576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063b555856214610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b806370a08231146103b657806375b238fc146103e657806379cc679014610404576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612855565b6105ef565b6040516101fb9190612dd2565b60405180910390f35b61020c610669565b6040516102199190612e08565b60405180910390f35b61023c6004803603810190610237919061274f565b6106fb565b6040516102499190612dd2565b60405180910390f35b61025a610712565b604051610267919061315a565b60405180910390f35b61028a60048036038101906102859190612700565b61071c565b6040516102979190612dd2565b60405180910390f35b6102ba60048036038101906102b591906127b4565b61080f565b6040516102c79190612ded565b60405180910390f35b6102ea60048036038101906102e591906127dd565b61082e565b005b6102f4610862565b6040516103019190613175565b60405180910390f35b610324600480360381019061031f91906127dd565b610867565b005b610340600480360381019061033b919061274f565b61089b565b60405161034d9190612dd2565b60405180910390f35b61035e610939565b005b61037a6004803603810190610375919061274f565b6109ac565b005b610396600480360381019061039191906128bf565b610a23565b005b6103a0610a99565b6040516103ad9190612dd2565b60405180910390f35b6103d060048036038101906103cb919061269b565b610ab0565b6040516103dd919061315a565b60405180910390f35b6103ee610af9565b6040516103fb9190612ded565b60405180910390f35b61041e6004803603810190610419919061274f565b610b1d565b005b610428610bf1565b005b610444600480360381019061043f9190612819565b610c64565b6040516104519190612d8e565b60405180910390f35b610474600480360381019061046f91906127dd565b610c93565b6040516104819190612dd2565b60405180910390f35b610492610cfd565b60405161049f9190612e08565b60405180910390f35b6104b0610d8f565b6040516104bd9190612ded565b60405180910390f35b6104e060048036038101906104db919061274f565b610d96565b6040516104ed9190612dd2565b60405180910390f35b610510600480360381019061050b919061274f565b610e7c565b60405161051d9190612dd2565b60405180910390f35b610540600480360381019061053b919061269b565b610e93565b005b61055c600480360381019061055791906127b4565b611065565b604051610569919061315a565b60405180910390f35b61058c600480360381019061058791906127dd565b611089565b005b6105a860048036038101906105a391906126c4565b6110bd565b6040516105b5919061315a565b60405180910390f35b6105d860048036038101906105d3919061269b565b611144565b6040516105e6929190612e2a565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106625750610661826112a0565b5b9050919050565b606060058054610678906133d9565b80601f01602080910402602001604051908101604052809291908181526020018280546106a4906133d9565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b600061070833848461131a565b6001905092915050565b6000600454905090565b60006107298484846114e5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490612fda565b60405180910390fd5b610803853385846107fe91906132bd565b61131a565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108388282611767565b61085d816001600085815260200190815260200160002061127090919063ffffffff16565b505050565b601281565b6108718282611789565b610896816001600085815260200190815260200160002061180590919063ffffffff16565b505050565b600061092f338484600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461092a919061320d565b61131a565b6001905092915050565b6109637fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b6109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990612f7a565b60405180910390fd5b6109aa611835565b565b6109d67fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c9061309a565b60405180910390fd5b610a1f82826118d0565b5050565b610a4d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612ffa565b60405180910390fd5b610a963382611a25565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b610b477fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061301a565b60405180910390fd5b6000610b9283336110bd565b905081811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce9061303a565b60405180910390fd5b610be13383610d96565b50610bec8383611a25565b505050565b610c1b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612f3a565b60405180910390fd5b610c62611bfb565b565b6000610c8b8260016000868152602001908152602001600020611c9790919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610d0c906133d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d38906133d9565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b5050505050905090565b6000801b81565b600080600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e52906130da565b60405180910390fd5b610e7133858584610e6c91906132bd565b61131a565b600191505092915050565b6000610e893384846114e5565b6001905092915050565b610ebd7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612f9a565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f3c9190612d8e565b60206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c91906128e8565b905060008273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610fcb929190612da9565b602060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d919061278b565b90508061105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612fba565b60405180910390fd5b50505050565b600061108260016000848152602001908152602001600020611cb1565b9050919050565b6110938282611cc6565b6110b8816001600085815260200190815260200160002061180590919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606000808390508073ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561119257600080fd5b505afa1580156111a6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111cf919061287e565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112089190612d8e565b60206040518083038186803b15801561122057600080fd5b505afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125891906128e8565b9250925050915091565b61126c8282611ce8565b5050565b6000611298836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611dc1565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611313575061131282611e31565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906130ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612efa565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114d8919061315a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061307a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612e9a565b60405180910390fd5b6115d0838383611e9b565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612f1a565b60405180910390fd5b818161166391906132bd565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f5919061320d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611759919061315a565b60405180910390a350505050565b6117708261080f565b61177a8133611ef3565b6117848383611ce8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906130fa565b60405180910390fd5b6118018282611f90565b5050565b600061182d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61206a565b905092915050565b61183d610a99565b61187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390612eba565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336040516118c69190612d8e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061311a565b60405180910390fd5b61194c60008383611e9b565b806004600082825461195e919061320d565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b4919061320d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a19919061315a565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c9061305a565b60405180910390fd5b611aa182600083611e9b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612eda565b60405180910390fd5b8181611b3491906132bd565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b8991906132bd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee919061315a565b60405180910390a3505050565b611c03610a99565b15611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90612f5a565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051611c8d9190612d8e565b60405180910390a1565b6000611ca683600001836121e8565b60001c905092915050565b6000611cbf82600001612282565b9050919050565b611ccf8261080f565b611cd98133611ef3565b611ce38383611f90565b505050565b611cf28282610c93565b611dbd57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611dcd8383612293565b611e26578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611e2b565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ea68383836122b6565b611eae610a99565b15611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee59061313a565b60405180910390fd5b505050565b611efd8282610c93565b611f8c57611f228173ffffffffffffffffffffffffffffffffffffffff1660146122bb565b611f308360001c60206122bb565b604051602001611f41929190612d54565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f839190612e08565b60405180910390fd5b5050565b611f9a8282610c93565b1561206657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146121dc57600060018261209c91906132bd565b90506000600186600001805490506120b491906132bd565b905060008660000182815481106120f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508087600001848154811061213e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550866000018054806121a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506121e2565b60009150505b92915050565b600081836000018054905011612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90612e5a565b60405180910390fd5b82600001828154811061226f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6060600060028360026122ce9190613263565b6122d8919061320d565b67ffffffffffffffff811115612317577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123495781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612431577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026124719190613263565b61247b919061320d565b90505b6001811115612567577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612520577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612560906133af565b905061247e565b50600084146125ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a290612e7a565b60405180910390fd5b8091505092915050565b60006125c86125c3846131b5565b613190565b9050828152602081018484840111156125e057600080fd5b6125eb84828561337c565b509392505050565b60008135905061260281613bd6565b92915050565b60008151905061261781613bed565b92915050565b60008135905061262c81613c04565b92915050565b60008135905061264181613c1b565b92915050565b600082601f83011261265857600080fd5b81516126688482602086016125b5565b91505092915050565b60008135905061268081613c32565b92915050565b60008151905061269581613c32565b92915050565b6000602082840312156126ad57600080fd5b60006126bb848285016125f3565b91505092915050565b600080604083850312156126d757600080fd5b60006126e5858286016125f3565b92505060206126f6858286016125f3565b9150509250929050565b60008060006060848603121561271557600080fd5b6000612723868287016125f3565b9350506020612734868287016125f3565b925050604061274586828701612671565b9150509250925092565b6000806040838503121561276257600080fd5b6000612770858286016125f3565b925050602061278185828601612671565b9150509250929050565b60006020828403121561279d57600080fd5b60006127ab84828501612608565b91505092915050565b6000602082840312156127c657600080fd5b60006127d48482850161261d565b91505092915050565b600080604083850312156127f057600080fd5b60006127fe8582860161261d565b925050602061280f858286016125f3565b9150509250929050565b6000806040838503121561282c57600080fd5b600061283a8582860161261d565b925050602061284b85828601612671565b9150509250929050565b60006020828403121561286757600080fd5b600061287584828501612632565b91505092915050565b60006020828403121561289057600080fd5b600082015167ffffffffffffffff8111156128aa57600080fd5b6128b684828501612647565b91505092915050565b6000602082840312156128d157600080fd5b60006128df84828501612671565b91505092915050565b6000602082840312156128fa57600080fd5b600061290884828501612686565b91505092915050565b61291a816132f1565b82525050565b61292981613303565b82525050565b6129388161330f565b82525050565b6000612949826131e6565b61295381856131f1565b935061296381856020860161337c565b61296c816134c9565b840191505092915050565b6000612982826131e6565b61298c8185613202565b935061299c81856020860161337c565b80840191505092915050565b60006129b56022836131f1565b91506129c0826134da565b604082019050919050565b60006129d86020836131f1565b91506129e382613529565b602082019050919050565b60006129fb6023836131f1565b9150612a0682613552565b604082019050919050565b6000612a1e6014836131f1565b9150612a29826135a1565b602082019050919050565b6000612a416022836131f1565b9150612a4c826135ca565b604082019050919050565b6000612a646022836131f1565b9150612a6f82613619565b604082019050919050565b6000612a876026836131f1565b9150612a9282613668565b604082019050919050565b6000612aaa6024836131f1565b9150612ab5826136b7565b604082019050919050565b6000612acd6010836131f1565b9150612ad882613706565b602082019050919050565b6000612af06026836131f1565b9150612afb8261372f565b604082019050919050565b6000612b13602c836131f1565b9150612b1e8261377e565b604082019050919050565b6000612b36601e836131f1565b9150612b41826137cd565b602082019050919050565b6000612b596028836131f1565b9150612b64826137f6565b604082019050919050565b6000612b7c6023836131f1565b9150612b8782613845565b604082019050919050565b6000612b9f6027836131f1565b9150612baa82613894565b604082019050919050565b6000612bc26024836131f1565b9150612bcd826138e3565b604082019050919050565b6000612be56021836131f1565b9150612bf082613932565b604082019050919050565b6000612c086025836131f1565b9150612c1382613981565b604082019050919050565b6000612c2b6023836131f1565b9150612c36826139d0565b604082019050919050565b6000612c4e6024836131f1565b9150612c5982613a1f565b604082019050919050565b6000612c71601783613202565b9150612c7c82613a6e565b601782019050919050565b6000612c946025836131f1565b9150612c9f82613a97565b604082019050919050565b6000612cb7601183613202565b9150612cc282613ae6565b601182019050919050565b6000612cda602f836131f1565b9150612ce582613b0f565b604082019050919050565b6000612cfd601f836131f1565b9150612d0882613b5e565b602082019050919050565b6000612d20602a836131f1565b9150612d2b82613b87565b604082019050919050565b612d3f81613365565b82525050565b612d4e8161336f565b82525050565b6000612d5f82612c64565b9150612d6b8285612977565b9150612d7682612caa565b9150612d828284612977565b91508190509392505050565b6000602082019050612da36000830184612911565b92915050565b6000604082019050612dbe6000830185612911565b612dcb6020830184612d36565b9392505050565b6000602082019050612de76000830184612920565b92915050565b6000602082019050612e02600083018461292f565b92915050565b60006020820190508181036000830152612e22818461293e565b905092915050565b60006040820190508181036000830152612e44818561293e565b9050612e536020830184612d36565b9392505050565b60006020820190508181036000830152612e73816129a8565b9050919050565b60006020820190508181036000830152612e93816129cb565b9050919050565b60006020820190508181036000830152612eb3816129ee565b9050919050565b60006020820190508181036000830152612ed381612a11565b9050919050565b60006020820190508181036000830152612ef381612a34565b9050919050565b60006020820190508181036000830152612f1381612a57565b9050919050565b60006020820190508181036000830152612f3381612a7a565b9050919050565b60006020820190508181036000830152612f5381612a9d565b9050919050565b60006020820190508181036000830152612f7381612ac0565b9050919050565b60006020820190508181036000830152612f9381612ae3565b9050919050565b60006020820190508181036000830152612fb381612b06565b9050919050565b60006020820190508181036000830152612fd381612b29565b9050919050565b60006020820190508181036000830152612ff381612b4c565b9050919050565b6000602082019050818103600083015261301381612b6f565b9050919050565b6000602082019050818103600083015261303381612b92565b9050919050565b6000602082019050818103600083015261305381612bb5565b9050919050565b6000602082019050818103600083015261307381612bd8565b9050919050565b6000602082019050818103600083015261309381612bfb565b9050919050565b600060208201905081810360008301526130b381612c1e565b9050919050565b600060208201905081810360008301526130d381612c41565b9050919050565b600060208201905081810360008301526130f381612c87565b9050919050565b6000602082019050818103600083015261311381612ccd565b9050919050565b6000602082019050818103600083015261313381612cf0565b9050919050565b6000602082019050818103600083015261315381612d13565b9050919050565b600060208201905061316f6000830184612d36565b92915050565b600060208201905061318a6000830184612d45565b92915050565b600061319a6131ab565b90506131a6828261340b565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d0576131cf61349a565b5b6131d9826134c9565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061321882613365565b915061322383613365565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132585761325761343c565b5b828201905092915050565b600061326e82613365565b915061327983613365565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b2576132b161343c565b5b828202905092915050565b60006132c882613365565b91506132d383613365565b9250828210156132e6576132e561343c565b5b828203905092915050565b60006132fc82613345565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561339a57808201518184015260208101905061337f565b838111156133a9576000848401525b50505050565b60006133ba82613365565b915060008214156133ce576133cd61343c565b5b600182039050919050565b600060028204905060018216806133f157607f821691505b602082108114156134055761340461346b565b5b50919050565b613414826134c9565b810181811067ffffffffffffffff821117156134335761343261349a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207560008201527f6e70617573650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207460008201527f6f6b656e57697468647261770000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e73666572206e6f74207375636365737366756c6c0000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e0000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e46726f6d00000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b613bdf816132f1565b8114613bea57600080fd5b50565b613bf681613303565b8114613c0157600080fd5b50565b613c0d8161330f565b8114613c1857600080fd5b50565b613c2481613319565b8114613c2f57600080fd5b50565b613c3b81613365565b8114613c4657600080fd5b5056fea26469706673582212209a0e6798a43975e167396f19c257ce3b55d0567c590f26211fd0c00de31d02c664736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a217fddf116100a2578063ca15c87311610071578063ca15c87314610542578063d547741f14610572578063dd62ed3e1461058e578063e42c08f2146105be576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063b555856214610526576101cf565b80638456cb59116100de5780638456cb59146104205780639010d07c1461042a57806391d148541461045a57806395d89b411461048a576101cf565b806370a08231146103b657806375b238fc146103e657806379cc679014610404576101cf565b8063313ce567116101715780633f4ba83a1161014b5780633f4ba83a1461035657806340c10f191461036057806342966c681461037c5780635c975abb14610398576101cf565b8063313ce567146102ec57806336568abe1461030a5780633950935114610326576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e99190612855565b6105ef565b6040516101fb9190612dd2565b60405180910390f35b61020c610669565b6040516102199190612e08565b60405180910390f35b61023c6004803603810190610237919061274f565b6106fb565b6040516102499190612dd2565b60405180910390f35b61025a610712565b604051610267919061315a565b60405180910390f35b61028a60048036038101906102859190612700565b61071c565b6040516102979190612dd2565b60405180910390f35b6102ba60048036038101906102b591906127b4565b61080f565b6040516102c79190612ded565b60405180910390f35b6102ea60048036038101906102e591906127dd565b61082e565b005b6102f4610862565b6040516103019190613175565b60405180910390f35b610324600480360381019061031f91906127dd565b610867565b005b610340600480360381019061033b919061274f565b61089b565b60405161034d9190612dd2565b60405180910390f35b61035e610939565b005b61037a6004803603810190610375919061274f565b6109ac565b005b610396600480360381019061039191906128bf565b610a23565b005b6103a0610a99565b6040516103ad9190612dd2565b60405180910390f35b6103d060048036038101906103cb919061269b565b610ab0565b6040516103dd919061315a565b60405180910390f35b6103ee610af9565b6040516103fb9190612ded565b60405180910390f35b61041e6004803603810190610419919061274f565b610b1d565b005b610428610bf1565b005b610444600480360381019061043f9190612819565b610c64565b6040516104519190612d8e565b60405180910390f35b610474600480360381019061046f91906127dd565b610c93565b6040516104819190612dd2565b60405180910390f35b610492610cfd565b60405161049f9190612e08565b60405180910390f35b6104b0610d8f565b6040516104bd9190612ded565b60405180910390f35b6104e060048036038101906104db919061274f565b610d96565b6040516104ed9190612dd2565b60405180910390f35b610510600480360381019061050b919061274f565b610e7c565b60405161051d9190612dd2565b60405180910390f35b610540600480360381019061053b919061269b565b610e93565b005b61055c600480360381019061055791906127b4565b611065565b604051610569919061315a565b60405180910390f35b61058c600480360381019061058791906127dd565b611089565b005b6105a860048036038101906105a391906126c4565b6110bd565b6040516105b5919061315a565b60405180910390f35b6105d860048036038101906105d3919061269b565b611144565b6040516105e6929190612e2a565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106625750610661826112a0565b5b9050919050565b606060058054610678906133d9565b80601f01602080910402602001604051908101604052809291908181526020018280546106a4906133d9565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b600061070833848461131a565b6001905092915050565b6000600454905090565b60006107298484846114e5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490612fda565b60405180910390fd5b610803853385846107fe91906132bd565b61131a565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108388282611767565b61085d816001600085815260200190815260200160002061127090919063ffffffff16565b505050565b601281565b6108718282611789565b610896816001600085815260200190815260200160002061180590919063ffffffff16565b505050565b600061092f338484600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461092a919061320d565b61131a565b6001905092915050565b6109637fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b6109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990612f7a565b60405180910390fd5b6109aa611835565b565b6109d67fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c9061309a565b60405180910390fd5b610a1f82826118d0565b5050565b610a4d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612ffa565b60405180910390fd5b610a963382611a25565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b610b477fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061301a565b60405180910390fd5b6000610b9283336110bd565b905081811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce9061303a565b60405180910390fd5b610be13383610d96565b50610bec8383611a25565b505050565b610c1b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612f3a565b60405180910390fd5b610c62611bfb565b565b6000610c8b8260016000868152602001908152602001600020611c9790919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610d0c906133d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d38906133d9565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b5050505050905090565b6000801b81565b600080600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e52906130da565b60405180910390fd5b610e7133858584610e6c91906132bd565b61131a565b600191505092915050565b6000610e893384846114e5565b6001905092915050565b610ebd7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533610c93565b610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390612f9a565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f3c9190612d8e565b60206040518083038186803b158015610f5457600080fd5b505afa158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c91906128e8565b905060008273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610fcb929190612da9565b602060405180830381600087803b158015610fe557600080fd5b505af1158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d919061278b565b90508061105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612fba565b60405180910390fd5b50505050565b600061108260016000848152602001908152602001600020611cb1565b9050919050565b6110938282611cc6565b6110b8816001600085815260200190815260200160002061180590919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606000808390508073ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561119257600080fd5b505afa1580156111a6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111cf919061287e565b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112089190612d8e565b60206040518083038186803b15801561122057600080fd5b505afa158015611234573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125891906128e8565b9250925050915091565b61126c8282611ce8565b5050565b6000611298836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611dc1565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611313575061131282611e31565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906130ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612efa565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114d8919061315a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c9061307a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612e9a565b60405180910390fd5b6115d0838383611e9b565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612f1a565b60405180910390fd5b818161166391906132bd565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f5919061320d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611759919061315a565b60405180910390a350505050565b6117708261080f565b61177a8133611ef3565b6117848383611ce8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee906130fa565b60405180910390fd5b6118018282611f90565b5050565b600061182d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61206a565b905092915050565b61183d610a99565b61187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390612eba565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336040516118c69190612d8e565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061311a565b60405180910390fd5b61194c60008383611e9b565b806004600082825461195e919061320d565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b4919061320d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a19919061315a565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c9061305a565b60405180910390fd5b611aa182600083611e9b565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612eda565b60405180910390fd5b8181611b3491906132bd565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254611b8991906132bd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bee919061315a565b60405180910390a3505050565b611c03610a99565b15611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90612f5a565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051611c8d9190612d8e565b60405180910390a1565b6000611ca683600001836121e8565b60001c905092915050565b6000611cbf82600001612282565b9050919050565b611ccf8261080f565b611cd98133611ef3565b611ce38383611f90565b505050565b611cf28282610c93565b611dbd57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611dcd8383612293565b611e26578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611e2b565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ea68383836122b6565b611eae610a99565b15611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee59061313a565b60405180910390fd5b505050565b611efd8282610c93565b611f8c57611f228173ffffffffffffffffffffffffffffffffffffffff1660146122bb565b611f308360001c60206122bb565b604051602001611f41929190612d54565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f839190612e08565b60405180910390fd5b5050565b611f9a8282610c93565b1561206657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146121dc57600060018261209c91906132bd565b90506000600186600001805490506120b491906132bd565b905060008660000182815481106120f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508087600001848154811061213e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550866000018054806121a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506121e2565b60009150505b92915050565b600081836000018054905011612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90612e5a565b60405180910390fd5b82600001828154811061226f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6060600060028360026122ce9190613263565b6122d8919061320d565b67ffffffffffffffff811115612317577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123495781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612431577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026124719190613263565b61247b919061320d565b90505b6001811115612567577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612520577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612560906133af565b905061247e565b50600084146125ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a290612e7a565b60405180910390fd5b8091505092915050565b60006125c86125c3846131b5565b613190565b9050828152602081018484840111156125e057600080fd5b6125eb84828561337c565b509392505050565b60008135905061260281613bd6565b92915050565b60008151905061261781613bed565b92915050565b60008135905061262c81613c04565b92915050565b60008135905061264181613c1b565b92915050565b600082601f83011261265857600080fd5b81516126688482602086016125b5565b91505092915050565b60008135905061268081613c32565b92915050565b60008151905061269581613c32565b92915050565b6000602082840312156126ad57600080fd5b60006126bb848285016125f3565b91505092915050565b600080604083850312156126d757600080fd5b60006126e5858286016125f3565b92505060206126f6858286016125f3565b9150509250929050565b60008060006060848603121561271557600080fd5b6000612723868287016125f3565b9350506020612734868287016125f3565b925050604061274586828701612671565b9150509250925092565b6000806040838503121561276257600080fd5b6000612770858286016125f3565b925050602061278185828601612671565b9150509250929050565b60006020828403121561279d57600080fd5b60006127ab84828501612608565b91505092915050565b6000602082840312156127c657600080fd5b60006127d48482850161261d565b91505092915050565b600080604083850312156127f057600080fd5b60006127fe8582860161261d565b925050602061280f858286016125f3565b9150509250929050565b6000806040838503121561282c57600080fd5b600061283a8582860161261d565b925050602061284b85828601612671565b9150509250929050565b60006020828403121561286757600080fd5b600061287584828501612632565b91505092915050565b60006020828403121561289057600080fd5b600082015167ffffffffffffffff8111156128aa57600080fd5b6128b684828501612647565b91505092915050565b6000602082840312156128d157600080fd5b60006128df84828501612671565b91505092915050565b6000602082840312156128fa57600080fd5b600061290884828501612686565b91505092915050565b61291a816132f1565b82525050565b61292981613303565b82525050565b6129388161330f565b82525050565b6000612949826131e6565b61295381856131f1565b935061296381856020860161337c565b61296c816134c9565b840191505092915050565b6000612982826131e6565b61298c8185613202565b935061299c81856020860161337c565b80840191505092915050565b60006129b56022836131f1565b91506129c0826134da565b604082019050919050565b60006129d86020836131f1565b91506129e382613529565b602082019050919050565b60006129fb6023836131f1565b9150612a0682613552565b604082019050919050565b6000612a1e6014836131f1565b9150612a29826135a1565b602082019050919050565b6000612a416022836131f1565b9150612a4c826135ca565b604082019050919050565b6000612a646022836131f1565b9150612a6f82613619565b604082019050919050565b6000612a876026836131f1565b9150612a9282613668565b604082019050919050565b6000612aaa6024836131f1565b9150612ab5826136b7565b604082019050919050565b6000612acd6010836131f1565b9150612ad882613706565b602082019050919050565b6000612af06026836131f1565b9150612afb8261372f565b604082019050919050565b6000612b13602c836131f1565b9150612b1e8261377e565b604082019050919050565b6000612b36601e836131f1565b9150612b41826137cd565b602082019050919050565b6000612b596028836131f1565b9150612b64826137f6565b604082019050919050565b6000612b7c6023836131f1565b9150612b8782613845565b604082019050919050565b6000612b9f6027836131f1565b9150612baa82613894565b604082019050919050565b6000612bc26024836131f1565b9150612bcd826138e3565b604082019050919050565b6000612be56021836131f1565b9150612bf082613932565b604082019050919050565b6000612c086025836131f1565b9150612c1382613981565b604082019050919050565b6000612c2b6023836131f1565b9150612c36826139d0565b604082019050919050565b6000612c4e6024836131f1565b9150612c5982613a1f565b604082019050919050565b6000612c71601783613202565b9150612c7c82613a6e565b601782019050919050565b6000612c946025836131f1565b9150612c9f82613a97565b604082019050919050565b6000612cb7601183613202565b9150612cc282613ae6565b601182019050919050565b6000612cda602f836131f1565b9150612ce582613b0f565b604082019050919050565b6000612cfd601f836131f1565b9150612d0882613b5e565b602082019050919050565b6000612d20602a836131f1565b9150612d2b82613b87565b604082019050919050565b612d3f81613365565b82525050565b612d4e8161336f565b82525050565b6000612d5f82612c64565b9150612d6b8285612977565b9150612d7682612caa565b9150612d828284612977565b91508190509392505050565b6000602082019050612da36000830184612911565b92915050565b6000604082019050612dbe6000830185612911565b612dcb6020830184612d36565b9392505050565b6000602082019050612de76000830184612920565b92915050565b6000602082019050612e02600083018461292f565b92915050565b60006020820190508181036000830152612e22818461293e565b905092915050565b60006040820190508181036000830152612e44818561293e565b9050612e536020830184612d36565b9392505050565b60006020820190508181036000830152612e73816129a8565b9050919050565b60006020820190508181036000830152612e93816129cb565b9050919050565b60006020820190508181036000830152612eb3816129ee565b9050919050565b60006020820190508181036000830152612ed381612a11565b9050919050565b60006020820190508181036000830152612ef381612a34565b9050919050565b60006020820190508181036000830152612f1381612a57565b9050919050565b60006020820190508181036000830152612f3381612a7a565b9050919050565b60006020820190508181036000830152612f5381612a9d565b9050919050565b60006020820190508181036000830152612f7381612ac0565b9050919050565b60006020820190508181036000830152612f9381612ae3565b9050919050565b60006020820190508181036000830152612fb381612b06565b9050919050565b60006020820190508181036000830152612fd381612b29565b9050919050565b60006020820190508181036000830152612ff381612b4c565b9050919050565b6000602082019050818103600083015261301381612b6f565b9050919050565b6000602082019050818103600083015261303381612b92565b9050919050565b6000602082019050818103600083015261305381612bb5565b9050919050565b6000602082019050818103600083015261307381612bd8565b9050919050565b6000602082019050818103600083015261309381612bfb565b9050919050565b600060208201905081810360008301526130b381612c1e565b9050919050565b600060208201905081810360008301526130d381612c41565b9050919050565b600060208201905081810360008301526130f381612c87565b9050919050565b6000602082019050818103600083015261311381612ccd565b9050919050565b6000602082019050818103600083015261313381612cf0565b9050919050565b6000602082019050818103600083015261315381612d13565b9050919050565b600060208201905061316f6000830184612d36565b92915050565b600060208201905061318a6000830184612d45565b92915050565b600061319a6131ab565b90506131a6828261340b565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d0576131cf61349a565b5b6131d9826134c9565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061321882613365565b915061322383613365565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132585761325761343c565b5b828201905092915050565b600061326e82613365565b915061327983613365565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132b2576132b161343c565b5b828202905092915050565b60006132c882613365565b91506132d383613365565b9250828210156132e6576132e561343c565b5b828203905092915050565b60006132fc82613345565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561339a57808201518184015260208101905061337f565b838111156133a9576000848401525b50505050565b60006133ba82613365565b915060008214156133ce576133cd61343c565b5b600182039050919050565b600060028204905060018216806133f157607f821691505b602082108114156134055761340461346b565b5b50919050565b613414826134c9565b810181811067ffffffffffffffff821117156134335761343261349a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207560008201527f6e70617573650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f207460008201527f6f6b656e57697468647261770000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e73666572206e6f74207375636365737366756c6c0000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e0000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206260008201527f75726e46726f6d00000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a206d75737420686176652061646d696e20726f6c6520746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b613bdf816132f1565b8114613bea57600080fd5b50565b613bf681613303565b8114613c0157600080fd5b50565b613c0d8161330f565b8114613c1857600080fd5b50565b613c2481613319565b8114613c2f57600080fd5b50565b613c3b81613365565b8114613c4657600080fd5b5056fea26469706673582212209a0e6798a43975e167396f19c257ce3b55d0567c590f26211fd0c00de31d02c664736f6c63430008040033

Deployed Bytecode Sourcemap

43543:2221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41174:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6534:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7656:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9350:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27545:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42545:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43689:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43068:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10177:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44892:150;;;:::i;:::-;;43892:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44081:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16346:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7827:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43622:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44262:466;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44740:144;;;:::i;:::-;;42000:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26543:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6753:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24510:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10891:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8167:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45366:389;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42319:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42803:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8403:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45119:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41174:227;41259:4;41298:42;41283:57;;;:11;:57;;;;:110;;;;41357:36;41381:11;41357:23;:36::i;:::-;41283:110;41276:117;;41174:227;;;:::o;6534:100::-;6588:13;6621:5;6614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6534:100;:::o;8701:167::-;8784:4;8801:37;8810:10;8822:7;8831:6;8801:8;:37::i;:::-;8856:4;8849:11;;8701:167;;;;:::o;7656:108::-;7717:7;7744:12;;7737:19;;7656:108;:::o;9350:418::-;9456:4;9473:36;9483:6;9491:9;9502:6;9473:9;:36::i;:::-;9522:24;9549:11;:19;9561:6;9549:19;;;;;;;;;;;;;;;:31;9569:10;9549:31;;;;;;;;;;;;;;;;9522:58;;9619:6;9599:16;:26;;9591:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9681:55;9690:6;9698:10;9729:6;9710:16;:25;;;;:::i;:::-;9681:8;:55::i;:::-;9756:4;9749:11;;;9350:418;;;;;:::o;27545:123::-;27611:7;27638:6;:12;27645:4;27638:12;;;;;;;;;;;:22;;;27631:29;;27545:123;;;:::o;42545:165::-;42630:30;42646:4;42652:7;42630:15;:30::i;:::-;42671:31;42694:7;42671:12;:18;42684:4;42671:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;42545:165;;:::o;43689:44::-;43731:2;43689:44;:::o;43068:174::-;43156:33;43175:4;43181:7;43156:18;:33::i;:::-;43200:34;43226:7;43200:12;:18;43213:4;43200:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;43068:174;;:::o;10177:211::-;10265:4;10282:76;10291:10;10303:7;10347:10;10312:11;:23;10324:10;10312:23;;;;;;;;;;;;;;;:32;10336:7;10312:32;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;10282:8;:76::i;:::-;10376:4;10369:11;;10177:211;;;;:::o;44892:150::-;44939:31;43659:23;44959:10;44939:7;:31::i;:::-;44931:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;45024:10;:8;:10::i;:::-;44892:150::o;43892:177::-;43962:31;43659:23;43982:10;43962:7;:31::i;:::-;43954:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44044:17;44050:2;44054:6;44044:5;:17::i;:::-;43892:177;;:::o;44081:173::-;44139:31;43659:23;44159:10;44139:7;:31::i;:::-;44131:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44221:25;44227:10;44239:6;44221:5;:25::i;:::-;44081:173;:::o;16346:86::-;16393:4;16417:7;;;;;;;;;;;16410:14;;16346:86;:::o;7827:127::-;7901:7;7928:9;:18;7938:7;7928:18;;;;;;;;;;;;;;;;7921:25;;7827:127;;;:::o;43622:60::-;43659:23;43622:60;:::o;44262:466::-;44341:31;43659:23;44361:10;44341:7;:31::i;:::-;44333:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44427:24;44454:30;44464:7;44473:10;44454:9;:30::i;:::-;44427:57;;44523:6;44503:16;:26;;44495:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44650:37;44668:10;44680:6;44650:17;:37::i;:::-;;44698:22;44704:7;44713:6;44698:5;:22::i;:::-;44262:466;;;:::o;44740:144::-;44785:31;43659:23;44805:10;44785:7;:31::i;:::-;44777:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;44868:8;:6;:8::i;:::-;44740:144::o;42000:145::-;42082:7;42109:28;42131:5;42109:12;:18;42122:4;42109:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;42102:35;;42000:145;;;;:::o;26543:139::-;26621:4;26645:6;:12;26652:4;26645:12;;;;;;;;;;;:20;;:29;26666:7;26645:29;;;;;;;;;;;;;;;;;;;;;;;;;26638:36;;26543:139;;;;:::o;6753:104::-;6809:13;6842:7;6835:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6753:104;:::o;24510:49::-;24555:4;24510:49;;;:::o;10891:373::-;10984:4;11001:24;11028:11;:23;11040:10;11028:23;;;;;;;;;;;;;;;:32;11052:7;11028:32;;;;;;;;;;;;;;;;11001:59;;11099:15;11079:16;:35;;11071:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11167:65;11176:10;11188:7;11216:15;11197:16;:34;;;;:::i;:::-;11167:8;:65::i;:::-;11252:4;11245:11;;;10891:373;;;;:::o;8167:173::-;8253:4;8270:40;8280:10;8292:9;8303:6;8270:9;:40::i;:::-;8328:4;8321:11;;8167:173;;;;:::o;45366:389::-;45439:31;43659:23;45459:10;45439:7;:31::i;:::-;45431:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;45530:12;45552;45530:35;;45576:15;45594:5;:15;;;45618:4;45594:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45576:48;;45635:12;45650:5;:14;;;45665:10;45677:7;45650:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45635:50;;45705:7;45696:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;45366:389;;;;:::o;42319:134::-;42391:7;42418:27;:12;:18;42431:4;42418:18;;;;;;;;;;;:25;:27::i;:::-;42411:34;;42319:134;;;:::o;42803:170::-;42889:31;42906:4;42912:7;42889:16;:31::i;:::-;42931:34;42957:7;42931:12;:18;42944:4;42931:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;42803:170;;:::o;8403:151::-;8492:7;8519:11;:18;8531:5;8519:18;;;;;;;;;;;;;;;:27;8538:7;8519:27;;;;;;;;;;;;;;;;8512:34;;8403:151;;;;:::o;45119:235::-;45186:13;45201:7;45229:20;45267:12;45229:51;;45299:5;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45315:5;:15;;;45339:4;45315:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45291:55;;;;;45119:235;;;:::o;29777:112::-;29856:25;29867:4;29873:7;29856:10;:25::i;:::-;29777:112;;:::o;37343:152::-;37413:4;37437:50;37442:3;:10;;37478:5;37462:23;;37454:32;;37437:4;:50::i;:::-;37430:57;;37343:152;;;;:::o;26234:217::-;26319:4;26358:32;26343:47;;;:11;:47;;;;:100;;;;26407:36;26431:11;26407:23;:36::i;:::-;26343:100;26336:107;;26234:217;;;:::o;14243:346::-;14362:1;14345:19;;:5;:19;;;;14337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14443:1;14424:21;;:7;:21;;;;14416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14527:6;14497:11;:18;14509:5;14497:18;;;;;;;;;;;;;;;:27;14516:7;14497:27;;;;;;;;;;;;;;;:36;;;;14565:7;14549:32;;14558:5;14549:32;;;14574:6;14549:32;;;;;;:::i;:::-;;;;;;;;14243:346;;;:::o;11754:604::-;11878:1;11860:20;;:6;:20;;;;11852:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11962:1;11941:23;;:9;:23;;;;11933:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12017:47;12038:6;12046:9;12057:6;12017:20;:47::i;:::-;12077:21;12101:9;:17;12111:6;12101:17;;;;;;;;;;;;;;;;12077:41;;12154:6;12137:13;:23;;12129:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12250:6;12234:13;:22;;;;:::i;:::-;12214:9;:17;12224:6;12214:17;;;;;;;;;;;;;;;:42;;;;12291:6;12267:9;:20;12277:9;12267:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12332:9;12315:35;;12324:6;12315:35;;;12343:6;12315:35;;;;;;:::i;:::-;;;;;;;;11754:604;;;;:::o;27930:147::-;28013:18;28026:4;28013:12;:18::i;:::-;26114:28;26125:4;26131:10;26114;:28::i;:::-;28044:25:::1;28055:4;28061:7;28044:10;:25::i;:::-;27930:147:::0;;;:::o;28978:216::-;29085:10;29074:21;;:7;:21;;;29066:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;29160:26;29172:4;29178:7;29160:11;:26::i;:::-;28978:216;;:::o;37671:158::-;37744:4;37768:53;37776:3;:10;;37812:5;37796:23;;37788:32;;37768:7;:53::i;:::-;37761:60;;37671:158;;;;:::o;17403:118::-;16949:8;:6;:8::i;:::-;16941:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;17472:5:::1;17462:7;;:15;;;;;;;;;;;;;;;;;;17493:20;17502:10;17493:20;;;;;;:::i;:::-;;;;;;;;17403:118::o:0;12640:338::-;12743:1;12724:21;;:7;:21;;;;12716:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12794:49;12823:1;12827:7;12836:6;12794:20;:49::i;:::-;12872:6;12856:12;;:22;;;;;;;:::i;:::-;;;;;;;;12911:6;12889:9;:18;12899:7;12889:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12954:7;12933:37;;12950:1;12933:37;;;12963:6;12933:37;;;;;;:::i;:::-;;;;;;;;12640:338;;:::o;13311:494::-;13414:1;13395:21;;:7;:21;;;;13387:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13467:49;13488:7;13505:1;13509:6;13467:20;:49::i;:::-;13529:22;13554:9;:18;13564:7;13554:18;;;;;;;;;;;;;;;;13529:43;;13609:6;13591:14;:24;;13583:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13703:6;13686:14;:23;;;;:::i;:::-;13665:9;:18;13675:7;13665:18;;;;;;;;;;;;;;;:44;;;;13736:6;13720:12;;:22;;;;;;;:::i;:::-;;;;;;;;13786:1;13760:37;;13769:7;13760:37;;;13790:6;13760:37;;;;;;:::i;:::-;;;;;;;;13311:494;;;:::o;17146:116::-;16672:8;:6;:8::i;:::-;16671:9;16663:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;17216:4:::1;17206:7;;:14;;;;;;;;;;;;;;;;;;17236:18;17243:10;17236:18;;;;;;:::i;:::-;;;;;;;;17146:116::o:0;38629:158::-;38703:7;38754:22;38758:3;:10;;38770:5;38754:3;:22::i;:::-;38746:31;;38723:56;;38629:158;;;;:::o;38168:117::-;38231:7;38258:19;38266:3;:10;;38258:7;:19::i;:::-;38251:26;;38168:117;;;:::o;28322:149::-;28406:18;28419:4;28406:12;:18::i;:::-;26114:28;26125:4;26131:10;26114;:28::i;:::-;28437:26:::1;28449:4;28455:7;28437:11;:26::i;:::-;28322:149:::0;;;:::o;30224:227::-;30299:22;30307:4;30313:7;30299;:22::i;:::-;30294:150;;30370:4;30338:6;:12;30345:4;30338:12;;;;;;;;;;;:20;;:29;30359:7;30338:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30421:10;30394:38;;30412:7;30394:38;;30406:4;30394:38;;;;;;;;;;30294:150;30224:227;;:::o;32398:414::-;32461:4;32483:21;32493:3;32498:5;32483:9;:21::i;:::-;32478:327;;32521:3;:11;;32538:5;32521:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32704:3;:11;;:18;;;;32682:3;:12;;:19;32695:5;32682:19;;;;;;;;;;;:40;;;;32744:4;32737:11;;;;32478:327;32788:5;32781:12;;32398:414;;;;;:::o;21986:157::-;22071:4;22110:25;22095:40;;;:11;:40;;;;22088:47;;21986:157;;;:::o;18086:238::-;18195:44;18222:4;18228:2;18232:6;18195:26;:44::i;:::-;18261:8;:6;:8::i;:::-;18260:9;18252:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18086:238;;;:::o;26972:384::-;27052:22;27060:4;27066:7;27052;:22::i;:::-;27048:301;;27184:41;27212:7;27184:41;;27222:2;27184:19;:41::i;:::-;27282:38;27310:4;27302:13;;27317:2;27282:19;:38::i;:::-;27105:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27091:246;;;;;;;;;;;:::i;:::-;;;;;;;;27048:301;26972:384;;:::o;30459:228::-;30534:22;30542:4;30548:7;30534;:22::i;:::-;30530:150;;;30605:5;30573:6;:12;30580:4;30573:12;;;;;;;;;;;:20;;:29;30594:7;30573:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30657:10;30630:38;;30648:7;30630:38;;30642:4;30630:38;;;;;;;;;;30530:150;30459:228;;:::o;32988:1553::-;33054:4;33172:18;33193:3;:12;;:19;33206:5;33193:19;;;;;;;;;;;;33172:40;;33243:1;33229:10;:15;33225:1309;;33591:21;33628:1;33615:10;:14;;;;:::i;:::-;33591:38;;33644:17;33685:1;33664:3;:11;;:18;;;;:22;;;;:::i;:::-;33644:42;;33931:17;33951:3;:11;;33963:9;33951:22;;;;;;;;;;;;;;;;;;;;;;;;33931:42;;34097:9;34068:3;:11;;34080:13;34068:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;34200:10;34174:3;:12;;:23;34187:9;34174:23;;;;;;;;;;;:36;;;;34335:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34430:3;:12;;:19;34443:5;34430:19;;;;;;;;;;;34423:26;;;34473:4;34466:11;;;;;;;;33225:1309;34517:5;34510:12;;;32988:1553;;;;;:::o;35295:204::-;35362:7;35411:5;35390:3;:11;;:18;;;;:26;35382:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35473:3;:11;;35485:5;35473:18;;;;;;;;;;;;;;;;;;;;;;;;35466:25;;35295:204;;;;:::o;34842:109::-;34898:7;34925:3;:11;;:18;;;;34918:25;;34842:109;;;:::o;34627:129::-;34700:4;34747:1;34724:3;:12;;:19;34737:5;34724:19;;;;;;;;;;;;:24;;34717:31;;34627:129;;;;:::o;15192:92::-;;;;:::o;19921:447::-;19996:13;20022:19;20067:1;20058:6;20054:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20044:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20022:47;;20080:15;:6;20087:1;20080:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;20106;:6;20113:1;20106:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;20137:9;20162:1;20153:6;20149:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20137:26;;20132:131;20169:1;20165;:5;20132:131;;;20204:8;20221:3;20213:5;:11;20204:21;;;;;;;;;;;;;;;;;;20192:6;20199:1;20192:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;20250:1;20240:11;;;;;20172:3;;;;:::i;:::-;;;20132:131;;;;20290:1;20281:5;:10;20273:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20353:6;20339:21;;;19921:447;;;;:::o;7:354:1:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;316:39;348:6;343:3;338;316:39;:::i;:::-;102:259;;;;;;:::o;367:139::-;413:5;451:6;438:20;429:29;;467:33;494:5;467:33;:::i;:::-;419:87;;;;:::o;512:137::-;566:5;597:6;591:13;582:22;;613:30;637:5;613:30;:::i;:::-;572:77;;;;:::o;655:139::-;701:5;739:6;726:20;717:29;;755:33;782:5;755:33;:::i;:::-;707:87;;;;:::o;800:137::-;845:5;883:6;870:20;861:29;;899:32;925:5;899:32;:::i;:::-;851:86;;;;:::o;957:288::-;1024:5;1073:3;1066:4;1058:6;1054:17;1050:27;1040:2;;1091:1;1088;1081:12;1040:2;1124:6;1118:13;1149:90;1235:3;1227:6;1220:4;1212:6;1208:17;1149:90;:::i;:::-;1140:99;;1030:215;;;;;:::o;1251:139::-;1297:5;1335:6;1322:20;1313:29;;1351:33;1378:5;1351:33;:::i;:::-;1303:87;;;;:::o;1396:143::-;1453:5;1484:6;1478:13;1469:22;;1500:33;1527:5;1500:33;:::i;:::-;1459:80;;;;:::o;1545:262::-;1604:6;1653:2;1641:9;1632:7;1628:23;1624:32;1621:2;;;1669:1;1666;1659:12;1621:2;1712:1;1737:53;1782:7;1773:6;1762:9;1758:22;1737:53;:::i;:::-;1727:63;;1683:117;1611:196;;;;:::o;1813:407::-;1881:6;1889;1938:2;1926:9;1917:7;1913:23;1909:32;1906:2;;;1954:1;1951;1944:12;1906:2;1997:1;2022:53;2067:7;2058:6;2047:9;2043:22;2022:53;:::i;:::-;2012:63;;1968:117;2124:2;2150:53;2195:7;2186:6;2175:9;2171:22;2150:53;:::i;:::-;2140:63;;2095:118;1896:324;;;;;:::o;2226:552::-;2303:6;2311;2319;2368:2;2356:9;2347:7;2343:23;2339:32;2336:2;;;2384:1;2381;2374:12;2336:2;2427:1;2452:53;2497:7;2488:6;2477:9;2473:22;2452:53;:::i;:::-;2442:63;;2398:117;2554:2;2580:53;2625:7;2616:6;2605:9;2601:22;2580:53;:::i;:::-;2570:63;;2525:118;2682:2;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2653:118;2326:452;;;;;:::o;2784:407::-;2852:6;2860;2909:2;2897:9;2888:7;2884:23;2880:32;2877:2;;;2925:1;2922;2915:12;2877:2;2968:1;2993:53;3038:7;3029:6;3018:9;3014:22;2993:53;:::i;:::-;2983:63;;2939:117;3095:2;3121:53;3166:7;3157:6;3146:9;3142:22;3121:53;:::i;:::-;3111:63;;3066:118;2867:324;;;;;:::o;3197:278::-;3264:6;3313:2;3301:9;3292:7;3288:23;3284:32;3281:2;;;3329:1;3326;3319:12;3281:2;3372:1;3397:61;3450:7;3441:6;3430:9;3426:22;3397:61;:::i;:::-;3387:71;;3343:125;3271:204;;;;:::o;3481:262::-;3540:6;3589:2;3577:9;3568:7;3564:23;3560:32;3557:2;;;3605:1;3602;3595:12;3557:2;3648:1;3673:53;3718:7;3709:6;3698:9;3694:22;3673:53;:::i;:::-;3663:63;;3619:117;3547:196;;;;:::o;3749:407::-;3817:6;3825;3874:2;3862:9;3853:7;3849:23;3845:32;3842:2;;;3890:1;3887;3880:12;3842:2;3933:1;3958:53;4003:7;3994:6;3983:9;3979:22;3958:53;:::i;:::-;3948:63;;3904:117;4060:2;4086:53;4131:7;4122:6;4111:9;4107:22;4086:53;:::i;:::-;4076:63;;4031:118;3832:324;;;;;:::o;4162:407::-;4230:6;4238;4287:2;4275:9;4266:7;4262:23;4258:32;4255:2;;;4303:1;4300;4293:12;4255:2;4346:1;4371:53;4416:7;4407:6;4396:9;4392:22;4371:53;:::i;:::-;4361:63;;4317:117;4473:2;4499:53;4544:7;4535:6;4524:9;4520:22;4499:53;:::i;:::-;4489:63;;4444:118;4245:324;;;;;:::o;4575:260::-;4633:6;4682:2;4670:9;4661:7;4657:23;4653:32;4650:2;;;4698:1;4695;4688:12;4650:2;4741:1;4766:52;4810:7;4801:6;4790:9;4786:22;4766:52;:::i;:::-;4756:62;;4712:116;4640:195;;;;:::o;4841:390::-;4921:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:2;;;4986:1;4983;4976:12;4938:2;5050:1;5039:9;5035:17;5029:24;5080:18;5072:6;5069:30;5066:2;;;5112:1;5109;5102:12;5066:2;5140:74;5206:7;5197:6;5186:9;5182:22;5140:74;:::i;:::-;5130:84;;5000:224;4928:303;;;;:::o;5237:262::-;5296:6;5345:2;5333:9;5324:7;5320:23;5316:32;5313:2;;;5361:1;5358;5351:12;5313:2;5404:1;5429:53;5474:7;5465:6;5454:9;5450:22;5429:53;:::i;:::-;5419:63;;5375:117;5303:196;;;;:::o;5505:284::-;5575:6;5624:2;5612:9;5603:7;5599:23;5595:32;5592:2;;;5640:1;5637;5630:12;5592:2;5683:1;5708:64;5764:7;5755:6;5744:9;5740:22;5708:64;:::i;:::-;5698:74;;5654:128;5582:207;;;;:::o;5795:118::-;5882:24;5900:5;5882:24;:::i;:::-;5877:3;5870:37;5860:53;;:::o;5919:109::-;6000:21;6015:5;6000:21;:::i;:::-;5995:3;5988:34;5978:50;;:::o;6034:118::-;6121:24;6139:5;6121:24;:::i;:::-;6116:3;6109:37;6099:53;;:::o;6158:364::-;6246:3;6274:39;6307:5;6274:39;:::i;:::-;6329:71;6393:6;6388:3;6329:71;:::i;:::-;6322:78;;6409:52;6454:6;6449:3;6442:4;6435:5;6431:16;6409:52;:::i;:::-;6486:29;6508:6;6486:29;:::i;:::-;6481:3;6477:39;6470:46;;6250:272;;;;;:::o;6528:377::-;6634:3;6662:39;6695:5;6662:39;:::i;:::-;6717:89;6799:6;6794:3;6717:89;:::i;:::-;6710:96;;6815:52;6860:6;6855:3;6848:4;6841:5;6837:16;6815:52;:::i;:::-;6892:6;6887:3;6883:16;6876:23;;6638:267;;;;;:::o;6911:366::-;7053:3;7074:67;7138:2;7133:3;7074:67;:::i;:::-;7067:74;;7150:93;7239:3;7150:93;:::i;:::-;7268:2;7263:3;7259:12;7252:19;;7057:220;;;:::o;7283:366::-;7425:3;7446:67;7510:2;7505:3;7446:67;:::i;:::-;7439:74;;7522:93;7611:3;7522:93;:::i;:::-;7640:2;7635:3;7631:12;7624:19;;7429:220;;;:::o;7655:366::-;7797:3;7818:67;7882:2;7877:3;7818:67;:::i;:::-;7811:74;;7894:93;7983:3;7894:93;:::i;:::-;8012:2;8007:3;8003:12;7996:19;;7801:220;;;:::o;8027:366::-;8169:3;8190:67;8254:2;8249:3;8190:67;:::i;:::-;8183:74;;8266:93;8355:3;8266:93;:::i;:::-;8384:2;8379:3;8375:12;8368:19;;8173:220;;;:::o;8399:366::-;8541:3;8562:67;8626:2;8621:3;8562:67;:::i;:::-;8555:74;;8638:93;8727:3;8638:93;:::i;:::-;8756:2;8751:3;8747:12;8740:19;;8545:220;;;:::o;8771:366::-;8913:3;8934:67;8998:2;8993:3;8934:67;:::i;:::-;8927:74;;9010:93;9099:3;9010:93;:::i;:::-;9128:2;9123:3;9119:12;9112:19;;8917:220;;;:::o;9143:366::-;9285:3;9306:67;9370:2;9365:3;9306:67;:::i;:::-;9299:74;;9382:93;9471:3;9382:93;:::i;:::-;9500:2;9495:3;9491:12;9484:19;;9289:220;;;:::o;9515:366::-;9657:3;9678:67;9742:2;9737:3;9678:67;:::i;:::-;9671:74;;9754:93;9843:3;9754:93;:::i;:::-;9872:2;9867:3;9863:12;9856:19;;9661:220;;;:::o;9887:366::-;10029:3;10050:67;10114:2;10109:3;10050:67;:::i;:::-;10043:74;;10126:93;10215:3;10126:93;:::i;:::-;10244:2;10239:3;10235:12;10228:19;;10033:220;;;:::o;10259:366::-;10401:3;10422:67;10486:2;10481:3;10422:67;:::i;:::-;10415:74;;10498:93;10587:3;10498:93;:::i;:::-;10616:2;10611:3;10607:12;10600:19;;10405:220;;;:::o;10631:366::-;10773:3;10794:67;10858:2;10853:3;10794:67;:::i;:::-;10787:74;;10870:93;10959:3;10870:93;:::i;:::-;10988:2;10983:3;10979:12;10972:19;;10777:220;;;:::o;11003:366::-;11145:3;11166:67;11230:2;11225:3;11166:67;:::i;:::-;11159:74;;11242:93;11331:3;11242:93;:::i;:::-;11360:2;11355:3;11351:12;11344:19;;11149:220;;;:::o;11375:366::-;11517:3;11538:67;11602:2;11597:3;11538:67;:::i;:::-;11531:74;;11614:93;11703:3;11614:93;:::i;:::-;11732:2;11727:3;11723:12;11716:19;;11521:220;;;:::o;11747:366::-;11889:3;11910:67;11974:2;11969:3;11910:67;:::i;:::-;11903:74;;11986:93;12075:3;11986:93;:::i;:::-;12104:2;12099:3;12095:12;12088:19;;11893:220;;;:::o;12119:366::-;12261:3;12282:67;12346:2;12341:3;12282:67;:::i;:::-;12275:74;;12358:93;12447:3;12358:93;:::i;:::-;12476:2;12471:3;12467:12;12460:19;;12265:220;;;:::o;12491:366::-;12633:3;12654:67;12718:2;12713:3;12654:67;:::i;:::-;12647:74;;12730:93;12819:3;12730:93;:::i;:::-;12848:2;12843:3;12839:12;12832:19;;12637:220;;;:::o;12863:366::-;13005:3;13026:67;13090:2;13085:3;13026:67;:::i;:::-;13019:74;;13102:93;13191:3;13102:93;:::i;:::-;13220:2;13215:3;13211:12;13204:19;;13009:220;;;:::o;13235:366::-;13377:3;13398:67;13462:2;13457:3;13398:67;:::i;:::-;13391:74;;13474:93;13563:3;13474:93;:::i;:::-;13592:2;13587:3;13583:12;13576:19;;13381:220;;;:::o;13607:366::-;13749:3;13770:67;13834:2;13829:3;13770:67;:::i;:::-;13763:74;;13846:93;13935:3;13846:93;:::i;:::-;13964:2;13959:3;13955:12;13948:19;;13753:220;;;:::o;13979:366::-;14121:3;14142:67;14206:2;14201:3;14142:67;:::i;:::-;14135:74;;14218:93;14307:3;14218:93;:::i;:::-;14336:2;14331:3;14327:12;14320:19;;14125:220;;;:::o;14351:402::-;14511:3;14532:85;14614:2;14609:3;14532:85;:::i;:::-;14525:92;;14626:93;14715:3;14626:93;:::i;:::-;14744:2;14739:3;14735:12;14728:19;;14515:238;;;:::o;14759:366::-;14901:3;14922:67;14986:2;14981:3;14922:67;:::i;:::-;14915:74;;14998:93;15087:3;14998:93;:::i;:::-;15116:2;15111:3;15107:12;15100:19;;14905:220;;;:::o;15131:402::-;15291:3;15312:85;15394:2;15389:3;15312:85;:::i;:::-;15305:92;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15295:238;;;:::o;15539:366::-;15681:3;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15778:93;15867:3;15778:93;:::i;:::-;15896:2;15891:3;15887:12;15880:19;;15685:220;;;:::o;15911:366::-;16053:3;16074:67;16138:2;16133:3;16074:67;:::i;:::-;16067:74;;16150:93;16239:3;16150:93;:::i;:::-;16268:2;16263:3;16259:12;16252:19;;16057:220;;;:::o;16283:366::-;16425:3;16446:67;16510:2;16505:3;16446:67;:::i;:::-;16439:74;;16522:93;16611:3;16522:93;:::i;:::-;16640:2;16635:3;16631:12;16624:19;;16429:220;;;:::o;16655:118::-;16742:24;16760:5;16742:24;:::i;:::-;16737:3;16730:37;16720:53;;:::o;16779:112::-;16862:22;16878:5;16862:22;:::i;:::-;16857:3;16850:35;16840:51;;:::o;16897:967::-;17279:3;17301:148;17445:3;17301:148;:::i;:::-;17294:155;;17466:95;17557:3;17548:6;17466:95;:::i;:::-;17459:102;;17578:148;17722:3;17578:148;:::i;:::-;17571:155;;17743:95;17834:3;17825:6;17743:95;:::i;:::-;17736:102;;17855:3;17848:10;;17283:581;;;;;:::o;17870:222::-;17963:4;18001:2;17990:9;17986:18;17978:26;;18014:71;18082:1;18071:9;18067:17;18058:6;18014:71;:::i;:::-;17968:124;;;;:::o;18098:332::-;18219:4;18257:2;18246:9;18242:18;18234:26;;18270:71;18338:1;18327:9;18323:17;18314:6;18270:71;:::i;:::-;18351:72;18419:2;18408:9;18404:18;18395:6;18351:72;:::i;:::-;18224:206;;;;;:::o;18436:210::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18574:65;18636:1;18625:9;18621:17;18612:6;18574:65;:::i;:::-;18528:118;;;;:::o;18652:222::-;18745:4;18783:2;18772:9;18768:18;18760:26;;18796:71;18864:1;18853:9;18849:17;18840:6;18796:71;:::i;:::-;18750:124;;;;:::o;18880:313::-;18993:4;19031:2;19020:9;19016:18;19008:26;;19080:9;19074:4;19070:20;19066:1;19055:9;19051:17;19044:47;19108:78;19181:4;19172:6;19108:78;:::i;:::-;19100:86;;18998:195;;;;:::o;19199:423::-;19340:4;19378:2;19367:9;19363:18;19355:26;;19427:9;19421:4;19417:20;19413:1;19402:9;19398:17;19391:47;19455:78;19528:4;19519:6;19455:78;:::i;:::-;19447:86;;19543:72;19611:2;19600:9;19596:18;19587:6;19543:72;:::i;:::-;19345:277;;;;;:::o;19628:419::-;19794:4;19832:2;19821:9;19817:18;19809:26;;19881:9;19875:4;19871:20;19867:1;19856:9;19852:17;19845:47;19909:131;20035:4;19909:131;:::i;:::-;19901:139;;19799:248;;;:::o;20053:419::-;20219:4;20257:2;20246:9;20242:18;20234:26;;20306:9;20300:4;20296:20;20292:1;20281:9;20277:17;20270:47;20334:131;20460:4;20334:131;:::i;:::-;20326:139;;20224:248;;;:::o;20478:419::-;20644:4;20682:2;20671:9;20667:18;20659:26;;20731:9;20725:4;20721:20;20717:1;20706:9;20702:17;20695:47;20759:131;20885:4;20759:131;:::i;:::-;20751:139;;20649:248;;;:::o;20903:419::-;21069:4;21107:2;21096:9;21092:18;21084:26;;21156:9;21150:4;21146:20;21142:1;21131:9;21127:17;21120:47;21184:131;21310:4;21184:131;:::i;:::-;21176:139;;21074:248;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21499:248;;;:::o;21753:419::-;21919:4;21957:2;21946:9;21942:18;21934:26;;22006:9;22000:4;21996:20;21992:1;21981:9;21977:17;21970:47;22034:131;22160:4;22034:131;:::i;:::-;22026:139;;21924:248;;;:::o;22178:419::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22349:248;;;:::o;22603:419::-;22769:4;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:131;23010:4;22884:131;:::i;:::-;22876:139;;22774:248;;;:::o;23028:419::-;23194:4;23232:2;23221:9;23217:18;23209:26;;23281:9;23275:4;23271:20;23267:1;23256:9;23252:17;23245:47;23309:131;23435:4;23309:131;:::i;:::-;23301:139;;23199:248;;;:::o;23453:419::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:131;23860:4;23734:131;:::i;:::-;23726:139;;23624:248;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;24049:248;;;:::o;24303:419::-;24469:4;24507:2;24496:9;24492:18;24484:26;;24556:9;24550:4;24546:20;24542:1;24531:9;24527:17;24520:47;24584:131;24710:4;24584:131;:::i;:::-;24576:139;;24474:248;;;:::o;24728:419::-;24894:4;24932:2;24921:9;24917:18;24909:26;;24981:9;24975:4;24971:20;24967:1;24956:9;24952:17;24945:47;25009:131;25135:4;25009:131;:::i;:::-;25001:139;;24899:248;;;:::o;25153:419::-;25319:4;25357:2;25346:9;25342:18;25334:26;;25406:9;25400:4;25396:20;25392:1;25381:9;25377:17;25370:47;25434:131;25560:4;25434:131;:::i;:::-;25426:139;;25324:248;;;:::o;25578:419::-;25744:4;25782:2;25771:9;25767:18;25759:26;;25831:9;25825:4;25821:20;25817:1;25806:9;25802:17;25795:47;25859:131;25985:4;25859:131;:::i;:::-;25851:139;;25749:248;;;:::o;26003:419::-;26169:4;26207:2;26196:9;26192:18;26184:26;;26256:9;26250:4;26246:20;26242:1;26231:9;26227:17;26220:47;26284:131;26410:4;26284:131;:::i;:::-;26276:139;;26174:248;;;:::o;26428:419::-;26594:4;26632:2;26621:9;26617:18;26609:26;;26681:9;26675:4;26671:20;26667:1;26656:9;26652:17;26645:47;26709:131;26835:4;26709:131;:::i;:::-;26701:139;;26599:248;;;:::o;26853:419::-;27019:4;27057:2;27046:9;27042:18;27034:26;;27106:9;27100:4;27096:20;27092:1;27081:9;27077:17;27070:47;27134:131;27260:4;27134:131;:::i;:::-;27126:139;;27024:248;;;:::o;27278:419::-;27444:4;27482:2;27471:9;27467:18;27459:26;;27531:9;27525:4;27521:20;27517:1;27506:9;27502:17;27495:47;27559:131;27685:4;27559:131;:::i;:::-;27551:139;;27449:248;;;:::o;27703:419::-;27869:4;27907:2;27896:9;27892:18;27884:26;;27956:9;27950:4;27946:20;27942:1;27931:9;27927:17;27920:47;27984:131;28110:4;27984:131;:::i;:::-;27976:139;;27874:248;;;:::o;28128:419::-;28294:4;28332:2;28321:9;28317:18;28309:26;;28381:9;28375:4;28371:20;28367:1;28356:9;28352:17;28345:47;28409:131;28535:4;28409:131;:::i;:::-;28401:139;;28299:248;;;:::o;28553:419::-;28719:4;28757:2;28746:9;28742:18;28734:26;;28806:9;28800:4;28796:20;28792:1;28781:9;28777:17;28770:47;28834:131;28960:4;28834:131;:::i;:::-;28826:139;;28724:248;;;:::o;28978:419::-;29144:4;29182:2;29171:9;29167:18;29159:26;;29231:9;29225:4;29221:20;29217:1;29206:9;29202:17;29195:47;29259:131;29385:4;29259:131;:::i;:::-;29251:139;;29149:248;;;:::o;29403:419::-;29569:4;29607:2;29596:9;29592:18;29584:26;;29656:9;29650:4;29646:20;29642:1;29631:9;29627:17;29620:47;29684:131;29810:4;29684:131;:::i;:::-;29676:139;;29574:248;;;:::o;29828:222::-;29921:4;29959:2;29948:9;29944:18;29936:26;;29972:71;30040:1;30029:9;30025:17;30016:6;29972:71;:::i;:::-;29926:124;;;;:::o;30056:214::-;30145:4;30183:2;30172:9;30168:18;30160:26;;30196:67;30260:1;30249:9;30245:17;30236:6;30196:67;:::i;:::-;30150:120;;;;:::o;30276:129::-;30310:6;30337:20;;:::i;:::-;30327:30;;30366:33;30394:4;30386:6;30366:33;:::i;:::-;30317:88;;;:::o;30411:75::-;30444:6;30477:2;30471:9;30461:19;;30451:35;:::o;30492:308::-;30554:4;30644:18;30636:6;30633:30;30630:2;;;30666:18;;:::i;:::-;30630:2;30704:29;30726:6;30704:29;:::i;:::-;30696:37;;30788:4;30782;30778:15;30770:23;;30559:241;;;:::o;30806:99::-;30858:6;30892:5;30886:12;30876:22;;30865:40;;;:::o;30911:169::-;30995:11;31029:6;31024:3;31017:19;31069:4;31064:3;31060:14;31045:29;;31007:73;;;;:::o;31086:148::-;31188:11;31225:3;31210:18;;31200:34;;;;:::o;31240:305::-;31280:3;31299:20;31317:1;31299:20;:::i;:::-;31294:25;;31333:20;31351:1;31333:20;:::i;:::-;31328:25;;31487:1;31419:66;31415:74;31412:1;31409:81;31406:2;;;31493:18;;:::i;:::-;31406:2;31537:1;31534;31530:9;31523:16;;31284:261;;;;:::o;31551:348::-;31591:7;31614:20;31632:1;31614:20;:::i;:::-;31609:25;;31648:20;31666:1;31648:20;:::i;:::-;31643:25;;31836:1;31768:66;31764:74;31761:1;31758:81;31753:1;31746:9;31739:17;31735:105;31732:2;;;31843:18;;:::i;:::-;31732:2;31891:1;31888;31884:9;31873:20;;31599:300;;;;:::o;31905:191::-;31945:4;31965:20;31983:1;31965:20;:::i;:::-;31960:25;;31999:20;32017:1;31999:20;:::i;:::-;31994:25;;32038:1;32035;32032:8;32029:2;;;32043:18;;:::i;:::-;32029:2;32088:1;32085;32081:9;32073:17;;31950:146;;;;:::o;32102:96::-;32139:7;32168:24;32186:5;32168:24;:::i;:::-;32157:35;;32147:51;;;:::o;32204:90::-;32238:7;32281:5;32274:13;32267:21;32256:32;;32246:48;;;:::o;32300:77::-;32337:7;32366:5;32355:16;;32345:32;;;:::o;32383:149::-;32419:7;32459:66;32452:5;32448:78;32437:89;;32427:105;;;:::o;32538:126::-;32575:7;32615:42;32608:5;32604:54;32593:65;;32583:81;;;:::o;32670:77::-;32707:7;32736:5;32725:16;;32715:32;;;:::o;32753:86::-;32788:7;32828:4;32821:5;32817:16;32806:27;;32796:43;;;:::o;32845:307::-;32913:1;32923:113;32937:6;32934:1;32931:13;32923:113;;;33022:1;33017:3;33013:11;33007:18;33003:1;32998:3;32994:11;32987:39;32959:2;32956:1;32952:10;32947:15;;32923:113;;;33054:6;33051:1;33048:13;33045:2;;;33134:1;33125:6;33120:3;33116:16;33109:27;33045:2;32894:258;;;;:::o;33158:171::-;33197:3;33220:24;33238:5;33220:24;:::i;:::-;33211:33;;33266:4;33259:5;33256:15;33253:2;;;33274:18;;:::i;:::-;33253:2;33321:1;33314:5;33310:13;33303:20;;33201:128;;;:::o;33335:320::-;33379:6;33416:1;33410:4;33406:12;33396:22;;33463:1;33457:4;33453:12;33484:18;33474:2;;33540:4;33532:6;33528:17;33518:27;;33474:2;33602;33594:6;33591:14;33571:18;33568:38;33565:2;;;33621:18;;:::i;:::-;33565:2;33386:269;;;;:::o;33661:281::-;33744:27;33766:4;33744:27;:::i;:::-;33736:6;33732:40;33874:6;33862:10;33859:22;33838:18;33826:10;33823:34;33820:62;33817:2;;;33885:18;;:::i;:::-;33817:2;33925:10;33921:2;33914:22;33704:238;;;:::o;33948:180::-;33996:77;33993:1;33986:88;34093:4;34090:1;34083:15;34117:4;34114:1;34107:15;34134:180;34182:77;34179:1;34172:88;34279:4;34276:1;34269:15;34303:4;34300:1;34293:15;34320:180;34368:77;34365:1;34358:88;34465:4;34462:1;34455:15;34489:4;34486:1;34479:15;34506:102;34547:6;34598:2;34594:7;34589:2;34582:5;34578:14;34574:28;34564:38;;34554:54;;;:::o;34614:221::-;34754:34;34750:1;34742:6;34738:14;34731:58;34823:4;34818:2;34810:6;34806:15;34799:29;34720:115;:::o;34841:182::-;34981:34;34977:1;34969:6;34965:14;34958:58;34947:76;:::o;35029:222::-;35169:34;35165:1;35157:6;35153:14;35146:58;35238:5;35233:2;35225:6;35221:15;35214:30;35135:116;:::o;35257:170::-;35397:22;35393:1;35385:6;35381:14;35374:46;35363:64;:::o;35433:221::-;35573:34;35569:1;35561:6;35557:14;35550:58;35642:4;35637:2;35629:6;35625:15;35618:29;35539:115;:::o;35660:221::-;35800:34;35796:1;35788:6;35784:14;35777:58;35869:4;35864:2;35856:6;35852:15;35845:29;35766:115;:::o;35887:225::-;36027:34;36023:1;36015:6;36011:14;36004:58;36096:8;36091:2;36083:6;36079:15;36072:33;35993:119;:::o;36118:223::-;36258:34;36254:1;36246:6;36242:14;36235:58;36327:6;36322:2;36314:6;36310:15;36303:31;36224:117;:::o;36347:166::-;36487:18;36483:1;36475:6;36471:14;36464:42;36453:60;:::o;36519:225::-;36659:34;36655:1;36647:6;36643:14;36636:58;36728:8;36723:2;36715:6;36711:15;36704:33;36625:119;:::o;36750:231::-;36890:34;36886:1;36878:6;36874:14;36867:58;36959:14;36954:2;36946:6;36942:15;36935:39;36856:125;:::o;36987:180::-;37127:32;37123:1;37115:6;37111:14;37104:56;37093:74;:::o;37173:227::-;37313:34;37309:1;37301:6;37297:14;37290:58;37382:10;37377:2;37369:6;37365:15;37358:35;37279:121;:::o;37406:222::-;37546:34;37542:1;37534:6;37530:14;37523:58;37615:5;37610:2;37602:6;37598:15;37591:30;37512:116;:::o;37634:226::-;37774:34;37770:1;37762:6;37758:14;37751:58;37843:9;37838:2;37830:6;37826:15;37819:34;37740:120;:::o;37866:223::-;38006:34;38002:1;37994:6;37990:14;37983:58;38075:6;38070:2;38062:6;38058:15;38051:31;37972:117;:::o;38095:220::-;38235:34;38231:1;38223:6;38219:14;38212:58;38304:3;38299:2;38291:6;38287:15;38280:28;38201:114;:::o;38321:224::-;38461:34;38457:1;38449:6;38445:14;38438:58;38530:7;38525:2;38517:6;38513:15;38506:32;38427:118;:::o;38551:222::-;38691:34;38687:1;38679:6;38675:14;38668:58;38760:5;38755:2;38747:6;38743:15;38736:30;38657:116;:::o;38779:223::-;38919:34;38915:1;38907:6;38903:14;38896:58;38988:6;38983:2;38975:6;38971:15;38964:31;38885:117;:::o;39008:173::-;39148:25;39144:1;39136:6;39132:14;39125:49;39114:67;:::o;39187:224::-;39327:34;39323:1;39315:6;39311:14;39304:58;39396:7;39391:2;39383:6;39379:15;39372:32;39293:118;:::o;39417:167::-;39557:19;39553:1;39545:6;39541:14;39534:43;39523:61;:::o;39590:234::-;39730:34;39726:1;39718:6;39714:14;39707:58;39799:17;39794:2;39786:6;39782:15;39775:42;39696:128;:::o;39830:181::-;39970:33;39966:1;39958:6;39954:14;39947:57;39936:75;:::o;40017:229::-;40157:34;40153:1;40145:6;40141:14;40134:58;40226:12;40221:2;40213:6;40209:15;40202:37;40123:123;:::o;40252:122::-;40325:24;40343:5;40325:24;:::i;:::-;40318:5;40315:35;40305:2;;40364:1;40361;40354:12;40305:2;40295:79;:::o;40380:116::-;40450:21;40465:5;40450:21;:::i;:::-;40443:5;40440:32;40430:2;;40486:1;40483;40476:12;40430:2;40420:76;:::o;40502:122::-;40575:24;40593:5;40575:24;:::i;:::-;40568:5;40565:35;40555:2;;40614:1;40611;40604:12;40555:2;40545:79;:::o;40630:120::-;40702:23;40719:5;40702:23;:::i;:::-;40695:5;40692:34;40682:2;;40740:1;40737;40730:12;40682:2;40672:78;:::o;40756:122::-;40829:24;40847:5;40829:24;:::i;:::-;40822:5;40819:35;40809:2;;40868:1;40865;40858:12;40809:2;40799:79;:::o

Swarm Source

ipfs://9a0e6798a43975e167396f19c257ce3b55d0567c590f26211fd0c00de31d02c6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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