ETH Price: $3,387.69 (+1.05%)
Gas: 5 Gwei

Token

GalaxyFightClub (GFC)
 

Overview

Max Total Supply

9,994 GFC

Holders

2,974

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
weddingminister.eth
Balance
1 GFC
0xb78e3e8bd36b3228322d0a9d3271b5fbb7997fa3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The first cross-IP PvP fighting game where holders of different NFT collections can log-in and battle each other.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GalaxyFightClub

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 9 of 17: GalaxyFightClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721.sol";

import "./Ownable.sol";

contract GalaxyFightClub is ERC721, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_FIGHTERS = 9994;
    uint256 public reserved = 200;
    uint256 public presaleSupply;
    uint256 public presalePrice = 0.08 ether;
    uint256 public tier3Price = 0.1 ether;
    uint256 public tier2Price = 0.09 ether;
    uint256 public tier1Price = 0.08 ether;
    uint256 public MINT_CAP = 21;
    address vault = 0x18632eE94d6395e0cd1ea6c7Ee702712BAf7C6D9; //address to withdraw to
    
    bool public presale;
    bool public drop;
    bool public revealed;

    string public defaultURI;

    constructor(string memory _defaultURI, uint256 _presaleSupply) ERC721('GalaxyFightClub', 'GFC')
    {
        defaultURI = _defaultURI;
        presaleSupply = _presaleSupply;
    }

    function _mintFighter(uint256 num) internal returns (bool) {
        for (uint256 i = 0; i < num; i++) {
            uint256 tokenIndex = totalSupply();
            if (tokenIndex < MAX_FIGHTERS) _safeMint(_msgSender(), tokenIndex);
        }
        return true;
    }

    function presaleFighter(uint256 num) public payable returns (bool) {
        uint256 currentSupply = totalSupply();
        require(presale, 'The pre-sale have NOT started, please be patient.');
        require(num < MINT_CAP,'You are trying to mint too many at a time');
        require(currentSupply + num < presaleSupply, 'Exceeded pre-sale supply');
        require(msg.value >= presalePrice * num,'Ether value sent is not sufficient');
        return _mintFighter(num);
    }

    function saleFighter(uint256 num) public payable returns (bool) {
        uint256 currentSupply = totalSupply();
        require(drop, 'the drop have NOT started, please be patient.');
        require(num < MINT_CAP,'You are trying to mint too many at a time');
        require(currentSupply + num < MAX_FIGHTERS - reserved, 'Exceeded total supply');

        if(num < 3){
            require(msg.value >= tier3Price * num,'Ether value sent is not sufficient');
        }else if(num < 10){
            require(msg.value >= tier2Price * num,'Ether value sent is not sufficient');
        }else{
            require(msg.value >= tier1Price * num,'Ether value sent is not sufficient');
        }
        return _mintFighter(num);
    }

    function tokensOfOwner(address _owner)external view returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 i; i < tokenCount; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory)
    {
        require(tokenId < totalSupply(), "Token not exist.");
 
        // show default image before reveal
        if (!revealed) {
            return defaultURI;
        }

        string memory _tokenURI = _tokenUriMapping[tokenId];

        //return tokenURI if it is set
        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }

        //If tokenURI is not set, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(baseURI(), tokenId.toString()));
    }

    /*
     * Only the owner can do these things
     */
    function toggleDrop() public onlyOwner {
        drop = !drop;
    }

    function togglePresale() public onlyOwner {
        presale = !presale;
    }

    function toggleReveal() public onlyOwner {
        revealed = !revealed;
    }

    function setDefaultURI(string memory _defaultURI) public onlyOwner {
        defaultURI = _defaultURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _setBaseURI(_newBaseURI);
    }

    function setTokenURI(uint256 tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(tokenId, _tokenURI);
    }

    function setPresaleSupply(uint256 _presaleSupply) public onlyOwner {
        presaleSupply = _presaleSupply;
    }

    function setPreSalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }

    function setTier3Price(uint256 _newPrice) public onlyOwner {
        tier3Price = _newPrice;
    }

    function setTier2Price(uint256 _newPrice) public onlyOwner {
        tier2Price = _newPrice;
    }

    function setTier1Price(uint256 _newPrice) public onlyOwner {
        tier1Price = _newPrice;
    }

    function setMintCap(uint256 _mintCap) public onlyOwner {
        MINT_CAP = _mintCap;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(vault).send(address(this).balance));
    }

    function reserve(uint256 num) public onlyOwner {
        require(num <= reserved, "Exceeds reserved fighter supply" );
        for (uint256 i; i < num; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
        reserved -= num;
    }
}

File 1 of 17: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^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;
        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");

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

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

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

        (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 17: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 17: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EnumerableSet.sol";

/**
 * @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 {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // 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 Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;
        mapping(bytes32 => bytes32) _values;
    }

    /**
     * @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) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @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) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @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._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._keys.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) {
        bytes32 key = map._keys.at(index);
        return (key, map._values[key]);
    }

    /**
     * @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) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (_contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @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) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @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) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // 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 4 of 17: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^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;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        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 5 of 17: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 17: ERC165Storage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC165.sol";

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return super.supportsInterface(interfaceId) || _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 7 of 17: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./IERC721.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Receiver.sol";
import "./ERC165Storage.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./EnumerableSet.sol";
import "./EnumerableMap.sol";
import "./Strings.sol";

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165Storage, 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) internal _tokenUriMapping;

    // 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_) {
        _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 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 override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenUriMapping[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).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(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.toString()));
    }

    /**
    * @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 returns (string memory) {
        return _baseURI;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view 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 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 = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || 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 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 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 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 returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || 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 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(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        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");
        _tokenUriMapping[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(ownerOf(tokenId), to, tokenId);
    }

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

File 8 of 17: ERC721Holder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721Receiver.sol";

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

File 10 of 17: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^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 11 of 17: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 12 of 17: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 13 of 17: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 14 of 17: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^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 15 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 16 of 17: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 17 of 17: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"uint256","name":"_presaleSupply","type":"uint256"}],"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":[],"name":"MAX_FIGHTERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"presaleFighter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"num","type":"uint256"}],"name":"saleFighter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintCap","type":"uint256"}],"name":"setMintCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleSupply","type":"uint256"}],"name":"setPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTier1Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTier2Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTier3Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260c8600c5567011c37937e080000600e5567016345785d8a0000600f5567013fbe85edc9000060105567011c37937e08000060115560156012557318632ee94d6395e0cd1ea6c7ee702712baf7c6d9601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a057600080fd5b50604051620057fe380380620057fe8339818101604052810190620000c69190620004e1565b6040518060400160405280600f81526020017f47616c6178794669676874436c756200000000000000000000000000000000008152506040518060400160405280600381526020017f474643000000000000000000000000000000000000000000000000000000000081525081600790805190602001906200014a9291906200039c565b508060089080519060200190620001639291906200039c565b506200017c6380ac58cd60e01b620001f660201b60201c565b62000194635b5e139f60e01b620001f660201b60201c565b620001ac63780e9d6360e01b620001f660201b60201c565b5050620001ce620001c2620002ce60201b60201c565b620002d660201b60201c565b8160149080519060200190620001e69291906200039c565b5080600d81905550505062000772565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000259906200056e565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003aa9062000640565b90600052602060002090601f016020900481019282620003ce57600085556200041a565b82601f10620003e957805160ff19168380011785556200041a565b828001600101855582156200041a579182015b8281111562000419578251825591602001919060010190620003fc565b5b5090506200042991906200042d565b5090565b5b80821115620004485760008160009055506001016200042e565b5090565b6000620004636200045d84620005b9565b62000590565b9050828152602081018484840111156200048257620004816200070f565b5b6200048f8482856200060a565b509392505050565b600082601f830112620004af57620004ae6200070a565b5b8151620004c18482602086016200044c565b91505092915050565b600081519050620004db8162000758565b92915050565b60008060408385031215620004fb57620004fa62000719565b5b600083015167ffffffffffffffff8111156200051c576200051b62000714565b5b6200052a8582860162000497565b92505060206200053d85828601620004ca565b9150509250929050565b600062000556601c83620005ef565b915062000563826200072f565b602082019050919050565b60006020820190508181036000830152620005898162000547565b9050919050565b60006200059c620005af565b9050620005aa828262000676565b919050565b6000604051905090565b600067ffffffffffffffff821115620005d757620005d6620006db565b5b620005e2826200071e565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200062a5780820151818401526020810190506200060d565b838111156200063a576000848401525b50505050565b600060028204905060018216806200065957607f821691505b6020821081141562000670576200066f620006ac565b5b50919050565b62000681826200071e565b810181811067ffffffffffffffff82111715620006a357620006a2620006db565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b620007638162000600565b81146200076f57600080fd5b50565b61507c80620007826000396000f3fe6080604052600436106102ad5760003560e01c806370a0823111610175578063b3a196e9116100dc578063da1b9e0811610095578063f751cd8f1161006f578063f751cd8f14610a5c578063fb8b51a014610a87578063fdea8e0b14610ab2578063fe60d12c14610add576102ad565b8063da1b9e08146109cd578063e985e9c5146109f6578063f2fde38b14610a33576102ad565b8063b3a196e9146108ba578063b4269a16146108e5578063b88d4fde1461090e578063b96502cb14610937578063c87b56dd14610960578063d3f7e18d1461099d576102ad565b80638da5cb5b1161012e5780638da5cb5b146107c957806395d89b41146107f457806398f1312e1461081f5780639be0fc751461084a578063a22cb46514610861578063a8abf6291461088a576102ad565b806370a08231146106dc578063715018a6146107195780637d7eee4214610730578063819b25ba146107595780638462151c14610782578063853828b6146107bf576102ad565b80634018d3461161021957806351830227116101d257806351830227146105e057806355f804b31461060b5780635b8ad429146106345780635e37af3e1461064b5780636352211e146106745780636c0360eb146106b1576102ad565b80634018d346146104d25780634070a0c9146104fb57806342842e0e14610524578063439d8f4e1461054d5780634a079215146105785780634f6ccce7146105a3576102ad565b806318160ddd1161026b57806318160ddd146103d457806323b872dd146103ff578063291cbb9c146104285780632f745c591461045357806334393743146104905780633a367a67146104a7576102ad565b80620e7fa8146102b257806301ffc9a7146102dd57806306fdde031461031a578063081812fc14610345578063095ea7b314610382578063162094c4146103ab575b600080fd5b3480156102be57600080fd5b506102c7610b08565b6040516102d4919061441e565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906139e0565b610b0e565b60405161031191906140c1565b60405180910390f35b34801561032657600080fd5b5061032f610b85565b60405161033c91906140dc565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613a83565b610c17565b6040516103799190614038565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906139a0565b610c9c565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613ab0565b610db4565b005b3480156103e057600080fd5b506103e9610e3e565b6040516103f6919061441e565b60405180910390f35b34801561040b57600080fd5b506104266004803603810190610421919061388a565b610e4f565b005b34801561043457600080fd5b5061043d610eaf565b60405161044a919061441e565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906139a0565b610eb5565b604051610487919061441e565b60405180910390f35b34801561049c57600080fd5b506104a5610f10565b005b3480156104b357600080fd5b506104bc610fb8565b6040516104c991906140dc565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613a83565b611046565b005b34801561050757600080fd5b50610522600480360381019061051d9190613a83565b6110cc565b005b34801561053057600080fd5b5061054b6004803603810190610546919061388a565b611152565b005b34801561055957600080fd5b50610562611172565b60405161056f919061441e565b60405180910390f35b34801561058457600080fd5b5061058d611178565b60405161059a919061441e565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613a83565b61117e565b6040516105d7919061441e565b60405180910390f35b3480156105ec57600080fd5b506105f56111a1565b60405161060291906140c1565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613a3a565b6111b4565b005b34801561064057600080fd5b5061064961123c565b005b34801561065757600080fd5b50610672600480360381019061066d9190613a83565b6112e4565b005b34801561068057600080fd5b5061069b60048036038101906106969190613a83565b61136a565b6040516106a89190614038565b60405180910390f35b3480156106bd57600080fd5b506106c66113a1565b6040516106d391906140dc565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe919061381d565b611433565b604051610710919061441e565b60405180910390f35b34801561072557600080fd5b5061072e6114f2565b005b34801561073c57600080fd5b5061075760048036038101906107529190613a83565b61157a565b005b34801561076557600080fd5b50610780600480360381019061077b9190613a83565b611600565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061381d565b611713565b6040516107b6919061409f565b60405180910390f35b6107c761181d565b005b3480156107d557600080fd5b506107de6118fb565b6040516107eb9190614038565b60405180910390f35b34801561080057600080fd5b50610809611925565b60405161081691906140dc565b60405180910390f35b34801561082b57600080fd5b506108346119b7565b604051610841919061441e565b60405180910390f35b34801561085657600080fd5b5061085f6119bd565b005b34801561086d57600080fd5b5061088860048036038101906108839190613960565b611a65565b005b6108a4600480360381019061089f9190613a83565b611be6565b6040516108b191906140c1565b60405180910390f35b3480156108c657600080fd5b506108cf611d36565b6040516108dc919061441e565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613a83565b611d3c565b005b34801561091a57600080fd5b50610935600480360381019061093091906138dd565b611dc2565b005b34801561094357600080fd5b5061095e60048036038101906109599190613a83565b611e24565b005b34801561096c57600080fd5b5061098760048036038101906109829190613a83565b611eaa565b60405161099491906140dc565b60405180910390f35b6109b760048036038101906109b29190613a83565b612088565b6040516109c491906140c1565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190613a3a565b6122a3565b005b348015610a0257600080fd5b50610a1d6004803603810190610a18919061384a565b612339565b604051610a2a91906140c1565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a55919061381d565b6123cd565b005b348015610a6857600080fd5b50610a716124c5565b604051610a7e91906140c1565b60405180910390f35b348015610a9357600080fd5b50610a9c6124d8565b604051610aa9919061441e565b60405180910390f35b348015610abe57600080fd5b50610ac76124de565b604051610ad491906140c1565b60405180910390f35b348015610ae957600080fd5b50610af26124f1565b604051610aff919061441e565b60405180910390f35b600e5481565b6000610b19826124f7565b80610b7e5750600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff165b9050919050565b606060078054610b9490614712565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc090614712565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c2282612561565b610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906142be565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca78261136a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061435e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3761257e565b73ffffffffffffffffffffffffffffffffffffffff161480610d665750610d6581610d6061257e565b612339565b5b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061423e565b60405180910390fd5b610daf8383612586565b505050565b610dbc61257e565b73ffffffffffffffffffffffffffffffffffffffff16610dda6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906142fe565b60405180910390fd5b610e3a828261263f565b5050565b6000610e4a60026126b3565b905090565b610e60610e5a61257e565b826126c8565b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061439e565b60405180910390fd5b610eaa8383836127a6565b505050565b61270a81565b6000610f0882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129bd90919063ffffffff16565b905092915050565b610f1861257e565b73ffffffffffffffffffffffffffffffffffffffff16610f366118fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906142fe565b60405180910390fd5b601360149054906101000a900460ff1615601360146101000a81548160ff021916908315150217905550565b60148054610fc590614712565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff190614712565b801561103e5780601f106110135761010080835404028352916020019161103e565b820191906000526020600020905b81548152906001019060200180831161102157829003601f168201915b505050505081565b61104e61257e565b73ffffffffffffffffffffffffffffffffffffffff1661106c6118fb565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906142fe565b60405180910390fd5b8060118190555050565b6110d461257e565b73ffffffffffffffffffffffffffffffffffffffff166110f26118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906142fe565b60405180910390fd5b8060128190555050565b61116d83838360405180602001604052806000815250611dc2565b505050565b600f5481565b60105481565b6000806111958360026129d790919063ffffffff16565b50905080915050919050565b601360169054906101000a900460ff1681565b6111bc61257e565b73ffffffffffffffffffffffffffffffffffffffff166111da6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906142fe565b60405180910390fd5b61123981612a03565b50565b61124461257e565b73ffffffffffffffffffffffffffffffffffffffff166112626118fb565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906142fe565b60405180910390fd5b601360169054906101000a900460ff1615601360166101000a81548160ff021916908315150217905550565b6112ec61257e565b73ffffffffffffffffffffffffffffffffffffffff1661130a6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142fe565b60405180910390fd5b80600f8190555050565b600061139a8260405180606001604052806029815260200161501e602991396002612a1d9092919063ffffffff16565b9050919050565b6060600a80546113b090614712565b80601f01602080910402602001604051908101604052809291908181526020018280546113dc90614712565b80156114295780601f106113fe57610100808354040283529160200191611429565b820191906000526020600020905b81548152906001019060200180831161140c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b9061425e565b60405180910390fd5b6114eb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a3c565b9050919050565b6114fa61257e565b73ffffffffffffffffffffffffffffffffffffffff166115186118fb565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906142fe565b60405180910390fd5b6115786000612a51565b565b61158261257e565b73ffffffffffffffffffffffffffffffffffffffff166115a06118fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed906142fe565b60405180910390fd5b80600e8190555050565b61160861257e565b73ffffffffffffffffffffffffffffffffffffffff166116266118fb565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906142fe565b60405180910390fd5b600c548111156116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906143de565b60405180910390fd5b60005b818110156116f65760006116d6610e3e565b90506116e23382612b17565b5080806116ee90614775565b9150506116c4565b5080600c60008282546117099190614628565b9250508190555050565b6060600061172083611433565b9050600081141561177d57600067ffffffffffffffff811115611746576117456148da565b5b6040519080825280602002602001820160405280156117745781602001602082028036833780820191505090505b50915050611818565b60008167ffffffffffffffff811115611799576117986148da565b5b6040519080825280602002602001820160405280156117c75781602001602082028036833780820191505090505b50905060005b82811015611811576117df8582610eb5565b8282815181106117f2576117f16148ab565b5b602002602001018181525050808061180990614775565b9150506117cd565b5080925050505b919050565b61182561257e565b73ffffffffffffffffffffffffffffffffffffffff166118436118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906142fe565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118f957600080fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461193490614712565b80601f016020809104026020016040519081016040528092919081815260200182805461196090614712565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b5050505050905090565b60125481565b6119c561257e565b73ffffffffffffffffffffffffffffffffffffffff166119e36118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a30906142fe565b60405180910390fd5b601360159054906101000a900460ff1615601360156101000a81548160ff021916908315150217905550565b611a6d61257e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906141be565b60405180910390fd5b8060066000611ae861257e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9561257e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bda91906140c1565b60405180910390a35050565b600080611bf1610e3e565b9050601360149054906101000a900460ff16611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061437e565b60405180910390fd5b6012548310611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d906143fe565b60405180910390fd5b600d548382611c959190614547565b10611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906140fe565b60405180910390fd5b82600e54611ce391906145ce565b341015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c9061429e565b60405180910390fd5b611d2e83612b35565b915050919050565b600d5481565b611d4461257e565b73ffffffffffffffffffffffffffffffffffffffff16611d626118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906142fe565b60405180910390fd5b8060108190555050565b611dd3611dcd61257e565b836126c8565b611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e099061439e565b60405180910390fd5b611e1e84848484612b8b565b50505050565b611e2c61257e565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e97906142fe565b60405180910390fd5b80600d8190555050565b6060611eb4610e3e565b8210611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec9061417e565b60405180910390fd5b601360169054906101000a900460ff16611f9b5760148054611f1690614712565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4290614712565b8015611f8f5780601f10611f6457610100808354040283529160200191611f8f565b820191906000526020600020905b815481529060010190602001808311611f7257829003601f168201915b50505050509050612083565b6000600960008481526020019081526020016000208054611fbb90614712565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe790614712565b80156120345780601f1061200957610100808354040283529160200191612034565b820191906000526020600020905b81548152906001019060200180831161201757829003601f168201915b5050505050905060008151111561204e5780915050612083565b6120566113a1565b61205f84612be7565b604051602001612070929190614014565b6040516020818303038152906040529150505b919050565b600080612093610e3e565b9050601360159054906101000a900460ff166120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061433e565b60405180910390fd5b6012548310612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906143fe565b60405180910390fd5b600c5461270a6121389190614628565b83826121449190614547565b10612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b906141de565b60405180910390fd5b60038310156121e25782600f5461219b91906145ce565b3410156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d49061429e565b60405180910390fd5b612292565b600a83101561224057826010546121f991906145ce565b34101561223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122329061429e565b60405180910390fd5b612291565b8260115461224e91906145ce565b341015612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061429e565b60405180910390fd5b5b5b61229b83612b35565b915050919050565b6122ab61257e565b73ffffffffffffffffffffffffffffffffffffffff166122c96118fb565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906142fe565b60405180910390fd5b8060149080519060200190612335929190613631565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d561257e565b73ffffffffffffffffffffffffffffffffffffffff166123f36118fb565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612440906142fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b09061413e565b60405180910390fd5b6124c281612a51565b50565b601360159054906101000a900460ff1681565b60115481565b601360149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612577826002612d4890919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f98361136a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61264882612561565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e906142de565b60405180910390fd5b806009600084815260200190815260200160002090805190602001906126ae929190613631565b505050565b60006126c182600001612d62565b9050919050565b60006126d382612561565b612712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127099061421e565b60405180910390fd5b600061271d8361136a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278c57508373ffffffffffffffffffffffffffffffffffffffff1661277484610c17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279d575061279c8185612339565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c68261136a565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128139061431e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128839061419e565b60405180910390fd5b612897838383612d77565b6128a2600082612586565b6128f381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d7c90919063ffffffff16565b5061294581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d9690919063ffffffff16565b5061295c81836002612db09092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129cc8360000183612de5565b60001c905092915050565b6000806000806129ea8660000186612e10565b915091508160001c8160001c9350935050509250929050565b80600a9080519060200190612a19929190613631565b5050565b6000612a30846000018460001b84612e50565b60001c90509392505050565b6000612a4a82600001612ed1565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b31828260405180602001604052806000815250612ee2565b5050565b600080600090505b82811015612b81576000612b4f610e3e565b905061270a811015612b6d57612b6c612b6661257e565b82612b17565b5b508080612b7990614775565b915050612b3d565b5060019050919050565b612b968484846127a6565b612ba284848484612f3d565b612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd89061411e565b60405180910390fd5b50505050565b60606000821415612c2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d43565b600082905060005b60008214612c61578080612c4a90614775565b915050600a82612c5a919061459d565b9150612c37565b60008167ffffffffffffffff811115612c7d57612c7c6148da565b5b6040519080825280601f01601f191660200182016040528015612caf5781602001600182028036833780820191505090505b5090505b60008514612d3c57600182612cc89190614628565b9150600a85612cd791906147be565b6030612ce39190614547565b60f81b818381518110612cf957612cf86148ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d35919061459d565b9450612cb3565b8093505050505b919050565b6000612d5a836000018360001b6130a1565b905092915050565b6000612d70826000016130c1565b9050919050565b505050565b6000612d8e836000018360001b6130d6565b905092915050565b6000612da8836000018360001b6131ea565b905092915050565b6000612ddc846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61325a565b90509392505050565b6000826000018281548110612dfd57612dfc6148ab565b5b9060005260206000200154905092915050565b6000806000612e2b848660000161329590919063ffffffff16565b9050808560020160008381526020019081526020016000205492509250509250929050565b6000808460020160008581526020019081526020016000205490506000801b81141580612e835750612e8285856130a1565b5b8390612ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebc91906140dc565b60405180910390fd5b50809150509392505050565b600081600001805490509050919050565b612eec83836132ac565b612ef96000848484612f3d565b612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f9061411e565b60405180910390fd5b505050565b6000612f5e8473ffffffffffffffffffffffffffffffffffffffff1661343a565b612f6b5760019050613099565b600061303263150b7a0260e01b612f8061257e565b888787604051602401612f969493929190614053565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fec603291398773ffffffffffffffffffffffffffffffffffffffff1661344d9092919063ffffffff16565b905060008180602001905181019061304a9190613a0d565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b60006130b9828460000161346590919063ffffffff16565b905092915050565b60006130cf82600001612ed1565b9050919050565b600080836001016000848152602001908152602001600020549050600081146131de5760006001826131089190614628565b90506000600186600001805490506131209190614628565b905081811461318f576000866000018281548110613141576131406148ab565b5b9060005260206000200154905080876000018481548110613165576131646148ab565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806131a3576131a261487c565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506131e4565b60009150505b92915050565b60006131f6838361347c565b61324f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613254565b600090505b92915050565b6000818460020160008581526020019081526020016000208190555061328c838560000161349f90919063ffffffff16565b90509392505050565b60006132a48360000183612de5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133139061427e565b60405180910390fd5b61332581612561565b15613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c9061415e565b60405180910390fd5b61337160008383612d77565b6133c281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d9690919063ffffffff16565b506133d981836002612db09092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061345c84846000856134b6565b90509392505050565b6000613474836000018361347c565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006134ae83600001836131ea565b905092915050565b6060824710156134fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f2906141fe565b60405180910390fd5b6135048561343a565b613543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353a906143be565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161356c9190613ffd565b60006040518083038185875af1925050503d80600081146135a9576040519150601f19603f3d011682016040523d82523d6000602084013e6135ae565b606091505b50915091506135be8282866135ca565b92505050949350505050565b606083156135da5782905061362a565b6000835111156135ed5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362191906140dc565b60405180910390fd5b9392505050565b82805461363d90614712565b90600052602060002090601f01602090048101928261365f57600085556136a6565b82601f1061367857805160ff19168380011785556136a6565b828001600101855582156136a6579182015b828111156136a557825182559160200191906001019061368a565b5b5090506136b391906136b7565b5090565b5b808211156136d05760008160009055506001016136b8565b5090565b60006136e76136e28461445e565b614439565b9050828152602081018484840111156137035761370261490e565b5b61370e8482856146d0565b509392505050565b60006137296137248461448f565b614439565b9050828152602081018484840111156137455761374461490e565b5b6137508482856146d0565b509392505050565b60008135905061376781614f8f565b92915050565b60008135905061377c81614fa6565b92915050565b60008135905061379181614fbd565b92915050565b6000815190506137a681614fbd565b92915050565b600082601f8301126137c1576137c0614909565b5b81356137d18482602086016136d4565b91505092915050565b600082601f8301126137ef576137ee614909565b5b81356137ff848260208601613716565b91505092915050565b60008135905061381781614fd4565b92915050565b60006020828403121561383357613832614918565b5b600061384184828501613758565b91505092915050565b6000806040838503121561386157613860614918565b5b600061386f85828601613758565b925050602061388085828601613758565b9150509250929050565b6000806000606084860312156138a3576138a2614918565b5b60006138b186828701613758565b93505060206138c286828701613758565b92505060406138d386828701613808565b9150509250925092565b600080600080608085870312156138f7576138f6614918565b5b600061390587828801613758565b945050602061391687828801613758565b935050604061392787828801613808565b925050606085013567ffffffffffffffff81111561394857613947614913565b5b613954878288016137ac565b91505092959194509250565b6000806040838503121561397757613976614918565b5b600061398585828601613758565b92505060206139968582860161376d565b9150509250929050565b600080604083850312156139b7576139b6614918565b5b60006139c585828601613758565b92505060206139d685828601613808565b9150509250929050565b6000602082840312156139f6576139f5614918565b5b6000613a0484828501613782565b91505092915050565b600060208284031215613a2357613a22614918565b5b6000613a3184828501613797565b91505092915050565b600060208284031215613a5057613a4f614918565b5b600082013567ffffffffffffffff811115613a6e57613a6d614913565b5b613a7a848285016137da565b91505092915050565b600060208284031215613a9957613a98614918565b5b6000613aa784828501613808565b91505092915050565b60008060408385031215613ac757613ac6614918565b5b6000613ad585828601613808565b925050602083013567ffffffffffffffff811115613af657613af5614913565b5b613b02858286016137da565b9150509250929050565b6000613b188383613fdf565b60208301905092915050565b613b2d8161465c565b82525050565b6000613b3e826144d0565b613b4881856144fe565b9350613b53836144c0565b8060005b83811015613b84578151613b6b8882613b0c565b9750613b76836144f1565b925050600181019050613b57565b5085935050505092915050565b613b9a8161466e565b82525050565b6000613bab826144db565b613bb5818561450f565b9350613bc58185602086016146df565b613bce8161491d565b840191505092915050565b6000613be4826144db565b613bee8185614520565b9350613bfe8185602086016146df565b80840191505092915050565b6000613c15826144e6565b613c1f818561452b565b9350613c2f8185602086016146df565b613c388161491d565b840191505092915050565b6000613c4e826144e6565b613c58818561453c565b9350613c688185602086016146df565b80840191505092915050565b6000613c8160188361452b565b9150613c8c8261492e565b602082019050919050565b6000613ca460328361452b565b9150613caf82614957565b604082019050919050565b6000613cc760268361452b565b9150613cd2826149a6565b604082019050919050565b6000613cea601c8361452b565b9150613cf5826149f5565b602082019050919050565b6000613d0d60108361452b565b9150613d1882614a1e565b602082019050919050565b6000613d3060248361452b565b9150613d3b82614a47565b604082019050919050565b6000613d5360198361452b565b9150613d5e82614a96565b602082019050919050565b6000613d7660158361452b565b9150613d8182614abf565b602082019050919050565b6000613d9960268361452b565b9150613da482614ae8565b604082019050919050565b6000613dbc602c8361452b565b9150613dc782614b37565b604082019050919050565b6000613ddf60388361452b565b9150613dea82614b86565b604082019050919050565b6000613e02602a8361452b565b9150613e0d82614bd5565b604082019050919050565b6000613e2560208361452b565b9150613e3082614c24565b602082019050919050565b6000613e4860228361452b565b9150613e5382614c4d565b604082019050919050565b6000613e6b602c8361452b565b9150613e7682614c9c565b604082019050919050565b6000613e8e602c8361452b565b9150613e9982614ceb565b604082019050919050565b6000613eb160208361452b565b9150613ebc82614d3a565b602082019050919050565b6000613ed460298361452b565b9150613edf82614d63565b604082019050919050565b6000613ef7602d8361452b565b9150613f0282614db2565b604082019050919050565b6000613f1a60218361452b565b9150613f2582614e01565b604082019050919050565b6000613f3d60318361452b565b9150613f4882614e50565b604082019050919050565b6000613f6060318361452b565b9150613f6b82614e9f565b604082019050919050565b6000613f83601d8361452b565b9150613f8e82614eee565b602082019050919050565b6000613fa6601f8361452b565b9150613fb182614f17565b602082019050919050565b6000613fc960298361452b565b9150613fd482614f40565b604082019050919050565b613fe8816146c6565b82525050565b613ff7816146c6565b82525050565b60006140098284613bd9565b915081905092915050565b60006140208285613c43565b915061402c8284613c43565b91508190509392505050565b600060208201905061404d6000830184613b24565b92915050565b60006080820190506140686000830187613b24565b6140756020830186613b24565b6140826040830185613fee565b81810360608301526140948184613ba0565b905095945050505050565b600060208201905081810360008301526140b98184613b33565b905092915050565b60006020820190506140d66000830184613b91565b92915050565b600060208201905081810360008301526140f68184613c0a565b905092915050565b6000602082019050818103600083015261411781613c74565b9050919050565b6000602082019050818103600083015261413781613c97565b9050919050565b6000602082019050818103600083015261415781613cba565b9050919050565b6000602082019050818103600083015261417781613cdd565b9050919050565b6000602082019050818103600083015261419781613d00565b9050919050565b600060208201905081810360008301526141b781613d23565b9050919050565b600060208201905081810360008301526141d781613d46565b9050919050565b600060208201905081810360008301526141f781613d69565b9050919050565b6000602082019050818103600083015261421781613d8c565b9050919050565b6000602082019050818103600083015261423781613daf565b9050919050565b6000602082019050818103600083015261425781613dd2565b9050919050565b6000602082019050818103600083015261427781613df5565b9050919050565b6000602082019050818103600083015261429781613e18565b9050919050565b600060208201905081810360008301526142b781613e3b565b9050919050565b600060208201905081810360008301526142d781613e5e565b9050919050565b600060208201905081810360008301526142f781613e81565b9050919050565b6000602082019050818103600083015261431781613ea4565b9050919050565b6000602082019050818103600083015261433781613ec7565b9050919050565b6000602082019050818103600083015261435781613eea565b9050919050565b6000602082019050818103600083015261437781613f0d565b9050919050565b6000602082019050818103600083015261439781613f30565b9050919050565b600060208201905081810360008301526143b781613f53565b9050919050565b600060208201905081810360008301526143d781613f76565b9050919050565b600060208201905081810360008301526143f781613f99565b9050919050565b6000602082019050818103600083015261441781613fbc565b9050919050565b60006020820190506144336000830184613fee565b92915050565b6000614443614454565b905061444f8282614744565b919050565b6000604051905090565b600067ffffffffffffffff821115614479576144786148da565b5b6144828261491d565b9050602081019050919050565b600067ffffffffffffffff8211156144aa576144a96148da565b5b6144b38261491d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614552826146c6565b915061455d836146c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614592576145916147ef565b5b828201905092915050565b60006145a8826146c6565b91506145b3836146c6565b9250826145c3576145c261481e565b5b828204905092915050565b60006145d9826146c6565b91506145e4836146c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561461d5761461c6147ef565b5b828202905092915050565b6000614633826146c6565b915061463e836146c6565b925082821015614651576146506147ef565b5b828203905092915050565b6000614667826146a6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146fd5780820151818401526020810190506146e2565b8381111561470c576000848401525b50505050565b6000600282049050600182168061472a57607f821691505b6020821081141561473e5761473d61484d565b5b50919050565b61474d8261491d565b810181811067ffffffffffffffff8211171561476c5761476b6148da565b5b80604052505050565b6000614780826146c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b3576147b26147ef565b5b600182019050919050565b60006147c9826146c6565b91506147d4836146c6565b9250826147e4576147e361481e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564207072652d73616c6520737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e206e6f742065786973742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f457863656564656420746f74616c20737570706c790000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7468652064726f702068617665204e4f5420737461727465642c20706c65617360008201527f652062652070617469656e742e00000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207072652d73616c652068617665204e4f5420737461727465642c207060008201527f6c656173652062652070617469656e742e000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f45786365656473207265736572766564206669676874657220737570706c7900600082015250565b7f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060008201527f617420612074696d650000000000000000000000000000000000000000000000602082015250565b614f988161465c565b8114614fa357600080fd5b50565b614faf8161466e565b8114614fba57600080fd5b50565b614fc68161467a565b8114614fd157600080fd5b50565b614fdd816146c6565b8114614fe857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f3eafba4d0fec234e40278a10afc9da374b747cb0011bcdc7d9e9b402a5c133764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65583436727861724855414b7473427170476e6e624b4c5054796e6a71697a726937767057427862454345692f756e72657665616c00000000000000

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c806370a0823111610175578063b3a196e9116100dc578063da1b9e0811610095578063f751cd8f1161006f578063f751cd8f14610a5c578063fb8b51a014610a87578063fdea8e0b14610ab2578063fe60d12c14610add576102ad565b8063da1b9e08146109cd578063e985e9c5146109f6578063f2fde38b14610a33576102ad565b8063b3a196e9146108ba578063b4269a16146108e5578063b88d4fde1461090e578063b96502cb14610937578063c87b56dd14610960578063d3f7e18d1461099d576102ad565b80638da5cb5b1161012e5780638da5cb5b146107c957806395d89b41146107f457806398f1312e1461081f5780639be0fc751461084a578063a22cb46514610861578063a8abf6291461088a576102ad565b806370a08231146106dc578063715018a6146107195780637d7eee4214610730578063819b25ba146107595780638462151c14610782578063853828b6146107bf576102ad565b80634018d3461161021957806351830227116101d257806351830227146105e057806355f804b31461060b5780635b8ad429146106345780635e37af3e1461064b5780636352211e146106745780636c0360eb146106b1576102ad565b80634018d346146104d25780634070a0c9146104fb57806342842e0e14610524578063439d8f4e1461054d5780634a079215146105785780634f6ccce7146105a3576102ad565b806318160ddd1161026b57806318160ddd146103d457806323b872dd146103ff578063291cbb9c146104285780632f745c591461045357806334393743146104905780633a367a67146104a7576102ad565b80620e7fa8146102b257806301ffc9a7146102dd57806306fdde031461031a578063081812fc14610345578063095ea7b314610382578063162094c4146103ab575b600080fd5b3480156102be57600080fd5b506102c7610b08565b6040516102d4919061441e565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906139e0565b610b0e565b60405161031191906140c1565b60405180910390f35b34801561032657600080fd5b5061032f610b85565b60405161033c91906140dc565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613a83565b610c17565b6040516103799190614038565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906139a0565b610c9c565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190613ab0565b610db4565b005b3480156103e057600080fd5b506103e9610e3e565b6040516103f6919061441e565b60405180910390f35b34801561040b57600080fd5b506104266004803603810190610421919061388a565b610e4f565b005b34801561043457600080fd5b5061043d610eaf565b60405161044a919061441e565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906139a0565b610eb5565b604051610487919061441e565b60405180910390f35b34801561049c57600080fd5b506104a5610f10565b005b3480156104b357600080fd5b506104bc610fb8565b6040516104c991906140dc565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190613a83565b611046565b005b34801561050757600080fd5b50610522600480360381019061051d9190613a83565b6110cc565b005b34801561053057600080fd5b5061054b6004803603810190610546919061388a565b611152565b005b34801561055957600080fd5b50610562611172565b60405161056f919061441e565b60405180910390f35b34801561058457600080fd5b5061058d611178565b60405161059a919061441e565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613a83565b61117e565b6040516105d7919061441e565b60405180910390f35b3480156105ec57600080fd5b506105f56111a1565b60405161060291906140c1565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613a3a565b6111b4565b005b34801561064057600080fd5b5061064961123c565b005b34801561065757600080fd5b50610672600480360381019061066d9190613a83565b6112e4565b005b34801561068057600080fd5b5061069b60048036038101906106969190613a83565b61136a565b6040516106a89190614038565b60405180910390f35b3480156106bd57600080fd5b506106c66113a1565b6040516106d391906140dc565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe919061381d565b611433565b604051610710919061441e565b60405180910390f35b34801561072557600080fd5b5061072e6114f2565b005b34801561073c57600080fd5b5061075760048036038101906107529190613a83565b61157a565b005b34801561076557600080fd5b50610780600480360381019061077b9190613a83565b611600565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061381d565b611713565b6040516107b6919061409f565b60405180910390f35b6107c761181d565b005b3480156107d557600080fd5b506107de6118fb565b6040516107eb9190614038565b60405180910390f35b34801561080057600080fd5b50610809611925565b60405161081691906140dc565b60405180910390f35b34801561082b57600080fd5b506108346119b7565b604051610841919061441e565b60405180910390f35b34801561085657600080fd5b5061085f6119bd565b005b34801561086d57600080fd5b5061088860048036038101906108839190613960565b611a65565b005b6108a4600480360381019061089f9190613a83565b611be6565b6040516108b191906140c1565b60405180910390f35b3480156108c657600080fd5b506108cf611d36565b6040516108dc919061441e565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613a83565b611d3c565b005b34801561091a57600080fd5b50610935600480360381019061093091906138dd565b611dc2565b005b34801561094357600080fd5b5061095e60048036038101906109599190613a83565b611e24565b005b34801561096c57600080fd5b5061098760048036038101906109829190613a83565b611eaa565b60405161099491906140dc565b60405180910390f35b6109b760048036038101906109b29190613a83565b612088565b6040516109c491906140c1565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190613a3a565b6122a3565b005b348015610a0257600080fd5b50610a1d6004803603810190610a18919061384a565b612339565b604051610a2a91906140c1565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a55919061381d565b6123cd565b005b348015610a6857600080fd5b50610a716124c5565b604051610a7e91906140c1565b60405180910390f35b348015610a9357600080fd5b50610a9c6124d8565b604051610aa9919061441e565b60405180910390f35b348015610abe57600080fd5b50610ac76124de565b604051610ad491906140c1565b60405180910390f35b348015610ae957600080fd5b50610af26124f1565b604051610aff919061441e565b60405180910390f35b600e5481565b6000610b19826124f7565b80610b7e5750600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff165b9050919050565b606060078054610b9490614712565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc090614712565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c2282612561565b610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906142be565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca78261136a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0f9061435e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3761257e565b73ffffffffffffffffffffffffffffffffffffffff161480610d665750610d6581610d6061257e565b612339565b5b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c9061423e565b60405180910390fd5b610daf8383612586565b505050565b610dbc61257e565b73ffffffffffffffffffffffffffffffffffffffff16610dda6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906142fe565b60405180910390fd5b610e3a828261263f565b5050565b6000610e4a60026126b3565b905090565b610e60610e5a61257e565b826126c8565b610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061439e565b60405180910390fd5b610eaa8383836127a6565b505050565b61270a81565b6000610f0882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129bd90919063ffffffff16565b905092915050565b610f1861257e565b73ffffffffffffffffffffffffffffffffffffffff16610f366118fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906142fe565b60405180910390fd5b601360149054906101000a900460ff1615601360146101000a81548160ff021916908315150217905550565b60148054610fc590614712565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff190614712565b801561103e5780601f106110135761010080835404028352916020019161103e565b820191906000526020600020905b81548152906001019060200180831161102157829003601f168201915b505050505081565b61104e61257e565b73ffffffffffffffffffffffffffffffffffffffff1661106c6118fb565b73ffffffffffffffffffffffffffffffffffffffff16146110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906142fe565b60405180910390fd5b8060118190555050565b6110d461257e565b73ffffffffffffffffffffffffffffffffffffffff166110f26118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906142fe565b60405180910390fd5b8060128190555050565b61116d83838360405180602001604052806000815250611dc2565b505050565b600f5481565b60105481565b6000806111958360026129d790919063ffffffff16565b50905080915050919050565b601360169054906101000a900460ff1681565b6111bc61257e565b73ffffffffffffffffffffffffffffffffffffffff166111da6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906142fe565b60405180910390fd5b61123981612a03565b50565b61124461257e565b73ffffffffffffffffffffffffffffffffffffffff166112626118fb565b73ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906142fe565b60405180910390fd5b601360169054906101000a900460ff1615601360166101000a81548160ff021916908315150217905550565b6112ec61257e565b73ffffffffffffffffffffffffffffffffffffffff1661130a6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142fe565b60405180910390fd5b80600f8190555050565b600061139a8260405180606001604052806029815260200161501e602991396002612a1d9092919063ffffffff16565b9050919050565b6060600a80546113b090614712565b80601f01602080910402602001604051908101604052809291908181526020018280546113dc90614712565b80156114295780601f106113fe57610100808354040283529160200191611429565b820191906000526020600020905b81548152906001019060200180831161140c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b9061425e565b60405180910390fd5b6114eb600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a3c565b9050919050565b6114fa61257e565b73ffffffffffffffffffffffffffffffffffffffff166115186118fb565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906142fe565b60405180910390fd5b6115786000612a51565b565b61158261257e565b73ffffffffffffffffffffffffffffffffffffffff166115a06118fb565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed906142fe565b60405180910390fd5b80600e8190555050565b61160861257e565b73ffffffffffffffffffffffffffffffffffffffff166116266118fb565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611673906142fe565b60405180910390fd5b600c548111156116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b8906143de565b60405180910390fd5b60005b818110156116f65760006116d6610e3e565b90506116e23382612b17565b5080806116ee90614775565b9150506116c4565b5080600c60008282546117099190614628565b9250508190555050565b6060600061172083611433565b9050600081141561177d57600067ffffffffffffffff811115611746576117456148da565b5b6040519080825280602002602001820160405280156117745781602001602082028036833780820191505090505b50915050611818565b60008167ffffffffffffffff811115611799576117986148da565b5b6040519080825280602002602001820160405280156117c75781602001602082028036833780820191505090505b50905060005b82811015611811576117df8582610eb5565b8282815181106117f2576117f16148ab565b5b602002602001018181525050808061180990614775565b9150506117cd565b5080925050505b919050565b61182561257e565b73ffffffffffffffffffffffffffffffffffffffff166118436118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906142fe565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118f957600080fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461193490614712565b80601f016020809104026020016040519081016040528092919081815260200182805461196090614712565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b5050505050905090565b60125481565b6119c561257e565b73ffffffffffffffffffffffffffffffffffffffff166119e36118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a30906142fe565b60405180910390fd5b601360159054906101000a900460ff1615601360156101000a81548160ff021916908315150217905550565b611a6d61257e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906141be565b60405180910390fd5b8060066000611ae861257e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9561257e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bda91906140c1565b60405180910390a35050565b600080611bf1610e3e565b9050601360149054906101000a900460ff16611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061437e565b60405180910390fd5b6012548310611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d906143fe565b60405180910390fd5b600d548382611c959190614547565b10611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906140fe565b60405180910390fd5b82600e54611ce391906145ce565b341015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c9061429e565b60405180910390fd5b611d2e83612b35565b915050919050565b600d5481565b611d4461257e565b73ffffffffffffffffffffffffffffffffffffffff16611d626118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906142fe565b60405180910390fd5b8060108190555050565b611dd3611dcd61257e565b836126c8565b611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e099061439e565b60405180910390fd5b611e1e84848484612b8b565b50505050565b611e2c61257e565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6118fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e97906142fe565b60405180910390fd5b80600d8190555050565b6060611eb4610e3e565b8210611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec9061417e565b60405180910390fd5b601360169054906101000a900460ff16611f9b5760148054611f1690614712565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4290614712565b8015611f8f5780601f10611f6457610100808354040283529160200191611f8f565b820191906000526020600020905b815481529060010190602001808311611f7257829003601f168201915b50505050509050612083565b6000600960008481526020019081526020016000208054611fbb90614712565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe790614712565b80156120345780601f1061200957610100808354040283529160200191612034565b820191906000526020600020905b81548152906001019060200180831161201757829003601f168201915b5050505050905060008151111561204e5780915050612083565b6120566113a1565b61205f84612be7565b604051602001612070929190614014565b6040516020818303038152906040529150505b919050565b600080612093610e3e565b9050601360159054906101000a900460ff166120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db9061433e565b60405180910390fd5b6012548310612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906143fe565b60405180910390fd5b600c5461270a6121389190614628565b83826121449190614547565b10612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b906141de565b60405180910390fd5b60038310156121e25782600f5461219b91906145ce565b3410156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d49061429e565b60405180910390fd5b612292565b600a83101561224057826010546121f991906145ce565b34101561223b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122329061429e565b60405180910390fd5b612291565b8260115461224e91906145ce565b341015612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061429e565b60405180910390fd5b5b5b61229b83612b35565b915050919050565b6122ab61257e565b73ffffffffffffffffffffffffffffffffffffffff166122c96118fb565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906142fe565b60405180910390fd5b8060149080519060200190612335929190613631565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d561257e565b73ffffffffffffffffffffffffffffffffffffffff166123f36118fb565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612440906142fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b09061413e565b60405180910390fd5b6124c281612a51565b50565b601360159054906101000a900460ff1681565b60115481565b601360149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612577826002612d4890919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f98361136a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61264882612561565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e906142de565b60405180910390fd5b806009600084815260200190815260200160002090805190602001906126ae929190613631565b505050565b60006126c182600001612d62565b9050919050565b60006126d382612561565b612712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127099061421e565b60405180910390fd5b600061271d8361136a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278c57508373ffffffffffffffffffffffffffffffffffffffff1661277484610c17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279d575061279c8185612339565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c68261136a565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128139061431e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128839061419e565b60405180910390fd5b612897838383612d77565b6128a2600082612586565b6128f381600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d7c90919063ffffffff16565b5061294581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d9690919063ffffffff16565b5061295c81836002612db09092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006129cc8360000183612de5565b60001c905092915050565b6000806000806129ea8660000186612e10565b915091508160001c8160001c9350935050509250929050565b80600a9080519060200190612a19929190613631565b5050565b6000612a30846000018460001b84612e50565b60001c90509392505050565b6000612a4a82600001612ed1565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b31828260405180602001604052806000815250612ee2565b5050565b600080600090505b82811015612b81576000612b4f610e3e565b905061270a811015612b6d57612b6c612b6661257e565b82612b17565b5b508080612b7990614775565b915050612b3d565b5060019050919050565b612b968484846127a6565b612ba284848484612f3d565b612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd89061411e565b60405180910390fd5b50505050565b60606000821415612c2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d43565b600082905060005b60008214612c61578080612c4a90614775565b915050600a82612c5a919061459d565b9150612c37565b60008167ffffffffffffffff811115612c7d57612c7c6148da565b5b6040519080825280601f01601f191660200182016040528015612caf5781602001600182028036833780820191505090505b5090505b60008514612d3c57600182612cc89190614628565b9150600a85612cd791906147be565b6030612ce39190614547565b60f81b818381518110612cf957612cf86148ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d35919061459d565b9450612cb3565b8093505050505b919050565b6000612d5a836000018360001b6130a1565b905092915050565b6000612d70826000016130c1565b9050919050565b505050565b6000612d8e836000018360001b6130d6565b905092915050565b6000612da8836000018360001b6131ea565b905092915050565b6000612ddc846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b61325a565b90509392505050565b6000826000018281548110612dfd57612dfc6148ab565b5b9060005260206000200154905092915050565b6000806000612e2b848660000161329590919063ffffffff16565b9050808560020160008381526020019081526020016000205492509250509250929050565b6000808460020160008581526020019081526020016000205490506000801b81141580612e835750612e8285856130a1565b5b8390612ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebc91906140dc565b60405180910390fd5b50809150509392505050565b600081600001805490509050919050565b612eec83836132ac565b612ef96000848484612f3d565b612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f9061411e565b60405180910390fd5b505050565b6000612f5e8473ffffffffffffffffffffffffffffffffffffffff1661343a565b612f6b5760019050613099565b600061303263150b7a0260e01b612f8061257e565b888787604051602401612f969493929190614053565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fec603291398773ffffffffffffffffffffffffffffffffffffffff1661344d9092919063ffffffff16565b905060008180602001905181019061304a9190613a0d565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b60006130b9828460000161346590919063ffffffff16565b905092915050565b60006130cf82600001612ed1565b9050919050565b600080836001016000848152602001908152602001600020549050600081146131de5760006001826131089190614628565b90506000600186600001805490506131209190614628565b905081811461318f576000866000018281548110613141576131406148ab565b5b9060005260206000200154905080876000018481548110613165576131646148ab565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806131a3576131a261487c565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506131e4565b60009150505b92915050565b60006131f6838361347c565b61324f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613254565b600090505b92915050565b6000818460020160008581526020019081526020016000208190555061328c838560000161349f90919063ffffffff16565b90509392505050565b60006132a48360000183612de5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133139061427e565b60405180910390fd5b61332581612561565b15613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c9061415e565b60405180910390fd5b61337160008383612d77565b6133c281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612d9690919063ffffffff16565b506133d981836002612db09092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061345c84846000856134b6565b90509392505050565b6000613474836000018361347c565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006134ae83600001836131ea565b905092915050565b6060824710156134fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f2906141fe565b60405180910390fd5b6135048561343a565b613543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353a906143be565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161356c9190613ffd565b60006040518083038185875af1925050503d80600081146135a9576040519150601f19603f3d011682016040523d82523d6000602084013e6135ae565b606091505b50915091506135be8282866135ca565b92505050949350505050565b606083156135da5782905061362a565b6000835111156135ed5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362191906140dc565b60405180910390fd5b9392505050565b82805461363d90614712565b90600052602060002090601f01602090048101928261365f57600085556136a6565b82601f1061367857805160ff19168380011785556136a6565b828001600101855582156136a6579182015b828111156136a557825182559160200191906001019061368a565b5b5090506136b391906136b7565b5090565b5b808211156136d05760008160009055506001016136b8565b5090565b60006136e76136e28461445e565b614439565b9050828152602081018484840111156137035761370261490e565b5b61370e8482856146d0565b509392505050565b60006137296137248461448f565b614439565b9050828152602081018484840111156137455761374461490e565b5b6137508482856146d0565b509392505050565b60008135905061376781614f8f565b92915050565b60008135905061377c81614fa6565b92915050565b60008135905061379181614fbd565b92915050565b6000815190506137a681614fbd565b92915050565b600082601f8301126137c1576137c0614909565b5b81356137d18482602086016136d4565b91505092915050565b600082601f8301126137ef576137ee614909565b5b81356137ff848260208601613716565b91505092915050565b60008135905061381781614fd4565b92915050565b60006020828403121561383357613832614918565b5b600061384184828501613758565b91505092915050565b6000806040838503121561386157613860614918565b5b600061386f85828601613758565b925050602061388085828601613758565b9150509250929050565b6000806000606084860312156138a3576138a2614918565b5b60006138b186828701613758565b93505060206138c286828701613758565b92505060406138d386828701613808565b9150509250925092565b600080600080608085870312156138f7576138f6614918565b5b600061390587828801613758565b945050602061391687828801613758565b935050604061392787828801613808565b925050606085013567ffffffffffffffff81111561394857613947614913565b5b613954878288016137ac565b91505092959194509250565b6000806040838503121561397757613976614918565b5b600061398585828601613758565b92505060206139968582860161376d565b9150509250929050565b600080604083850312156139b7576139b6614918565b5b60006139c585828601613758565b92505060206139d685828601613808565b9150509250929050565b6000602082840312156139f6576139f5614918565b5b6000613a0484828501613782565b91505092915050565b600060208284031215613a2357613a22614918565b5b6000613a3184828501613797565b91505092915050565b600060208284031215613a5057613a4f614918565b5b600082013567ffffffffffffffff811115613a6e57613a6d614913565b5b613a7a848285016137da565b91505092915050565b600060208284031215613a9957613a98614918565b5b6000613aa784828501613808565b91505092915050565b60008060408385031215613ac757613ac6614918565b5b6000613ad585828601613808565b925050602083013567ffffffffffffffff811115613af657613af5614913565b5b613b02858286016137da565b9150509250929050565b6000613b188383613fdf565b60208301905092915050565b613b2d8161465c565b82525050565b6000613b3e826144d0565b613b4881856144fe565b9350613b53836144c0565b8060005b83811015613b84578151613b6b8882613b0c565b9750613b76836144f1565b925050600181019050613b57565b5085935050505092915050565b613b9a8161466e565b82525050565b6000613bab826144db565b613bb5818561450f565b9350613bc58185602086016146df565b613bce8161491d565b840191505092915050565b6000613be4826144db565b613bee8185614520565b9350613bfe8185602086016146df565b80840191505092915050565b6000613c15826144e6565b613c1f818561452b565b9350613c2f8185602086016146df565b613c388161491d565b840191505092915050565b6000613c4e826144e6565b613c58818561453c565b9350613c688185602086016146df565b80840191505092915050565b6000613c8160188361452b565b9150613c8c8261492e565b602082019050919050565b6000613ca460328361452b565b9150613caf82614957565b604082019050919050565b6000613cc760268361452b565b9150613cd2826149a6565b604082019050919050565b6000613cea601c8361452b565b9150613cf5826149f5565b602082019050919050565b6000613d0d60108361452b565b9150613d1882614a1e565b602082019050919050565b6000613d3060248361452b565b9150613d3b82614a47565b604082019050919050565b6000613d5360198361452b565b9150613d5e82614a96565b602082019050919050565b6000613d7660158361452b565b9150613d8182614abf565b602082019050919050565b6000613d9960268361452b565b9150613da482614ae8565b604082019050919050565b6000613dbc602c8361452b565b9150613dc782614b37565b604082019050919050565b6000613ddf60388361452b565b9150613dea82614b86565b604082019050919050565b6000613e02602a8361452b565b9150613e0d82614bd5565b604082019050919050565b6000613e2560208361452b565b9150613e3082614c24565b602082019050919050565b6000613e4860228361452b565b9150613e5382614c4d565b604082019050919050565b6000613e6b602c8361452b565b9150613e7682614c9c565b604082019050919050565b6000613e8e602c8361452b565b9150613e9982614ceb565b604082019050919050565b6000613eb160208361452b565b9150613ebc82614d3a565b602082019050919050565b6000613ed460298361452b565b9150613edf82614d63565b604082019050919050565b6000613ef7602d8361452b565b9150613f0282614db2565b604082019050919050565b6000613f1a60218361452b565b9150613f2582614e01565b604082019050919050565b6000613f3d60318361452b565b9150613f4882614e50565b604082019050919050565b6000613f6060318361452b565b9150613f6b82614e9f565b604082019050919050565b6000613f83601d8361452b565b9150613f8e82614eee565b602082019050919050565b6000613fa6601f8361452b565b9150613fb182614f17565b602082019050919050565b6000613fc960298361452b565b9150613fd482614f40565b604082019050919050565b613fe8816146c6565b82525050565b613ff7816146c6565b82525050565b60006140098284613bd9565b915081905092915050565b60006140208285613c43565b915061402c8284613c43565b91508190509392505050565b600060208201905061404d6000830184613b24565b92915050565b60006080820190506140686000830187613b24565b6140756020830186613b24565b6140826040830185613fee565b81810360608301526140948184613ba0565b905095945050505050565b600060208201905081810360008301526140b98184613b33565b905092915050565b60006020820190506140d66000830184613b91565b92915050565b600060208201905081810360008301526140f68184613c0a565b905092915050565b6000602082019050818103600083015261411781613c74565b9050919050565b6000602082019050818103600083015261413781613c97565b9050919050565b6000602082019050818103600083015261415781613cba565b9050919050565b6000602082019050818103600083015261417781613cdd565b9050919050565b6000602082019050818103600083015261419781613d00565b9050919050565b600060208201905081810360008301526141b781613d23565b9050919050565b600060208201905081810360008301526141d781613d46565b9050919050565b600060208201905081810360008301526141f781613d69565b9050919050565b6000602082019050818103600083015261421781613d8c565b9050919050565b6000602082019050818103600083015261423781613daf565b9050919050565b6000602082019050818103600083015261425781613dd2565b9050919050565b6000602082019050818103600083015261427781613df5565b9050919050565b6000602082019050818103600083015261429781613e18565b9050919050565b600060208201905081810360008301526142b781613e3b565b9050919050565b600060208201905081810360008301526142d781613e5e565b9050919050565b600060208201905081810360008301526142f781613e81565b9050919050565b6000602082019050818103600083015261431781613ea4565b9050919050565b6000602082019050818103600083015261433781613ec7565b9050919050565b6000602082019050818103600083015261435781613eea565b9050919050565b6000602082019050818103600083015261437781613f0d565b9050919050565b6000602082019050818103600083015261439781613f30565b9050919050565b600060208201905081810360008301526143b781613f53565b9050919050565b600060208201905081810360008301526143d781613f76565b9050919050565b600060208201905081810360008301526143f781613f99565b9050919050565b6000602082019050818103600083015261441781613fbc565b9050919050565b60006020820190506144336000830184613fee565b92915050565b6000614443614454565b905061444f8282614744565b919050565b6000604051905090565b600067ffffffffffffffff821115614479576144786148da565b5b6144828261491d565b9050602081019050919050565b600067ffffffffffffffff8211156144aa576144a96148da565b5b6144b38261491d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614552826146c6565b915061455d836146c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614592576145916147ef565b5b828201905092915050565b60006145a8826146c6565b91506145b3836146c6565b9250826145c3576145c261481e565b5b828204905092915050565b60006145d9826146c6565b91506145e4836146c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561461d5761461c6147ef565b5b828202905092915050565b6000614633826146c6565b915061463e836146c6565b925082821015614651576146506147ef565b5b828203905092915050565b6000614667826146a6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146fd5780820151818401526020810190506146e2565b8381111561470c576000848401525b50505050565b6000600282049050600182168061472a57607f821691505b6020821081141561473e5761473d61484d565b5b50919050565b61474d8261491d565b810181811067ffffffffffffffff8211171561476c5761476b6148da565b5b80604052505050565b6000614780826146c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b3576147b26147ef565b5b600182019050919050565b60006147c9826146c6565b91506147d4836146c6565b9250826147e4576147e361481e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565646564207072652d73616c6520737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e206e6f742065786973742e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f457863656564656420746f74616c20737570706c790000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7468652064726f702068617665204e4f5420737461727465642c20706c65617360008201527f652062652070617469656e742e00000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207072652d73616c652068617665204e4f5420737461727465642c207060008201527f6c656173652062652070617469656e742e000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f45786365656473207265736572766564206669676874657220737570706c7900600082015250565b7f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060008201527f617420612074696d650000000000000000000000000000000000000000000000602082015250565b614f988161465c565b8114614fa357600080fd5b50565b614faf8161466e565b8114614fba57600080fd5b50565b614fc68161467a565b8114614fd157600080fd5b50565b614fdd816146c6565b8114614fe857600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f3eafba4d0fec234e40278a10afc9da374b747cb0011bcdc7d9e9b402a5c133764736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65583436727861724855414b7473427170476e6e624b4c5054796e6a71697a726937767057427862454345692f756e72657665616c00000000000000

-----Decoded View---------------
Arg [0] : _defaultURI (string): https://gateway.pinata.cloud/ipfs/QmeX46rxarHUAKtsBqpGnnbKLPTynjqizri7vpWBxbECEi/unreveal
Arg [1] : _presaleSupply (uint256): 2000

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d65583436727861724855414b7473427170476e6e624b4c5054796e6a
Arg [5] : 71697a726937767057427862454345692f756e72657665616c00000000000000


Deployed Bytecode Sourcemap

106:5103:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;523:188:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:90:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7052:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6610:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4021:129:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6120:200:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7900:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;188:43:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5897:152:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3629:77:8;;;;;;;;;;;;;:::i;:::-;;685:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4592:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4696:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8266:149:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;352:37:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;395:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6392:161:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;658:20:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3910:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3712:78;;;;;;;;;;;;;:::i;:::-;;4384:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4202:167:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5731:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3934:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:14;;;;;;;;;;;;;:::i;:::-;;4276:102:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4915:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2402:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4793:116;;;:::i;:::-;;966:85:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4585:94:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;483:28:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3555:68;;;;;;;;;;;;;:::i;:::-;;7328:290:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1178:480:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;272:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4488:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8481:282:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4156:114:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2895:597;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1664:732;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3796:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7684:154:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;636:16:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;439:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;611:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;237:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;306:40;;;;:::o;523:188:3:-;608:4;631:36;655:11;631:23;:36::i;:::-;:73;;;;671:20;:33;692:11;671:33;;;;;;;;;;;;;;;;;;;;;;;;;;;631:73;624:80;;523:188;;;:::o;4431:90:4:-;4477:13;4509:5;4502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4431:90;:::o;7052:209::-;7120:7;7147:16;7155:7;7147;:16::i;:::-;7139:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7230:15;:24;7246:7;7230:24;;;;;;;;;;;;;;;;;;;;;7223:31;;7052:209;;;:::o;6610:381::-;6690:13;6706:16;6714:7;6706;:16::i;:::-;6690:32;;6746:5;6740:11;;:2;:11;;;;6732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;6824:5;6808:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;6833:37;6850:5;6857:12;:10;:12::i;:::-;6833:16;:37::i;:::-;6808:62;6800:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;6963:21;6972:2;6976:7;6963:8;:21::i;:::-;6680:311;6610:381;;:::o;4021:129:8:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4111:32:8::1;4124:7;4133:9;4111:12;:32::i;:::-;4021:129:::0;;:::o;6120:200:4:-;6173:7;6292:21;:12;:19;:21::i;:::-;6285:28;;6120:200;:::o;7900:300::-;8059:41;8078:12;:10;:12::i;:::-;8092:7;8059:18;:41::i;:::-;8051:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;8165:28;8175:4;8181:2;8185:7;8165:9;:28::i;:::-;7900:300;;;:::o;188:43:8:-;227:4;188:43;:::o;5897:152:4:-;5986:7;6012:30;6036:5;6012:13;:20;6026:5;6012:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;6005:37;;5897:152;;;;:::o;3629:77:8:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3692:7:8::1;;;;;;;;;;;3691:8;3681:7;;:18;;;;;;;;;;;;;;;;;;3629:77::o:0;685:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4592:98::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4674:9:8::1;4661:10;:22;;;;4592:98:::0;:::o;4696:91::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4772:8:8::1;4761;:19;;;;4696:91:::0;:::o;8266:149:4:-;8369:39;8386:4;8392:2;8396:7;8369:39;;;;;;;;;;;;:16;:39::i;:::-;8266:149;;;:::o;352:37:8:-;;;;:::o;395:38::-;;;;:::o;6392:161:4:-;6459:7;6479:15;6500:22;6516:5;6500:12;:15;;:22;;;;:::i;:::-;6478:44;;;6539:7;6532:14;;;6392:161;;;:::o;658:20:8:-;;;;;;;;;;;;;:::o;3910:105::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3984:24:8::1;3996:11;3984;:24::i;:::-;3910:105:::0;:::o;3712:78::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3775:8:8::1;;;;;;;;;;;3774:9;3763:8;;:20;;;;;;;;;;;;;;;;;;3712:78::o:0;4384:98::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4466:9:8::1;4453:10;:22;;;;4384:98:::0;:::o;4202:167:4:-;4266:7;4292:70;4309:7;4292:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;4285:77;;4202:167;;;:::o;5731:87::-;5771:13;5803:8;5796:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5731:87;:::o;3934:211::-;3998:7;4042:1;4025:19;;:5;:19;;;;4017:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;4109:29;:13;:20;4123:5;4109:20;;;;;;;;;;;;;;;:27;:29::i;:::-;4102:36;;3934:211;;;:::o;1598:92:14:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;4276:102:8:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4362:9:8::1;4347:12;:24;;;;4276:102:::0;:::o;4915:292::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4987:8:8::1;;4980:3;:15;;4972:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5047:9;5042:134;5062:3;5058:1;:7;5042:134;;;5086:17;5106:13;:11;:13::i;:::-;5086:33;;5133:32;5143:10;5155:9;5133;:32::i;:::-;5072:104;5067:3;;;;;:::i;:::-;;;;5042:134;;;;5197:3;5185:8;;:15;;;;;;;:::i;:::-;;;;;;;;4915:292:::0;:::o;2402:487::-;2463:16;2495:18;2516:17;2526:6;2516:9;:17::i;:::-;2495:38;;2561:1;2547:10;:15;2543:340;;;2636:1;2622:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2615:23;;;;;2543:340;2669:23;2709:10;2695:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2669:51;;2739:9;2734:112;2754:10;2750:1;:14;2734:112;;;2801:30;2821:6;2829:1;2801:19;:30::i;:::-;2789:6;2796:1;2789:9;;;;;;;;:::i;:::-;;;;;;;:42;;;;;2766:3;;;;;:::i;:::-;;;;2734:112;;;;2866:6;2859:13;;;;2402:487;;;;:::o;4793:116::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4867:5:8::1;;;;;;;;;;;4859:19;;:42;4879:21;4859:42;;;;;;;;;;;;;;;;;;;;;;;4851:51;;;::::0;::::1;;4793:116::o:0;966:85:14:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;4585:94:4:-;4633:13;4665:7;4658:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4585:94;:::o;483:28:8:-;;;;:::o;3555:68::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3612:4:8::1;;;;;;;;;;;3611:5;3604:4;;:12;;;;;;;;;;;;;;;;;;3555:68::o:0;7328:290:4:-;7442:12;:10;:12::i;:::-;7430:24;;:8;:24;;;;7422:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;7540:8;7495:18;:32;7514:12;:10;:12::i;:::-;7495:32;;;;;;;;;;;;;;;:42;7528:8;7495:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7592:8;7563:48;;7578:12;:10;:12::i;:::-;7563:48;;;7602:8;7563:48;;;;;;:::i;:::-;;;;;;;;7328:290;;:::o;1178:480:8:-;1239:4;1255:21;1279:13;:11;:13::i;:::-;1255:37;;1310:7;;;;;;;;;;;1302:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1395:8;;1389:3;:14;1381:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1488:13;;1482:3;1466:13;:19;;;;:::i;:::-;:35;1458:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1576:3;1561:12;;:18;;;;:::i;:::-;1548:9;:31;;1540:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1634:17;1647:3;1634:12;:17::i;:::-;1627:24;;;1178:480;;;:::o;272:28::-;;;;:::o;4488:98::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4570:9:8::1;4557:10;:22;;;;4488:98:::0;:::o;8481:282:4:-;8612:41;8631:12;:10;:12::i;:::-;8645:7;8612:18;:41::i;:::-;8604:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;8717:39;8731:4;8737:2;8741:7;8750:5;8717:13;:39::i;:::-;8481:282;;;;:::o;4156:114:8:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4249:14:8::1;4233:13;:30;;;;4156:114:::0;:::o;2895:597::-;2960:13;3007;:11;:13::i;:::-;2997:7;:23;2989:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3102:8;;;;;;;;;;;3097:57;;3133:10;3126:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3097:57;3164:23;3190:16;:25;3207:7;3190:25;;;;;;;;;;;3164:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3295:1;3275:9;3269:23;:27;3265:74;;;3319:9;3312:16;;;;;3265:74;3454:9;:7;:9::i;:::-;3465:18;:7;:16;:18::i;:::-;3437:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3423:62;;;2895:597;;;;:::o;1664:732::-;1722:4;1738:21;1762:13;:11;:13::i;:::-;1738:37;;1793:4;;;;;;;;;;;1785:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1871:8;;1865:3;:14;1857:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1979:8;;227:4;1964:23;;;;:::i;:::-;1958:3;1942:13;:19;;;;:::i;:::-;:45;1934:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;2033:1;2027:3;:7;2024:332;;;2083:3;2070:10;;:16;;;;:::i;:::-;2057:9;:29;;2049:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2024:332;;;2149:2;2143:3;:8;2140:216;;;2200:3;2187:10;;:16;;;;:::i;:::-;2174:9;:29;;2166:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2140:216;;;2304:3;2291:10;;:16;;;;:::i;:::-;2278:9;:29;;2270:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2140:216;2024:332;2372:17;2385:3;2372:12;:17::i;:::-;2365:24;;;1664:732;;;:::o;3796:108::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3886:11:8::1;3873:10;:24;;;;;;;;;;;;:::i;:::-;;3796:108:::0;:::o;7684:154:4:-;7773:4;7796:18;:25;7815:5;7796:25;;;;;;;;;;;;;;;:35;7822:8;7796:35;;;;;;;;;;;;;;;;;;;;;;;;;7789:42;;7684:154;;;;:::o;1839:189:14:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;636:16:8:-;;;;;;;;;;;;;:::o;439:38::-;;;;:::o;611:19::-;;;;;;;;;;;;;:::o;237:29::-;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;10197:117:4:-;10254:4;10277:30;10299:7;10277:12;:21;;:30;;;;:::i;:::-;10270:37;;10197:117;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;15140:155:4:-;15232:2;15205:15;:24;15221:7;15205:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;15280:7;15276:2;15249:39;;15258:16;15266:7;15258;:16::i;:::-;15249:39;;;;;;;;;;;;15140:155;;:::o;13453:218::-;13552:16;13560:7;13552;:16::i;:::-;13544:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13655:9;13627:16;:25;13644:7;13627:25;;;;;;;;;;;:37;;;;;;;;;;;;:::i;:::-;;13453:218;;:::o;5618:121:6:-;5687:7;5713:19;5721:3;:10;;5713:7;:19::i;:::-;5706:26;;5618:121;;;:::o;10472:329:4:-;10557:4;10581:16;10589:7;10581;:16::i;:::-;10573:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10656:13;10672:16;10680:7;10672;:16::i;:::-;10656:32;;10717:5;10706:16;;:7;:16;;;:51;;;;10750:7;10726:31;;:20;10738:7;10726:11;:20::i;:::-;:31;;;10706:51;:87;;;;10761:32;10778:5;10785:7;10761:16;:32::i;:::-;10706:87;10698:96;;;10472:329;;;;:::o;12747:559::-;12864:4;12844:24;;:16;12852:7;12844;:16::i;:::-;:24;;;12836:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;12946:1;12932:16;;:2;:16;;;;12924:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13000:39;13021:4;13027:2;13031:7;13000:20;:39::i;:::-;13101:29;13118:1;13122:7;13101:8;:29::i;:::-;13141:35;13168:7;13141:13;:19;13155:4;13141:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;13186:30;13208:7;13186:13;:17;13200:2;13186:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;13227:29;13244:7;13253:2;13227:12;:16;;:29;;;;;:::i;:::-;;13291:7;13287:2;13272:27;;13281:4;13272:27;;;;;;;;;;;;12747:559;;;:::o;9072:135:7:-;9143:7;9177:22;9181:3;:10;;9193:5;9177:3;:22::i;:::-;9169:31;;9162:38;;9072:135;;;;:::o;6076:233:6:-;6156:7;6165;6185:11;6198:13;6215:22;6219:3;:10;;6231:5;6215:3;:22::i;:::-;6184:53;;;;6263:3;6255:12;;6293:5;6285:14;;6247:55;;;;;;6076:233;;;;;:::o;13894:98:4:-;13977:8;13966;:19;;;;;;;;;;;;:::i;:::-;;13894:98;:::o;7329:241:6:-;7466:7;7516:44;7521:3;:10;;7541:3;7533:12;;7547;7516:4;:44::i;:::-;7508:53;;7485:78;;7329:241;;;;;:::o;8618:112:7:-;8678:7;8704:19;8712:3;:10;;8704:7;:19::i;:::-;8697:26;;8618:112;;;:::o;2034:169:14:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;11132:108:4:-;11207:26;11217:2;11221:7;11207:26;;;;;;;;;;;;:9;:26::i;:::-;11132:108;;:::o;903:269:8:-;956:4;977:9;989:1;977:13;;972:173;996:3;992:1;:7;972:173;;;1020:18;1041:13;:11;:13::i;:::-;1020:34;;227:4;1072:10;:25;1068:66;;;1099:35;1109:12;:10;:12::i;:::-;1123:10;1099:9;:35::i;:::-;1068:66;1006:139;1001:3;;;;;:::i;:::-;;;;972:173;;;;1161:4;1154:11;;903:269;;;:::o;9625::4:-;9738:28;9748:4;9754:2;9758:7;9738:9;:28::i;:::-;9784:48;9807:4;9813:2;9817:7;9826:5;9784:22;:48::i;:::-;9776:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;9625:269;;;;:::o;275:703:16:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;5386:149:6:-;5470:4;5493:35;5503:3;:10;;5523:3;5515:12;;5493:9;:35::i;:::-;5486:42;;5386:149;;;;:::o;2490:107::-;2546:7;2572:18;:3;:9;;:16;:18::i;:::-;2565:25;;2490:107;;;:::o;15891:93:4:-;;;;:::o;8177:135:7:-;8247:4;8270:35;8278:3;:10;;8298:5;8290:14;;8270:7;:35::i;:::-;8263:42;;8177:135;;;;:::o;7880:129::-;7947:4;7970:32;7975:3;:10;;7995:5;7987:14;;7970:4;:32::i;:::-;7963:39;;7880:129;;;;:::o;4795:213:6:-;4914:4;4937:64;4942:3;:10;;4962:3;4954:12;;4992:5;4976:23;;4968:32;;4937:4;:64::i;:::-;4930:71;;4795:213;;;;;:::o;4328:118:7:-;4395:7;4421:3;:11;;4433:5;4421:18;;;;;;;;:::i;:::-;;;;;;;;;;4414:25;;4328:118;;;;:::o;2950:175:6:-;3017:7;3026;3045:11;3059:19;3072:5;3059:3;:9;;:12;;:19;;;;:::i;:::-;3045:33;;3096:3;3101;:11;;:16;3113:3;3101:16;;;;;;;;;;;;3088:30;;;;;2950:175;;;;;:::o;4216:270::-;4340:7;4359:13;4375:3;:11;;:16;4387:3;4375:16;;;;;;;;;;;;4359:32;;4418:1;4409:10;;:5;:10;;:33;;;;4423:19;4433:3;4438;4423:9;:19::i;:::-;4409:33;4444:12;4401:56;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4474:5;4467:12;;;4216:270;;;;;:::o;3879:107:7:-;3935:7;3961:3;:11;;:18;;;;3954:25;;3879:107;;;:::o;11461:247:4:-;11556:18;11562:2;11566:7;11556:5;:18::i;:::-;11592:54;11623:1;11627:2;11631:7;11640:5;11592:22;:54::i;:::-;11584:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;11461:247;;;:::o;14545:589::-;14665:4;14690:15;:2;:13;;;:15::i;:::-;14685:58;;14728:4;14721:11;;;;14685:58;14752:23;14778:246;14830:45;;;14889:12;:10;:12::i;:::-;14915:4;14933:7;14954:5;14794:175;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14778:246;;;;;;;;;;;;;;;;;:2;:15;;;;:246;;;;;:::i;:::-;14752:272;;15034:13;15061:10;15050:32;;;;;;;;;;;;:::i;:::-;15034:48;;1007:10;15110:16;;15100:26;;;:6;:26;;;;15092:35;;;;14545:589;;;;;;;:::o;2276:124:6:-;2347:4;2370:23;2389:3;2370;:9;;:18;;:23;;;;:::i;:::-;2363:30;;2276:124;;;;:::o;5406:115:7:-;5469:7;5495:19;5503:3;:10;;5495:7;:19::i;:::-;5488:26;;5406:115;;;:::o;2202:1388::-;2268:4;2384:18;2405:3;:12;;:19;2418:5;2405:19;;;;;;;;;;;;2384:40;;2453:1;2439:10;:15;2435:1149;;2808:21;2845:1;2832:10;:14;;;;:::i;:::-;2808:38;;2860:17;2901:1;2880:3;:11;;:18;;;;:22;;;;:::i;:::-;2860:42;;2934:13;2921:9;:26;2917:398;;2967:17;2987:3;:11;;2999:9;2987:22;;;;;;;;:::i;:::-;;;;;;;;;;2967:42;;3138:9;3109:3;:11;;3121:13;3109:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3247:10;3221:3;:12;;:23;3234:9;3221:23;;;;;;;;;;;:36;;;;2949:366;2917:398;3393:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3485:3;:12;;:19;3498:5;3485:19;;;;;;;;;;;3478:26;;;3526:4;3519:11;;;;;;;2435:1149;3568:5;3561:12;;;2202:1388;;;;;:::o;1630:404::-;1693:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:319;;1751:3;:11;;1768:5;1751:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1931:3;:11;;:18;;;;1909:3;:12;;:19;1922:5;1909:19;;;;;;;;;;;:40;;;;1970:4;1963:11;;;;1709:319;2012:5;2005:12;;1630:404;;;;;:::o;1693:188:6:-;1799:4;1834:5;1815:3;:11;;:16;1827:3;1815:16;;;;;;;;;;;:24;;;;1856:18;1870:3;1856;:9;;:13;;:18;;;;:::i;:::-;1849:25;;1693:188;;;;;:::o;5863:129:7:-;5937:7;5963:22;5967:3;:10;;5979:5;5963:3;:22::i;:::-;5956:29;;5863:129;;;;:::o;12030:393:4:-;12123:1;12109:16;;:2;:16;;;;12101:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;12181:16;12189:7;12181;:16::i;:::-;12180:17;12172:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;12241:45;12270:1;12274:2;12278:7;12241:20;:45::i;:::-;12297:30;12319:7;12297:13;:17;12311:2;12297:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;12338:29;12355:7;12364:2;12338:12;:16;;:29;;;;;:::i;:::-;;12408:7;12404:2;12383:33;;12400:1;12383:33;;;;;;;;;;;;12030:393;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;3461:223::-;3594:12;3625:52;3647:6;3655:4;3661:1;3664:12;3625:21;:52::i;:::-;3618:59;;3461:223;;;;;:::o;5187:138:7:-;5267:4;5290:28;5300:3;:10;;5312:5;5290:9;:28::i;:::-;5283:35;;5187:138;;;;:::o;3671:127::-;3744:4;3790:1;3767:3;:12;;:19;3780:5;3767:19;;;;;;;;;;;;:24;;3760:31;;3671:127;;;;:::o;4686:123::-;4756:4;4779:23;4784:3;:10;;4796:5;4779:4;:23::i;:::-;4772:30;;4686:123;;;;:::o;4548:500:0:-;4713:12;4770:5;4745:21;:30;;4737:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4836:18;4847:6;4836:10;:18::i;:::-;4828:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4900:12;4914:23;4941:6;:11;;4960:5;4967:4;4941:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4899:73;;;;4989:52;5007:7;5016:10;5028:12;4989:17;:52::i;:::-;4982:59;;;;4548:500;;;;;;:::o;6950:692::-;7096:12;7124:7;7120:516;;;7154:10;7147:17;;;;7120:516;7285:1;7265:10;:17;:21;7261:365;;;7459:10;7453:17;7519:15;7506:10;7502:2;7498:19;7491:44;7261:365;7598:12;7591:20;;;;;;;;;;;:::i;:::-;;;;;;;;6950:692;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:17:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:2;;;5733:79;;:::i;:::-;5695:2;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5685:262;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6077:79;;:::i;:::-;6039:2;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;6029:273;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:2;;;6432:79;;:::i;:::-;6394:2;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:2;;;6632:79;;:::i;:::-;6596:2;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6384:433;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:2;;;6937:79;;:::i;:::-;6899:2;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6889:263;;;;:::o;7158:654::-;7236:6;7244;7293:2;7281:9;7272:7;7268:23;7264:32;7261:2;;;7299:79;;:::i;:::-;7261:2;7419:1;7444:53;7489:7;7480:6;7469:9;7465:22;7444:53;:::i;:::-;7434:63;;7390:117;7574:2;7563:9;7559:18;7546:32;7605:18;7597:6;7594:30;7591:2;;;7627:79;;:::i;:::-;7591:2;7732:63;7787:7;7778:6;7767:9;7763:22;7732:63;:::i;:::-;7722:73;;7517:288;7251:561;;;;;:::o;7818:179::-;7887:10;7908:46;7950:3;7942:6;7908:46;:::i;:::-;7986:4;7981:3;7977:14;7963:28;;7898:99;;;;:::o;8003:118::-;8090:24;8108:5;8090:24;:::i;:::-;8085:3;8078:37;8068:53;;:::o;8157:732::-;8276:3;8305:54;8353:5;8305:54;:::i;:::-;8375:86;8454:6;8449:3;8375:86;:::i;:::-;8368:93;;8485:56;8535:5;8485:56;:::i;:::-;8564:7;8595:1;8580:284;8605:6;8602:1;8599:13;8580:284;;;8681:6;8675:13;8708:63;8767:3;8752:13;8708:63;:::i;:::-;8701:70;;8794:60;8847:6;8794:60;:::i;:::-;8784:70;;8640:224;8627:1;8624;8620:9;8615:14;;8580:284;;;8584:14;8880:3;8873:10;;8281:608;;;;;;;:::o;8895:109::-;8976:21;8991:5;8976:21;:::i;:::-;8971:3;8964:34;8954:50;;:::o;9010:360::-;9096:3;9124:38;9156:5;9124:38;:::i;:::-;9178:70;9241:6;9236:3;9178:70;:::i;:::-;9171:77;;9257:52;9302:6;9297:3;9290:4;9283:5;9279:16;9257:52;:::i;:::-;9334:29;9356:6;9334:29;:::i;:::-;9329:3;9325:39;9318:46;;9100:270;;;;;:::o;9376:373::-;9480:3;9508:38;9540:5;9508:38;:::i;:::-;9562:88;9643:6;9638:3;9562:88;:::i;:::-;9555:95;;9659:52;9704:6;9699:3;9692:4;9685:5;9681:16;9659:52;:::i;:::-;9736:6;9731:3;9727:16;9720:23;;9484:265;;;;;:::o;9755:364::-;9843:3;9871:39;9904:5;9871:39;:::i;:::-;9926:71;9990:6;9985:3;9926:71;:::i;:::-;9919:78;;10006:52;10051:6;10046:3;10039:4;10032:5;10028:16;10006:52;:::i;:::-;10083:29;10105:6;10083:29;:::i;:::-;10078:3;10074:39;10067:46;;9847:272;;;;;:::o;10125:377::-;10231:3;10259:39;10292:5;10259:39;:::i;:::-;10314:89;10396:6;10391:3;10314:89;:::i;:::-;10307:96;;10412:52;10457:6;10452:3;10445:4;10438:5;10434:16;10412:52;:::i;:::-;10489:6;10484:3;10480:16;10473:23;;10235:267;;;;;:::o;10508:366::-;10650:3;10671:67;10735:2;10730:3;10671:67;:::i;:::-;10664:74;;10747:93;10836:3;10747:93;:::i;:::-;10865:2;10860:3;10856:12;10849:19;;10654:220;;;:::o;10880:366::-;11022:3;11043:67;11107:2;11102:3;11043:67;:::i;:::-;11036:74;;11119:93;11208:3;11119:93;:::i;:::-;11237:2;11232:3;11228:12;11221:19;;11026:220;;;:::o;11252:366::-;11394:3;11415:67;11479:2;11474:3;11415:67;:::i;:::-;11408:74;;11491:93;11580:3;11491:93;:::i;:::-;11609:2;11604:3;11600:12;11593:19;;11398:220;;;:::o;11624:366::-;11766:3;11787:67;11851:2;11846:3;11787:67;:::i;:::-;11780:74;;11863:93;11952:3;11863:93;:::i;:::-;11981:2;11976:3;11972:12;11965:19;;11770:220;;;:::o;11996:366::-;12138:3;12159:67;12223:2;12218:3;12159:67;:::i;:::-;12152:74;;12235:93;12324:3;12235:93;:::i;:::-;12353:2;12348:3;12344:12;12337:19;;12142:220;;;:::o;12368:366::-;12510:3;12531:67;12595:2;12590:3;12531:67;:::i;:::-;12524:74;;12607:93;12696:3;12607:93;:::i;:::-;12725:2;12720:3;12716:12;12709:19;;12514:220;;;:::o;12740:366::-;12882:3;12903:67;12967:2;12962:3;12903:67;:::i;:::-;12896:74;;12979:93;13068:3;12979:93;:::i;:::-;13097:2;13092:3;13088:12;13081:19;;12886:220;;;:::o;13112:366::-;13254:3;13275:67;13339:2;13334:3;13275:67;:::i;:::-;13268:74;;13351:93;13440:3;13351:93;:::i;:::-;13469:2;13464:3;13460:12;13453:19;;13258:220;;;:::o;13484:366::-;13626:3;13647:67;13711:2;13706:3;13647:67;:::i;:::-;13640:74;;13723:93;13812:3;13723:93;:::i;:::-;13841:2;13836:3;13832:12;13825:19;;13630:220;;;:::o;13856:366::-;13998:3;14019:67;14083:2;14078:3;14019:67;:::i;:::-;14012:74;;14095:93;14184:3;14095:93;:::i;:::-;14213:2;14208:3;14204:12;14197:19;;14002:220;;;:::o;14228:366::-;14370:3;14391:67;14455:2;14450:3;14391:67;:::i;:::-;14384:74;;14467:93;14556:3;14467:93;:::i;:::-;14585:2;14580:3;14576:12;14569:19;;14374:220;;;:::o;14600:366::-;14742:3;14763:67;14827:2;14822:3;14763:67;:::i;:::-;14756:74;;14839:93;14928:3;14839:93;:::i;:::-;14957:2;14952:3;14948:12;14941:19;;14746:220;;;:::o;14972:366::-;15114:3;15135:67;15199:2;15194:3;15135:67;:::i;:::-;15128:74;;15211:93;15300:3;15211:93;:::i;:::-;15329:2;15324:3;15320:12;15313:19;;15118:220;;;:::o;15344:366::-;15486:3;15507:67;15571:2;15566:3;15507:67;:::i;:::-;15500:74;;15583:93;15672:3;15583:93;:::i;:::-;15701:2;15696:3;15692:12;15685:19;;15490:220;;;:::o;15716:366::-;15858:3;15879:67;15943:2;15938:3;15879:67;:::i;:::-;15872:74;;15955:93;16044:3;15955:93;:::i;:::-;16073:2;16068:3;16064:12;16057:19;;15862:220;;;:::o;16088:366::-;16230:3;16251:67;16315:2;16310:3;16251:67;:::i;:::-;16244:74;;16327:93;16416:3;16327:93;:::i;:::-;16445:2;16440:3;16436:12;16429:19;;16234:220;;;:::o;16460:366::-;16602:3;16623:67;16687:2;16682:3;16623:67;:::i;:::-;16616:74;;16699:93;16788:3;16699:93;:::i;:::-;16817:2;16812:3;16808:12;16801:19;;16606:220;;;:::o;16832:366::-;16974:3;16995:67;17059:2;17054:3;16995:67;:::i;:::-;16988:74;;17071:93;17160:3;17071:93;:::i;:::-;17189:2;17184:3;17180:12;17173:19;;16978:220;;;:::o;17204:366::-;17346:3;17367:67;17431:2;17426:3;17367:67;:::i;:::-;17360:74;;17443:93;17532:3;17443:93;:::i;:::-;17561:2;17556:3;17552:12;17545:19;;17350:220;;;:::o;17576:366::-;17718:3;17739:67;17803:2;17798:3;17739:67;:::i;:::-;17732:74;;17815:93;17904:3;17815:93;:::i;:::-;17933:2;17928:3;17924:12;17917:19;;17722:220;;;:::o;17948:366::-;18090:3;18111:67;18175:2;18170:3;18111:67;:::i;:::-;18104:74;;18187:93;18276:3;18187:93;:::i;:::-;18305:2;18300:3;18296:12;18289:19;;18094:220;;;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18466:220;;;:::o;18692:366::-;18834:3;18855:67;18919:2;18914:3;18855:67;:::i;:::-;18848:74;;18931:93;19020:3;18931:93;:::i;:::-;19049:2;19044:3;19040:12;19033:19;;18838:220;;;:::o;19064:366::-;19206:3;19227:67;19291:2;19286:3;19227:67;:::i;:::-;19220:74;;19303:93;19392:3;19303:93;:::i;:::-;19421:2;19416:3;19412:12;19405:19;;19210:220;;;:::o;19436:366::-;19578:3;19599:67;19663:2;19658:3;19599:67;:::i;:::-;19592:74;;19675:93;19764:3;19675:93;:::i;:::-;19793:2;19788:3;19784:12;19777:19;;19582:220;;;:::o;19808:108::-;19885:24;19903:5;19885:24;:::i;:::-;19880:3;19873:37;19863:53;;:::o;19922:118::-;20009:24;20027:5;20009:24;:::i;:::-;20004:3;19997:37;19987:53;;:::o;20046:271::-;20176:3;20198:93;20287:3;20278:6;20198:93;:::i;:::-;20191:100;;20308:3;20301:10;;20180:137;;;;:::o;20323:435::-;20503:3;20525:95;20616:3;20607:6;20525:95;:::i;:::-;20518:102;;20637:95;20728:3;20719:6;20637:95;:::i;:::-;20630:102;;20749:3;20742:10;;20507:251;;;;;:::o;20764:222::-;20857:4;20895:2;20884:9;20880:18;20872:26;;20908:71;20976:1;20965:9;20961:17;20952:6;20908:71;:::i;:::-;20862:124;;;;:::o;20992:640::-;21187:4;21225:3;21214:9;21210:19;21202:27;;21239:71;21307:1;21296:9;21292:17;21283:6;21239:71;:::i;:::-;21320:72;21388:2;21377:9;21373:18;21364:6;21320:72;:::i;:::-;21402;21470:2;21459:9;21455:18;21446:6;21402:72;:::i;:::-;21521:9;21515:4;21511:20;21506:2;21495:9;21491:18;21484:48;21549:76;21620:4;21611:6;21549:76;:::i;:::-;21541:84;;21192:440;;;;;;;:::o;21638:373::-;21781:4;21819:2;21808:9;21804:18;21796:26;;21868:9;21862:4;21858:20;21854:1;21843:9;21839:17;21832:47;21896:108;21999:4;21990:6;21896:108;:::i;:::-;21888:116;;21786:225;;;;:::o;22017:210::-;22104:4;22142:2;22131:9;22127:18;22119:26;;22155:65;22217:1;22206:9;22202:17;22193:6;22155:65;:::i;:::-;22109:118;;;;:::o;22233:313::-;22346:4;22384:2;22373:9;22369:18;22361:26;;22433:9;22427:4;22423:20;22419:1;22408:9;22404:17;22397:47;22461:78;22534:4;22525:6;22461:78;:::i;:::-;22453:86;;22351:195;;;;:::o;22552:419::-;22718:4;22756:2;22745:9;22741:18;22733:26;;22805:9;22799:4;22795:20;22791:1;22780:9;22776:17;22769:47;22833:131;22959:4;22833:131;:::i;:::-;22825:139;;22723:248;;;:::o;22977:419::-;23143:4;23181:2;23170:9;23166:18;23158:26;;23230:9;23224:4;23220:20;23216:1;23205:9;23201:17;23194:47;23258:131;23384:4;23258:131;:::i;:::-;23250:139;;23148:248;;;:::o;23402:419::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23573:248;;;:::o;23827:419::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23998:248;;;:::o;24252:419::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24423:248;;;:::o;24677:419::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24848:248;;;:::o;25102:419::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25273:248;;;:::o;25527:419::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25698:248;;;:::o;25952:419::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;26123:248;;;:::o;26377:419::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26548:248;;;:::o;26802:419::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26973:248;;;:::o;27227:419::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27398:248;;;:::o;27652:419::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27823:248;;;:::o;28077:419::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28248:248;;;:::o;28502:419::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28673:248;;;:::o;28927:419::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;29098:248;;;:::o;29352:419::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29523:248;;;:::o;29777:419::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29948:248;;;:::o;30202:419::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30373:248;;;:::o;30627:419::-;30793:4;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30798:248;;;:::o;31052:419::-;31218:4;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31223:248;;;:::o;31477:419::-;31643:4;31681:2;31670:9;31666:18;31658:26;;31730:9;31724:4;31720:20;31716:1;31705:9;31701:17;31694:47;31758:131;31884:4;31758:131;:::i;:::-;31750:139;;31648:248;;;:::o;31902:419::-;32068:4;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;32073:248;;;:::o;32327:419::-;32493:4;32531:2;32520:9;32516:18;32508:26;;32580:9;32574:4;32570:20;32566:1;32555:9;32551:17;32544:47;32608:131;32734:4;32608:131;:::i;:::-;32600:139;;32498:248;;;:::o;32752:419::-;32918:4;32956:2;32945:9;32941:18;32933:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33033:131;33159:4;33033:131;:::i;:::-;33025:139;;32923:248;;;:::o;33177:222::-;33270:4;33308:2;33297:9;33293:18;33285:26;;33321:71;33389:1;33378:9;33374:17;33365:6;33321:71;:::i;:::-;33275:124;;;;:::o;33405:129::-;33439:6;33466:20;;:::i;:::-;33456:30;;33495:33;33523:4;33515:6;33495:33;:::i;:::-;33446:88;;;:::o;33540:75::-;33573:6;33606:2;33600:9;33590:19;;33580:35;:::o;33621:307::-;33682:4;33772:18;33764:6;33761:30;33758:2;;;33794:18;;:::i;:::-;33758:2;33832:29;33854:6;33832:29;:::i;:::-;33824:37;;33916:4;33910;33906:15;33898:23;;33687:241;;;:::o;33934:308::-;33996:4;34086:18;34078:6;34075:30;34072:2;;;34108:18;;:::i;:::-;34072:2;34146:29;34168:6;34146:29;:::i;:::-;34138:37;;34230:4;34224;34220:15;34212:23;;34001:241;;;:::o;34248:132::-;34315:4;34338:3;34330:11;;34368:4;34363:3;34359:14;34351:22;;34320:60;;;:::o;34386:114::-;34453:6;34487:5;34481:12;34471:22;;34460:40;;;:::o;34506:98::-;34557:6;34591:5;34585:12;34575:22;;34564:40;;;:::o;34610:99::-;34662:6;34696:5;34690:12;34680:22;;34669:40;;;:::o;34715:113::-;34785:4;34817;34812:3;34808:14;34800:22;;34790:38;;;:::o;34834:184::-;34933:11;34967:6;34962:3;34955:19;35007:4;35002:3;34998:14;34983:29;;34945:73;;;;:::o;35024:168::-;35107:11;35141:6;35136:3;35129:19;35181:4;35176:3;35172:14;35157:29;;35119:73;;;;:::o;35198:147::-;35299:11;35336:3;35321:18;;35311:34;;;;:::o;35351:169::-;35435:11;35469:6;35464:3;35457:19;35509:4;35504:3;35500:14;35485:29;;35447:73;;;;:::o;35526:148::-;35628:11;35665:3;35650:18;;35640:34;;;;:::o;35680:305::-;35720:3;35739:20;35757:1;35739:20;:::i;:::-;35734:25;;35773:20;35791:1;35773:20;:::i;:::-;35768:25;;35927:1;35859:66;35855:74;35852:1;35849:81;35846:2;;;35933:18;;:::i;:::-;35846:2;35977:1;35974;35970:9;35963:16;;35724:261;;;;:::o;35991:185::-;36031:1;36048:20;36066:1;36048:20;:::i;:::-;36043:25;;36082:20;36100:1;36082:20;:::i;:::-;36077:25;;36121:1;36111:2;;36126:18;;:::i;:::-;36111:2;36168:1;36165;36161:9;36156:14;;36033:143;;;;:::o;36182:348::-;36222:7;36245:20;36263:1;36245:20;:::i;:::-;36240:25;;36279:20;36297:1;36279:20;:::i;:::-;36274:25;;36467:1;36399:66;36395:74;36392:1;36389:81;36384:1;36377:9;36370:17;36366:105;36363:2;;;36474:18;;:::i;:::-;36363:2;36522:1;36519;36515:9;36504:20;;36230:300;;;;:::o;36536:191::-;36576:4;36596:20;36614:1;36596:20;:::i;:::-;36591:25;;36630:20;36648:1;36630:20;:::i;:::-;36625:25;;36669:1;36666;36663:8;36660:2;;;36674:18;;:::i;:::-;36660:2;36719:1;36716;36712:9;36704:17;;36581:146;;;;:::o;36733:96::-;36770:7;36799:24;36817:5;36799:24;:::i;:::-;36788:35;;36778:51;;;:::o;36835:90::-;36869:7;36912:5;36905:13;36898:21;36887:32;;36877:48;;;:::o;36931:149::-;36967:7;37007:66;37000:5;36996:78;36985:89;;36975:105;;;:::o;37086:126::-;37123:7;37163:42;37156:5;37152:54;37141:65;;37131:81;;;:::o;37218:77::-;37255:7;37284:5;37273:16;;37263:32;;;:::o;37301:154::-;37385:6;37380:3;37375;37362:30;37447:1;37438:6;37433:3;37429:16;37422:27;37352:103;;;:::o;37461:307::-;37529:1;37539:113;37553:6;37550:1;37547:13;37539:113;;;37638:1;37633:3;37629:11;37623:18;37619:1;37614:3;37610:11;37603:39;37575:2;37572:1;37568:10;37563:15;;37539:113;;;37670:6;37667:1;37664:13;37661:2;;;37750:1;37741:6;37736:3;37732:16;37725:27;37661:2;37510:258;;;;:::o;37774:320::-;37818:6;37855:1;37849:4;37845:12;37835:22;;37902:1;37896:4;37892:12;37923:18;37913:2;;37979:4;37971:6;37967:17;37957:27;;37913:2;38041;38033:6;38030:14;38010:18;38007:38;38004:2;;;38060:18;;:::i;:::-;38004:2;37825:269;;;;:::o;38100:281::-;38183:27;38205:4;38183:27;:::i;:::-;38175:6;38171:40;38313:6;38301:10;38298:22;38277:18;38265:10;38262:34;38259:62;38256:2;;;38324:18;;:::i;:::-;38256:2;38364:10;38360:2;38353:22;38143:238;;;:::o;38387:233::-;38426:3;38449:24;38467:5;38449:24;:::i;:::-;38440:33;;38495:66;38488:5;38485:77;38482:2;;;38565:18;;:::i;:::-;38482:2;38612:1;38605:5;38601:13;38594:20;;38430:190;;;:::o;38626:176::-;38658:1;38675:20;38693:1;38675:20;:::i;:::-;38670:25;;38709:20;38727:1;38709:20;:::i;:::-;38704:25;;38748:1;38738:2;;38753:18;;:::i;:::-;38738:2;38794:1;38791;38787:9;38782:14;;38660:142;;;;:::o;38808:180::-;38856:77;38853:1;38846:88;38953:4;38950:1;38943:15;38977:4;38974:1;38967:15;38994:180;39042:77;39039:1;39032:88;39139:4;39136:1;39129:15;39163:4;39160:1;39153:15;39180:180;39228:77;39225:1;39218:88;39325:4;39322:1;39315:15;39349:4;39346:1;39339:15;39366:180;39414:77;39411:1;39404:88;39511:4;39508:1;39501:15;39535:4;39532:1;39525:15;39552:180;39600:77;39597:1;39590:88;39697:4;39694:1;39687:15;39721:4;39718:1;39711:15;39738:180;39786:77;39783:1;39776:88;39883:4;39880:1;39873:15;39907:4;39904:1;39897:15;39924:117;40033:1;40030;40023:12;40047:117;40156:1;40153;40146:12;40170:117;40279:1;40276;40269:12;40293:117;40402:1;40399;40392:12;40416:102;40457:6;40508:2;40504:7;40499:2;40492:5;40488:14;40484:28;40474:38;;40464:54;;;:::o;40524:174::-;40664:26;40660:1;40652:6;40648:14;40641:50;40630:68;:::o;40704:237::-;40844:34;40840:1;40832:6;40828:14;40821:58;40913:20;40908:2;40900:6;40896:15;40889:45;40810:131;:::o;40947:225::-;41087:34;41083:1;41075:6;41071:14;41064:58;41156:8;41151:2;41143:6;41139:15;41132:33;41053:119;:::o;41178:178::-;41318:30;41314:1;41306:6;41302:14;41295:54;41284:72;:::o;41362:166::-;41502:18;41498:1;41490:6;41486:14;41479:42;41468:60;:::o;41534:223::-;41674:34;41670:1;41662:6;41658:14;41651:58;41743:6;41738:2;41730:6;41726:15;41719:31;41640:117;:::o;41763:175::-;41903:27;41899:1;41891:6;41887:14;41880:51;41869:69;:::o;41944:171::-;42084:23;42080:1;42072:6;42068:14;42061:47;42050:65;:::o;42121:225::-;42261:34;42257:1;42249:6;42245:14;42238:58;42330:8;42325:2;42317:6;42313:15;42306:33;42227:119;:::o;42352:231::-;42492:34;42488:1;42480:6;42476:14;42469:58;42561:14;42556:2;42548:6;42544:15;42537:39;42458:125;:::o;42589:243::-;42729:34;42725:1;42717:6;42713:14;42706:58;42798:26;42793:2;42785:6;42781:15;42774:51;42695:137;:::o;42838:229::-;42978:34;42974:1;42966:6;42962:14;42955:58;43047:12;43042:2;43034:6;43030:15;43023:37;42944:123;:::o;43073:182::-;43213:34;43209:1;43201:6;43197:14;43190:58;43179:76;:::o;43261:221::-;43401:34;43397:1;43389:6;43385:14;43378:58;43470:4;43465:2;43457:6;43453:15;43446:29;43367:115;:::o;43488:231::-;43628:34;43624:1;43616:6;43612:14;43605:58;43697:14;43692:2;43684:6;43680:15;43673:39;43594:125;:::o;43725:231::-;43865:34;43861:1;43853:6;43849:14;43842:58;43934:14;43929:2;43921:6;43917:15;43910:39;43831:125;:::o;43962:182::-;44102:34;44098:1;44090:6;44086:14;44079:58;44068:76;:::o;44150:228::-;44290:34;44286:1;44278:6;44274:14;44267:58;44359:11;44354:2;44346:6;44342:15;44335:36;44256:122;:::o;44384:232::-;44524:34;44520:1;44512:6;44508:14;44501:58;44593:15;44588:2;44580:6;44576:15;44569:40;44490:126;:::o;44622:220::-;44762:34;44758:1;44750:6;44746:14;44739:58;44831:3;44826:2;44818:6;44814:15;44807:28;44728:114;:::o;44848:236::-;44988:34;44984:1;44976:6;44972:14;44965:58;45057:19;45052:2;45044:6;45040:15;45033:44;44954:130;:::o;45090:236::-;45230:34;45226:1;45218:6;45214:14;45207:58;45299:19;45294:2;45286:6;45282:15;45275:44;45196:130;:::o;45332:179::-;45472:31;45468:1;45460:6;45456:14;45449:55;45438:73;:::o;45517:181::-;45657:33;45653:1;45645:6;45641:14;45634:57;45623:75;:::o;45704:228::-;45844:34;45840:1;45832:6;45828:14;45821:58;45913:11;45908:2;45900:6;45896:15;45889:36;45810:122;:::o;45938:::-;46011:24;46029:5;46011:24;:::i;:::-;46004:5;46001:35;45991:2;;46050:1;46047;46040:12;45991:2;45981:79;:::o;46066:116::-;46136:21;46151:5;46136:21;:::i;:::-;46129:5;46126:32;46116:2;;46172:1;46169;46162:12;46116:2;46106:76;:::o;46188:120::-;46260:23;46277:5;46260:23;:::i;:::-;46253:5;46250:34;46240:2;;46298:1;46295;46288:12;46240:2;46230:78;:::o;46314:122::-;46387:24;46405:5;46387:24;:::i;:::-;46380:5;46377:35;46367:2;;46426:1;46423;46416:12;46367:2;46357:79;:::o

Swarm Source

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