ETH Price: $2,439.89 (+2.93%)

Token

World Of MetaGems Land (WOML)
 

Overview

Max Total Supply

378 WOML

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
rquest.eth
Balance
6 WOML
0x4b17dBC55298b3cF66641C92404eaE504BaAfdE0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WOMLand

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-19
*/

/*
SPDX-License-Identifier: GPL-3.0                                                                             
*/       

pragma solidity >=0.6.0 <0.8.0;

/**
  __      __                 ___       __      _____      ___                       __             ____                                          
/\ \  __/\ \               /\_ \     /\ \    /\  __`\  /'___\      /'\_/`\        /\ \__         /\  _`\                                        
\ \ \/\ \ \ \    ___   _ __\//\ \    \_\ \   \ \ \/\ \/\ \__/     /\      \     __\ \ ,_\    __  \ \ \L\_\     __    ___ ___     ____           
 \ \ \ \ \ \ \  / __`\/\`'__\\ \ \   /'_` \   \ \ \ \ \ \ ,__\    \ \ \__\ \  /'__`\ \ \/  /'__`\ \ \ \L_L   /'__`\/' __` __`\  /',__\          
  \ \ \_/ \_\ \/\ \L\ \ \ \/  \_\ \_/\ \L\ \   \ \ \_\ \ \ \_/     \ \ \_/\ \/\  __/\ \ \_/\ \L\.\_\ \ \/, \/\  __//\ \/\ \/\ \/\__, `\         
   \ `\___x___/\ \____/\ \_\  /\____\ \___,_\   \ \_____\ \_\       \ \_\\ \_\ \____\\ \__\ \__/.\_\\ \____/\ \____\ \_\ \_\ \_\/\____/         
    '\/__//__/  \/___/  \/_/  \/____/\/__,_ /    \/_____/\/_/        \/_/ \/_/\/____/ \/__/\/__/\/_/ \/___/  \/____/\/_/\/_/\/_/\/___/          
                                                                                                                                                
                                                                                                                                                
 __                  ____                          __                            ______                             __                __        
/\ \                /\  _`\                       /\ \__  __                    /\  _  \                           /\ \              /\ \       
\ \ \____  __  __   \ \ \/\_\  _ __    __     __  \ \ ,_\/\_\  __  __     __    \ \ \L\ \  _____      __    ____   \ \ \         __  \ \ \____  
 \ \ '__`\/\ \/\ \   \ \ \/_/_/\`'__\/'__`\ /'__`\ \ \ \/\/\ \/\ \/\ \  /'__`\   \ \  __ \/\ '__`\  /'__`\ /',__\   \ \ \  __  /'__`\ \ \ '__`\ 
  \ \ \L\ \ \ \_\ \   \ \ \L\ \ \ \//\  __//\ \L\.\_\ \ \_\ \ \ \ \_/ |/\  __/    \ \ \/\ \ \ \L\ \/\  __//\__, `\   \ \ \L\ \/\ \L\.\_\ \ \L\ \
   \ \_,__/\/`____ \   \ \____/\ \_\\ \____\ \__/.\_\\ \__\\ \_\ \___/ \ \____\    \ \_\ \_\ \ ,__/\ \____\/\____/    \ \____/\ \__/.\_\\ \_,__/
    \/___/  `/___/> \   \/___/  \/_/ \/____/\/__/\/_/ \/__/ \/_/\/__/   \/____/     \/_/\/_/\ \ \/  \/____/\/___/      \/___/  \/__/\/_/ \/___/ 
               /\___/                                                                        \ \_\                                              
               \/__/                                                                          \/_/  
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/EnumerableMap.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

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

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry 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.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

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

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

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

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

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

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

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

   /**
    * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/EnumerableSet.sol



pragma solidity >=0.6.0 <0.8.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.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = 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];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/Address.sol



pragma solidity >=0.6.2 <0.8.0;

/**
 * @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 on 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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/introspection/IERC165.sol



pragma solidity >=0.6.0 <0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC721/IERC721.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC721/IERC721Enumerable.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC721/IERC721Metadata.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/Context.sol



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/access/Ownable.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC721/ERC721.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
       return string(abi.encodePacked(base, tokenId.toString(), ".json"));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId); // internal owner

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

pragma solidity ^0.7.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: contracts/WOMLand.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 __      __                 ___       __      _____      ___                       __             ____                                          
/\ \  __/\ \               /\_ \     /\ \    /\  __`\  /'___\      /'\_/`\        /\ \__         /\  _`\                                        
\ \ \/\ \ \ \    ___   _ __\//\ \    \_\ \   \ \ \/\ \/\ \__/     /\      \     __\ \ ,_\    __  \ \ \L\_\     __    ___ ___     ____           
 \ \ \ \ \ \ \  / __`\/\`'__\\ \ \   /'_` \   \ \ \ \ \ \ ,__\    \ \ \__\ \  /'__`\ \ \/  /'__`\ \ \ \L_L   /'__`\/' __` __`\  /',__\          
  \ \ \_/ \_\ \/\ \L\ \ \ \/  \_\ \_/\ \L\ \   \ \ \_\ \ \ \_/     \ \ \_/\ \/\  __/\ \ \_/\ \L\.\_\ \ \/, \/\  __//\ \/\ \/\ \/\__, `\         
   \ `\___x___/\ \____/\ \_\  /\____\ \___,_\   \ \_____\ \_\       \ \_\\ \_\ \____\\ \__\ \__/.\_\\ \____/\ \____\ \_\ \_\ \_\/\____/         
    '\/__//__/  \/___/  \/_/  \/____/\/__,_ /    \/_____/\/_/        \/_/ \/_/\/____/ \/__/\/__/\/_/ \/___/  \/____/\/_/\/_/\/_/\/___/          
                                                                                                                                                
                                                                                                                                                
 __                  ____                          __                            ______                             __                __        
/\ \                /\  _`\                       /\ \__  __                    /\  _  \                           /\ \              /\ \       
\ \ \____  __  __   \ \ \/\_\  _ __    __     __  \ \ ,_\/\_\  __  __     __    \ \ \L\ \  _____      __    ____   \ \ \         __  \ \ \____  
 \ \ '__`\/\ \/\ \   \ \ \/_/_/\`'__\/'__`\ /'__`\ \ \ \/\/\ \/\ \/\ \  /'__`\   \ \  __ \/\ '__`\  /'__`\ /',__\   \ \ \  __  /'__`\ \ \ '__`\ 
  \ \ \L\ \ \ \_\ \   \ \ \L\ \ \ \//\  __//\ \L\.\_\ \ \_\ \ \ \ \_/ |/\  __/    \ \ \/\ \ \ \L\ \/\  __//\__, `\   \ \ \L\ \/\ \L\.\_\ \ \L\ \
   \ \_,__/\/`____ \   \ \____/\ \_\\ \____\ \__/.\_\\ \__\\ \_\ \___/ \ \____\    \ \_\ \_\ \ ,__/\ \____\/\____/    \ \____/\ \__/.\_\\ \_,__/
    \/___/  `/___/> \   \/___/  \/_/ \/____/\/__/\/_/ \/__/ \/_/\/__/   \/____/     \/_/\/_/\ \ \/  \/____/\/___/      \/___/  \/__/\/_/ \/___/ 
               /\___/                                                                        \ \_\                                              
               \/__/                                                                          \/_/                                              
 */
contract WOMLand is ERC721, Ownable {
    using Counters for Counters.Counter;
    
    Counters.Counter private _tokenIdCounterBasicLand;
    Counters.Counter private _tokenIdCounterDeluxeLand;
    Counters.Counter private _tokenIdCounterSpecialLand;
    Counters.Counter private _tokenIdCounterSupremeLand;

    bool public onlyWhitelisted = true;
    bool public openMint = false;
    bool private initialized = false;

    mapping (address => uint8) whitelistSupremeLand;
    mapping (address => uint8) whitelistSpecialLand;
    mapping (address => uint256) addressList;
    
    uint256 public tokenPriceBasicLand = 0 ether;
    uint256 public tokenPriceDeluxeLand = .0015 ether;
    uint256 public tokenPriceSpecialLand = .0025 ether;
    uint256 public tokenPriceSupremeLand = 0.005 ether;

    uint256 public maxMintPerAddress = 50;
    uint256 public constant maxTokens = 7000;
 
    string private _contractURI;
    
   // uint256 public maxMintsPerTxOpen = 10;
    
    constructor() public ERC721("World Of MetaGems Land", "WOML") {}

    //Set Base URI
    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setBaseURI(_baseURI);
    }
    function flipWhitelistedState() public onlyOwner {
        onlyWhitelisted = !onlyWhitelisted;
    }
    function flipMintState() public onlyOwner {
        openMint = !openMint;
    }
    
    function mintBasicLand(uint256 quantity) external payable {
        require(totalSupplyBasicLand() + quantity <= 2500, "minting this many would exceed supply");
        require(addressList[msg.sender] + quantity <= maxMintPerAddress, "over address limit");
        require(msg.value >= tokenPriceBasicLand * quantity, "not enough ether sent");
        require(openMint, "mint not open");
        require(!onlyWhitelisted, "not open to the public yet");
        require(msg.sender == tx.origin, "no contracts please");
        for (uint256 i = 0; i < quantity; i++) {
            safeMintBasicLand(msg.sender);
        }
    }
    function mintDeluxeLand(uint256 quantity) external payable {
        require(totalSupplyDeluxeLand() + quantity <= 4500, "minting this many would exceed supply");
        require(addressList[msg.sender] + quantity <= maxMintPerAddress, "over address limit");
        require(msg.value >= tokenPriceDeluxeLand * quantity, "not enough ether sent");
        require(openMint, "mint not open");
        require(!onlyWhitelisted, "not open to the public yet");
        require(msg.sender == tx.origin, "no contracts please");
        for (uint256 i = 0; i < quantity; i++) {
            safeMintDeluxeLand(msg.sender);
        }
    }
    function mintSpecialLand(uint256 quantity) external payable {
        require(totalSupplySpecialLand() + quantity <= 6000, "minting this many would exceed supply");
       require(addressList[msg.sender] + quantity <= maxMintPerAddress, "over address limit");
        require(msg.value >= tokenPriceSpecialLand * quantity, "not enough ether sent");
        require(openMint, "mint not open");
        require(!onlyWhitelisted, "not open to the public yet");
        require(msg.sender == tx.origin, "no contracts please");
        for (uint256 i = 0; i < quantity; i++) {
            safeMintSpecialLand(msg.sender);
        }
    }
        function mintSpecialLandWhitelist() external payable {
            require(totalSupplySpecialLand() + 1 <= 6000, "minting this many would exceed supply");
            require(msg.value >= tokenPriceSpecialLand, "not enough ether sent");
            require(openMint, "mint not open");
            require(onlyWhitelisted, "whitelist mint has closed");
            if (onlyWhitelisted) {
            require(1 <= whitelistSpecialLand[msg.sender], "exceeded max available to purchase");
            }
            require(msg.sender == tx.origin, "no contracts please");
            whitelistSpecialLand[msg.sender] -= 1;
            safeMintSpecialLand(msg.sender);
    }
    function mintSupremeLand(uint8 quantity) external payable {
        require(totalSupplySupremeLand() + quantity <= 7000, "minting this many would exceed supply");
        require(addressList[msg.sender] + quantity <= maxMintPerAddress, "over address limit");
        require(msg.value >= tokenPriceSupremeLand * quantity, "not enough ether sent");
        require(openMint, "mint not open");
        require(!onlyWhitelisted, "not open to the public yet");
        require(msg.sender == tx.origin, "no contracts please");
         for (uint256 i = 0; i < quantity; i++) {
            safeMintSupremeLand(msg.sender);
        }
    }
        function mintSupremeLandWhitelist() external payable {
            require(totalSupplySupremeLand() + 1 <= 7000, "minting this would exceed supply");
            require(msg.value >= tokenPriceSupremeLand, "not enough ether sent");
            require(openMint, "mint not open");
            require(onlyWhitelisted, "whitelist mint has closed");
            if (onlyWhitelisted) {
            require(1 <= whitelistSupremeLand[msg.sender], "exceeded max available to purchase");
             }
             require(msg.sender == tx.origin, "no contracts please");
             whitelistSupremeLand[msg.sender] -= 1;
             safeMintSupremeLand(msg.sender);
    }

    function safeMintBasicLand(address to) internal {
        uint256 tokenId = _tokenIdCounterBasicLand.current();
        _tokenIdCounterBasicLand.increment();
        addressList[to]++;
        _safeMint(to, tokenId);
    }
    function safeMintDeluxeLand(address to) internal {
        uint256 tokenId = _tokenIdCounterDeluxeLand.current() + 2500;
        _tokenIdCounterDeluxeLand.increment();
         addressList[to]++;
        _safeMint(to, tokenId);
    }
    function safeMintSpecialLand(address to) internal {
        uint256 tokenId = _tokenIdCounterSpecialLand.current() + 4500;
        _tokenIdCounterSpecialLand.increment();
         addressList[to]++;
        _safeMint(to, tokenId);
    }
    function safeMintSupremeLand(address to) internal {
        uint256 tokenId = _tokenIdCounterSupremeLand.current() + 6000;
        _tokenIdCounterSupremeLand.increment();
         addressList[to]++;
        _safeMint(to, tokenId);
    }

    function totalSupply() public view override returns (uint) {
        return totalSupplyBasicLand() + totalSupplyDeluxeLand() + totalSupplySpecialLand() + totalSupplySupremeLand();
    }
    function totalSupplyBasicLand() public view returns (uint) {
        return _tokenIdCounterBasicLand.current();
    }
    function totalSupplyDeluxeLand() public view returns (uint) {
        return _tokenIdCounterDeluxeLand.current();
    }
    function totalSupplySpecialLand() public view returns (uint) {
        return _tokenIdCounterSpecialLand.current();
    }
    function totalSupplySupremeLand() public view returns (uint) {
        return _tokenIdCounterSupremeLand.current();
    }

    function withdraw() public payable onlyOwner {
    
    uint256 socialBalance = address(this).balance * 20 / 100;  
    uint256 bankBalance = address(this).balance * 30 / 100;  
    
    (bool socialNexus, ) = payable(0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212).call{value: socialBalance}("");
    require(socialNexus);

     (bool Artiste1L, ) = payable(0xa7EdeC871A0FFd6B59a3934A7FDe2246F95D520C).call{value: bankBalance * 25 / 1000}("");
    require(Artiste1L);
    (bool Artiste2M, ) = payable(0xf6B861f72519b3b886bfb77B69102C6B8BF407d1).call{value: bankBalance * 25 / 1000}("");
    require(Artiste2M);
    (bool Artiste3A, ) = payable(0xd0F97bbdA331e59BDFF98BC52Aa450D6c47A2B72).call{value: bankBalance * 25 / 1000}("");
    require(Artiste3A);
    (bool Artiste4J, ) = payable(0x1Aa530bB0596f8Eee9Ebe1EFfcC6F27E1C34615D).call{value: bankBalance * 25 / 1000}("");
    require(Artiste4J);
    (bool Artiste5Y, ) = payable(0xabcDF05C0Aef28CeD80b3d6CD107E89647A02954).call{value: bankBalance * 25 / 1000}("");
    require(Artiste5Y);
      (bool Artiste6Al, ) = payable(0xdf64D15e99df3d6f705511EBa0efc210C6F961b7).call{value: bankBalance * 25 / 1000}("");
    require(Artiste6Al);
    (bool Tech2L, ) = payable(0x43a191060D906b44686DD747fF4b796D11ABC4a2).call{value: bankBalance * 25 / 1000}("");
    require(Tech2L);
    (bool Dev1, ) = payable(0x01656D41e041b50fc7c1eb270f7d891021937436).call{value: bankBalance * 25 / 1000}("");
    require(Dev1);
    (bool collabYan, ) = payable(0x69abC6eAE2362aCEe665Db1c6790Cc0F90C5c397).call{value: bankBalance * 50 / 1000}("");
    require(collabYan);

    //Metabank
    (bool metaversebank, ) = payable(0xf8EeD691DFB6Ae167B9284Aa7501BAe753E9263a).call{value: bankBalance}("");
    require(metaversebank);
 
    //founder
    uint256 founderBalance = address(this).balance;  
    (bool founder1, ) = payable(0x6e49117CceF4B1bDBd3cE5118910f3D17D953843).call{value: founderBalance * 50 / 100}("");
    require(founder1);
    (bool founder2, ) = payable(0x452d73f716C34f1481898a1FDc61923c711D0f8A).call{value: founderBalance * 50 / 100}("");
    require(founder2);

    }
     function setWhitelistSpecialLand(address[] calldata addresses, uint8 numAllowedToMintSpecialLand) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistSpecialLand[addresses[i]] = numAllowedToMintSpecialLand;
        }
    }
    function setWhitelistSupremeLand(address[] calldata addresses, uint8 numAllowedToMintSupremeLand) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistSupremeLand[addresses[i]] = numAllowedToMintSupremeLand;
        }
    }

    function settokenPriceDeluxeLand(uint256 _newDeluxeLandCost) public onlyOwner {
       tokenPriceDeluxeLand = _newDeluxeLandCost;
    }
    function settokenPriceSpecialLand(uint256 _newSpecialLandCost) public onlyOwner {
        tokenPriceSpecialLand = _newSpecialLandCost;
    }
    function settokenPriceSupremeLand(uint256 _newSupremeLandCost) public onlyOwner {
        tokenPriceSupremeLand = _newSupremeLandCost;
    }
    function setMaxMintPerAddress(uint256 _maxMint) external onlyOwner {
        maxMintPerAddress = _maxMint;
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBasicLand","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintDeluxeLand","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintSpecialLand","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSpecialLandWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"mintSupremeLand","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSupremeLandWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMintSpecialLand","type":"uint8"}],"name":"setWhitelistSpecialLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMintSupremeLand","type":"uint8"}],"name":"setWhitelistSupremeLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDeluxeLandCost","type":"uint256"}],"name":"settokenPriceDeluxeLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSpecialLandCost","type":"uint256"}],"name":"settokenPriceSpecialLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupremeLandCost","type":"uint256"}],"name":"settokenPriceSupremeLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceBasicLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceDeluxeLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceSpecialLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceSupremeLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyBasicLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyDeluxeLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplySpecialLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplySupremeLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff02191690831515021790555060006013556605543df729c0006014556608e1bc9bf040006015556611c37937e0800060165560326017553480156200008d57600080fd5b506040518060400160405280601681526020017f576f726c64204f66204d65746147656d73204c616e64000000000000000000008152506040518060400160405280600481526020017f574f4d4c00000000000000000000000000000000000000000000000000000000815250620001126301ffc9a760e01b6200024560201b60201c565b81600690805190602001906200012a92919062000356565b5080600790805190602001906200014392919062000356565b506200015c6380ac58cd60e01b6200024560201b60201c565b62000174635b5e139f60e01b6200024560201b60201c565b6200018c63780e9d6360e01b6200024560201b60201c565b50506000620001a06200034e60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003fc565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200039957805160ff1916838001178555620003ca565b82800160010185558215620003ca579182015b82811115620003c9578251825591602001919060010190620003ac565b5b509050620003d99190620003dd565b5090565b5b80821115620003f8576000816000905550600101620003de565b5090565b615f70806200040c6000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063b0924ae4116100c1578063db1fc6331161007a578063db1fc63314610f8f578063e831574214611022578063e985e9c51461104d578063eb085113146110d4578063ebffd80e146110de578063f2fde38b1461110c57610293565b8063b0924ae414610d08578063b88d4fde14610d33578063bce6d67214610e45578063c1f78cbe14610e72578063c87b56dd14610ead578063d7e4825a14610f6157610293565b8063972c0d3111610113578063972c0d3114610b885780639af5d8e214610b925780639afb302b14610c255780639c70b51214610c50578063a22cb46514610c7d578063a492898814610cda57610293565b806370a08231146109f9578063715018a614610a5e57806385111f2f14610a755780638c29eb2414610aa05780638da5cb5b14610ab757806395d89b4114610af857610293565b80633de91e99116101fe57806355f804b3116101b757806355f804b3146107cf578063572849c4146108975780635891da16146108c257806359c74f29146108ed5780636352211e146109045780636c0360eb1461096957610293565b80633de91e991461063957806342842e0e1461066457806344b67a95146106df57806346a8b8cb1461071a5780634d7162f8146107455780634f6ccce71461078057610293565b80631d4d0a82116102505780631d4d0a82146104ae5780631e14d44b146104d957806323b872dd146105145780632f745c591461058f57806333160220146105fe5780633ccfd60b1461062f57610293565b806301ffc9a71461029857806306fdde0314610308578063081812fc14610398578063095ea7b3146103fd57806318160ddd146104585780631853082d14610483575b600080fd5b3480156102a457600080fd5b506102f0600480360360208110156102bb57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061115d565b60405180821515815260200191505060405180910390f35b34801561031457600080fd5b5061031d6111c4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035d578082015181840152602081019050610342565b50505050905090810190601f16801561038a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a457600080fd5b506103d1600480360360208110156103bb57600080fd5b8101908080359060200190929190505050611266565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561040957600080fd5b506104566004803603604081101561042057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611301565b005b34801561046457600080fd5b5061046d611445565b6040518082815260200191505060405180910390f35b34801561048f57600080fd5b5061049861146f565b6040518082815260200191505060405180910390f35b3480156104ba57600080fd5b506104c3611480565b6040518082815260200191505060405180910390f35b3480156104e557600080fd5b50610512600480360360208110156104fc57600080fd5b8101908080359060200190929190505050611491565b005b34801561052057600080fd5b5061058d6004803603606081101561053757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154a565b005b34801561059b57600080fd5b506105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c0565b6040518082815260200191505060405180910390f35b61062d6004803603602081101561061457600080fd5b81019080803560ff16906020019092919050505061161b565b005b610637611989565b005b34801561064557600080fd5b5061064e6121e6565b6040518082815260200191505060405180910390f35b34801561067057600080fd5b506106dd6004803603606081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121f7565b005b3480156106eb57600080fd5b506107186004803603602081101561070257600080fd5b8101908080359060200190929190505050612217565b005b34801561072657600080fd5b5061072f6122d0565b6040518082815260200191505060405180910390f35b34801561075157600080fd5b5061077e6004803603602081101561076857600080fd5b81019080803590602001909291905050506122d6565b005b34801561078c57600080fd5b506107b9600480360360208110156107a357600080fd5b810190808035906020019092919050505061238f565b6040518082815260200191505060405180910390f35b3480156107db57600080fd5b50610895600480360360208110156107f257600080fd5b810190808035906020019064010000000081111561080f57600080fd5b82018360208201111561082157600080fd5b8035906020019184600183028401116401000000008311171561084357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123b2565b005b3480156108a357600080fd5b506108ac61246d565b6040518082815260200191505060405180910390f35b3480156108ce57600080fd5b506108d7612473565b6040518082815260200191505060405180910390f35b3480156108f957600080fd5b50610902612479565b005b34801561091057600080fd5b5061093d6004803603602081101561092757600080fd5b8101908080359060200190929190505050612554565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097557600080fd5b5061097e61258b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109be5780820151818401526020810190506109a3565b50505050905090810190601f1680156109eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a0557600080fd5b50610a4860048036036020811015610a1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061262d565b6040518082815260200191505060405180910390f35b348015610a6a57600080fd5b50610a73612702565b005b348015610a8157600080fd5b50610a8a612872565b6040518082815260200191505060405180910390f35b348015610aac57600080fd5b50610ab5612878565b005b348015610ac357600080fd5b50610acc612953565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b0457600080fd5b50610b0d61297d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b4d578082015181840152602081019050610b32565b50505050905090810190601f168015610b7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b90612a1f565b005b348015610b9e57600080fd5b50610c2360048036036040811015610bb557600080fd5b8101908080359060200190640100000000811115610bd257600080fd5b820183602082011115610be457600080fd5b80359060200191846020830284011164010000000083111715610c0657600080fd5b9091929391929390803560ff169060200190929190505050612df3565b005b348015610c3157600080fd5b50610c3a612f43565b6040518082815260200191505060405180910390f35b348015610c5c57600080fd5b50610c65612f49565b60405180821515815260200191505060405180910390f35b348015610c8957600080fd5b50610cd860048036036040811015610ca057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612f5c565b005b610d0660048036036020811015610cf057600080fd5b8101908080359060200190929190505050613112565b005b348015610d1457600080fd5b50610d1d613474565b6040518082815260200191505060405180910390f35b348015610d3f57600080fd5b50610e4360048036036080811015610d5657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610dbd57600080fd5b820183602082011115610dcf57600080fd5b80359060200191846001830284011164010000000083111715610df157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613485565b005b348015610e5157600080fd5b50610e5a6134fd565b60405180821515815260200191505060405180910390f35b348015610e7e57600080fd5b50610eab60048036036020811015610e9557600080fd5b8101908080359060200190929190505050613510565b005b348015610eb957600080fd5b50610ee660048036036020811015610ed057600080fd5b81019080803590602001909291905050506135c9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f26578082015181840152602081019050610f0b565b50505050905090810190601f168015610f535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f8d60048036036020811015610f7757600080fd5b81019080803590602001909291905050506138c2565b005b348015610f9b57600080fd5b5061102060048036036040811015610fb257600080fd5b8101908080359060200190640100000000811115610fcf57600080fd5b820183602082011115610fe157600080fd5b8035906020019184602083028401116401000000008311171561100357600080fd5b9091929391929390803560ff169060200190929190505050613c24565b005b34801561102e57600080fd5b50611037613d74565b6040518082815260200191505060405180910390f35b34801561105957600080fd5b506110bc6004803603604081101561107057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d7a565b60405180821515815260200191505060405180910390f35b6110dc613e0e565b005b61110a600480360360208110156110f457600080fd5b81019080803590602001909291905050506141c5565b005b34801561111857600080fd5b5061115b6004803603602081101561112f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614527565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561125c5780601f106112315761010080835404028352916020019161125c565b820191906000526020600020905b81548152906001019060200180831161123f57829003601f168201915b5050505050905090565b60006112718261471c565b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615e40602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061130c82612554565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615ee96021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166113b2614739565b73ffffffffffffffffffffffffffffffffffffffff1614806113e157506113e0816113db614739565b613d7a565b5b611436576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615d936038913960400191505060405180910390fd5b6114408383614741565b505050565b600061144f611480565b61145761146f565b61145f6121e6565b611467613474565b010101905090565b600061147b600d6147fa565b905090565b600061148c600e6147fa565b905090565b611499614739565b73ffffffffffffffffffffffffffffffffffffffff166114b7612953565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b61155b611555614739565b82614808565b6115b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f0a6031913960400191505060405180910390fd5b6115bb8383836148fc565b505050565b600061161382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614b3f90919063ffffffff16565b905092915050565b611b588160ff1661162a611480565b011115611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b6017548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401111561173e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b8060ff16601654023410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff1661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156118c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b8160ff168110156119855761197833614b59565b8080600101915050611964565b5050565b611991614739565b73ffffffffffffffffffffffffffffffffffffffff166119af612953565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060646014470281611a4757fe5b04905060006064601e470281611a5957fe5b0490506000737cb0699db6ff4bccc9bad16d5156fb6ec52a921273ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114611ad0576040519150601f19603f3d011682016040523d82523d6000602084013e611ad5565b606091505b5050905080611ae357600080fd5b600073a7edec871a0ffd6b59a3934a7fde2246f95d520c73ffffffffffffffffffffffffffffffffffffffff166103e86019850281611b1e57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611b65576040519150601f19603f3d011682016040523d82523d6000602084013e611b6a565b606091505b5050905080611b7857600080fd5b600073f6b861f72519b3b886bfb77b69102c6b8bf407d173ffffffffffffffffffffffffffffffffffffffff166103e86019860281611bb357fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611bfa576040519150601f19603f3d011682016040523d82523d6000602084013e611bff565b606091505b5050905080611c0d57600080fd5b600073d0f97bbda331e59bdff98bc52aa450d6c47a2b7273ffffffffffffffffffffffffffffffffffffffff166103e86019870281611c4857fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b5050905080611ca257600080fd5b6000731aa530bb0596f8eee9ebe1effcc6f27e1c34615d73ffffffffffffffffffffffffffffffffffffffff166103e86019880281611cdd57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b5050905080611d3757600080fd5b600073abcdf05c0aef28ced80b3d6cd107e89647a0295473ffffffffffffffffffffffffffffffffffffffff166103e86019890281611d7257fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5050905080611dcc57600080fd5b600073df64d15e99df3d6f705511eba0efc210c6f961b773ffffffffffffffffffffffffffffffffffffffff166103e860198a0281611e0757fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611e4e576040519150601f19603f3d011682016040523d82523d6000602084013e611e53565b606091505b5050905080611e6157600080fd5b60007343a191060d906b44686dd747ff4b796d11abc4a273ffffffffffffffffffffffffffffffffffffffff166103e860198b0281611e9c57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611ee3576040519150601f19603f3d011682016040523d82523d6000602084013e611ee8565b606091505b5050905080611ef657600080fd5b60007301656d41e041b50fc7c1eb270f7d89102193743673ffffffffffffffffffffffffffffffffffffffff166103e860198c0281611f3157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611f78576040519150601f19603f3d011682016040523d82523d6000602084013e611f7d565b606091505b5050905080611f8b57600080fd5b60007369abc6eae2362acee665db1c6790cc0f90c5c39773ffffffffffffffffffffffffffffffffffffffff166103e860328d0281611fc657fe5b0460405180600001905060006040518083038185875af1925050503d806000811461200d576040519150601f19603f3d011682016040523d82523d6000602084013e612012565b606091505b505090508061202057600080fd5b600073f8eed691dfb6ae167b9284aa7501bae753e9263a73ffffffffffffffffffffffffffffffffffffffff168c60405180600001905060006040518083038185875af1925050503d8060008114612094576040519150601f19603f3d011682016040523d82523d6000602084013e612099565b606091505b50509050806120a757600080fd5b60004790506000736e49117ccef4b1bdbd3ce5118910f3d17d95384373ffffffffffffffffffffffffffffffffffffffff16606460328402816120e657fe5b0460405180600001905060006040518083038185875af1925050503d806000811461212d576040519150601f19603f3d011682016040523d82523d6000602084013e612132565b606091505b505090508061214057600080fd5b600073452d73f716c34f1481898a1fdc61923c711d0f8a73ffffffffffffffffffffffffffffffffffffffff166064603285028161217a57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146121c1576040519150601f19603f3d011682016040523d82523d6000602084013e6121c6565b606091505b50509050806121d457600080fd5b50505050505050505050505050505050565b60006121f2600c6147fa565b905090565b61221283838360405180602001604052806000815250613485565b505050565b61221f614739565b73ffffffffffffffffffffffffffffffffffffffff1661223d612953565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b60155481565b6122de614739565b73ffffffffffffffffffffffffffffffffffffffff166122fc612953565b73ffffffffffffffffffffffffffffffffffffffff1614612385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060168190555050565b6000806123a6836002614bd290919063ffffffff16565b50905080915050919050565b6123ba614739565b73ffffffffffffffffffffffffffffffffffffffff166123d8612953565b73ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61246a81614bfe565b50565b60175481565b60145481565b612481614739565b73ffffffffffffffffffffffffffffffffffffffff1661249f612953565b73ffffffffffffffffffffffffffffffffffffffff1614612528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600061258482604051806060016040528060298152602001615df5602991396002614c189092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615dcb602a913960400191505060405180910390fd5b6126fb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614c37565b9050919050565b61270a614739565b73ffffffffffffffffffffffffffffffffffffffff16612728612953565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b612880614739565b73ffffffffffffffffffffffffffffffffffffffff1661289e612953565b73ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a155780601f106129ea57610100808354040283529160200191612a15565b820191906000526020600020905b8154815290600101906020018083116129f857829003601f168201915b5050505050905090565b611b586001612a2c611480565b011115612aa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d696e74696e67207468697320776f756c642065786365656420737570706c7981525060200191505060405180910390fd5b601654341015612b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16612b9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16612c1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f77686974656c697374206d696e742068617320636c6f7365640000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615612cdc57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1660011115612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d1f6022913960400191505060405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612d7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160392506101000a81548160ff021916908360ff160217905550612df133614b59565b565b612dfb614739565b73ffffffffffffffffffffffffffffffffffffffff16612e19612953565b73ffffffffffffffffffffffffffffffffffffffff1614612ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015612f3d578160116000868685818110612ec157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050612ea5565b50505050565b60165481565b600f60009054906101000a900460ff1681565b612f64614739565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613005576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000613012614739565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130bf614739565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6109c48161311e613474565b011115613176576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401111561322f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b80601354023410156132a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff1661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156133ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461344f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b818110156134705761346333614c4c565b8080600101915050613452565b5050565b6000613480600b6147fa565b905090565b613496613490614739565b83614808565b6134eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f0a6031913960400191505060405180910390fd5b6134f784848484614cc1565b50505050565b600f60019054906101000a900460ff1681565b613518614739565b73ffffffffffffffffffffffffffffffffffffffff16613536612953565b73ffffffffffffffffffffffffffffffffffffffff16146135bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60606135d48261471c565b613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615eba602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136d25780601f106136a7576101008083540402835291602001916136d2565b820191906000526020600020905b8154815290600101906020018083116136b557829003601f168201915b5050505050905060606136e361258b565b90506000815114156136f95781925050506138bd565b6000825111156137ca5780826040516020018083805190602001908083835b6020831061373b5780518252602082019150602081019050602083039250613718565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061378c5780518252602082019150602081019050602083039250613769565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506138bd565b806137d485614d33565b6040516020018083805190602001908083835b6020831061380a57805182526020820191506020810190506020830392506137e7565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061385b5780518252602082019150602081019050602083039250613838565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b611194816138ce6121e6565b011115613926576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156139df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b8060145402341015613a59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16613adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615613b5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b81811015613c2057613c1333614e7a565b8080600101915050613c02565b5050565b613c2c614739565b73ffffffffffffffffffffffffffffffffffffffff16613c4a612953565b73ffffffffffffffffffffffffffffffffffffffff1614613cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015613d6e578160106000868685818110613cf257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050613cd6565b50505050565b611b5881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117706001613e1b61146f565b011115613e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b601554341015613eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16613f6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16613fef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f77686974656c697374206d696e742068617320636c6f7365640000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156140ae57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16600111156140ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d1f6022913960400191505060405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461414f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160392506101000a81548160ff021916908360ff1602179055506141c333614ef3565b565b611770816141d161146f565b011115614229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156142e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b806015540234101561435c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff166143de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615614461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614614502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b818110156145235761451633614ef3565b8080600101915050614505565b5050565b61452f614739565b73ffffffffffffffffffffffffffffffffffffffff1661454d612953565b73ffffffffffffffffffffffffffffffffffffffff16146145d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561465c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cd56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000614732826002614f6c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166147b483612554565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006148138261471c565b614868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d67602c913960400191505060405180910390fd5b600061487383612554565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806148e257508373ffffffffffffffffffffffffffffffffffffffff166148ca84611266565b73ffffffffffffffffffffffffffffffffffffffff16145b806148f357506148f28185613d7a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661491c82612554565b73ffffffffffffffffffffffffffffffffffffffff1614614988576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615e916029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615cfb6024913960400191505060405180910390fd5b614a19838383614f86565b614a24600082614741565b614a7581600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614f8b90919063ffffffff16565b50614ac781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614fa590919063ffffffff16565b50614ade81836002614fbf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000614b4e8360000183614ff4565b60001c905092915050565b6000611770614b68600e6147fa565b019050614b75600e615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614bce828261508d565b5050565b600080600080614be586600001866150ab565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614c14929190615be3565b5050565b6000614c2b846000018460001b84615144565b60001c90509392505050565b6000614c458260000161523a565b9050919050565b6000614c58600b6147fa565b9050614c64600b615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614cbd828261508d565b5050565b614ccc8484846148fc565b614cd88484848461524b565b614d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615ca36032913960400191505060405180910390fd5b50505050565b60606000821415614d7b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614e75565b600082905060005b60008214614da5578080600101915050600a8281614d9d57fe5b049150614d83565b60608167ffffffffffffffff81118015614dbe57600080fd5b506040519080825280601f01601f191660200182016040528015614df15781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614e6d57600a8481614e1257fe5b0660300160f81b82828060019003935081518110614e2c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614e6557fe5b049350614e00565b819450505050505b919050565b60006109c4614e89600c6147fa565b019050614e96600c615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614eef828261508d565b5050565b6000611194614f02600d6147fa565b019050614f0f600d615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614f68828261508d565b5050565b6000614f7e836000018360001b615464565b905092915050565b505050565b6000614f9d836000018360001b615487565b905092915050565b6000614fb7836000018360001b61556f565b905092915050565b6000614feb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6155df565b90509392505050565b600081836000018054905011615055576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c816022913960400191505060405180910390fd5b82600001828154811061506457fe5b9060005260206000200154905092915050565b6001816000016000828254019250508190555050565b6150a78282604051806020016040528060008152506156bb565b5050565b6000808284600001805490501161510d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615e1e6022913960400191505060405180910390fd5b600084600001848154811061511e57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061520b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156151d05780820151818401526020810190506151b5565b50505050905090810190601f1680156151fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061521e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061526c8473ffffffffffffffffffffffffffffffffffffffff1661572c565b615279576001905061545c565b60606153e363150b7a0260e01b61528e614739565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156153125780820151818401526020810190506152f7565b50505050905090810190601f16801561533f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615ca3603291398773ffffffffffffffffffffffffffffffffffffffff1661573f9092919063ffffffff16565b905060008180602001905160208110156153fc57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461556357600060018203905060006001866000018054905003905060008660000182815481106154d257fe5b90600052602060002001549050808760000184815481106154ef57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061552757fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615569565b60009150505b92915050565b600061557b8383615757565b6155d45782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506155d9565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415615686578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506156b4565b8285600001600183038154811061569957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b6156c5838361577a565b6156d2600084848461524b565b615727576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615ca36032913960400191505060405180910390fd5b505050565b600080823b905060008111915050919050565b606061574e848460008561596e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561581d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6158268161471c565b15615899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6158a560008383614f86565b6158f681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614fa590919063ffffffff16565b5061590d81836002614fbf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156159c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d416026913960400191505060405180910390fd5b6159d28561572c565b615a44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310615a945780518252602082019150602081019050602083039250615a71565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615af6576040519150601f19603f3d011682016040523d82523d6000602084013e615afb565b606091505b5091509150615b0b828286615b17565b92505050949350505050565b60608315615b2757829050615bdc565b600083511115615b3a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615ba1578082015181840152602081019050615b86565b50505050905090810190601f168015615bce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615c2457805160ff1916838001178555615c52565b82800160010185558215615c52579182015b82811115615c51578251825591602001919060010190615c36565b5b509050615c5f9190615c63565b5090565b5b80821115615c7c576000816000905550600101615c64565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573736578636565646564206d617820617661696c61626c6520746f207075726368617365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e6d696e74696e672074686973206d616e7920776f756c642065786365656420737570706c794552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220c242c57a6144497f51fcb26b29097bd74fa769956179e7ea1545a69c8eb0e1bb64736f6c63430007000033

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063b0924ae4116100c1578063db1fc6331161007a578063db1fc63314610f8f578063e831574214611022578063e985e9c51461104d578063eb085113146110d4578063ebffd80e146110de578063f2fde38b1461110c57610293565b8063b0924ae414610d08578063b88d4fde14610d33578063bce6d67214610e45578063c1f78cbe14610e72578063c87b56dd14610ead578063d7e4825a14610f6157610293565b8063972c0d3111610113578063972c0d3114610b885780639af5d8e214610b925780639afb302b14610c255780639c70b51214610c50578063a22cb46514610c7d578063a492898814610cda57610293565b806370a08231146109f9578063715018a614610a5e57806385111f2f14610a755780638c29eb2414610aa05780638da5cb5b14610ab757806395d89b4114610af857610293565b80633de91e99116101fe57806355f804b3116101b757806355f804b3146107cf578063572849c4146108975780635891da16146108c257806359c74f29146108ed5780636352211e146109045780636c0360eb1461096957610293565b80633de91e991461063957806342842e0e1461066457806344b67a95146106df57806346a8b8cb1461071a5780634d7162f8146107455780634f6ccce71461078057610293565b80631d4d0a82116102505780631d4d0a82146104ae5780631e14d44b146104d957806323b872dd146105145780632f745c591461058f57806333160220146105fe5780633ccfd60b1461062f57610293565b806301ffc9a71461029857806306fdde0314610308578063081812fc14610398578063095ea7b3146103fd57806318160ddd146104585780631853082d14610483575b600080fd5b3480156102a457600080fd5b506102f0600480360360208110156102bb57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061115d565b60405180821515815260200191505060405180910390f35b34801561031457600080fd5b5061031d6111c4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035d578082015181840152602081019050610342565b50505050905090810190601f16801561038a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a457600080fd5b506103d1600480360360208110156103bb57600080fd5b8101908080359060200190929190505050611266565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561040957600080fd5b506104566004803603604081101561042057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611301565b005b34801561046457600080fd5b5061046d611445565b6040518082815260200191505060405180910390f35b34801561048f57600080fd5b5061049861146f565b6040518082815260200191505060405180910390f35b3480156104ba57600080fd5b506104c3611480565b6040518082815260200191505060405180910390f35b3480156104e557600080fd5b50610512600480360360208110156104fc57600080fd5b8101908080359060200190929190505050611491565b005b34801561052057600080fd5b5061058d6004803603606081101561053757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154a565b005b34801561059b57600080fd5b506105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c0565b6040518082815260200191505060405180910390f35b61062d6004803603602081101561061457600080fd5b81019080803560ff16906020019092919050505061161b565b005b610637611989565b005b34801561064557600080fd5b5061064e6121e6565b6040518082815260200191505060405180910390f35b34801561067057600080fd5b506106dd6004803603606081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121f7565b005b3480156106eb57600080fd5b506107186004803603602081101561070257600080fd5b8101908080359060200190929190505050612217565b005b34801561072657600080fd5b5061072f6122d0565b6040518082815260200191505060405180910390f35b34801561075157600080fd5b5061077e6004803603602081101561076857600080fd5b81019080803590602001909291905050506122d6565b005b34801561078c57600080fd5b506107b9600480360360208110156107a357600080fd5b810190808035906020019092919050505061238f565b6040518082815260200191505060405180910390f35b3480156107db57600080fd5b50610895600480360360208110156107f257600080fd5b810190808035906020019064010000000081111561080f57600080fd5b82018360208201111561082157600080fd5b8035906020019184600183028401116401000000008311171561084357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123b2565b005b3480156108a357600080fd5b506108ac61246d565b6040518082815260200191505060405180910390f35b3480156108ce57600080fd5b506108d7612473565b6040518082815260200191505060405180910390f35b3480156108f957600080fd5b50610902612479565b005b34801561091057600080fd5b5061093d6004803603602081101561092757600080fd5b8101908080359060200190929190505050612554565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097557600080fd5b5061097e61258b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109be5780820151818401526020810190506109a3565b50505050905090810190601f1680156109eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a0557600080fd5b50610a4860048036036020811015610a1c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061262d565b6040518082815260200191505060405180910390f35b348015610a6a57600080fd5b50610a73612702565b005b348015610a8157600080fd5b50610a8a612872565b6040518082815260200191505060405180910390f35b348015610aac57600080fd5b50610ab5612878565b005b348015610ac357600080fd5b50610acc612953565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b0457600080fd5b50610b0d61297d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b4d578082015181840152602081019050610b32565b50505050905090810190601f168015610b7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b90612a1f565b005b348015610b9e57600080fd5b50610c2360048036036040811015610bb557600080fd5b8101908080359060200190640100000000811115610bd257600080fd5b820183602082011115610be457600080fd5b80359060200191846020830284011164010000000083111715610c0657600080fd5b9091929391929390803560ff169060200190929190505050612df3565b005b348015610c3157600080fd5b50610c3a612f43565b6040518082815260200191505060405180910390f35b348015610c5c57600080fd5b50610c65612f49565b60405180821515815260200191505060405180910390f35b348015610c8957600080fd5b50610cd860048036036040811015610ca057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612f5c565b005b610d0660048036036020811015610cf057600080fd5b8101908080359060200190929190505050613112565b005b348015610d1457600080fd5b50610d1d613474565b6040518082815260200191505060405180910390f35b348015610d3f57600080fd5b50610e4360048036036080811015610d5657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610dbd57600080fd5b820183602082011115610dcf57600080fd5b80359060200191846001830284011164010000000083111715610df157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613485565b005b348015610e5157600080fd5b50610e5a6134fd565b60405180821515815260200191505060405180910390f35b348015610e7e57600080fd5b50610eab60048036036020811015610e9557600080fd5b8101908080359060200190929190505050613510565b005b348015610eb957600080fd5b50610ee660048036036020811015610ed057600080fd5b81019080803590602001909291905050506135c9565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f26578082015181840152602081019050610f0b565b50505050905090810190601f168015610f535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f8d60048036036020811015610f7757600080fd5b81019080803590602001909291905050506138c2565b005b348015610f9b57600080fd5b5061102060048036036040811015610fb257600080fd5b8101908080359060200190640100000000811115610fcf57600080fd5b820183602082011115610fe157600080fd5b8035906020019184602083028401116401000000008311171561100357600080fd5b9091929391929390803560ff169060200190929190505050613c24565b005b34801561102e57600080fd5b50611037613d74565b6040518082815260200191505060405180910390f35b34801561105957600080fd5b506110bc6004803603604081101561107057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613d7a565b60405180821515815260200191505060405180910390f35b6110dc613e0e565b005b61110a600480360360208110156110f457600080fd5b81019080803590602001909291905050506141c5565b005b34801561111857600080fd5b5061115b6004803603602081101561112f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614527565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561125c5780601f106112315761010080835404028352916020019161125c565b820191906000526020600020905b81548152906001019060200180831161123f57829003601f168201915b5050505050905090565b60006112718261471c565b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615e40602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061130c82612554565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615ee96021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166113b2614739565b73ffffffffffffffffffffffffffffffffffffffff1614806113e157506113e0816113db614739565b613d7a565b5b611436576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615d936038913960400191505060405180910390fd5b6114408383614741565b505050565b600061144f611480565b61145761146f565b61145f6121e6565b611467613474565b010101905090565b600061147b600d6147fa565b905090565b600061148c600e6147fa565b905090565b611499614739565b73ffffffffffffffffffffffffffffffffffffffff166114b7612953565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b61155b611555614739565b82614808565b6115b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f0a6031913960400191505060405180910390fd5b6115bb8383836148fc565b505050565b600061161382600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614b3f90919063ffffffff16565b905092915050565b611b588160ff1661162a611480565b011115611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b6017548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401111561173e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b8060ff16601654023410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff1661183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156118c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b8160ff168110156119855761197833614b59565b8080600101915050611964565b5050565b611991614739565b73ffffffffffffffffffffffffffffffffffffffff166119af612953565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060646014470281611a4757fe5b04905060006064601e470281611a5957fe5b0490506000737cb0699db6ff4bccc9bad16d5156fb6ec52a921273ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114611ad0576040519150601f19603f3d011682016040523d82523d6000602084013e611ad5565b606091505b5050905080611ae357600080fd5b600073a7edec871a0ffd6b59a3934a7fde2246f95d520c73ffffffffffffffffffffffffffffffffffffffff166103e86019850281611b1e57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611b65576040519150601f19603f3d011682016040523d82523d6000602084013e611b6a565b606091505b5050905080611b7857600080fd5b600073f6b861f72519b3b886bfb77b69102c6b8bf407d173ffffffffffffffffffffffffffffffffffffffff166103e86019860281611bb357fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611bfa576040519150601f19603f3d011682016040523d82523d6000602084013e611bff565b606091505b5050905080611c0d57600080fd5b600073d0f97bbda331e59bdff98bc52aa450d6c47a2b7273ffffffffffffffffffffffffffffffffffffffff166103e86019870281611c4857fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b5050905080611ca257600080fd5b6000731aa530bb0596f8eee9ebe1effcc6f27e1c34615d73ffffffffffffffffffffffffffffffffffffffff166103e86019880281611cdd57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b5050905080611d3757600080fd5b600073abcdf05c0aef28ced80b3d6cd107e89647a0295473ffffffffffffffffffffffffffffffffffffffff166103e86019890281611d7257fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611db9576040519150601f19603f3d011682016040523d82523d6000602084013e611dbe565b606091505b5050905080611dcc57600080fd5b600073df64d15e99df3d6f705511eba0efc210c6f961b773ffffffffffffffffffffffffffffffffffffffff166103e860198a0281611e0757fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611e4e576040519150601f19603f3d011682016040523d82523d6000602084013e611e53565b606091505b5050905080611e6157600080fd5b60007343a191060d906b44686dd747ff4b796d11abc4a273ffffffffffffffffffffffffffffffffffffffff166103e860198b0281611e9c57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611ee3576040519150601f19603f3d011682016040523d82523d6000602084013e611ee8565b606091505b5050905080611ef657600080fd5b60007301656d41e041b50fc7c1eb270f7d89102193743673ffffffffffffffffffffffffffffffffffffffff166103e860198c0281611f3157fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611f78576040519150601f19603f3d011682016040523d82523d6000602084013e611f7d565b606091505b5050905080611f8b57600080fd5b60007369abc6eae2362acee665db1c6790cc0f90c5c39773ffffffffffffffffffffffffffffffffffffffff166103e860328d0281611fc657fe5b0460405180600001905060006040518083038185875af1925050503d806000811461200d576040519150601f19603f3d011682016040523d82523d6000602084013e612012565b606091505b505090508061202057600080fd5b600073f8eed691dfb6ae167b9284aa7501bae753e9263a73ffffffffffffffffffffffffffffffffffffffff168c60405180600001905060006040518083038185875af1925050503d8060008114612094576040519150601f19603f3d011682016040523d82523d6000602084013e612099565b606091505b50509050806120a757600080fd5b60004790506000736e49117ccef4b1bdbd3ce5118910f3d17d95384373ffffffffffffffffffffffffffffffffffffffff16606460328402816120e657fe5b0460405180600001905060006040518083038185875af1925050503d806000811461212d576040519150601f19603f3d011682016040523d82523d6000602084013e612132565b606091505b505090508061214057600080fd5b600073452d73f716c34f1481898a1fdc61923c711d0f8a73ffffffffffffffffffffffffffffffffffffffff166064603285028161217a57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146121c1576040519150601f19603f3d011682016040523d82523d6000602084013e6121c6565b606091505b50509050806121d457600080fd5b50505050505050505050505050505050565b60006121f2600c6147fa565b905090565b61221283838360405180602001604052806000815250613485565b505050565b61221f614739565b73ffffffffffffffffffffffffffffffffffffffff1661223d612953565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b60155481565b6122de614739565b73ffffffffffffffffffffffffffffffffffffffff166122fc612953565b73ffffffffffffffffffffffffffffffffffffffff1614612385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060168190555050565b6000806123a6836002614bd290919063ffffffff16565b50905080915050919050565b6123ba614739565b73ffffffffffffffffffffffffffffffffffffffff166123d8612953565b73ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61246a81614bfe565b50565b60175481565b60145481565b612481614739565b73ffffffffffffffffffffffffffffffffffffffff1661249f612953565b73ffffffffffffffffffffffffffffffffffffffff1614612528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600061258482604051806060016040528060298152602001615df5602991396002614c189092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615dcb602a913960400191505060405180910390fd5b6126fb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614c37565b9050919050565b61270a614739565b73ffffffffffffffffffffffffffffffffffffffff16612728612953565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60135481565b612880614739565b73ffffffffffffffffffffffffffffffffffffffff1661289e612953565b73ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a155780601f106129ea57610100808354040283529160200191612a15565b820191906000526020600020905b8154815290600101906020018083116129f857829003601f168201915b5050505050905090565b611b586001612a2c611480565b011115612aa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d696e74696e67207468697320776f756c642065786365656420737570706c7981525060200191505060405180910390fd5b601654341015612b19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16612b9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16612c1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f77686974656c697374206d696e742068617320636c6f7365640000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615612cdc57601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1660011115612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d1f6022913960400191505060405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612d7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160392506101000a81548160ff021916908360ff160217905550612df133614b59565b565b612dfb614739565b73ffffffffffffffffffffffffffffffffffffffff16612e19612953565b73ffffffffffffffffffffffffffffffffffffffff1614612ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015612f3d578160116000868685818110612ec157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050612ea5565b50505050565b60165481565b600f60009054906101000a900460ff1681565b612f64614739565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613005576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000613012614739565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166130bf614739565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6109c48161311e613474565b011115613176576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401111561322f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b80601354023410156132a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff1661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156133ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461344f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b818110156134705761346333614c4c565b8080600101915050613452565b5050565b6000613480600b6147fa565b905090565b613496613490614739565b83614808565b6134eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f0a6031913960400191505060405180910390fd5b6134f784848484614cc1565b50505050565b600f60019054906101000a900460ff1681565b613518614739565b73ffffffffffffffffffffffffffffffffffffffff16613536612953565b73ffffffffffffffffffffffffffffffffffffffff16146135bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b60606135d48261471c565b613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615eba602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136d25780601f106136a7576101008083540402835291602001916136d2565b820191906000526020600020905b8154815290600101906020018083116136b557829003601f168201915b5050505050905060606136e361258b565b90506000815114156136f95781925050506138bd565b6000825111156137ca5780826040516020018083805190602001908083835b6020831061373b5780518252602082019150602081019050602083039250613718565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061378c5780518252602082019150602081019050602083039250613769565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506138bd565b806137d485614d33565b6040516020018083805190602001908083835b6020831061380a57805182526020820191506020810190506020830392506137e7565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061385b5780518252602082019150602081019050602083039250613838565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b611194816138ce6121e6565b011115613926576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156139df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b8060145402341015613a59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16613adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615613b5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b81811015613c2057613c1333614e7a565b8080600101915050613c02565b5050565b613c2c614739565b73ffffffffffffffffffffffffffffffffffffffff16613c4a612953565b73ffffffffffffffffffffffffffffffffffffffff1614613cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015613d6e578160106000868685818110613cf257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080600101915050613cd6565b50505050565b611b5881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117706001613e1b61146f565b011115613e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b601554341015613eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff16613f6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16613fef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f77686974656c697374206d696e742068617320636c6f7365640000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff16156140ae57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16600111156140ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d1f6022913960400191505060405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461414f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160392506101000a81548160ff021916908360ff1602179055506141c333614ef3565b565b611770816141d161146f565b011115614229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615e6c6025913960400191505060405180910390fd5b60175481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111156142e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6f7665722061646472657373206c696d6974000000000000000000000000000081525060200191505060405180910390fd5b806015540234101561435c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6e6f7420656e6f7567682065746865722073656e74000000000000000000000081525060200191505060405180910390fd5b600f60019054906101000a900460ff166143de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d696e74206e6f74206f70656e0000000000000000000000000000000000000081525060200191505060405180910390fd5b600f60009054906101000a900460ff1615614461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6e6f74206f70656e20746f20746865207075626c69632079657400000000000081525060200191505060405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614614502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f6e6f20636f6e74726163747320706c656173650000000000000000000000000081525060200191505060405180910390fd5b60005b818110156145235761451633614ef3565b8080600101915050614505565b5050565b61452f614739565b73ffffffffffffffffffffffffffffffffffffffff1661454d612953565b73ffffffffffffffffffffffffffffffffffffffff16146145d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561465c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cd56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000614732826002614f6c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166147b483612554565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006148138261471c565b614868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d67602c913960400191505060405180910390fd5b600061487383612554565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806148e257508373ffffffffffffffffffffffffffffffffffffffff166148ca84611266565b73ffffffffffffffffffffffffffffffffffffffff16145b806148f357506148f28185613d7a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661491c82612554565b73ffffffffffffffffffffffffffffffffffffffff1614614988576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615e916029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615cfb6024913960400191505060405180910390fd5b614a19838383614f86565b614a24600082614741565b614a7581600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614f8b90919063ffffffff16565b50614ac781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614fa590919063ffffffff16565b50614ade81836002614fbf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000614b4e8360000183614ff4565b60001c905092915050565b6000611770614b68600e6147fa565b019050614b75600e615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614bce828261508d565b5050565b600080600080614be586600001866150ab565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614c14929190615be3565b5050565b6000614c2b846000018460001b84615144565b60001c90509392505050565b6000614c458260000161523a565b9050919050565b6000614c58600b6147fa565b9050614c64600b615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614cbd828261508d565b5050565b614ccc8484846148fc565b614cd88484848461524b565b614d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615ca36032913960400191505060405180910390fd5b50505050565b60606000821415614d7b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614e75565b600082905060005b60008214614da5578080600101915050600a8281614d9d57fe5b049150614d83565b60608167ffffffffffffffff81118015614dbe57600080fd5b506040519080825280601f01601f191660200182016040528015614df15781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614e6d57600a8481614e1257fe5b0660300160f81b82828060019003935081518110614e2c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614e6557fe5b049350614e00565b819450505050505b919050565b60006109c4614e89600c6147fa565b019050614e96600c615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614eef828261508d565b5050565b6000611194614f02600d6147fa565b019050614f0f600d615077565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550614f68828261508d565b5050565b6000614f7e836000018360001b615464565b905092915050565b505050565b6000614f9d836000018360001b615487565b905092915050565b6000614fb7836000018360001b61556f565b905092915050565b6000614feb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6155df565b90509392505050565b600081836000018054905011615055576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c816022913960400191505060405180910390fd5b82600001828154811061506457fe5b9060005260206000200154905092915050565b6001816000016000828254019250508190555050565b6150a78282604051806020016040528060008152506156bb565b5050565b6000808284600001805490501161510d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615e1e6022913960400191505060405180910390fd5b600084600001848154811061511e57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061520b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156151d05780820151818401526020810190506151b5565b50505050905090810190601f1680156151fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061521e57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600061526c8473ffffffffffffffffffffffffffffffffffffffff1661572c565b615279576001905061545c565b60606153e363150b7a0260e01b61528e614739565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156153125780820151818401526020810190506152f7565b50505050905090810190601f16801561533f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615ca3603291398773ffffffffffffffffffffffffffffffffffffffff1661573f9092919063ffffffff16565b905060008180602001905160208110156153fc57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461556357600060018203905060006001866000018054905003905060008660000182815481106154d257fe5b90600052602060002001549050808760000184815481106154ef57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061552757fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050615569565b60009150505b92915050565b600061557b8383615757565b6155d45782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506155d9565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415615686578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506156b4565b8285600001600183038154811061569957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b6156c5838361577a565b6156d2600084848461524b565b615727576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615ca36032913960400191505060405180910390fd5b505050565b600080823b905060008111915050919050565b606061574e848460008561596e565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561581d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6158268161471c565b15615899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6158a560008383614f86565b6158f681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614fa590919063ffffffff16565b5061590d81836002614fbf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060824710156159c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615d416026913960400191505060405180910390fd5b6159d28561572c565b615a44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310615a945780518252602082019150602081019050602083039250615a71565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615af6576040519150601f19603f3d011682016040523d82523d6000602084013e615afb565b606091505b5091509150615b0b828286615b17565b92505050949350505050565b60608315615b2757829050615bdc565b600083511115615b3a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615ba1578082015181840152602081019050615b86565b50505050905090810190601f168015615bce5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615c2457805160ff1916838001178555615c52565b82800160010185558215615c52579182015b82811115615c51578251825591602001919060010190615c36565b5b509050615c5f9190615c63565b5090565b5b80821115615c7c576000816000905550600101615c64565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573736578636565646564206d617820617661696c61626c6520746f207075726368617365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e6d696e74696e672074686973206d616e7920776f756c642065786365656420737570706c794552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220c242c57a6144497f51fcb26b29097bd74fa769956179e7ea1545a69c8eb0e1bb64736f6c63430007000033

Deployed Bytecode Sourcemap

74137:10333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42014:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57109:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59903:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59433:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;80484:187;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;80929:123;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;81058;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;84347:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60793:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58673:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;78172:642;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;81189:2152;;;:::i;:::-;;80802:121;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61169:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;84051:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74844:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;84199:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59199:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75238:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74960:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74788:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75455:81;;;;;;;;;;;;;:::i;:::-;;56865:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58492:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56582:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52228:148;;;;;;;;;;;;;:::i;:::-;;74737:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75347:102;;;;;;;;;;;;;:::i;:::-;;51577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57278:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78824:679;;;:::i;:::-;;83348:273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74901:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74459:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60196:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75548:635;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;80677:119;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61391:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74500:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;83908:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57453:800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76189:639;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;83627:273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75004:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60562:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;77486:680;;;:::i;:::-;;76834:642;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52531:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42014:150;42099:4;42123:20;:33;42144:11;42123:33;;;;;;;;;;;;;;;;;;;;;;;;;;;42116:40;;42014:150;;;:::o;57109:100::-;57163:13;57196:5;57189:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57109:100;:::o;59903:221::-;59979:7;60007:16;60015:7;60007;:16::i;:::-;59999:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60092:15;:24;60108:7;60092:24;;;;;;;;;;;;;;;;;;;;;60085:31;;59903:221;;;:::o;59433:404::-;59514:13;59530:23;59545:7;59530:14;:23::i;:::-;59514:39;;59578:5;59572:11;;:2;:11;;;;59564:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59658:5;59642:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;59667:44;59691:5;59698:12;:10;:12::i;:::-;59667:23;:44::i;:::-;59642:69;59634:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59808:21;59817:2;59821:7;59808:8;:21::i;:::-;59433:404;;;:::o;80484:187::-;80537:4;80639:24;:22;:24::i;:::-;80612;:22;:24::i;:::-;80586:23;:21;:23::i;:::-;80561:22;:20;:22::i;:::-;:48;:75;:102;80554:109;;80484:187;:::o;80929:123::-;80984:4;81008:36;:26;:34;:36::i;:::-;81001:43;;80929:123;:::o;81058:::-;81113:4;81137:36;:26;:34;:36::i;:::-;81130:43;;81058:123;:::o;84347:114::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84445:8:::1;84425:17;:28;;;;84347:114:::0;:::o;60793:305::-;60954:41;60973:12;:10;:12::i;:::-;60987:7;60954:18;:41::i;:::-;60946:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61062:28;61072:4;61078:2;61082:7;61062:9;:28::i;:::-;60793:305;;;:::o;58673:162::-;58770:7;58797:30;58821:5;58797:13;:20;58811:5;58797:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;58790:37;;58673:162;;;;:::o;78172:642::-;78288:4;78276:8;78249:35;;:24;:22;:24::i;:::-;:35;:43;;78241:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78391:17;;78379:8;78353:34;;:11;:23;78365:10;78353:23;;;;;;;;;;;;;;;;:34;:55;;78345:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78487:8;78463:32;;:21;;:32;78450:9;:45;;78442:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78540:8;;;;;;;;;;;78532:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78586:15;;;;;;;;;;;78585:16;78577:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78665:9;78651:23;;:10;:23;;;78643:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78715:9;78710:97;78734:8;78730:12;;:1;:12;78710:97;;;78764:31;78784:10;78764:19;:31::i;:::-;78744:3;;;;;;;78710:97;;;;78172:642;:::o;81189:2152::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81247:21:::1;81300:3;81295:2;81271:21;:26;:32;;;;;;81247:56;;81312:19;81363:3;81358:2;81334:21;:26;:32;;;;;;81312:54;;81382:16;81412:42;81404:56;;81468:13;81404:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81381:105;;;81501:11;81493:20;;;::::0;::::1;;81524:14;81552:42;81544:56;;81627:4;81622:2;81608:11;:16;:23;;;;;;81544:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81523:113;;;81651:9;81643:18;;;::::0;::::1;;81669:14;81697:42;81689:56;;81772:4;81767:2;81753:11;:16;:23;;;;;;81689:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81668:113;;;81796:9;81788:18;;;::::0;::::1;;81814:14;81842:42;81834:56;;81917:4;81912:2;81898:11;:16;:23;;;;;;81834:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81813:113;;;81941:9;81933:18;;;::::0;::::1;;81959:14;81987:42;81979:56;;82062:4;82057:2;82043:11;:16;:23;;;;;;81979:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81958:113;;;82086:9;82078:18;;;::::0;::::1;;82104:14;82132:42;82124:56;;82207:4;82202:2;82188:11;:16;:23;;;;;;82124:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82103:113;;;82231:9;82223:18;;;::::0;::::1;;82251:15;82280:42;82272:56;;82355:4;82350:2;82336:11;:16;:23;;;;;;82272:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82250:114;;;82379:10;82371:19;;;::::0;::::1;;82398:11;82423:42;82415:56;;82498:4;82493:2;82479:11;:16;:23;;;;;;82415:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82397:110;;;82522:6;82514:15;;;::::0;::::1;;82537:9;82560:42;82552:56;;82635:4;82630:2;82616:11;:16;:23;;;;;;82552:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82536:108;;;82659:4;82651:13;;;::::0;::::1;;82672:14;82700:42;82692:56;;82775:4;82770:2;82756:11;:16;:23;;;;;;82692:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82671:113;;;82799:9;82791:18;;;::::0;::::1;;82835;82867:42;82859:56;;82923:11;82859:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82834:105;;;82954:13;82946:22;;;::::0;::::1;;82993;83018:21;82993:46;;83049:13;83076:42;83068:56;;83154:3;83149:2;83132:14;:19;:25;;;;;;83068:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83048:114;;;83177:8;83169:17;;;::::0;::::1;;83194:13;83221:42;83213:56;;83299:3;83294:2;83277:14;:19;:25;;;;;;83213:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83193:114;;;83322:8;83314:17;;;::::0;::::1;;51868:1;;;;;;;;;;;;;;;;81189:2152::o:0;80802:121::-;80856:4;80880:35;:25;:33;:35::i;:::-;80873:42;;80802:121;:::o;61169:151::-;61273:39;61290:4;61296:2;61300:7;61273:39;;;;;;;;;;;;:16;:39::i;:::-;61169:151;;;:::o;84051:142::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84166:19:::1;84142:21;:43;;;;84051:142:::0;:::o;74844:50::-;;;;:::o;84199:142::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84314:19:::1;84290:21;:43;;;;84199:142:::0;:::o;59199:172::-;59274:7;59295:15;59316:22;59332:5;59316:12;:15;;:22;;;;:::i;:::-;59294:44;;;59356:7;59349:14;;;59199:172;;;:::o;75238:103::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75312:21:::1;75324:8;75312:11;:21::i;:::-;75238:103:::0;:::o;74960:37::-;;;;:::o;74788:49::-;;;;:::o;75455:81::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75520:8:::1;;;;;;;;;;;75519:9;75508:8;;:20;;;;;;;;;;;;;;;;;;75455:81::o:0;56865:177::-;56937:7;56964:70;56981:7;56964:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;56957:77;;56865:177;;;:::o;58492:97::-;58540:13;58573:8;58566:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58492:97;:::o;56582:221::-;56654:7;56699:1;56682:19;;:5;:19;;;;56674:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56766:29;:13;:20;56780:5;56766:20;;;;;;;;;;;;;;;:27;:29::i;:::-;56759:36;;56582:221;;;:::o;52228:148::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52335:1:::1;52298:40;;52319:6;;;;;;;;;;;52298:40;;;;;;;;;;;;52366:1;52349:6;;:19;;;;;;;;;;;;;;;;;;52228:148::o:0;74737:44::-;;;;:::o;75347:102::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75426:15:::1;;;;;;;;;;;75425:16;75407:15;;:34;;;;;;;;;;;;;;;;;;75347:102::o:0;51577:87::-;51623:7;51650:6;;;;;;;;;;;51643:13;;51577:87;:::o;57278:104::-;57334:13;57367:7;57360:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57278:104;:::o;78824:679::-;78932:4;78927:1;78900:24;:22;:24::i;:::-;:28;:36;;78892:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79009:21;;78996:9;:34;;78988:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79079:8;;;;;;;;;;;79071:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79128:15;;;;;;;;;;;79120:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79192:15;;;;;;;;;;;79188:137;;;79237:20;:32;79258:10;79237:32;;;;;;;;;;;;;;;;;;;;;;;;;79232:37;;:1;:37;;79224:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79188:137;79362:9;79348:23;;:10;:23;;;79340:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79447:1;79411:20;:32;79432:10;79411:32;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79464:31;79484:10;79464:19;:31::i;:::-;78824:679::o;83348:273::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83481:9:::1;83476:138;83500:9;;:16;;83496:1;:20;83476:138;;;83575:27;83538:20;:34;83559:9;;83569:1;83559:12;;;;;;;;;;;;;;;83538:34;;;;;;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;83518:3;;;;;;;83476:138;;;;83348:273:::0;;;:::o;74901:50::-;;;;:::o;74459:34::-;;;;;;;;;;;;;:::o;60196:295::-;60311:12;:10;:12::i;:::-;60299:24;;:8;:24;;;;60291:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60411:8;60366:18;:32;60385:12;:10;:12::i;:::-;60366:32;;;;;;;;;;;;;;;:42;60399:8;60366:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;60464:8;60435:48;;60450:12;:10;:12::i;:::-;60435:48;;;60474:8;60435:48;;;;;;;;;;;;;;;;;;;;60196:295;;:::o;75548:635::-;75662:4;75650:8;75625:22;:20;:22::i;:::-;:33;:41;;75617:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75765:17;;75753:8;75727:11;:23;75739:10;75727:23;;;;;;;;;;;;;;;;:34;:55;;75719:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75859:8;75837:19;;:30;75824:9;:43;;75816:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75912:8;;;;;;;;;;;75904:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75958:15;;;;;;;;;;;75957:16;75949:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76037:9;76023:23;;:10;:23;;;76015:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76086:9;76081:95;76105:8;76101:1;:12;76081:95;;;76135:29;76153:10;76135:17;:29::i;:::-;76115:3;;;;;;;76081:95;;;;75548:635;:::o;80677:119::-;80730:4;80754:34;:24;:32;:34::i;:::-;80747:41;;80677:119;:::o;61391:285::-;61523:41;61542:12;:10;:12::i;:::-;61556:7;61523:18;:41::i;:::-;61515:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61629:39;61643:4;61649:2;61653:7;61662:5;61629:13;:39::i;:::-;61391:285;;;;:::o;74500:28::-;;;;;;;;;;;;;:::o;83908:137::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84019:18:::1;83996:20;:41;;;;83908:137:::0;:::o;57453:800::-;57526:13;57560:16;57568:7;57560;:16::i;:::-;57552:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57641:23;57667:10;:19;57678:7;57667:19;;;;;;;;;;;57641:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57697:18;57718:9;:7;:9::i;:::-;57697:30;;57825:1;57809:4;57803:18;:23;57799:72;;;57850:9;57843:16;;;;;;57799:72;58001:1;57981:9;57975:23;:27;57971:108;;;58050:4;58056:9;58033:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58019:48;;;;;;57971:108;58210:4;58216:18;:7;:16;:18::i;:::-;58193:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58179:66;;;;57453:800;;;;:::o;76189:639::-;76305:4;76293:8;76267:23;:21;:23::i;:::-;:34;:42;;76259:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76408:17;;76396:8;76370:11;:23;76382:10;76370:23;;;;;;;;;;;;;;;;:34;:55;;76362:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76503:8;76480:20;;:31;76467:9;:44;;76459:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76556:8;;;;;;;;;;;76548:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76602:15;;;;;;;;;;;76601:16;76593:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76681:9;76667:23;;:10;:23;;;76659:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76730:9;76725:96;76749:8;76745:1;:12;76725:96;;;76779:30;76798:10;76779:18;:30::i;:::-;76759:3;;;;;;;76725:96;;;;76189:639;:::o;83627:273::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83760:9:::1;83755:138;83779:9;;:16;;83775:1;:20;83755:138;;;83854:27;83817:20;:34;83838:9;;83848:1;83838:12;;;;;;;;;;;;;;;83817:34;;;;;;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;83797:3;;;;;;;83755:138;;;;83627:273:::0;;;:::o;75004:40::-;75040:4;75004:40;:::o;60562:164::-;60659:4;60683:18;:25;60702:5;60683:25;;;;;;;;;;;;;;;:35;60709:8;60683:35;;;;;;;;;;;;;;;;;;;;;;;;;60676:42;;60562:164;;;;:::o;77486:680::-;77594:4;77589:1;77562:24;:22;:24::i;:::-;:28;:36;;77554:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77676:21;;77663:9;:34;;77655:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77746:8;;;;;;;;;;;77738:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77795:15;;;;;;;;;;;77787:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77859:15;;;;;;;;;;;77855:136;;;77904:20;:32;77925:10;77904:32;;;;;;;;;;;;;;;;;;;;;;;;;77899:37;;:1;:37;;77891:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77855:136;78027:9;78013:23;;:10;:23;;;78005:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78111:1;78075:20;:32;78096:10;78075:32;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78127:31;78147:10;78127:19;:31::i;:::-;77486:680::o;76834:642::-;76952:4;76940:8;76913:24;:22;:24::i;:::-;:35;:43;;76905:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77054:17;;77042:8;77016:11;:23;77028:10;77016:23;;;;;;;;;;;;;;;;:34;:55;;77008:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77150:8;77126:21;;:32;77113:9;:45;;77105:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77203:8;;;;;;;;;;;77195:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77249:15;;;;;;;;;;;77248:16;77240:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77328:9;77314:23;;:10;:23;;;77306:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77377:9;77372:97;77396:8;77392:1;:12;77372:97;;;77426:31;77446:10;77426:19;:31::i;:::-;77406:3;;;;;;;77372:97;;;;76834:642;:::o;52531:244::-;51808:12;:10;:12::i;:::-;51797:23;;:7;:5;:7::i;:::-;:23;;;51789:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52640:1:::1;52620:22;;:8;:22;;;;52612:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52730:8;52701:38;;52722:6;;;;;;;;;;;52701:38;;;;;;;;;;;;52759:8;52750:6;;:17;;;;;;;;;;;;;;;;;;52531:244:::0;:::o;63143:127::-;63208:4;63232:30;63254:7;63232:12;:21;;:30;;;;:::i;:::-;63225:37;;63143:127;;;:::o;50059:106::-;50112:15;50147:10;50140:17;;50059:106;:::o;69050:183::-;69143:2;69116:15;:24;69132:7;69116:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69199:7;69195:2;69161:46;;69170:23;69185:7;69170:14;:23::i;:::-;69161:46;;;;;;;;;;;;69050:183;;:::o;71002:114::-;71067:7;71094;:14;;;71087:21;;71002:114;;;:::o;63437:355::-;63530:4;63555:16;63563:7;63555;:16::i;:::-;63547:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63631:13;63647:23;63662:7;63647:14;:23::i;:::-;63631:39;;63700:5;63689:16;;:7;:16;;;:51;;;;63733:7;63709:31;;:20;63721:7;63709:11;:20::i;:::-;:31;;;63689:51;:94;;;;63744:39;63768:5;63775:7;63744:23;:39::i;:::-;63689:94;63681:103;;;63437:355;;;;:::o;66573:599::-;66698:4;66671:31;;:23;66686:7;66671:14;:23::i;:::-;:31;;;66663:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66799:1;66785:16;;:2;:16;;;;66777:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66855:39;66876:4;66882:2;66886:7;66855:20;:39::i;:::-;66959:29;66976:1;66980:7;66959:8;:29::i;:::-;67001:35;67028:7;67001:13;:19;67015:4;67001:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;67047:30;67069:7;67047:13;:17;67061:2;67047:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;67090:29;67107:7;67116:2;67090:12;:16;;:29;;;;;:::i;:::-;;67156:7;67152:2;67137:27;;67146:4;67137:27;;;;;;;;;;;;66573:599;;;:::o;23335:137::-;23406:7;23441:22;23445:3;:10;;23457:5;23441:3;:22::i;:::-;23433:31;;23426:38;;23335:137;;;;:::o;80235:241::-;80296:15;80353:4;80314:36;:26;:34;:36::i;:::-;:43;80296:61;;80368:38;:26;:36;:38::i;:::-;80418:11;:15;80430:2;80418:15;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;80446:22;80456:2;80460:7;80446:9;:22::i;:::-;80235:241;;:::o;12204:236::-;12284:7;12293;12314:11;12327:13;12344:22;12348:3;:10;;12360:5;12344:3;:22::i;:::-;12313:53;;;;12393:3;12385:12;;12423:5;12415:14;;12377:55;;;;;;12204:236;;;;;:::o;67773:100::-;67857:8;67846;:19;;;;;;;;;;;;:::i;:::-;;67773:100;:::o;13490:213::-;13597:7;13648:44;13653:3;:10;;13673:3;13665:12;;13679;13648:4;:44::i;:::-;13640:53;;13617:78;;13490:213;;;;;:::o;22877:114::-;22937:7;22964:19;22972:3;:10;;22964:7;:19::i;:::-;22957:26;;22877:114;;;:::o;79511:227::-;79570:15;79588:34;:24;:32;:34::i;:::-;79570:52;;79633:36;:24;:34;:36::i;:::-;79680:11;:15;79692:2;79680:15;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;79708:22;79718:2;79722:7;79708:9;:22::i;:::-;79511:227;;:::o;62558:272::-;62672:28;62682:4;62688:2;62692:7;62672:9;:28::i;:::-;62719:48;62742:4;62748:2;62752:7;62761:5;62719:22;:48::i;:::-;62711:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62558:272;;;;:::o;2871:746::-;2927:13;3157:1;3148:5;:10;3144:53;;;3175:10;;;;;;;;;;;;;;;;;;;;;3144:53;3207:12;3222:5;3207:20;;3238:14;3263:78;3278:1;3270:4;:9;3263:78;;3296:8;;;;;;;3327:2;3319:10;;;;;;;;;3263:78;;;3351:19;3383:6;3373:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3351:39;;3401:13;3426:1;3417:6;:10;3401:26;;3445:5;3438:12;;3461:117;3476:1;3468:4;:9;3461:117;;3537:2;3530:4;:9;;;;;;3525:2;:14;3512:29;;3494:6;3501:7;;;;;;;3494:15;;;;;;;;;;;:47;;;;;;;;;;;3564:2;3556:10;;;;;;;;;3461:117;;;3602:6;3588:21;;;;;;2871:746;;;;:::o;79744:238::-;79804:15;79860:4;79822:35;:25;:33;:35::i;:::-;:42;79804:60;;79875:37;:25;:35;:37::i;:::-;79924:11;:15;79936:2;79924:15;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;79952:22;79962:2;79966:7;79952:9;:22::i;:::-;79744:238;;:::o;79988:241::-;80049:15;80106:4;80067:36;:26;:34;:36::i;:::-;:43;80049:61;;80121:38;:26;:36;:38::i;:::-;80171:11;:15;80183:2;80171:15;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;80199:22;80209:2;80213:7;80199:9;:22::i;:::-;79988:241;;:::o;11503:151::-;11587:4;11611:35;11621:3;:10;;11641:3;11633:12;;11611:9;:35::i;:::-;11604:42;;11503:151;;;;:::o;69846:93::-;;;;:::o;22422:137::-;22492:4;22516:35;22524:3;:10;;22544:5;22536:14;;22516:7;:35::i;:::-;22509:42;;22422:137;;;;:::o;22115:131::-;22182:4;22206:32;22211:3;:10;;22231:5;22223:14;;22206:4;:32::i;:::-;22199:39;;22115:131;;;;:::o;10926:185::-;11015:4;11039:64;11044:3;:10;;11064:3;11056:12;;11094:5;11078:23;;11070:32;;11039:4;:64::i;:::-;11032:71;;10926:185;;;;;:::o;18373:204::-;18440:7;18489:5;18468:3;:11;;:18;;;;:26;18460:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18551:3;:11;;18563:5;18551:18;;;;;;;;;;;;;;;;18544:25;;18373:204;;;;:::o;71124:181::-;71296:1;71278:7;:14;;;:19;;;;;;;;;;;71124:181;:::o;64135:110::-;64211:26;64221:2;64225:7;64211:26;;;;;;;;;;;;:9;:26::i;:::-;64135:110;;:::o;8786:279::-;8853:7;8862;8912:5;8890:3;:12;;:19;;;;:27;8882:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8969:22;8994:3;:12;;9007:5;8994:19;;;;;;;;;;;;;;;;;;8969:44;;9032:5;:10;;;9044:5;:12;;;9024:33;;;;;8786:279;;;;;:::o;10283:319::-;10377:7;10397:16;10416:3;:12;;:17;10429:3;10416:17;;;;;;;;;;;;10397:36;;10464:1;10452:8;:13;;10467:12;10444:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10534:3;:12;;10558:1;10547:8;:12;10534:26;;;;;;;;;;;;;;;;;;:33;;;10527:40;;;10283:319;;;;;:::o;17920:109::-;17976:7;18003:3;:11;;:18;;;;17996:25;;17920:109;;;:::o;68438:604::-;68559:4;68586:15;:2;:13;;;:15::i;:::-;68581:60;;68625:4;68618:11;;;;68581:60;68651:23;68677:252;68730:45;;;68790:12;:10;:12::i;:::-;68817:4;68836:7;68858:5;68693:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68677:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;68651:278;;68940:13;68967:10;68956:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68940:48;;53579:10;69017:16;;69007:26;;;:6;:26;;;;68999:35;;;;68438:604;;;;;;;:::o;8101:125::-;8172:4;8217:1;8196:3;:12;;:17;8209:3;8196:17;;;;;;;;;;;;:22;;8189:29;;8101:125;;;;:::o;16075:1544::-;16141:4;16259:18;16280:3;:12;;:19;16293:5;16280:19;;;;;;;;;;;;16259:40;;16330:1;16316:10;:15;16312:1300;;16678:21;16715:1;16702:10;:14;16678:38;;16731:17;16772:1;16751:3;:11;;:18;;;;:22;16731:42;;17018:17;17038:3;:11;;17050:9;17038:22;;;;;;;;;;;;;;;;17018:42;;17184:9;17155:3;:11;;17167:13;17155:26;;;;;;;;;;;;;;;:38;;;;17303:1;17287:13;:17;17261:3;:12;;:23;17274:9;17261:23;;;;;;;;;;;:43;;;;17413:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;17508:3;:12;;:19;17521:5;17508:19;;;;;;;;;;;17501:26;;;17551:4;17544:11;;;;;;;;16312:1300;17595:5;17588:12;;;16075:1544;;;;;:::o;15485:414::-;15548:4;15570:21;15580:3;15585:5;15570:9;:21::i;:::-;15565:327;;15608:3;:11;;15625:5;15608:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15791:3;:11;;:18;;;;15769:3;:12;;:19;15782:5;15769:19;;;;;;;;;;;:40;;;;15831:4;15824:11;;;;15565:327;15875:5;15868:12;;15485:414;;;;;:::o;5601:692::-;5677:4;5793:16;5812:3;:12;;:17;5825:3;5812:17;;;;;;;;;;;;5793:36;;5858:1;5846:8;:13;5842:444;;;5913:3;:12;;5931:38;;;;;;;;5948:3;5931:38;;;;5961:5;5931:38;;;5913:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6128:3;:12;;:19;;;;6108:3;:12;;:17;6121:3;6108:17;;;;;;;;;;;:39;;;;6169:4;6162:11;;;;;5842:444;6242:5;6206:3;:12;;6230:1;6219:8;:12;6206:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;6269:5;6262:12;;;5601:692;;;;;;:::o;64472:250::-;64568:18;64574:2;64578:7;64568:5;:18::i;:::-;64605:54;64636:1;64640:2;64644:7;64653:5;64605:22;:54::i;:::-;64597:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64472:250;;;:::o;24306:422::-;24366:4;24574:12;24685:7;24673:20;24665:28;;24719:1;24712:4;:8;24705:15;;;24306:422;;;:::o;27224:195::-;27327:12;27359:52;27381:6;27389:4;27395:1;27398:12;27359:21;:52::i;:::-;27352:59;;27224:195;;;;;:::o;17705:129::-;17778:4;17825:1;17802:3;:12;;:19;17815:5;17802:19;;;;;;;;;;;;:24;;17795:31;;17705:129;;;;:::o;65058:404::-;65152:1;65138:16;;:2;:16;;;;65130:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65211:16;65219:7;65211;:16::i;:::-;65210:17;65202:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65273:45;65302:1;65306:2;65310:7;65273:20;:45::i;:::-;65331:30;65353:7;65331:13;:17;65345:2;65331:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65374:29;65391:7;65400:2;65374:12;:16;;:29;;;;;:::i;:::-;;65446:7;65442:2;65421:33;;65438:1;65421:33;;;;;;;;;;;;65058:404;;:::o;28276:530::-;28403:12;28461:5;28436:21;:30;;28428:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28528:18;28539:6;28528:10;:18::i;:::-;28520:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28654:12;28668:23;28695:6;:11;;28715:5;28723:4;28695:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28653:75;;;;28746:52;28764:7;28773:10;28785:12;28746:17;:52::i;:::-;28739:59;;;;28276:530;;;;;;:::o;30816:742::-;30931:12;30960:7;30956:595;;;30991:10;30984:17;;;;30956:595;31125:1;31105:10;:17;:21;31101:439;;;31368:10;31362:17;31429:15;31416:10;31412:2;31408:19;31401:44;31316:148;31511:12;31504:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30816:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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