ETH Price: $2,604.11 (-1.69%)

Token

TMC NiftyGotchi (TMC)
 

Overview

Max Total Supply

9,881,990.420525230089801292 TMC

Holders

127 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$6,622.32

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,974.503320282950800165 TMC

Value
$1.32 ( ~0.00050689049177655 Eth) [0.0200%]
0x841fc79443E3ae96b717C7acAB9268DA0722bF2A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TMC is the in-game currency coin for the NiFTygotchi universe. It will be used to buy items, pay for actions and services in the whole NiFTygotchi ecosystem.

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x1dD68a56...d3D57eE38
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TMC

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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



pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol



pragma solidity ^0.6.0;

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

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

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



pragma solidity ^0.6.0;




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

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _grantRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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

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



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity ^0.6.0;





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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

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



pragma solidity ^0.6.0;



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

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

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

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



pragma solidity ^0.6.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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



pragma solidity ^0.6.0;



/**
 * @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: @openzeppelin\contracts\presets\ERC20PresetMinterPauser.sol



pragma solidity ^0.6.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) public ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

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



pragma solidity ^0.6.0;

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

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

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

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

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

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

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


// File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: node_modules\@uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: contracts\ERC20TransferLiquidityLock.sol

pragma solidity ^0.6.12;





abstract contract ERC20TransferLiquidityLock is ERC20, Ownable {
    using SafeMath for uint256;

    event AddLiquidity(uint256 tokenAmount, uint256 ethAmount);
    event BurnedLiquidity(uint256 balance);
    event RewardLiquidityProviders(uint256 tokenAmount);
    event BurnTokens(uint256 amt);

    event FromWhiteListed(address indexed a, bool whitelist);
    event ToWhiteListed(address indexed a, bool whitelist);
    mapping (address => bool) fromWhitelistAddresses;
    mapping (address => bool) toWhitelistAddresses;

    address public uniswapV2Router;
    address public uniswapV2Pair;

    // the amount of tokens to lock for liquidity during every transfer, i.e. 100 = 1%, 50 = 2%, 40 = 2.5%
    uint256 public liquidityLockDivisor = 25;
    uint256 public devDivisor = 4;
    uint256 public poolDivisor = 4;
    uint256 public lpRewardDivisor = 4;
    // few things to do here. out of the 4% collected per transfer:
    // 1% to dev
    // 1% burn
    // 1% to uniswap pool
    // 1% to LP holders

    address public liquidLockDevAddress;

    function setUniswapV2Router(address _uniswapV2Router) public onlyOwner {
        uniswapV2Router = _uniswapV2Router;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) public onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setLiquidLockDevAddress(address a) internal virtual onlyOwner {
        liquidLockDevAddress = a;
    }
    function setLiquidityLockDivisor(uint256 _liquidityLockDivisor) public onlyOwner {
        liquidityLockDivisor = _liquidityLockDivisor;
    }
    function setDevDivisor(uint256 _devDivisor) public onlyOwner {
        devDivisor = _devDivisor;
    }
    function setPoolDivisor(uint256 _poolDivisor) public onlyOwner {
        poolDivisor = _poolDivisor;
    }
    function setLpRewardDivisor(uint256 _lpRewardDivisor) public onlyOwner {
        lpRewardDivisor = _lpRewardDivisor;
    }
    
    function setToWhitelistAddress(address a, bool whitelist) public onlyOwner {
        toWhitelistAddresses[a] = whitelist;
        emit ToWhiteListed(a,whitelist);
    }

    function setFromWhitelistAddress(address a, bool whitelist) public onlyOwner {
        fromWhitelistAddresses[a] = whitelist;
        emit FromWhiteListed(a,whitelist);
    }

    function _transfer(address from, address to, uint256 amount) internal virtual override{
        // calculate liquidity lock amount
        // dont transfer burn from this contract
        // or can never lock full lockable amount
        if (liquidityLockDivisor != 0 && from != address(this) && !fromWhitelistAddresses[from] && !toWhitelistAddresses[to]) {
            uint256 liquidityLockAmount = amount.div(liquidityLockDivisor);
            super._transfer(from, address(this), liquidityLockAmount); //4% goes to contract
            super._transfer(from, to, amount.sub(liquidityLockAmount));
        }
        else {
            super._transfer(from, to, amount);
        }
    }

    // receive eth from uniswap swap
    receive () external payable {}


    // few things to do here. out of the 4% collected:
    // 1% to dev
    // 1% burn
    // 1% to uniswap pool
    // 1% to LP holders

    // make sure all 3 added up postdivisor is < 100!

    function lockLiquidity(uint256 _lockableSupply) public {
        // lockable supply is the token balance of this contract
        require(_lockableSupply <= super.balanceOf(address(this)), "ERC20TransferLiquidityLock::lockLiquidity: lock amount higher than lockable balance");
        require(_lockableSupply != 0, "ERC20TransferLiquidityLock::lockLiquidity: lock amount cannot be 0");

        uint256 initialLockableSupply = _lockableSupply;
        if (devDivisor != 0){
            uint256 devAmt = initialLockableSupply.div(devDivisor);
            _lockableSupply = _lockableSupply.sub(devAmt);
            super._transfer(address(this), liquidLockDevAddress, devAmt);
        }
        if (poolDivisor != 0){
            uint256 poolAmt = initialLockableSupply.div(poolDivisor);
            _lockableSupply = _lockableSupply.sub(poolAmt);
            uint256 amountToSwapForEth = poolAmt.div(2);
            uint256 amountToAddLiquidity = poolAmt.sub(amountToSwapForEth);

            // needed in case contract already owns eth
            uint256 ethBalanceBeforeSwap = address(this).balance;
            swapTokensForEth(amountToSwapForEth);
            uint256 ethReceived = address(this).balance.sub(ethBalanceBeforeSwap);

            addLiquidity(amountToAddLiquidity, ethReceived);
            emit AddLiquidity(amountToAddLiquidity, ethReceived);
            burnLiquidity();
        }
        if (lpRewardDivisor != 0){
            uint256 lpRewardAmt = initialLockableSupply.div(lpRewardDivisor);
            _lockableSupply = _lockableSupply.sub(lpRewardAmt);
            _rewardLiquidityProviders(lpRewardAmt);
        }

        // remaining is burnt.
        _burn(address(this), _lockableSupply);
        emit BurnTokens(_lockableSupply);
        
    }

    // external util so anyone can easily distribute rewards
    // must call lockLiquidity first which automatically
    // calls _rewardLiquidityProviders
    function rewardLiquidityProviders() external {
        // lock everything that is lockable
        lockLiquidity(super.balanceOf(address(this)));
    }

    function _rewardLiquidityProviders(uint256 liquidityRewards) private {
        require(uniswapV2Pair != address(0), "uniswapV2Pair not set!");
        // avoid burn by calling super._transfer directly
        super._transfer(address(this), uniswapV2Pair, liquidityRewards);
        IUniswapV2Pair(uniswapV2Pair).sync();
        emit RewardLiquidityProviders(liquidityRewards);
    }

    function burnLiquidity() internal {
        uint256 balance = ERC20(uniswapV2Pair).balanceOf(address(this));
        require(balance != 0, "ERC20TransferLiquidityLock::burnLiquidity: burn amount cannot be 0");
        ERC20(uniswapV2Pair).transfer(address(0), balance);
        emit BurnedLiquidity(balance);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = address(this);
        uniswapPairPath[1] = IUniswapV2Router02(uniswapV2Router).WETH();

        super._approve(address(this), uniswapV2Router, tokenAmount);

        IUniswapV2Router02(uniswapV2Router)
            .swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0,
                uniswapPairPath,
                address(this),
                block.timestamp
            );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        super._approve(address(this), uniswapV2Router, tokenAmount);

        IUniswapV2Router02(uniswapV2Router)
            .addLiquidityETH{value: ethAmount}
            (
                address(this),
                tokenAmount,
                0,
                0,
                address(this),
                block.timestamp
            );
    }

    // returns token amount
    function lockableSupply() external view returns (uint256) {
        return super.balanceOf(address(this));
    }

    // returns token amount
    function lockedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = lockedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = super.balanceOf(uniswapV2Pair);
        uint256 _lockedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _lockedSupply;
    }

    // returns token amount
    function burnedSupply() external view returns (uint256) {
        uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply();
        uint256 lpBalance = burnedLiquidity();
        uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply);

        uint256 uniswapBalance = super.balanceOf(uniswapV2Pair);
        uint256 _burnedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12);
        return _burnedSupply;
    }

    // returns LP amount, not token amount
    function burnableLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(this));
    }

    // returns LP amount, not token amount
    function burnedLiquidity() public view returns (uint256) {
        return ERC20(uniswapV2Pair).balanceOf(address(0));
    }

    // returns LP amount, not token amount
    function lockedLiquidity() public view returns (uint256) {
        return burnableLiquidity().add(burnedLiquidity());
    }
}

// File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: contracts\IUnicrypt.sol

pragma solidity >=0.6.0;

interface IUnicrypt {
    function depositToken(address token, uint256 amount, uint256 unlock_date) external payable;
    function withdrawToken(address token, uint256 amount) external;

    function getTokenReleaseAtIndex (address token, uint index) external view returns (uint256, uint256);
    function getUserTokenInfo (address token, address user) external view returns (uint256, uint256, uint256);
    function getUserVestingAtIndex (address token, address user, uint index) external view returns (uint256, uint256);
}

// File: contracts\TMC.sol

pragma solidity ^0.6.12;



// import "./ERC20Governance.sol";






contract TMC is 
    ERC20PresetMinterPauser("TMC NiftyGotchi", "TMC"), 
    Ownable,
    // governance must be before transfer liquidity lock
    // or delegates are not updated correctly
    // ERC20Governance,
    ERC20TransferLiquidityLock
{

    bool public initialized = false;
    // function initialize0(uint256 amtTMC, uint256 amtTME, address routerAdd, address tme) public onlyOwner{
    //     _approve(address(this), routerAdd, amtTMC);

    //     IERC20 tmeTok = IERC20(tme);
    //     tmeTok.approve(routerAdd, amtTME);
    // }
    address public uniswapTMETMCPair;
    function initialize(uint256 amtTMC, uint256 amtTME, address routerAdd, address factoryAdd, address tme) public onlyOwner{
        require (!initialized, "Already initialized");
        // mint, pair with TME, send to uniswap.
        // prepare TMC
        mint(address(this), amtTMC);
        _approve(address(this), routerAdd, amtTMC);

        // prepare TME
        IERC20 tmeTok = IERC20(tme);
        require(tmeTok.balanceOf(address(this)) >= amtTME, "contract needs more TME");
        tmeTok.approve(routerAdd, amtTME);

        IUniswapV2Factory fac = IUniswapV2Factory(factoryAdd);
        uniswapTMETMCPair = fac.createPair(address(this), tme);

        IUniswapV2Router02(routerAdd).addLiquidity(address(this), tme, amtTMC, amtTME, 0, 0, address(this),block.timestamp);
        uint256 amtLPheld = IUniswapV2Pair(uniswapTMETMCPair).balanceOf(address(this));
        IUniswapV2Pair(uniswapTMETMCPair).transfer(_msgSender(), amtLPheld);
        setToWhitelistAddress(uniswapTMETMCPair,true);
        setFromWhitelistAddress(uniswapTMETMCPair,true);
        // send LP to owner, owner manually lock
        // if (pol != address(0)){
        //     IUniswapV2Pair(uniswapTMETMCPair).approve(pol,amtLPheld);
        //     IUnicrypt(pol).depositToken(uniswapTMETMCPair, amtLPheld, block.timestamp.add(lockDuration));
        // }
        _pause();
        initialized = true;
    }
    
    // function claimLiquidity(address pol, address uniswapPair) public onlyOwner{
    //     (uint256 timeStamp, uint256 amtClaimable) = IUnicrypt(pol).getUserVestingAtIndex(uniswapPair, address(this),0);
    //     require(block.timestamp >= timeStamp, "Not claimable yet!");

    //     IUnicrypt(pol).withdrawToken(uniswapPair, amtClaimable);
    //     IUniswapV2Pair pair = IUniswapV2Pair(uniswapPair);
    //     uint amtLPheld = pair.balanceOf(address(this));
    //     pair.transfer(owner(), amtLPheld);
    // }   

    constructor() public{
        super.setLiquidLockDevAddress(_msgSender());
    }
    function setUniswapTMETMCPair(address a) public onlyOwner {
        uniswapTMETMCPair = a;
    }
    function _transfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20TransferLiquidityLock) {
        super._transfer(from,to,amount);
    }
    function _mint(address to, uint256 amount) internal virtual override(ERC20) {
        super._mint(to,amount);
    }
    function _burn(address account, uint256 amount) internal virtual override(ERC20) {
        super._burn(account,amount);
    }
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20PresetMinterPauser) {
        super._beforeTokenTransfer(from, to, amount);
    }

    function addMinter(address a) public onlyOwner {
        grantRole(MINTER_ROLE, a);
    }
    function addPauser(address a) public onlyOwner {
        grantRole(PAUSER_ROLE, a);
    }
    function revokeMinter(address a) public onlyOwner {
        revokeRole(MINTER_ROLE, a);
    }
    function revokePauser(address a) public onlyOwner {
        revokeRole(PAUSER_ROLE, a);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amt","type":"uint256"}],"name":"BurnTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"BurnedLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"a","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelist","type":"bool"}],"name":"FromWhiteListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","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":"a","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelist","type":"bool"}],"name":"ToWhiteListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"addPauser","outputs":[],"stateMutability":"nonpayable","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":"burnableLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"uint256","name":"amtTMC","type":"uint256"},{"internalType":"uint256","name":"amtTME","type":"uint256"},{"internalType":"address","name":"routerAdd","type":"address"},{"internalType":"address","name":"factoryAdd","type":"address"},{"internalType":"address","name":"tme","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidLockDevAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityLockDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockableSupply","type":"uint256"}],"name":"lockLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpRewardDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"revokePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardLiquidityProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devDivisor","type":"uint256"}],"name":"setDevDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"whitelist","type":"bool"}],"name":"setFromWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityLockDivisor","type":"uint256"}],"name":"setLiquidityLockDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpRewardDivisor","type":"uint256"}],"name":"setLpRewardDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolDivisor","type":"uint256"}],"name":"setPoolDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"whitelist","type":"bool"}],"name":"setToWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"setUniswapTMETMCPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapTMETMCPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526019600b556004600c556004600d556004600e556000600f60146101000a81548160ff0219169083151502179055503480156200004057600080fd5b506040518060400160405280600f81526020017f544d43204e69667479476f7463686900000000000000000000000000000000008152506040518060400160405280600381526020017f544d43000000000000000000000000000000000000000000000000000000000081525081818160049080519060200190620000c79291906200054b565b508060059080519060200190620000e09291906200054b565b506012600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff0219169083151502179055506200013e6000801b620001326200029e60201b60201c565b620002a660201b60201c565b6200017f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001736200029e60201b60201c565b620002a660201b60201c565b620001c07f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001b46200029e60201b60201c565b620002a660201b60201c565b50506000620001d46200029e60201b60201c565b905080600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000298620002876200029e60201b60201c565b620002bc60201b62003f151760201c565b620005f1565b600033905090565b620002b88282620003d360201b60201c565b5050565b620002cc6200029e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200038f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000401816000808581526020019081526020016000206000016200047660201b620040231790919060201c565b156200047257620004176200029e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620004a6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620004ae60201b60201c565b905092915050565b6000620004c283836200052860201b60201c565b6200051d57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000522565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200058e57805160ff1916838001178555620005bf565b82800160010185558215620005bf579182015b82811115620005be578251825591602001919060010190620005a1565b5b509050620005ce9190620005d2565b5090565b5b80821115620005ed576000816000905550600101620005d3565b5090565b615f9880620006016000396000f3fe6080604052600436106103a65760003560e01c8063715018a6116101e7578063a457c2d71161010d578063d5391393116100a0578063dd62ed3e1161006f578063dd62ed3e146113d0578063e63ab1e914611455578063e89e620214611480578063f2fde38b146114d1576103ad565b8063d539139314611308578063d547741f14611333578063db647b761461138e578063dc654a73146113a5576103ad565b8063b4398244116100dc578063b439824414611212578063ca15c8731461123d578063ca5c7b911461128c578063cfbd4885146112b7576103ad565b8063a457c2d7146110ca578063a8a5550e1461113b578063a9059cbb14611166578063b3c53536146111d7576103ad565b80638da5cb5b1161018557806395d89b411161015457806395d89b4114610f6d578063983b2d5614610ffd578063a217fddf1461104e578063a29a608914611079576103ad565b80638da5cb5b14610e0b5780639010d07c14610e4c5780639053f49114610ebb57806391d1485414610efc576103ad565b80637fe76df0116101c15780637fe76df014610d2757806382dc1ec414610d785780638456cb5914610dc9578063858750ab14610de0576103ad565b8063715018a614610c7a578063755e3ca914610c9157806379cc679014610ccc576103ad565b806339509351116102cc57806349bd5a5e1161026a5780635c975abb116102395780635c975abb14610b8257806364ed546714610baf57806367a9fca614610bda57806370a0823114610c15576103ad565b806349bd5a5e14610a5c57806353734ce314610a9d57806355d0a1d014610afa578063595a99c214610b25576103ad565b80633fbfd4df116102a65780633fbfd4df146108e057806340c10f191461098557806342966c68146109e0578063451b32a614610a1b576103ad565b8063395093511461082d5780633a40799e1461089e5780633f4ba83a146108c9576103ad565b806323b872dd116103445780632f2ff15d116103135780632f2ff15d1461071e578063313ce5671461077957806336568abe146107a757806337a4c17014610802576103ad565b806323b872dd146105d8578063248a9ca3146106695780632898cafa146106b85780632bfbd9cf146106e3576103ad565b8063158ef93e11610380578063158ef93e146105045780631694505e1461053157806316998b701461057257806318160ddd146105ad576103ad565b806306fdde03146103b2578063095ea7b3146104425780631419841d146104b3576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7611522565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104075780820151818401526020810190506103ec565b50505050905090810190601f1680156104345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044e57600080fd5b5061049b6004803603604081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c4565b60405180821515815260200191505060405180910390f35b3480156104bf57600080fd5b50610502600480360360208110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e2565b005b34801561051057600080fd5b506105196116f0565b60405180821515815260200191505060405180910390f35b34801561053d57600080fd5b50610546611703565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561057e57600080fd5b506105ab6004803603602081101561059557600080fd5b8101908080359060200190929190505050611729565b005b3480156105b957600080fd5b506105c26117fd565b6040518082815260200191505060405180910390f35b3480156105e457600080fd5b50610651600480360360608110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611807565b60405180821515815260200191505060405180910390f35b34801561067557600080fd5b506106a26004803603602081101561068c57600080fd5b81019080803590602001909291905050506118e0565b6040518082815260200191505060405180910390f35b3480156106c457600080fd5b506106cd6118ff565b6040518082815260200191505060405180910390f35b3480156106ef57600080fd5b5061071c6004803603602081101561070657600080fd5b81019080803590602001909291905050506119cb565b005b34801561072a57600080fd5b506107776004803603604081101561074157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c5d565b005b34801561078557600080fd5b5061078e611ce6565b604051808260ff16815260200191505060405180910390f35b3480156107b357600080fd5b50610800600480360360408110156107ca57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cfd565b005b34801561080e57600080fd5b50610817611d96565b6040518082815260200191505060405180910390f35b34801561083957600080fd5b506108866004803603604081101561085057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d9c565b60405180821515815260200191505060405180910390f35b3480156108aa57600080fd5b506108b3611e4f565b6040518082815260200191505060405180910390f35b3480156108d557600080fd5b506108de611e55565b005b3480156108ec57600080fd5b50610983600480360360a081101561090357600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ee5565b005b34801561099157600080fd5b506109de600480360360408110156109a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061265c565b005b3480156109ec57600080fd5b50610a1960048036036020811015610a0357600080fd5b81019080803590602001909291905050506126f0565b005b348015610a2757600080fd5b50610a30612704565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a6857600080fd5b50610a7161272a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610aa957600080fd5b50610af860048036036040811015610ac057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612750565b005b348015610b0657600080fd5b50610b0f6128c5565b6040518082815260200191505060405180910390f35b348015610b3157600080fd5b50610b8060048036036040811015610b4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612a0f565b005b348015610b8e57600080fd5b50610b97612b84565b60405180821515815260200191505060405180910390f35b348015610bbb57600080fd5b50610bc4612b9b565b6040518082815260200191505060405180910390f35b348015610be657600080fd5b50610c1360048036036020811015610bfd57600080fd5b8101908080359060200190929190505050612ba1565b005b348015610c2157600080fd5b50610c6460048036036020811015610c3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c75565b6040518082815260200191505060405180910390f35b348015610c8657600080fd5b50610c8f612cbe565b005b348015610c9d57600080fd5b50610cca60048036036020811015610cb457600080fd5b8101908080359060200190929190505050612e49565b005b348015610cd857600080fd5b50610d2560048036036040811015610cef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612f1d565b005b348015610d3357600080fd5b50610d7660048036036020811015610d4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f7f565b005b348015610d8457600080fd5b50610dc760048036036020811015610d9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613076565b005b348015610dd557600080fd5b50610dde61316d565b005b348015610dec57600080fd5b50610df56131fd565b6040518082815260200191505060405180910390f35b348015610e1757600080fd5b50610e206132c8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e5857600080fd5b50610e8f60048036036040811015610e6f57600080fd5b8101908080359060200190929190803590602001909291905050506132f2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ec757600080fd5b50610ed0613323565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610f0857600080fd5b50610f5560048036036040811015610f1f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613349565b60405180821515815260200191505060405180910390f35b348015610f7957600080fd5b50610f8261337a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fc2578082015181840152602081019050610fa7565b50505050905090810190601f168015610fef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100957600080fd5b5061104c6004803603602081101561102057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061341c565b005b34801561105a57600080fd5b50611063613513565b6040518082815260200191505060405180910390f35b34801561108557600080fd5b506110c86004803603602081101561109c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061351a565b005b3480156110d657600080fd5b50611123600480360360408110156110ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613628565b60405180821515815260200191505060405180910390f35b34801561114757600080fd5b506111506136f5565b6040518082815260200191505060405180910390f35b34801561117257600080fd5b506111bf6004803603604081101561118957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613705565b60405180821515815260200191505060405180910390f35b3480156111e357600080fd5b50611210600480360360208110156111fa57600080fd5b8101908080359060200190929190505050613723565b005b34801561121e57600080fd5b506112276137f7565b6040518082815260200191505060405180910390f35b34801561124957600080fd5b506112766004803603602081101561126057600080fd5b810190808035906020019092919050505061381f565b6040518082815260200191505060405180910390f35b34801561129857600080fd5b506112a1613845565b6040518082815260200191505060405180910390f35b3480156112c357600080fd5b50611306600480360360208110156112da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061398f565b005b34801561131457600080fd5b5061131d613a86565b6040518082815260200191505060405180910390f35b34801561133f57600080fd5b5061138c6004803603604081101561135657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613aaa565b005b34801561139a57600080fd5b506113a3613b33565b005b3480156113b157600080fd5b506113ba613b46565b6040518082815260200191505060405180910390f35b3480156113dc57600080fd5b5061143f600480360360408110156113f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613b4c565b6040518082815260200191505060405180910390f35b34801561146157600080fd5b5061146a613bd3565b6040518082815260200191505060405180910390f35b34801561148c57600080fd5b506114cf600480360360208110156114a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bf7565b005b3480156114dd57600080fd5b50611520600480360360208110156114f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d05565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60006115d86115d1614053565b848461405b565b6001905092915050565b6115ea614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60149054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611731614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b6000600354905090565b6000611814848484614252565b6118d584611820614053565b6118d085604051806060016040528060288152602001615d8060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611886614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b61405b565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823160006040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561198b57600080fd5b505afa15801561199f573d6000803e3d6000fd5b505050506040513d60208110156119b557600080fd5b8101908080519060200190929190505050905090565b6119d430612c75565b811115611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526053815260200180615d2d6053913960600191505060405180910390fd5b6000811415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180615c746042913960600191505060405180910390fd5b60008190506000600c5414611af2576000611aac600c548361432290919063ffffffff16565b9050611ac1818461436c90919063ffffffff16565b9250611af030600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836143b6565b505b6000600d5414611bd5576000611b13600d548361432290919063ffffffff16565b9050611b28818461436c90919063ffffffff16565b92506000611b4060028361432290919063ffffffff16565b90506000611b57828461436c90919063ffffffff16565b90506000479050611b678361467b565b6000611b7c824761436c90919063ffffffff16565b9050611b88838261492f565b7fcb1652de9aeec38545fc281847b3dbfc89aab56dfa907b1ab68466f602c36fb48382604051808381526020018281526020019250505060405180910390a1611bcf614a7d565b50505050505b6000600e5414611c18576000611bf6600e548361432290919063ffffffff16565b9050611c0b818461436c90919063ffffffff16565b9250611c1681614ca9565b505b611c223083614e57565b7f2cd3fd70cd5a5d6d805e90d22741aa1a84590ace7cf01b244719558d26614382826040518082815260200191505060405180910390a15050565b611c8360008084815260200190815260200160002060020154611c7e614053565b613349565b611cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ba2602f913960400191505060405180910390fd5b611ce28282614e65565b5050565b6000600660009054906101000a900460ff16905090565b611d05614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615f0a602f913960400191505060405180910390fd5b611d928282614ef8565b5050565b600e5481565b6000611e45611da9614053565b84611e408560026000611dba614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b61405b565b6001905092915050565b600c5481565b611e867f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611e81614053565b613349565b611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180615bf36039913960400191505060405180910390fd5b611ee3615013565b565b611eed614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60149054906101000a900460ff1615612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b61203c308661265c565b61204730848761405b565b6000819050848173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156120b457600080fd5b505afa1580156120c8573d6000803e3d6000fd5b505050506040513d60208110156120de57600080fd5b81019080805190602001909291905050501015612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f636f6e7472616374206e65656473206d6f726520544d4500000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b385876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156121d457600080fd5b505af11580156121e8573d6000803e3d6000fd5b505050506040513d60208110156121fe57600080fd5b81019080805190602001909291905050505060008390508073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050506040513d60208110156122c657600080fd5b8101908080519060200190929190505050601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508473ffffffffffffffffffffffffffffffffffffffff1663e8e3370030858a8a60008030426040518963ffffffff1660e01b8152600401808973ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200198505050505050505050606060405180830381600087803b1580156123e557600080fd5b505af11580156123f9573d6000803e3d6000fd5b505050506040513d606081101561240f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156124c257600080fd5b505afa1580156124d6573d6000803e3d6000fd5b505050506040513d60208110156124ec57600080fd5b81019080805190602001909291905050509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612545614053565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561259957600080fd5b505af11580156125ad573d6000803e3d6000fd5b505050506040513d60208110156125c357600080fd5b810190808051906020019092919050505050612602601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612a0f565b61262f601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612750565b612637615106565b6001600f60146101000a81548160ff0219169083151502179055505050505050505050565b61268d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6612688614053565b613349565b6126e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180615da86036913960400191505060405180910390fd5b6126ec82826151fa565b5050565b6127016126fb614053565b82614e57565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612758614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fc27023e7c549db395efdefbfd26bc0d8d9c8b3af545405bbe00d5248b85b813d8260405180821515815260200191505060405180910390a25050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561293057600080fd5b505afa158015612944573d6000803e3d6000fd5b505050506040513d602081101561295a57600080fd5b8101908080519060200190929190505050905060006129776118ff565b905060006129a58361299764e8d4a510008561520890919063ffffffff16565b61432290919063ffffffff16565b905060006129d4600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c75565b90506000612a0264e8d4a510006129f4858561520890919063ffffffff16565b61432290919063ffffffff16565b9050809550505050505090565b612a17614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ffc432cee620bf25cb97646575fb5fc2c0064b3091998090707696cd88d19fb4e8260405180821515815260200191505060405180910390a25050565b6000600660019054906101000a900460ff16905090565b600d5481565b612ba9614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612cc6614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612e51614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6000612f5c82604051806060016040528060248152602001615dde60249139612f4d86612f48614053565b613b4c565b6142629092919063ffffffff16565b9050612f7083612f6a614053565b8361405b565b612f7a8383614e57565b505050565b612f87614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6130737f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a82613aaa565b50565b61307e614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613140576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61316a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a82611c5d565b50565b61319e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a613199614053565b613349565b6131f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180615eae6037913960400191505060405180910390fd5b6131fb615106565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561328857600080fd5b505afa15801561329c573d6000803e3d6000fd5b505050506040513d60208110156132b257600080fd5b8101908080519060200190929190505050905090565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061331b8260008086815260200190815260200160002060000161528e90919063ffffffff16565b905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000613372826000808681526020019081526020016000206000016152a890919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134125780601f106133e757610100808354040283529160200191613412565b820191906000526020600020905b8154815290600101906020018083116133f557829003601f168201915b5050505050905090565b613424614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6135107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611c5d565b50565b6000801b81565b613522614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006136eb613635614053565b846136e685604051806060016040528060258152602001615ee5602591396002600061365f614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b61405b565b6001905092915050565b600061370030612c75565b905090565b6000613719613712614053565b8484614252565b6001905092915050565b61372b614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146137ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b600061381a6138046118ff565b61380c6131fd565b614f8b90919063ffffffff16565b905090565b600061383e6000808481526020019081526020016000206000016152d8565b9050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156138b057600080fd5b505afa1580156138c4573d6000803e3d6000fd5b505050506040513d60208110156138da57600080fd5b8101908080519060200190929190505050905060006138f76137f7565b905060006139258361391764e8d4a510008561520890919063ffffffff16565b61432290919063ffffffff16565b90506000613954600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c75565b9050600061398264e8d4a51000613974858561520890919063ffffffff16565b61432290919063ffffffff16565b9050809550505050505090565b613997614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613a59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b613a837f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682613aaa565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b613ad060008084815260200190815260200160002060020154613acb614053565b613349565b613b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615cdc6030913960400191505060405180910390fd5b613b2f8282614ef8565b5050565b613b44613b3f30612c75565b6119cb565b565b600b5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b613bff614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613cc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613d0d614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613dcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c2c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613f1d614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613fdf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061404b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152ed565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615e486024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614167576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c526022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61425d83838361535d565b505050565b600083831115829061430f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142d45780820151818401526020810190506142b9565b50505050905090810190601f1680156143015780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061436483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506154a5565b905092915050565b60006143ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614262565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561443c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e236025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156144c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b7f6023913960400191505060405180910390fd5b6144cd83838361556b565b61453981604051806060016040528060268152602001615cb660269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145ce81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6060600267ffffffffffffffff8111801561469557600080fd5b506040519080825280602002602001820160405280156146c45781602001602082028036833780820191505090505b50905030816000815181106146d557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561477757600080fd5b505afa15801561478b573d6000803e3d6000fd5b505050506040513d60208110156147a157600080fd5b8101908080519060200190929190505050816001815181106147bf57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061482630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461405b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156148ea5780820151818401526020810190506148cf565b505050509050019650505050505050600060405180830381600087803b15801561491357600080fd5b505af1158015614927573d6000803e3d6000fd5b505050505050565b61495c30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461405b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614a2657600080fd5b505af1158015614a3a573d6000803e3d6000fd5b50505050506040513d6060811015614a5157600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614b0857600080fd5b505afa158015614b1c573d6000803e3d6000fd5b505050506040513d6020811015614b3257600080fd5b810190808051906020019092919050505090506000811415614b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180615e6c6042913960600191505060405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015614c3357600080fd5b505af1158015614c47573d6000803e3d6000fd5b505050506040513d6020811015614c5d57600080fd5b8101908080519060200190929190505050507fd000d3035b980deb39de219b12567ac9656ca28f5f59dabcbbca6c164f6de5d3816040518082815260200191505060405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415614d6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f756e6973776170563250616972206e6f7420736574210000000000000000000081525060200191505060405180910390fd5b614d9b30600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836143b6565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015614e0557600080fd5b505af1158015614e19573d6000803e3d6000fd5b505050507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b614e61828261557b565b5050565b614e8c8160008085815260200190815260200160002060000161402390919063ffffffff16565b15614ef457614e99614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b614f1f8160008085815260200190815260200160002060000161574190919063ffffffff16565b15614f8757614f2c614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015615009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600660019054906101000a900460ff16615095576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6150d9614053565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600660019054906101000a900460ff1615615189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586151cd614053565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6152048282615771565b5050565b60008083141561521b5760009050615288565b600082840290508284828161522c57fe5b0414615283576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d0c6021913960400191505060405180910390fd5b809150505b92915050565b600061529d836000018361593a565b60001c905092915050565b60006152d0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6159bd565b905092915050565b60006152e6826000016159e0565b9050919050565b60006152f983836159bd565b615352578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050615357565b600090505b92915050565b6000600b541415801561539c57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156153f25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156154485750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15615494576000615464600b548361432290919063ffffffff16565b90506154718430836143b6565b61548e8484615489848661436c90919063ffffffff16565b6143b6565b506154a0565b61549f8383836143b6565b5b505050565b60008083118290615551576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155165780820151818401526020810190506154fb565b50505050905090810190601f1680156155435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161555d57fe5b049050809150509392505050565b6155768383836159f1565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615601576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615e026021913960400191505060405180910390fd5b61560d8260008361556b565b61567981604051806060016040528060228152602001615bd160229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506156d18160035461436c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000615769836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615a01565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6158206000838361556b565b61583581600354614f8b90919063ffffffff16565b60038190555061588d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008183600001805490501161599b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b5d6022913960400191505060405180910390fd5b8260000182815481106159aa57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6159fc838383615ae9565b505050565b60008083600101600084815260200190815260200160002054905060008114615add5760006001820390506000600186600001805490500390506000866000018281548110615a4c57fe5b9060005260206000200154905080876000018481548110615a6957fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480615aa157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615ae3565b60009150505b92915050565b615af4838383615b57565b615afc612b84565b15615b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615f39602a913960400191505060405180910390fd5b505050565b50505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f74206265203045524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220f969306797bf890d2262b1bdc989f84d358e814b1d35dd9ae2010e6f1c5c920164736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106103a65760003560e01c8063715018a6116101e7578063a457c2d71161010d578063d5391393116100a0578063dd62ed3e1161006f578063dd62ed3e146113d0578063e63ab1e914611455578063e89e620214611480578063f2fde38b146114d1576103ad565b8063d539139314611308578063d547741f14611333578063db647b761461138e578063dc654a73146113a5576103ad565b8063b4398244116100dc578063b439824414611212578063ca15c8731461123d578063ca5c7b911461128c578063cfbd4885146112b7576103ad565b8063a457c2d7146110ca578063a8a5550e1461113b578063a9059cbb14611166578063b3c53536146111d7576103ad565b80638da5cb5b1161018557806395d89b411161015457806395d89b4114610f6d578063983b2d5614610ffd578063a217fddf1461104e578063a29a608914611079576103ad565b80638da5cb5b14610e0b5780639010d07c14610e4c5780639053f49114610ebb57806391d1485414610efc576103ad565b80637fe76df0116101c15780637fe76df014610d2757806382dc1ec414610d785780638456cb5914610dc9578063858750ab14610de0576103ad565b8063715018a614610c7a578063755e3ca914610c9157806379cc679014610ccc576103ad565b806339509351116102cc57806349bd5a5e1161026a5780635c975abb116102395780635c975abb14610b8257806364ed546714610baf57806367a9fca614610bda57806370a0823114610c15576103ad565b806349bd5a5e14610a5c57806353734ce314610a9d57806355d0a1d014610afa578063595a99c214610b25576103ad565b80633fbfd4df116102a65780633fbfd4df146108e057806340c10f191461098557806342966c68146109e0578063451b32a614610a1b576103ad565b8063395093511461082d5780633a40799e1461089e5780633f4ba83a146108c9576103ad565b806323b872dd116103445780632f2ff15d116103135780632f2ff15d1461071e578063313ce5671461077957806336568abe146107a757806337a4c17014610802576103ad565b806323b872dd146105d8578063248a9ca3146106695780632898cafa146106b85780632bfbd9cf146106e3576103ad565b8063158ef93e11610380578063158ef93e146105045780631694505e1461053157806316998b701461057257806318160ddd146105ad576103ad565b806306fdde03146103b2578063095ea7b3146104425780631419841d146104b3576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7611522565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104075780820151818401526020810190506103ec565b50505050905090810190601f1680156104345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044e57600080fd5b5061049b6004803603604081101561046557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c4565b60405180821515815260200191505060405180910390f35b3480156104bf57600080fd5b50610502600480360360208110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e2565b005b34801561051057600080fd5b506105196116f0565b60405180821515815260200191505060405180910390f35b34801561053d57600080fd5b50610546611703565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561057e57600080fd5b506105ab6004803603602081101561059557600080fd5b8101908080359060200190929190505050611729565b005b3480156105b957600080fd5b506105c26117fd565b6040518082815260200191505060405180910390f35b3480156105e457600080fd5b50610651600480360360608110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611807565b60405180821515815260200191505060405180910390f35b34801561067557600080fd5b506106a26004803603602081101561068c57600080fd5b81019080803590602001909291905050506118e0565b6040518082815260200191505060405180910390f35b3480156106c457600080fd5b506106cd6118ff565b6040518082815260200191505060405180910390f35b3480156106ef57600080fd5b5061071c6004803603602081101561070657600080fd5b81019080803590602001909291905050506119cb565b005b34801561072a57600080fd5b506107776004803603604081101561074157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c5d565b005b34801561078557600080fd5b5061078e611ce6565b604051808260ff16815260200191505060405180910390f35b3480156107b357600080fd5b50610800600480360360408110156107ca57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cfd565b005b34801561080e57600080fd5b50610817611d96565b6040518082815260200191505060405180910390f35b34801561083957600080fd5b506108866004803603604081101561085057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d9c565b60405180821515815260200191505060405180910390f35b3480156108aa57600080fd5b506108b3611e4f565b6040518082815260200191505060405180910390f35b3480156108d557600080fd5b506108de611e55565b005b3480156108ec57600080fd5b50610983600480360360a081101561090357600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ee5565b005b34801561099157600080fd5b506109de600480360360408110156109a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061265c565b005b3480156109ec57600080fd5b50610a1960048036036020811015610a0357600080fd5b81019080803590602001909291905050506126f0565b005b348015610a2757600080fd5b50610a30612704565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a6857600080fd5b50610a7161272a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610aa957600080fd5b50610af860048036036040811015610ac057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612750565b005b348015610b0657600080fd5b50610b0f6128c5565b6040518082815260200191505060405180910390f35b348015610b3157600080fd5b50610b8060048036036040811015610b4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612a0f565b005b348015610b8e57600080fd5b50610b97612b84565b60405180821515815260200191505060405180910390f35b348015610bbb57600080fd5b50610bc4612b9b565b6040518082815260200191505060405180910390f35b348015610be657600080fd5b50610c1360048036036020811015610bfd57600080fd5b8101908080359060200190929190505050612ba1565b005b348015610c2157600080fd5b50610c6460048036036020811015610c3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c75565b6040518082815260200191505060405180910390f35b348015610c8657600080fd5b50610c8f612cbe565b005b348015610c9d57600080fd5b50610cca60048036036020811015610cb457600080fd5b8101908080359060200190929190505050612e49565b005b348015610cd857600080fd5b50610d2560048036036040811015610cef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612f1d565b005b348015610d3357600080fd5b50610d7660048036036020811015610d4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f7f565b005b348015610d8457600080fd5b50610dc760048036036020811015610d9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613076565b005b348015610dd557600080fd5b50610dde61316d565b005b348015610dec57600080fd5b50610df56131fd565b6040518082815260200191505060405180910390f35b348015610e1757600080fd5b50610e206132c8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e5857600080fd5b50610e8f60048036036040811015610e6f57600080fd5b8101908080359060200190929190803590602001909291905050506132f2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ec757600080fd5b50610ed0613323565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610f0857600080fd5b50610f5560048036036040811015610f1f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613349565b60405180821515815260200191505060405180910390f35b348015610f7957600080fd5b50610f8261337a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fc2578082015181840152602081019050610fa7565b50505050905090810190601f168015610fef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561100957600080fd5b5061104c6004803603602081101561102057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061341c565b005b34801561105a57600080fd5b50611063613513565b6040518082815260200191505060405180910390f35b34801561108557600080fd5b506110c86004803603602081101561109c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061351a565b005b3480156110d657600080fd5b50611123600480360360408110156110ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613628565b60405180821515815260200191505060405180910390f35b34801561114757600080fd5b506111506136f5565b6040518082815260200191505060405180910390f35b34801561117257600080fd5b506111bf6004803603604081101561118957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613705565b60405180821515815260200191505060405180910390f35b3480156111e357600080fd5b50611210600480360360208110156111fa57600080fd5b8101908080359060200190929190505050613723565b005b34801561121e57600080fd5b506112276137f7565b6040518082815260200191505060405180910390f35b34801561124957600080fd5b506112766004803603602081101561126057600080fd5b810190808035906020019092919050505061381f565b6040518082815260200191505060405180910390f35b34801561129857600080fd5b506112a1613845565b6040518082815260200191505060405180910390f35b3480156112c357600080fd5b50611306600480360360208110156112da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061398f565b005b34801561131457600080fd5b5061131d613a86565b6040518082815260200191505060405180910390f35b34801561133f57600080fd5b5061138c6004803603604081101561135657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613aaa565b005b34801561139a57600080fd5b506113a3613b33565b005b3480156113b157600080fd5b506113ba613b46565b6040518082815260200191505060405180910390f35b3480156113dc57600080fd5b5061143f600480360360408110156113f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613b4c565b6040518082815260200191505060405180910390f35b34801561146157600080fd5b5061146a613bd3565b6040518082815260200191505060405180910390f35b34801561148c57600080fd5b506114cf600480360360208110156114a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bf7565b005b3480156114dd57600080fd5b50611520600480360360208110156114f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d05565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60006115d86115d1614053565b848461405b565b6001905092915050565b6115ea614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60149054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611731614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b6000600354905090565b6000611814848484614252565b6118d584611820614053565b6118d085604051806060016040528060288152602001615d8060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611886614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b61405b565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a0823160006040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561198b57600080fd5b505afa15801561199f573d6000803e3d6000fd5b505050506040513d60208110156119b557600080fd5b8101908080519060200190929190505050905090565b6119d430612c75565b811115611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526053815260200180615d2d6053913960600191505060405180910390fd5b6000811415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180615c746042913960600191505060405180910390fd5b60008190506000600c5414611af2576000611aac600c548361432290919063ffffffff16565b9050611ac1818461436c90919063ffffffff16565b9250611af030600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836143b6565b505b6000600d5414611bd5576000611b13600d548361432290919063ffffffff16565b9050611b28818461436c90919063ffffffff16565b92506000611b4060028361432290919063ffffffff16565b90506000611b57828461436c90919063ffffffff16565b90506000479050611b678361467b565b6000611b7c824761436c90919063ffffffff16565b9050611b88838261492f565b7fcb1652de9aeec38545fc281847b3dbfc89aab56dfa907b1ab68466f602c36fb48382604051808381526020018281526020019250505060405180910390a1611bcf614a7d565b50505050505b6000600e5414611c18576000611bf6600e548361432290919063ffffffff16565b9050611c0b818461436c90919063ffffffff16565b9250611c1681614ca9565b505b611c223083614e57565b7f2cd3fd70cd5a5d6d805e90d22741aa1a84590ace7cf01b244719558d26614382826040518082815260200191505060405180910390a15050565b611c8360008084815260200190815260200160002060020154611c7e614053565b613349565b611cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ba2602f913960400191505060405180910390fd5b611ce28282614e65565b5050565b6000600660009054906101000a900460ff16905090565b611d05614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615f0a602f913960400191505060405180910390fd5b611d928282614ef8565b5050565b600e5481565b6000611e45611da9614053565b84611e408560026000611dba614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b61405b565b6001905092915050565b600c5481565b611e867f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611e81614053565b613349565b611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180615bf36039913960400191505060405180910390fd5b611ee3615013565b565b611eed614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611faf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60149054906101000a900460ff1615612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b61203c308661265c565b61204730848761405b565b6000819050848173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156120b457600080fd5b505afa1580156120c8573d6000803e3d6000fd5b505050506040513d60208110156120de57600080fd5b81019080805190602001909291905050501015612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f636f6e7472616374206e65656473206d6f726520544d4500000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b385876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156121d457600080fd5b505af11580156121e8573d6000803e3d6000fd5b505050506040513d60208110156121fe57600080fd5b81019080805190602001909291905050505060008390508073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050506040513d60208110156122c657600080fd5b8101908080519060200190929190505050601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508473ffffffffffffffffffffffffffffffffffffffff1663e8e3370030858a8a60008030426040518963ffffffff1660e01b8152600401808973ffffffffffffffffffffffffffffffffffffffff1681526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200198505050505050505050606060405180830381600087803b1580156123e557600080fd5b505af11580156123f9573d6000803e3d6000fd5b505050506040513d606081101561240f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156124c257600080fd5b505afa1580156124d6573d6000803e3d6000fd5b505050506040513d60208110156124ec57600080fd5b81019080805190602001909291905050509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612545614053565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561259957600080fd5b505af11580156125ad573d6000803e3d6000fd5b505050506040513d60208110156125c357600080fd5b810190808051906020019092919050505050612602601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612a0f565b61262f601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612750565b612637615106565b6001600f60146101000a81548160ff0219169083151502179055505050505050505050565b61268d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6612688614053565b613349565b6126e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180615da86036913960400191505060405180910390fd5b6126ec82826151fa565b5050565b6127016126fb614053565b82614e57565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612758614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461281a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fc27023e7c549db395efdefbfd26bc0d8d9c8b3af545405bbe00d5248b85b813d8260405180821515815260200191505060405180910390a25050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561293057600080fd5b505afa158015612944573d6000803e3d6000fd5b505050506040513d602081101561295a57600080fd5b8101908080519060200190929190505050905060006129776118ff565b905060006129a58361299764e8d4a510008561520890919063ffffffff16565b61432290919063ffffffff16565b905060006129d4600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c75565b90506000612a0264e8d4a510006129f4858561520890919063ffffffff16565b61432290919063ffffffff16565b9050809550505050505090565b612a17614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ffc432cee620bf25cb97646575fb5fc2c0064b3091998090707696cd88d19fb4e8260405180821515815260200191505060405180910390a25050565b6000600660019054906101000a900460ff16905090565b600d5481565b612ba9614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612cc6614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612e51614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6000612f5c82604051806060016040528060248152602001615dde60249139612f4d86612f48614053565b613b4c565b6142629092919063ffffffff16565b9050612f7083612f6a614053565b8361405b565b612f7a8383614e57565b505050565b612f87614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6130737f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a82613aaa565b50565b61307e614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613140576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61316a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a82611c5d565b50565b61319e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a613199614053565b613349565b6131f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180615eae6037913960400191505060405180910390fd5b6131fb615106565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561328857600080fd5b505afa15801561329c573d6000803e3d6000fd5b505050506040513d60208110156132b257600080fd5b8101908080519060200190929190505050905090565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061331b8260008086815260200190815260200160002060000161528e90919063ffffffff16565b905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000613372826000808681526020019081526020016000206000016152a890919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134125780601f106133e757610100808354040283529160200191613412565b820191906000526020600020905b8154815290600101906020018083116133f557829003601f168201915b5050505050905090565b613424614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6135107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611c5d565b50565b6000801b81565b613522614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006136eb613635614053565b846136e685604051806060016040528060258152602001615ee5602591396002600061365f614053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b61405b565b6001905092915050565b600061370030612c75565b905090565b6000613719613712614053565b8484614252565b6001905092915050565b61372b614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146137ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b600061381a6138046118ff565b61380c6131fd565b614f8b90919063ffffffff16565b905090565b600061383e6000808481526020019081526020016000206000016152d8565b9050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156138b057600080fd5b505afa1580156138c4573d6000803e3d6000fd5b505050506040513d60208110156138da57600080fd5b8101908080519060200190929190505050905060006138f76137f7565b905060006139258361391764e8d4a510008561520890919063ffffffff16565b61432290919063ffffffff16565b90506000613954600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612c75565b9050600061398264e8d4a51000613974858561520890919063ffffffff16565b61432290919063ffffffff16565b9050809550505050505090565b613997614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613a59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b613a837f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682613aaa565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b613ad060008084815260200190815260200160002060020154613acb614053565b613349565b613b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615cdc6030913960400191505060405180910390fd5b613b2f8282614ef8565b5050565b613b44613b3f30612c75565b6119cb565b565b600b5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b613bff614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613cc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613d0d614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613dcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c2c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613f1d614053565b73ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613fdf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061404b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6152ed565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156140e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615e486024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614167576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c526022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61425d83838361535d565b505050565b600083831115829061430f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142d45780820151818401526020810190506142b9565b50505050905090810190601f1680156143015780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061436483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506154a5565b905092915050565b60006143ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614262565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561443c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e236025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156144c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b7f6023913960400191505060405180910390fd5b6144cd83838361556b565b61453981604051806060016040528060268152602001615cb660269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145ce81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6060600267ffffffffffffffff8111801561469557600080fd5b506040519080825280602002602001820160405280156146c45781602001602082028036833780820191505090505b50905030816000815181106146d557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561477757600080fd5b505afa15801561478b573d6000803e3d6000fd5b505050506040513d60208110156147a157600080fd5b8101908080519060200190929190505050816001815181106147bf57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061482630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461405b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156148ea5780820151818401526020810190506148cf565b505050509050019650505050505050600060405180830381600087803b15801561491357600080fd5b505af1158015614927573d6000803e3d6000fd5b505050505050565b61495c30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461405b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614a2657600080fd5b505af1158015614a3a573d6000803e3d6000fd5b50505050506040513d6060811015614a5157600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614b0857600080fd5b505afa158015614b1c573d6000803e3d6000fd5b505050506040513d6020811015614b3257600080fd5b810190808051906020019092919050505090506000811415614b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180615e6c6042913960600191505060405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015614c3357600080fd5b505af1158015614c47573d6000803e3d6000fd5b505050506040513d6020811015614c5d57600080fd5b8101908080519060200190929190505050507fd000d3035b980deb39de219b12567ac9656ca28f5f59dabcbbca6c164f6de5d3816040518082815260200191505060405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415614d6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f756e6973776170563250616972206e6f7420736574210000000000000000000081525060200191505060405180910390fd5b614d9b30600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836143b6565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015614e0557600080fd5b505af1158015614e19573d6000803e3d6000fd5b505050507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b614e61828261557b565b5050565b614e8c8160008085815260200190815260200160002060000161402390919063ffffffff16565b15614ef457614e99614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b614f1f8160008085815260200190815260200160002060000161574190919063ffffffff16565b15614f8757614f2c614053565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015615009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600660019054906101000a900460ff16615095576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6150d9614053565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600660019054906101000a900460ff1615615189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586151cd614053565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6152048282615771565b5050565b60008083141561521b5760009050615288565b600082840290508284828161522c57fe5b0414615283576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d0c6021913960400191505060405180910390fd5b809150505b92915050565b600061529d836000018361593a565b60001c905092915050565b60006152d0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6159bd565b905092915050565b60006152e6826000016159e0565b9050919050565b60006152f983836159bd565b615352578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050615357565b600090505b92915050565b6000600b541415801561539c57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156153f25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156154485750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15615494576000615464600b548361432290919063ffffffff16565b90506154718430836143b6565b61548e8484615489848661436c90919063ffffffff16565b6143b6565b506154a0565b61549f8383836143b6565b5b505050565b60008083118290615551576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155165780820151818401526020810190506154fb565b50505050905090810190601f1680156155435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161555d57fe5b049050809150509392505050565b6155768383836159f1565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615601576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615e026021913960400191505060405180910390fd5b61560d8260008361556b565b61567981604051806060016040528060228152602001615bd160229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546142629092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506156d18160035461436c90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000615769836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615a01565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6158206000838361556b565b61583581600354614f8b90919063ffffffff16565b60038190555061588d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f8b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008183600001805490501161599b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b5d6022913960400191505060405180910390fd5b8260000182815481106159aa57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6159fc838383615ae9565b505050565b60008083600101600084815260200190815260200160002054905060008114615add5760006001820390506000600186600001805490500390506000866000018281548110615a4c57fe5b9060005260206000200154905080876000018481548110615a6957fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480615aa157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615ae3565b60009150505b92915050565b615af4838383615b57565b615afc612b84565b15615b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615f39602a913960400191505060405180910390fd5b505050565b50505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e70617573654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f74206265203045524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220f969306797bf890d2262b1bdc989f84d358e814b1d35dd9ae2010e6f1c5c920164736f6c634300060c0033

Deployed Bytecode Sourcemap

69373:3794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35243:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60103:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69633:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59559:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60629:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34212:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35886:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19497:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67603:125;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62338:1812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19873:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34064:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21082:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59861:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36616:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59788:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48622:178;;;;;;;;;;;;;:::i;:::-;;69977:1417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47813:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42445:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69938:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59596:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;61168:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66920:449;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60989:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44242:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59824:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60479:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34375:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50734:148;;;;;;;;;;;;;:::i;:::-;;60739:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42855:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73065:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72867:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48232:172;;;;;;;;;;;;;:::i;:::-;;67421:130;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50092:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19170:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60059:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18131:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33339:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72770:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16876:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60235:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37337:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66283:114;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34707:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60853:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67780:125;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18444:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66434:449;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72964:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47048:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20345:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64318:154;;;;;;;;;;;;;:::i;:::-;;59741:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34945:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47117:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72031:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51037:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33137:83;33174:13;33207:5;33200:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:83;:::o;35243:169::-;35326:4;35343:39;35352:12;:10;:12::i;:::-;35366:7;35375:6;35343:8;:39::i;:::-;35400:4;35393:11;;35243:169;;;;:::o;60103:124::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60203:16:::1;60185:15;;:34;;;;;;;;;;;;;;;;;;60103:124:::0;:::o;69633:31::-;;;;;;;;;;;;;:::o;59559:30::-;;;;;;;;;;;;;:::o;60629:104::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60714:11:::1;60701:10;:24;;;;60629:104:::0;:::o;34212:100::-;34265:7;34292:12;;34285:19;;34212:100;:::o;35886:321::-;35992:4;36009:36;36019:6;36027:9;36038:6;36009:9;:36::i;:::-;36056:121;36065:6;36073:12;:10;:12::i;:::-;36087:89;36125:6;36087:89;;;;;;;;;;;;;;;;;:11;:19;36099:6;36087:19;;;;;;;;;;;;;;;:33;36107:12;:10;:12::i;:::-;36087:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;36056:8;:121::i;:::-;36195:4;36188:11;;35886:321;;;;;:::o;19497:114::-;19554:7;19581:6;:12;19588:4;19581:12;;;;;;;;;;;:22;;;19574:29;;19497:114;;;:::o;67603:125::-;67651:7;67684:13;;;;;;;;;;;67678:30;;;67717:1;67678:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67671:49;;67603:125;:::o;62338:1812::-;62497:30;62521:4;62497:15;:30::i;:::-;62478:15;:49;;62470:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62653:1;62634:15;:20;;62626:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62738:29;62770:15;62738:47;;62814:1;62800:10;;:15;62796:236;;62831:14;62848:37;62874:10;;62848:21;:25;;:37;;;;:::i;:::-;62831:54;;62918:27;62938:6;62918:15;:19;;:27;;;;:::i;:::-;62900:45;;62960:60;62984:4;62991:20;;;;;;;;;;;63013:6;62960:15;:60::i;:::-;62796:236;;63061:1;63046:11;;:16;63042:722;;63078:15;63096:38;63122:11;;63096:21;:25;;:38;;;;:::i;:::-;63078:56;;63167:28;63187:7;63167:15;:19;;:28;;;;:::i;:::-;63149:46;;63210:26;63239:14;63251:1;63239:7;:11;;:14;;;;:::i;:::-;63210:43;;63268:28;63299:31;63311:18;63299:7;:11;;:31;;;;:::i;:::-;63268:62;;63404:28;63435:21;63404:52;;63471:36;63488:18;63471:16;:36::i;:::-;63522:19;63544:47;63570:20;63544:21;:25;;:47;;;;:::i;:::-;63522:69;;63608:47;63621:20;63643:11;63608:12;:47::i;:::-;63675;63688:20;63710:11;63675:47;;;;;;;;;;;;;;;;;;;;;;;;63737:15;:13;:15::i;:::-;63042:722;;;;;;63797:1;63778:15;;:20;63774:234;;63814:19;63836:42;63862:15;;63836:21;:25;;:42;;;;:::i;:::-;63814:64;;63911:32;63931:11;63911:15;:19;;:32;;;;:::i;:::-;63893:50;;63958:38;63984:11;63958:25;:38::i;:::-;63774:234;;64052:37;64066:4;64073:15;64052:5;:37::i;:::-;64105:27;64116:15;64105:27;;;;;;;;;;;;;;;;;;62338:1812;;:::o;19873:227::-;19957:45;19965:6;:12;19972:4;19965:12;;;;;;;;;;;:22;;;19989:12;:10;:12::i;:::-;19957:7;:45::i;:::-;19949:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20067:25;20078:4;20084:7;20067:10;:25::i;:::-;19873:227;;:::o;34064:83::-;34105:5;34130:9;;;;;;;;;;;34123:16;;34064:83;:::o;21082:209::-;21180:12;:10;:12::i;:::-;21169:23;;:7;:23;;;21161:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21257:26;21269:4;21275:7;21257:11;:26::i;:::-;21082:209;;:::o;59861:34::-;;;;:::o;36616:218::-;36704:4;36721:83;36730:12;:10;:12::i;:::-;36744:7;36753:50;36792:10;36753:11;:25;36765:12;:10;:12::i;:::-;36753:25;;;;;;;;;;;;;;;:34;36779:7;36753:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;36721:8;:83::i;:::-;36822:4;36815:11;;36616:218;;;;:::o;59788:29::-;;;;:::o;48622:178::-;48675:34;47155:24;48696:12;:10;:12::i;:::-;48675:7;:34::i;:::-;48667:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48782:10;:8;:10::i;:::-;48622:178::o;69977:1417::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70118:11:::1;;;;;;;;;;;70117:12;70108:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70238:27;70251:4;70258:6;70238:4;:27::i;:::-;70276:42;70293:4;70300:9;70311:6;70276:8;:42::i;:::-;70355:13;70378:3;70355:27;;70436:6;70401;:16;;;70426:4;70401:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:41;;70393:77;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70481:6;:14;;;70496:9;70507:6;70481:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;70527:21;70569:10;70527:53;;70611:3;:14;;;70634:4;70641:3;70611:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;70591:17;;:54;;;;;;;;;;;;;;;;;;70677:9;70658:42;;;70709:4;70716:3;70721:6;70729;70737:1;70740::::0;70751:4:::1;70757:15;70658:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70784:17;70819;;;;;;;;;;;70804:43;;;70856:4;70804:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;70784:78;;70888:17;;;;;;;;;;;70873:42;;;70916:12;:10;:12::i;:::-;70930:9;70873:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;70951:45;70973:17;;;;;;;;;;;70991:4;70951:21;:45::i;:::-;71007:47;71031:17;;;;;;;;;;;71049:4;71007:23;:47::i;:::-;71349:8;:6;:8::i;:::-;71382:4;71368:11;;:18;;;;;;;;;;;;;;;;;;50374:1;;;69977:1417:::0;;;;;:::o;47813:205::-;47889:34;47086:24;47910:12;:10;:12::i;:::-;47889:7;:34::i;:::-;47881:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47993:17;47999:2;48003:6;47993:5;:17::i;:::-;47813:205;;:::o;42445:91::-;42501:27;42507:12;:10;:12::i;:::-;42521:6;42501:5;:27::i;:::-;42445:91;:::o;69938:32::-;;;;;;;;;;;;;:::o;59596:28::-;;;;;;;;;;;;;:::o;61168:177::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61284:9:::1;61256:22;:25;61279:1;61256:25;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;61325:1;61309:28;;;61327:9;61309:28;;;;;;;;;;;;;;;;;;;;61168:177:::0;;:::o;66920:449::-;66967:7;66987:21;67017:13;;;;;;;;;;;67011:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66987:58;;67056:17;67076;:15;:17::i;:::-;67056:37;;67104:30;67137:38;67161:13;67137:19;67151:4;67137:9;:13;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;67104:71;;67188:22;67213:30;67229:13;;;;;;;;;;;67213:15;:30::i;:::-;67188:55;;67254:21;67278:52;67325:4;67278:42;67297:22;67278:14;:18;;:42;;;;:::i;:::-;:46;;:52;;;;:::i;:::-;67254:76;;67348:13;67341:20;;;;;;;66920:449;:::o;60989:171::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61101:9:::1;61075:20;:23;61096:1;61075:23;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;61140:1;61126:26;;;61142:9;61126:26;;;;;;;;;;;;;;;;;;;;60989:171:::0;;:::o;44242:78::-;44281:4;44305:7;;;;;;;;;;;44298:14;;44242:78;:::o;59824:30::-;;;;:::o;60479:144::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60594:21:::1;60571:20;:44;;;;60479:144:::0;:::o;34375:119::-;34441:7;34468:9;:18;34478:7;34468:18;;;;;;;;;;;;;;;;34461:25;;34375:119;;;:::o;50734:148::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50841:1:::1;50804:40;;50825:6;;;;;;;;;;;50804:40;;;;;;;;;;;;50872:1;50855:6;;:19;;;;;;;;;;;;;;;;;;50734:148::o:0;60739:108::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60827:12:::1;60813:11;:26;;;;60739:108:::0;:::o;42855:295::-;42932:26;42961:84;42998:6;42961:84;;;;;;;;;;;;;;;;;:32;42971:7;42980:12;:10;:12::i;:::-;42961:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;42932:113;;43058:51;43067:7;43076:12;:10;:12::i;:::-;43090:18;43058:8;:51::i;:::-;43120:22;43126:7;43135:6;43120:5;:22::i;:::-;42855:295;;;:::o;73065:95::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73126:26:::1;47155:24;73150:1;73126:10;:26::i;:::-;73065:95:::0;:::o;72867:91::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72925:25:::1;47155:24;72948:1;72925:9;:25::i;:::-;72867:91:::0;:::o;48232:172::-;48283:34;47155:24;48304:12;:10;:12::i;:::-;48283:7;:34::i;:::-;48275:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48388:8;:6;:8::i;:::-;48232:172::o;67421:130::-;67471:7;67504:13;;;;;;;;;;;67498:30;;;67537:4;67498:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67491:52;;67421:130;:::o;50092:79::-;50130:7;50157:6;;;;;;;;;;;50150:13;;50092:79;:::o;19170:138::-;19243:7;19270:30;19294:5;19270:6;:12;19277:4;19270:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;19263:37;;19170:138;;;;:::o;60059:35::-;;;;;;;;;;;;;:::o;18131:139::-;18200:4;18224:38;18254:7;18224:6;:12;18231:4;18224:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;18217:45;;18131:139;;;;:::o;33339:87::-;33378:13;33411:7;33404:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33339:87;:::o;72770:91::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72828:25:::1;47086:24;72851:1;72828:9;:25::i;:::-;72770:91:::0;:::o;16876:49::-;16921:4;16876:49;;;:::o;60235:116::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60329:14:::1;60313:13;;:30;;;;;;;;;;;;;;;;;;60235:116:::0;:::o;37337:269::-;37430:4;37447:129;37456:12;:10;:12::i;:::-;37470:7;37479:96;37518:15;37479:96;;;;;;;;;;;;;;;;;:11;:25;37491:12;:10;:12::i;:::-;37479:25;;;;;;;;;;;;;;;:34;37505:7;37479:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;37447:8;:129::i;:::-;37594:4;37587:11;;37337:269;;;;:::o;66283:114::-;66332:7;66359:30;66383:4;66359:15;:30::i;:::-;66352:37;;66283:114;:::o;34707:175::-;34793:4;34810:42;34820:12;:10;:12::i;:::-;34834:9;34845:6;34810:9;:42::i;:::-;34870:4;34863:11;;34707:175;;;;:::o;60853:124::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60953:16:::1;60935:15;:34;;;;60853:124:::0;:::o;67780:125::-;67828:7;67855:42;67879:17;:15;:17::i;:::-;67855:19;:17;:19::i;:::-;:23;;:42;;;;:::i;:::-;67848:49;;67780:125;:::o;18444:127::-;18507:7;18534:29;:6;:12;18541:4;18534:12;;;;;;;;;;;:20;;:27;:29::i;:::-;18527:36;;18444:127;;;:::o;66434:449::-;66481:7;66501:21;66531:13;;;;;;;;;;;66525:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66501:58;;66570:17;66590;:15;:17::i;:::-;66570:37;;66618:30;66651:38;66675:13;66651:19;66665:4;66651:9;:13;;:19;;;;:::i;:::-;:23;;:38;;;;:::i;:::-;66618:71;;66702:22;66727:30;66743:13;;;;;;;;;;;66727:15;:30::i;:::-;66702:55;;66768:21;66792:52;66839:4;66792:42;66811:22;66792:14;:18;;:42;;;;:::i;:::-;:46;;:52;;;;:::i;:::-;66768:76;;66862:13;66855:20;;;;;;;66434:449;:::o;72964:95::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73025:26:::1;47086:24;73049:1;73025:10;:26::i;:::-;72964:95:::0;:::o;47048:62::-;47086:24;47048:62;:::o;20345:230::-;20430:45;20438:6;:12;20445:4;20438:12;;;;;;;;;;;:22;;;20462:12;:10;:12::i;:::-;20430:7;:45::i;:::-;20422:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20541:26;20553:4;20559:7;20541:11;:26::i;:::-;20345:230;;:::o;64318:154::-;64419:45;64433:30;64457:4;64433:15;:30::i;:::-;64419:13;:45::i;:::-;64318:154::o;59741:40::-;;;;:::o;34945:151::-;35034:7;35061:11;:18;35073:5;35061:18;;;;;;;;;;;;;;;:27;35080:7;35061:27;;;;;;;;;;;;;;;;35054:34;;34945:151;;;;:::o;47117:62::-;47155:24;47117:62;:::o;72031:98::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72120:1:::1;72100:17;;:21;;;;;;;;;;;;;;;;;;72031:98:::0;:::o;51037:244::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51146:1:::1;51126:22;;:8;:22;;;;51118:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51236:8;51207:38;;51228:6;;;;;;;;;;;51207:38;;;;;;;;;;;;51265:8;51256:6;;:17;;;;;;;;;;;;;;;;;;51037:244:::0;:::o;60359:114::-;50314:12;:10;:12::i;:::-;50304:22;;:6;;;;;;;;;;;:22;;;50296:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60464:1:::1;60441:20;;:24;;;;;;;;;;;;;;;;;;60359:114:::0;:::o;5083:143::-;5153:4;5177:41;5182:3;:10;;5210:5;5202:14;;5194:23;;5177:4;:41::i;:::-;5170:48;;5083:143;;;;:::o;14804:106::-;14857:15;14892:10;14885:17;;14804:106;:::o;40482:346::-;40601:1;40584:19;;:5;:19;;;;40576:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40682:1;40663:21;;:7;:21;;;;40655:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40766:6;40736:11;:18;40748:5;40736:18;;;;;;;;;;;;;;;:27;40755:7;40736:27;;;;;;;;;;;;;;;:36;;;;40804:7;40788:32;;40797:5;40788:32;;;40813:6;40788:32;;;;;;;;;;;;;;;;;;40482:346;;;:::o;72135:172::-;72268:31;72284:4;72289:2;72292:6;72268:15;:31::i;:::-;72135:172;;;:::o;27377:192::-;27463:7;27496:1;27491;:6;;27499:12;27483:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27523:9;27539:1;27535;:5;27523:17;;27560:1;27553:8;;;27377:192;;;;;:::o;28775:132::-;28833:7;28860:39;28864:1;28867;28860:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;28853:46;;28775:132;;;;:::o;26938:136::-;26996:7;27023:43;27027:1;27030;27023:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;27016:50;;26938:136;;;;:::o;38096:539::-;38220:1;38202:20;;:6;:20;;;;38194:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38304:1;38283:23;;:9;:23;;;;38275:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38359:47;38380:6;38388:9;38399:6;38359:20;:47::i;:::-;38439:71;38461:6;38439:71;;;;;;;;;;;;;;;;;:9;:17;38449:6;38439:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;38419:9;:17;38429:6;38419:17;;;;;;;;;;;;;;;:91;;;;38544:32;38569:6;38544:9;:20;38554:9;38544:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;38521:9;:20;38531:9;38521:20;;;;;;;;;;;;;;;:55;;;;38609:9;38592:35;;38601:6;38592:35;;;38620:6;38592:35;;;;;;;;;;;;;;;;;;38096:539;;;:::o;65203:594::-;65269:32;65318:1;65304:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65269:51;;65360:4;65331:15;65347:1;65331:18;;;;;;;;;;;;;:34;;;;;;;;;;;65416:15;;;;;;;;;;;65397:40;;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65376:15;65392:1;65376:18;;;;;;;;;;;;;:63;;;;;;;;;;;65452:59;65475:4;65482:15;;;;;;;;;;;65499:11;65452:14;:59::i;:::-;65543:15;;;;;;;;;;;65524:100;;;65643:11;65673:1;65693:15;65735:4;65759:15;65524:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65203:594;;:::o;65805:441::-;65886:59;65909:4;65916:15;;;;;;;;;;;65933:11;65886:14;:59::i;:::-;65977:15;;;;;;;;;;;65958:65;;;66031:9;66082:4;66106:11;66136:1;66156;66184:4;66208:15;65958:280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65805:441;;:::o;64876:319::-;64921:15;64945:13;;;;;;;;;;;64939:30;;;64978:4;64939:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64921:63;;65014:1;65003:7;:12;;64995:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65103:13;;;;;;;;;;;65097:29;;;65135:1;65139:7;65097:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65163:24;65179:7;65163:24;;;;;;;;;;;;;;;;;;64876:319;:::o;64480:388::-;64593:1;64568:27;;:13;;;;;;;;;;;:27;;;;64560:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64692:63;64716:4;64723:13;;;;;;;;;;;64738:16;64692:15;:63::i;:::-;64781:13;;;;;;;;;;;64766:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64818:42;64843:16;64818:42;;;;;;;;;;;;;;;;;;64480:388;:::o;72436:127::-;72528:27;72540:7;72548:6;72528:11;:27::i;:::-;72436:127;;:::o;22325:188::-;22399:33;22424:7;22399:6;:12;22406:4;22399:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;22395:111;;;22481:12;:10;:12::i;:::-;22454:40;;22472:7;22454:40;;22466:4;22454:40;;;;;;;;;;22395:111;22325:188;;:::o;22521:192::-;22596:36;22624:7;22596:6;:12;22603:4;22596:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;22592:114;;;22681:12;:10;:12::i;:::-;22654:40;;22672:7;22654:40;;22666:4;22654:40;;;;;;;;;;22592:114;22521:192;;:::o;26474:181::-;26532:7;26552:9;26568:1;26564;:5;26552:17;;26593:1;26588;:6;;26580:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26646:1;26639:8;;;26474:181;;;;:::o;45291:120::-;44836:7;;;;;;;;;;;44828:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45360:5:::1;45350:7;;:15;;;;;;;;;;;;;;;;;;45381:22;45390:12;:10;:12::i;:::-;45381:22;;;;;;;;;;;;;;;;;;;;45291:120::o:0;45032:118::-;44560:7;;;;;;;;;;;44559:8;44551:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45102:4:::1;45092:7;;:14;;;;;;;;;;;;;;;;;;45122:20;45129:12;:10;:12::i;:::-;45122:20;;;;;;;;;;;;;;;;;;;;45032:118::o:0;72313:117::-;72400:22;72412:2;72415:6;72400:11;:22::i;:::-;72313:117;;:::o;27828:471::-;27886:7;28136:1;28131;:6;28127:47;;;28161:1;28154:8;;;;28127:47;28186:9;28202:1;28198;:5;28186:17;;28231:1;28226;28222;:5;;;;;;:10;28214:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28290:1;28283:8;;;27828:471;;;;;:::o;6342:149::-;6416:7;6459:22;6463:3;:10;;6475:5;6459:3;:22::i;:::-;6451:31;;6436:47;;6342:149;;;;:::o;5637:158::-;5717:4;5741:46;5751:3;:10;;5779:5;5771:14;;5763:23;;5741:9;:46::i;:::-;5734:53;;5637:158;;;;:::o;5881:117::-;5944:7;5971:19;5979:3;:10;;5971:7;:19::i;:::-;5964:26;;5881:117;;;:::o;1737:414::-;1800:4;1822:21;1832:3;1837:5;1822:9;:21::i;:::-;1817:327;;1860:3;:11;;1877:5;1860:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2043:3;:11;;:18;;;;2021:3;:12;;:19;2034:5;2021:19;;;;;;;;;;;:40;;;;2083:4;2076:11;;;;1817:327;2127:5;2120:12;;1737:414;;;;;:::o;61353:698::-;61623:1;61599:20;;:25;;:50;;;;;61644:4;61628:21;;:4;:21;;;;61599:50;:83;;;;;61654:22;:28;61677:4;61654:28;;;;;;;;;;;;;;;;;;;;;;;;;61653:29;61599:83;:112;;;;;61687:20;:24;61708:2;61687:24;;;;;;;;;;;;;;;;;;;;;;;;;61686:25;61599:112;61595:449;;;61728:27;61758:32;61769:20;;61758:6;:10;;:32;;;;:::i;:::-;61728:62;;61805:57;61821:4;61835;61842:19;61805:15;:57::i;:::-;61899:58;61915:4;61921:2;61925:31;61936:19;61925:6;:10;;:31;;;;:::i;:::-;61899:15;:58::i;:::-;61595:449;;;;61999:33;62015:4;62021:2;62025:6;61999:15;:33::i;:::-;61595:449;61353:698;;;:::o;29403:278::-;29489:7;29521:1;29517;:5;29524:12;29509:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29548:9;29564:1;29560;:5;;;;;;29548:17;;29672:1;29665:8;;;29403:278;;;;;:::o;72569:193::-;72710:44;72737:4;72743:2;72747:6;72710:26;:44::i;:::-;72569:193;;;:::o;39626:418::-;39729:1;39710:21;;:7;:21;;;;39702:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39782:49;39803:7;39820:1;39824:6;39782:20;:49::i;:::-;39865:68;39888:6;39865:68;;;;;;;;;;;;;;;;;:9;:18;39875:7;39865:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;39844:9;:18;39854:7;39844:18;;;;;;;;;;;;;;;:89;;;;39959:24;39976:6;39959:12;;:16;;:24;;;;:::i;:::-;39944:12;:39;;;;40025:1;39999:37;;40008:7;39999:37;;;40029:6;39999:37;;;;;;;;;;;;;;;;;;39626:418;;:::o;5402:149::-;5475:4;5499:44;5507:3;:10;;5535:5;5527:14;;5519:23;;5499:7;:44::i;:::-;5492:51;;5402:149;;;;:::o;38916:378::-;39019:1;39000:21;;:7;:21;;;;38992:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39070:49;39099:1;39103:7;39112:6;39070:20;:49::i;:::-;39147:24;39164:6;39147:12;;:16;;:24;;;;:::i;:::-;39132:12;:39;;;;39203:30;39226:6;39203:9;:18;39213:7;39203:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;39182:9;:18;39192:7;39182:18;;;;;;;;;;;;;;;:51;;;;39270:7;39249:37;;39266:1;39249:37;;;39279:6;39249:37;;;;;;;;;;;;;;;;;;38916:378;;:::o;4625:204::-;4692:7;4741:5;4720:3;:11;;:18;;;;:26;4712:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4803:3;:11;;4815:5;4803:18;;;;;;;;;;;;;;;;4796:25;;4625:204;;;;:::o;3957:129::-;4030:4;4077:1;4054:3;:12;;:19;4067:5;4054:19;;;;;;;;;;;;:24;;4047:31;;3957:129;;;;:::o;4172:109::-;4228:7;4255:3;:11;;:18;;;;4248:25;;4172:109;;;:::o;48808:183::-;48939:44;48966:4;48972:2;48976:6;48939:26;:44::i;:::-;48808:183;;;:::o;2327:1544::-;2393:4;2511:18;2532:3;:12;;:19;2545:5;2532:19;;;;;;;;;;;;2511:40;;2582:1;2568:10;:15;2564:1300;;2930:21;2967:1;2954:10;:14;2930:38;;2983:17;3024:1;3003:3;:11;;:18;;;;:22;2983:42;;3270:17;3290:3;:11;;3302:9;3290:22;;;;;;;;;;;;;;;;3270:42;;3436:9;3407:3;:11;;3419:13;3407:26;;;;;;;;;;;;;;;:38;;;;3555:1;3539:13;:17;3513:3;:12;;:23;3526:9;3513:23;;;;;;;;;;;:43;;;;3665:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3760:3;:12;;:19;3773:5;3760:19;;;;;;;;;;;3753:26;;;3803:4;3796:11;;;;;;;;2564:1300;3847:5;3840:12;;;2327:1544;;;;;:::o;46013:238::-;46122:44;46149:4;46155:2;46159:6;46122:26;:44::i;:::-;46188:8;:6;:8::i;:::-;46187:9;46179:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46013:238;;;:::o;41853:92::-;;;;:::o

Swarm Source

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