ETH Price: $3,355.60 (-1.79%)
Gas: 6 Gwei

Token

TheAlienBoy (TABOY)
 

Overview

Max Total Supply

10,000 TABOY

Holders

3,207

Market

Volume (24H)

0.051 ETH

Min Price (24H)

$171.14 @ 0.051000 ETH

Max Price (24H)

$171.14 @ 0.051000 ETH
Balance
1 TABOY
0x9B0c96442b3EC7c2964F96e9a6FD2385F5D2D6fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Each Alien Boy is unique and algorithmically generated by combining 182 properties with varying rarities in 9 categories. Limited supply of 10.000 Alien Boys invading the shitty earth. Our alien-source brand grants ownership and commercial usage rights given to the owner over their NFT.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheAlienBoy

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 20 of 20: TheAlienBoy.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./EnumerableMap.sol";
import "./ERC721Enumerable.sol";
import "./ERC1155.sol";
		                                                                          
//                        ,(((((((((((((((((((((((((,                          
//                    #####((((((((((((((((((((((((((((((.                     
//                ,#######((((((((((((((((((((((((((((((((((/                  
//             .##########(((((((((((((((((((((((((((((((((((((                
//          ..#########(##((((((((((((((///***,,,,,....,,,##%%(%#%             
//       ....############(((##%(*,,.....,,,/(////#/#(#,*,*%#(/*/*(%            
//      ....###########(/%(,,,(/#/##%%*&#**,/,(((#&/%(&#%##((%(*///#           
//    .....#######(/*,(**#(*##&#&@%%%&/%*/*%(*%,(,,./(/.#*#,%#(%%.,##          
//  &%.....###&%%#**(*/*(((,/%*/%((&%&(#((((((((((((((((((((((((((((,          
//   #(##,,#(**(&*#/%%#%((((((((((((((((((((((((((((((((((((((((((((/          
//  ..##/###&##########(((((((((((((((((((((((((((((((((((((((((((((/          
// /(/,,/&,#############((((((((((((((((((((((((((((((((((((((((((((*          
//  ....,,,###@&&&&@&@@@&&&%%#&@@@@@@@@@@@@@@@@@%(((((((((#&@@@@@@@&           
//  ....,,,##@###########(#&@@@@@@@(&@@@@@@@&%##(#@@@@@&(((((@@&%#(@&&         
//  .....,,,#############(#(((((%@((@@@@@@@@&%##%&%@@&@(((%@@@@&%//,&          
//  .....,,,,################((((@((#@@@@@@@&%#%&&@&(#@(#@@@@@@(// &,          
//   .....,,,,#################((#@(((#@@@@&%##%&@@(((#@@@@@@(((/  @           
//    .....,,,,,###################@(((((##%%#((@%((((((@((((((  @&            
//      ....,,,,,,##################%@@@&&&@@@&(((((((((((#&&&&%               
//       .......,,,,,####################################/                     
//          ......,,,,,,,,%%##########%%%%%%%%%%%%%%/.                         
//            .........,,,,,,,%@@@@@@@@@@*///*@@@@,                            
//                 .........,@@@@*@@@@@#@#(..@&&/@(                            
//                    .....@@@@@@@@@@@@@@&&&%&%&@&@@                           
//                    ....@@@@@@@@@@@@@@@@@@&&@@@@@@@                          
//                   ....@&@&&@&@@@&&@&&&&&&@@&/@@@@@@                         
//                  ....&&&&&&&&&@@@&&&#&&&&&&&%&&&&@@@                        
//                 ....&&&&&%&&&&@&&%%&%%%%%&&%&&&&&@@&&                       
//                ....%%%%%%%%&&&&&&%%%%%%%%%%&%%&&&&@&&*      
//
//
//  F#ck you nerd. You found me!
//  Join #IFoundTheAlienBoyContract at https://discord.gg/4TCeBSDbSh


contract TheAlienBoy is ERC721Enumerable, Ownable  {

    using SafeMath for uint256;

    // Token detail
    struct AlienDetail {
        uint256 first_encounter;
    }

    // Events
    event TokenMinted(uint256 tokenId, address owner, uint256 first_encounter);

    // Token Detail
    mapping( uint256 => AlienDetail) private _alienDetails;

    // Provenance number
    string public PROVENANCE = "";

    // Starting index
    uint256 public STARTING_INDEX;

    // Max amount of token to purchase per account each time
    uint public MAX_PURCHASE = 50;

    // Maximum amount of tokens to supply.
    uint256 public MAX_TOKENS = 10000;

    // Current price.
    uint256 public CURRENT_PRICE = 80000000000000000;

    // Define if sale is active
    bool public saleIsActive = true;

    // Base URI
    string private baseURI;

    /**
     * Contract constructor
     */
    constructor(string memory name, string memory symbol, string memory baseURIp, uint256 startingIndex) ERC721(name, symbol) {
        setBaseURI(baseURIp);
        STARTING_INDEX = startingIndex;
    }

    /**
     * Withdraw
     */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Reserve tokens
     */
    function reserveTokens() public onlyOwner {
        uint i;
        uint tokenId;
        uint256 first_encounter = block.timestamp;

        for (i = 1; i <= 50; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _alienDetails[tokenId] = AlienDetail(first_encounter);
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    /**
     * Mint a specific token. 
     */
    function mintTokenId(uint tokenId) public onlyOwner {
        require(!_exists(tokenId), "Token was minted");
        uint256 first_encounter = block.timestamp;
        
        _safeMint(msg.sender, tokenId);
        _alienDetails[tokenId] = AlienDetail(first_encounter);
        emit TokenMinted(tokenId, msg.sender, first_encounter);
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE = provenanceHash;
    }

    /*     
    * Set max tokens
    */
    function setMaxTokens(uint256 maxTokens) public onlyOwner {
        MAX_TOKENS = maxTokens;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    /**
    * Mint Alien
    */
    function mintAlien(uint numberOfTokens) public payable {
        require(saleIsActive, "Mint is not available right now");
        require(numberOfTokens <= MAX_PURCHASE, "Can only mint 50 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Aliens");
        require(CURRENT_PRICE.mul(numberOfTokens) <= msg.value, "Value sent is not correct");
        uint256 first_encounter = block.timestamp;
        uint tokenId;
        
        for(uint i = 1; i <= numberOfTokens; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _alienDetails[tokenId] = AlienDetail(first_encounter);
                
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex(uint256 startingIndex) public onlyOwner {
        STARTING_INDEX = startingIndex;
    }

    /**
    * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
    */
    function setBaseURI(string memory BaseURI) public onlyOwner {
       baseURI = BaseURI;
    }

     /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

   /**
     * Set the current token price
     */
    function setCurrentPrice(uint256 currentPrice) public onlyOwner {
        CURRENT_PRICE = currentPrice;
    }

    /**
     * Get the token detail
     */
    function getAlienDetail(uint256 tokenId) public view returns(AlienDetail memory detail) {
        require(_exists(tokenId), "Token was not minted");

        return _alienDetails[tokenId];
    }
}

File 1 of 20: 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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 20: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 20: 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 20: 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;

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

File 5 of 20: ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        _balances[id][from] = fromBalance - amount;
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            _balances[id][from] = fromBalance - amount;
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal
        virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 20: 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 7 of 20: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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;

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

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

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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 20: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 20: IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}

File 10 of 20: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 11 of 20: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}

File 12 of 20: 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 13 of 20: 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 14 of 20: 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 15 of 20: 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 16 of 20: 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 17 of 20: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

File 18 of 20: 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * 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 19 of 20: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIp","type":"string"},{"internalType":"uint256","name":"startingIndex","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"first_encounter","type":"uint256"}],"name":"TokenMinted","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":"CURRENT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_INDEX","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAlienDetail","outputs":[{"components":[{"internalType":"uint256","name":"first_encounter","type":"uint256"}],"internalType":"struct TheAlienBoy.AlienDetail","name":"detail","type":"tuple"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintAlien","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingIndex","type":"uint256"}],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000277565b506032600e55612710600f5567011c37937e0800006010556001601160006101000a81548160ff0219169083151502179055503480156200006b57600080fd5b5060405162004cdf38038062004cdf8339818101604052810190620000919190620003b0565b83838160009080519060200190620000ab92919062000277565b508060019080519060200190620000c492919062000277565b5050506000620000d96200019a60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200018982620001a260201b60201c565b80600d819055505050505062000631565b600033905090565b620001b26200019a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001d86200024d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022890620004a9565b60405180910390fd5b80601290805190602001906200024992919062000277565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002859062000583565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b60006200033e6200033884620004ff565b620004cb565b9050828152602081018484840111156200035757600080fd5b620003648482856200054d565b509392505050565b600082601f8301126200037e57600080fd5b81516200039084826020860162000327565b91505092915050565b600081519050620003aa8162000617565b92915050565b60008060008060808587031215620003c757600080fd5b600085015167ffffffffffffffff811115620003e257600080fd5b620003f0878288016200036c565b945050602085015167ffffffffffffffff8111156200040e57600080fd5b6200041c878288016200036c565b935050604085015167ffffffffffffffff8111156200043a57600080fd5b62000448878288016200036c565b92505060606200045b8782880162000399565b91505092959194509250565b60006200047660208362000532565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004c48162000467565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620004f557620004f4620005e8565b5b8060405250919050565b600067ffffffffffffffff8211156200051d576200051c620005e8565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200056d57808201518184015260208101905062000550565b838111156200057d576000848401525b50505050565b600060028204905060018216806200059c57607f821691505b60208210811415620005b357620005b2620005b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006228162000543565b81146200062e57600080fd5b50565b61469e80620006416000396000f3fe60806040526004361061020f5760003560e01c80636373a6b111610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610776578063eb8d2444146107b3578063f2fde38b146107de578063f47c84c514610807578063f7de95e4146108325761020f565b8063b88d4fde146106cb578063c4e37095146106f4578063c87b56dd1461071d578063d40491831461075a5761020f565b8063715018a6116100e7578063715018a61461060c57806388f2ebcb146106235780638da5cb5b1461064c57806395d89b4114610677578063a22cb465146106a25761020f565b80636373a6b11461053c578063686f8fc11461056757806370a08231146105a45780637146bd08146105e15761020f565b80632429467b1161019b57806342842e0e1161016a57806342842e0e146104455780634b369a611461046e5780634f6ccce71461049957806355f804b3146104d65780636352211e146104ff5761020f565b80632429467b146103b157806327ac36c4146103da5780632f745c59146103f15780633ccfd60b1461042e5761020f565b806310969523116101e257806310969523146102e257806311e776fe1461030b57806318160ddd1461033457806318b200711461035f57806323b872dd146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133a8565b61085d565b6040516102489190613e4a565b60405180910390f35b34801561025d57600080fd5b506102666108d7565b6040516102739190613e65565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061343b565b610969565b6040516102b09190613de3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613343565b6109ee565b005b3480156102ee57600080fd5b50610309600480360381019061030491906133fa565b610b06565b005b34801561031757600080fd5b50610332600480360381019061032d919061343b565b610b9c565b005b34801561034057600080fd5b50610349610c22565b60405161035691906141a2565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061343b565b610c2f565b005b34801561039457600080fd5b506103af60048036038101906103aa919061323d565b610cb5565b005b3480156103bd57600080fd5b506103d860048036038101906103d3919061343b565b610d15565b005b3480156103e657600080fd5b506103ef610e57565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613343565b610f9b565b60405161042591906141a2565b60405180910390f35b34801561043a57600080fd5b50610443611040565b005b34801561045157600080fd5b5061046c6004803603810190610467919061323d565b61110b565b005b34801561047a57600080fd5b5061048361112b565b60405161049091906141a2565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061343b565b611131565b6040516104cd91906141a2565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906133fa565b6111c8565b005b34801561050b57600080fd5b506105266004803603810190610521919061343b565b61125e565b6040516105339190613de3565b60405180910390f35b34801561054857600080fd5b50610551611310565b60405161055e9190613e65565b60405180910390f35b34801561057357600080fd5b5061058e6004803603810190610589919061343b565b61139e565b60405161059b9190614187565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906131d8565b61141d565b6040516105d891906141a2565b60405180910390f35b3480156105ed57600080fd5b506105f66114d5565b60405161060391906141a2565b60405180910390f35b34801561061857600080fd5b506106216114db565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061343b565b611618565b005b34801561065857600080fd5b5061066161169e565b60405161066e9190613de3565b60405180910390f35b34801561068357600080fd5b5061068c6116c8565b6040516106999190613e65565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613307565b61175a565b005b3480156106d757600080fd5b506106f260048036038101906106ed919061328c565b6118db565b005b34801561070057600080fd5b5061071b6004803603810190610716919061337f565b61193d565b005b34801561072957600080fd5b50610744600480360381019061073f919061343b565b6119d6565b6040516107519190613e65565b60405180910390f35b610774600480360381019061076f919061343b565b611a7d565b005b34801561078257600080fd5b5061079d60048036038101906107989190613201565b611c8e565b6040516107aa9190613e4a565b60405180910390f35b3480156107bf57600080fd5b506107c8611d22565b6040516107d59190613e4a565b60405180910390f35b3480156107ea57600080fd5b50610805600480360381019061080091906131d8565b611d35565b005b34801561081357600080fd5b5061081c611ee1565b60405161082991906141a2565b60405180910390f35b34801561083e57600080fd5b50610847611ee7565b60405161085491906141a2565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057506108cf82611eed565b5b9050919050565b6060600080546108e690614493565b80601f016020809104026020016040519081016040528092919081815260200182805461091290614493565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600061097482611fcf565b6109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa906140a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f98261125e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614127565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8961203b565b73ffffffffffffffffffffffffffffffffffffffff161480610ab85750610ab781610ab261203b565b611c8e565b5b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613fe7565b60405180910390fd5b610b018383612043565b505050565b610b0e61203b565b73ffffffffffffffffffffffffffffffffffffffff16610b2c61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906140c7565b60405180910390fd5b80600c9080519060200190610b98929190612fe9565b5050565b610ba461203b565b73ffffffffffffffffffffffffffffffffffffffff16610bc261169e565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906140c7565b60405180910390fd5b80600f8190555050565b6000600880549050905090565b610c3761203b565b73ffffffffffffffffffffffffffffffffffffffff16610c5561169e565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906140c7565b60405180910390fd5b8060108190555050565b610cc6610cc061203b565b826120fc565b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90614147565b60405180910390fd5b610d108383836121da565b505050565b610d1d61203b565b73ffffffffffffffffffffffffffffffffffffffff16610d3b61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d88906140c7565b60405180910390fd5b610d9a81611fcf565b15610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613fa7565b60405180910390fd5b6000429050610de93383612436565b604051806020016040528082815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051610e4b939291906141bd565b60405180910390a15050565b610e5f61203b565b73ffffffffffffffffffffffffffffffffffffffff16610e7d61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906140c7565b60405180910390fd5b6000806000429050600192505b60328311610f9657610f036001610ef5610c22565b61245490919063ffffffff16565b9150600f548211610f8357610f183383612436565b604051806020016040528082815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051610f7a939291906141bd565b60405180910390a15b8280610f8e906144c5565b935050610ee0565b505050565b6000610fa68361141d565b8210610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90613ea7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61104861203b565b73ffffffffffffffffffffffffffffffffffffffff1661106661169e565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906140c7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611107573d6000803e3d6000fd5b5050565b611126838383604051806020016040528060008152506118db565b505050565b60105481565b600061113b610c22565b821061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390614167565b60405180910390fd5b600882815481106111b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6111d061203b565b73ffffffffffffffffffffffffffffffffffffffff166111ee61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906140c7565b60405180910390fd5b806012908051906020019061125a929190612fe9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614047565b60405180910390fd5b80915050919050565b600c805461131d90614493565b80601f016020809104026020016040519081016040528092919081815260200182805461134990614493565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b505050505081565b6113a661306f565b6113af82611fcf565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613fc7565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614027565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6114e361203b565b73ffffffffffffffffffffffffffffffffffffffff1661150161169e565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906140c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61162061203b565b73ffffffffffffffffffffffffffffffffffffffff1661163e61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906140c7565b60405180910390fd5b80600d8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116d790614493565b80601f016020809104026020016040519081016040528092919081815260200182805461170390614493565b80156117505780601f1061172557610100808354040283529160200191611750565b820191906000526020600020905b81548152906001019060200180831161173357829003601f168201915b5050505050905090565b61176261203b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613f47565b60405180910390fd5b80600560006117dd61203b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188a61203b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cf9190613e4a565b60405180910390a35050565b6118ec6118e661203b565b836120fc565b61192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614147565b60405180910390fd5b6119378484848461246a565b50505050565b61194561203b565b73ffffffffffffffffffffffffffffffffffffffff1661196361169e565b73ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906140c7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606119e182611fcf565b611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790614107565b60405180910390fd5b6000611a2a6124c6565b90506000815111611a4a5760405180602001604052806000815250611a75565b80611a5484612558565b604051602001611a65929190613dbf565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff16611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613f67565b60405180910390fd5b600e54811115611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614007565b60405180910390fd5b600f54611b2e82611b20610c22565b61245490919063ffffffff16565b1115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613e87565b60405180910390fd5b34611b858260105461270590919063ffffffff16565b1115611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614067565b60405180910390fd5b6000429050600080600190505b838111611c8857611bf56001611be7610c22565b61245490919063ffffffff16565b9150600f548211611c7557611c0a3383612436565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611c6c939291906141bd565b60405180910390a15b8080611c80906144c5565b915050611bd3565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611d3d61203b565b73ffffffffffffffffffffffffffffffffffffffff16611d5b61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da8906140c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ee7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fc85750611fc78261271b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120b68361125e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210782611fcf565b612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90613f87565b60405180910390fd5b60006121518361125e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c057508373ffffffffffffffffffffffffffffffffffffffff166121a884610969565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d157506121d08185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121fa8261125e565b73ffffffffffffffffffffffffffffffffffffffff1614612250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612247906140e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b790613f27565b60405180910390fd5b6122cb838383612785565b6122d6600082612043565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232691906143a9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237d91906142c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612450828260405180602001604052806000815250612899565b5050565b6000818361246291906142c8565b905092915050565b6124758484846121da565b612481848484846128f4565b6124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790613ec7565b60405180910390fd5b50505050565b6060601280546124d590614493565b80601f016020809104026020016040519081016040528092919081815260200182805461250190614493565b801561254e5780601f106125235761010080835404028352916020019161254e565b820191906000526020600020905b81548152906001019060200180831161253157829003601f168201915b5050505050905090565b606060008214156125a0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612700565b600082905060005b600082146125d25780806125bb906144c5565b915050600a826125cb919061431e565b91506125a8565b60008167ffffffffffffffff811115612614577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126465781602001600182028036833780820191505090505b5090505b600085146126f95760018261265f91906143a9565b9150600a8561266e919061450e565b603061267a91906142c8565b60f81b8183815181106126b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f2919061431e565b945061264a565b8093505050505b919050565b60008183612713919061434f565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612790838383612a8b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127d3576127ce81612a90565b612812565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612811576128108382612ad9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128555761285081612c46565b612894565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612893576128928282612d89565b5b5b505050565b6128a38383612e08565b6128b060008484846128f4565b6128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690613ec7565b60405180910390fd5b505050565b60006129158473ffffffffffffffffffffffffffffffffffffffff16612fd6565b15612a7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261293e61203b565b8786866040518563ffffffff1660e01b81526004016129609493929190613dfe565b602060405180830381600087803b15801561297a57600080fd5b505af19250505080156129ab57506040513d601f19601f820116820180604052508101906129a891906133d1565b60015b612a2e573d80600081146129db576040519150601f19603f3d011682016040523d82523d6000602084013e6129e0565b606091505b50600081511415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90613ec7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a83565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae68461141d565b612af091906143a9565b9050600060076000848152602001908152602001600020549050818114612bd5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5a91906143a9565b9050600060096000848152602001908152602001600020549050600060088381548110612cb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612cf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d948361141d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90614087565b60405180910390fd5b612e8181611fcf565b15612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890613f07565b60405180910390fd5b612ecd60008383612785565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1d91906142c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ff590614493565b90600052602060002090601f016020900481019282613017576000855561305e565b82601f1061303057805160ff191683800117855561305e565b8280016001018555821561305e579182015b8281111561305d578251825591602001919060010190613042565b5b50905061306b9190613082565b5090565b6040518060200160405280600081525090565b5b8082111561309b576000816000905550600101613083565b5090565b60006130b26130ad84614225565b6141f4565b9050828152602081018484840111156130ca57600080fd5b6130d5848285614451565b509392505050565b60006130f06130eb84614255565b6141f4565b90508281526020810184848401111561310857600080fd5b613113848285614451565b509392505050565b60008135905061312a8161460c565b92915050565b60008135905061313f81614623565b92915050565b6000813590506131548161463a565b92915050565b6000815190506131698161463a565b92915050565b600082601f83011261318057600080fd5b813561319084826020860161309f565b91505092915050565b600082601f8301126131aa57600080fd5b81356131ba8482602086016130dd565b91505092915050565b6000813590506131d281614651565b92915050565b6000602082840312156131ea57600080fd5b60006131f88482850161311b565b91505092915050565b6000806040838503121561321457600080fd5b60006132228582860161311b565b92505060206132338582860161311b565b9150509250929050565b60008060006060848603121561325257600080fd5b60006132608682870161311b565b93505060206132718682870161311b565b9250506040613282868287016131c3565b9150509250925092565b600080600080608085870312156132a257600080fd5b60006132b08782880161311b565b94505060206132c18782880161311b565b93505060406132d2878288016131c3565b925050606085013567ffffffffffffffff8111156132ef57600080fd5b6132fb8782880161316f565b91505092959194509250565b6000806040838503121561331a57600080fd5b60006133288582860161311b565b925050602061333985828601613130565b9150509250929050565b6000806040838503121561335657600080fd5b60006133648582860161311b565b9250506020613375858286016131c3565b9150509250929050565b60006020828403121561339157600080fd5b600061339f84828501613130565b91505092915050565b6000602082840312156133ba57600080fd5b60006133c884828501613145565b91505092915050565b6000602082840312156133e357600080fd5b60006133f18482850161315a565b91505092915050565b60006020828403121561340c57600080fd5b600082013567ffffffffffffffff81111561342657600080fd5b61343284828501613199565b91505092915050565b60006020828403121561344d57600080fd5b600061345b848285016131c3565b91505092915050565b61346d816143dd565b82525050565b61347c816143ef565b82525050565b600061348d82614285565b613497818561429b565b93506134a7818560208601614460565b6134b0816145fb565b840191505092915050565b60006134c682614290565b6134d081856142ac565b93506134e0818560208601614460565b6134e9816145fb565b840191505092915050565b60006134ff82614290565b61350981856142bd565b9350613519818560208601614460565b80840191505092915050565b6000613532602a836142ac565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620416c69656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613598602b836142ac565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135fe6032836142ac565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136646026836142ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136ca601c836142ac565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061370a6024836142ac565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137706019836142ac565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137b0601f836142ac565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b60006137f0602c836142ac565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138566010836142ac565b91507f546f6b656e20776173206d696e746564000000000000000000000000000000006000830152602082019050919050565b60006138966014836142ac565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b60006138d66038836142ac565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061393c6021836142ac565b91507f43616e206f6e6c79206d696e7420353020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a2602a836142ac565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a086029836142ac565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a6e6019836142ac565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613aae6020836142ac565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613aee602c836142ac565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b546020836142ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b946029836142ac565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa602f836142ac565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c606021836142ac565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc66031836142ac565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d2c602c836142ac565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b602082016000820151613d9b6000850182613da1565b50505050565b613daa81614447565b82525050565b613db981614447565b82525050565b6000613dcb82856134f4565b9150613dd782846134f4565b91508190509392505050565b6000602082019050613df86000830184613464565b92915050565b6000608082019050613e136000830187613464565b613e206020830186613464565b613e2d6040830185613db0565b8181036060830152613e3f8184613482565b905095945050505050565b6000602082019050613e5f6000830184613473565b92915050565b60006020820190508181036000830152613e7f81846134bb565b905092915050565b60006020820190508181036000830152613ea081613525565b9050919050565b60006020820190508181036000830152613ec08161358b565b9050919050565b60006020820190508181036000830152613ee0816135f1565b9050919050565b60006020820190508181036000830152613f0081613657565b9050919050565b60006020820190508181036000830152613f20816136bd565b9050919050565b60006020820190508181036000830152613f40816136fd565b9050919050565b60006020820190508181036000830152613f6081613763565b9050919050565b60006020820190508181036000830152613f80816137a3565b9050919050565b60006020820190508181036000830152613fa0816137e3565b9050919050565b60006020820190508181036000830152613fc081613849565b9050919050565b60006020820190508181036000830152613fe081613889565b9050919050565b60006020820190508181036000830152614000816138c9565b9050919050565b600060208201905081810360008301526140208161392f565b9050919050565b6000602082019050818103600083015261404081613995565b9050919050565b60006020820190508181036000830152614060816139fb565b9050919050565b6000602082019050818103600083015261408081613a61565b9050919050565b600060208201905081810360008301526140a081613aa1565b9050919050565b600060208201905081810360008301526140c081613ae1565b9050919050565b600060208201905081810360008301526140e081613b47565b9050919050565b6000602082019050818103600083015261410081613b87565b9050919050565b6000602082019050818103600083015261412081613bed565b9050919050565b6000602082019050818103600083015261414081613c53565b9050919050565b6000602082019050818103600083015261416081613cb9565b9050919050565b6000602082019050818103600083015261418081613d1f565b9050919050565b600060208201905061419c6000830184613d85565b92915050565b60006020820190506141b76000830184613db0565b92915050565b60006060820190506141d26000830186613db0565b6141df6020830185613464565b6141ec6040830184613db0565b949350505050565b6000604051905081810181811067ffffffffffffffff8211171561421b5761421a6145cc565b5b8060405250919050565b600067ffffffffffffffff8211156142405761423f6145cc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142705761426f6145cc565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d382614447565b91506142de83614447565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143135761431261453f565b5b828201905092915050565b600061432982614447565b915061433483614447565b9250826143445761434361456e565b5b828204905092915050565b600061435a82614447565b915061436583614447565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439e5761439d61453f565b5b828202905092915050565b60006143b482614447565b91506143bf83614447565b9250828210156143d2576143d161453f565b5b828203905092915050565b60006143e882614427565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447e578082015181840152602081019050614463565b8381111561448d576000848401525b50505050565b600060028204905060018216806144ab57607f821691505b602082108114156144bf576144be61459d565b5b50919050565b60006144d082614447565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145035761450261453f565b5b600182019050919050565b600061451982614447565b915061452483614447565b9250826145345761453361456e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614615816143dd565b811461462057600080fd5b50565b61462c816143ef565b811461463757600080fd5b50565b614643816143fb565b811461464e57600080fd5b50565b61465a81614447565b811461466557600080fd5b5056fea26469706673582212206b9b784e316523b27915e2acaf017e10f0547b6eb18c0b189a25a0a6eb88d1bc64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000079b000000000000000000000000000000000000000000000000000000000000000b546865416c69656e426f7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055441424f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e746865616c69656e626f792e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636373a6b111610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610776578063eb8d2444146107b3578063f2fde38b146107de578063f47c84c514610807578063f7de95e4146108325761020f565b8063b88d4fde146106cb578063c4e37095146106f4578063c87b56dd1461071d578063d40491831461075a5761020f565b8063715018a6116100e7578063715018a61461060c57806388f2ebcb146106235780638da5cb5b1461064c57806395d89b4114610677578063a22cb465146106a25761020f565b80636373a6b11461053c578063686f8fc11461056757806370a08231146105a45780637146bd08146105e15761020f565b80632429467b1161019b57806342842e0e1161016a57806342842e0e146104455780634b369a611461046e5780634f6ccce71461049957806355f804b3146104d65780636352211e146104ff5761020f565b80632429467b146103b157806327ac36c4146103da5780632f745c59146103f15780633ccfd60b1461042e5761020f565b806310969523116101e257806310969523146102e257806311e776fe1461030b57806318160ddd1461033457806318b200711461035f57806323b872dd146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906133a8565b61085d565b6040516102489190613e4a565b60405180910390f35b34801561025d57600080fd5b506102666108d7565b6040516102739190613e65565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061343b565b610969565b6040516102b09190613de3565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613343565b6109ee565b005b3480156102ee57600080fd5b50610309600480360381019061030491906133fa565b610b06565b005b34801561031757600080fd5b50610332600480360381019061032d919061343b565b610b9c565b005b34801561034057600080fd5b50610349610c22565b60405161035691906141a2565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061343b565b610c2f565b005b34801561039457600080fd5b506103af60048036038101906103aa919061323d565b610cb5565b005b3480156103bd57600080fd5b506103d860048036038101906103d3919061343b565b610d15565b005b3480156103e657600080fd5b506103ef610e57565b005b3480156103fd57600080fd5b5061041860048036038101906104139190613343565b610f9b565b60405161042591906141a2565b60405180910390f35b34801561043a57600080fd5b50610443611040565b005b34801561045157600080fd5b5061046c6004803603810190610467919061323d565b61110b565b005b34801561047a57600080fd5b5061048361112b565b60405161049091906141a2565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb919061343b565b611131565b6040516104cd91906141a2565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906133fa565b6111c8565b005b34801561050b57600080fd5b506105266004803603810190610521919061343b565b61125e565b6040516105339190613de3565b60405180910390f35b34801561054857600080fd5b50610551611310565b60405161055e9190613e65565b60405180910390f35b34801561057357600080fd5b5061058e6004803603810190610589919061343b565b61139e565b60405161059b9190614187565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906131d8565b61141d565b6040516105d891906141a2565b60405180910390f35b3480156105ed57600080fd5b506105f66114d5565b60405161060391906141a2565b60405180910390f35b34801561061857600080fd5b506106216114db565b005b34801561062f57600080fd5b5061064a6004803603810190610645919061343b565b611618565b005b34801561065857600080fd5b5061066161169e565b60405161066e9190613de3565b60405180910390f35b34801561068357600080fd5b5061068c6116c8565b6040516106999190613e65565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613307565b61175a565b005b3480156106d757600080fd5b506106f260048036038101906106ed919061328c565b6118db565b005b34801561070057600080fd5b5061071b6004803603810190610716919061337f565b61193d565b005b34801561072957600080fd5b50610744600480360381019061073f919061343b565b6119d6565b6040516107519190613e65565b60405180910390f35b610774600480360381019061076f919061343b565b611a7d565b005b34801561078257600080fd5b5061079d60048036038101906107989190613201565b611c8e565b6040516107aa9190613e4a565b60405180910390f35b3480156107bf57600080fd5b506107c8611d22565b6040516107d59190613e4a565b60405180910390f35b3480156107ea57600080fd5b50610805600480360381019061080091906131d8565b611d35565b005b34801561081357600080fd5b5061081c611ee1565b60405161082991906141a2565b60405180910390f35b34801561083e57600080fd5b50610847611ee7565b60405161085491906141a2565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d057506108cf82611eed565b5b9050919050565b6060600080546108e690614493565b80601f016020809104026020016040519081016040528092919081815260200182805461091290614493565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600061097482611fcf565b6109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa906140a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f98261125e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190614127565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8961203b565b73ffffffffffffffffffffffffffffffffffffffff161480610ab85750610ab781610ab261203b565b611c8e565b5b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613fe7565b60405180910390fd5b610b018383612043565b505050565b610b0e61203b565b73ffffffffffffffffffffffffffffffffffffffff16610b2c61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906140c7565b60405180910390fd5b80600c9080519060200190610b98929190612fe9565b5050565b610ba461203b565b73ffffffffffffffffffffffffffffffffffffffff16610bc261169e565b73ffffffffffffffffffffffffffffffffffffffff1614610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f906140c7565b60405180910390fd5b80600f8190555050565b6000600880549050905090565b610c3761203b565b73ffffffffffffffffffffffffffffffffffffffff16610c5561169e565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906140c7565b60405180910390fd5b8060108190555050565b610cc6610cc061203b565b826120fc565b610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90614147565b60405180910390fd5b610d108383836121da565b505050565b610d1d61203b565b73ffffffffffffffffffffffffffffffffffffffff16610d3b61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d88906140c7565b60405180910390fd5b610d9a81611fcf565b15610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613fa7565b60405180910390fd5b6000429050610de93383612436565b604051806020016040528082815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051610e4b939291906141bd565b60405180910390a15050565b610e5f61203b565b73ffffffffffffffffffffffffffffffffffffffff16610e7d61169e565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906140c7565b60405180910390fd5b6000806000429050600192505b60328311610f9657610f036001610ef5610c22565b61245490919063ffffffff16565b9150600f548211610f8357610f183383612436565b604051806020016040528082815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823383604051610f7a939291906141bd565b60405180910390a15b8280610f8e906144c5565b935050610ee0565b505050565b6000610fa68361141d565b8210610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90613ea7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61104861203b565b73ffffffffffffffffffffffffffffffffffffffff1661106661169e565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b3906140c7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611107573d6000803e3d6000fd5b5050565b611126838383604051806020016040528060008152506118db565b505050565b60105481565b600061113b610c22565b821061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390614167565b60405180910390fd5b600882815481106111b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6111d061203b565b73ffffffffffffffffffffffffffffffffffffffff166111ee61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906140c7565b60405180910390fd5b806012908051906020019061125a929190612fe9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614047565b60405180910390fd5b80915050919050565b600c805461131d90614493565b80601f016020809104026020016040519081016040528092919081815260200182805461134990614493565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b505050505081565b6113a661306f565b6113af82611fcf565b6113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613fc7565b60405180910390fd5b600b60008381526020019081526020016000206040518060200160405290816000820154815250509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614027565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6114e361203b565b73ffffffffffffffffffffffffffffffffffffffff1661150161169e565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906140c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61162061203b565b73ffffffffffffffffffffffffffffffffffffffff1661163e61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b906140c7565b60405180910390fd5b80600d8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116d790614493565b80601f016020809104026020016040519081016040528092919081815260200182805461170390614493565b80156117505780601f1061172557610100808354040283529160200191611750565b820191906000526020600020905b81548152906001019060200180831161173357829003601f168201915b5050505050905090565b61176261203b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613f47565b60405180910390fd5b80600560006117dd61203b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188a61203b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cf9190613e4a565b60405180910390a35050565b6118ec6118e661203b565b836120fc565b61192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614147565b60405180910390fd5b6119378484848461246a565b50505050565b61194561203b565b73ffffffffffffffffffffffffffffffffffffffff1661196361169e565b73ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906140c7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606119e182611fcf565b611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790614107565b60405180910390fd5b6000611a2a6124c6565b90506000815111611a4a5760405180602001604052806000815250611a75565b80611a5484612558565b604051602001611a65929190613dbf565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff16611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613f67565b60405180910390fd5b600e54811115611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614007565b60405180910390fd5b600f54611b2e82611b20610c22565b61245490919063ffffffff16565b1115611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613e87565b60405180910390fd5b34611b858260105461270590919063ffffffff16565b1115611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614067565b60405180910390fd5b6000429050600080600190505b838111611c8857611bf56001611be7610c22565b61245490919063ffffffff16565b9150600f548211611c7557611c0a3383612436565b604051806020016040528084815250600b6000848152602001908152602001600020600082015181600001559050507f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f823385604051611c6c939291906141bd565b60405180910390a15b8080611c80906144c5565b915050611bd3565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611d3d61203b565b73ffffffffffffffffffffffffffffffffffffffff16611d5b61169e565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da8906140c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613ee7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fb857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fc85750611fc78261271b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120b68361125e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210782611fcf565b612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90613f87565b60405180910390fd5b60006121518361125e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121c057508373ffffffffffffffffffffffffffffffffffffffff166121a884610969565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d157506121d08185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121fa8261125e565b73ffffffffffffffffffffffffffffffffffffffff1614612250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612247906140e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b790613f27565b60405180910390fd5b6122cb838383612785565b6122d6600082612043565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232691906143a9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237d91906142c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612450828260405180602001604052806000815250612899565b5050565b6000818361246291906142c8565b905092915050565b6124758484846121da565b612481848484846128f4565b6124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790613ec7565b60405180910390fd5b50505050565b6060601280546124d590614493565b80601f016020809104026020016040519081016040528092919081815260200182805461250190614493565b801561254e5780601f106125235761010080835404028352916020019161254e565b820191906000526020600020905b81548152906001019060200180831161253157829003601f168201915b5050505050905090565b606060008214156125a0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612700565b600082905060005b600082146125d25780806125bb906144c5565b915050600a826125cb919061431e565b91506125a8565b60008167ffffffffffffffff811115612614577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126465781602001600182028036833780820191505090505b5090505b600085146126f95760018261265f91906143a9565b9150600a8561266e919061450e565b603061267a91906142c8565b60f81b8183815181106126b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f2919061431e565b945061264a565b8093505050505b919050565b60008183612713919061434f565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612790838383612a8b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127d3576127ce81612a90565b612812565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612811576128108382612ad9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128555761285081612c46565b612894565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612893576128928282612d89565b5b5b505050565b6128a38383612e08565b6128b060008484846128f4565b6128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690613ec7565b60405180910390fd5b505050565b60006129158473ffffffffffffffffffffffffffffffffffffffff16612fd6565b15612a7e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261293e61203b565b8786866040518563ffffffff1660e01b81526004016129609493929190613dfe565b602060405180830381600087803b15801561297a57600080fd5b505af19250505080156129ab57506040513d601f19601f820116820180604052508101906129a891906133d1565b60015b612a2e573d80600081146129db576040519150601f19603f3d011682016040523d82523d6000602084013e6129e0565b606091505b50600081511415612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d90613ec7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a83565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae68461141d565b612af091906143a9565b9050600060076000848152602001908152602001600020549050818114612bd5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5a91906143a9565b9050600060096000848152602001908152602001600020549050600060088381548110612cb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612cf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d948361141d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90614087565b60405180910390fd5b612e8181611fcf565b15612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890613f07565b60405180910390fd5b612ecd60008383612785565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1d91906142c8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ff590614493565b90600052602060002090601f016020900481019282613017576000855561305e565b82601f1061303057805160ff191683800117855561305e565b8280016001018555821561305e579182015b8281111561305d578251825591602001919060010190613042565b5b50905061306b9190613082565b5090565b6040518060200160405280600081525090565b5b8082111561309b576000816000905550600101613083565b5090565b60006130b26130ad84614225565b6141f4565b9050828152602081018484840111156130ca57600080fd5b6130d5848285614451565b509392505050565b60006130f06130eb84614255565b6141f4565b90508281526020810184848401111561310857600080fd5b613113848285614451565b509392505050565b60008135905061312a8161460c565b92915050565b60008135905061313f81614623565b92915050565b6000813590506131548161463a565b92915050565b6000815190506131698161463a565b92915050565b600082601f83011261318057600080fd5b813561319084826020860161309f565b91505092915050565b600082601f8301126131aa57600080fd5b81356131ba8482602086016130dd565b91505092915050565b6000813590506131d281614651565b92915050565b6000602082840312156131ea57600080fd5b60006131f88482850161311b565b91505092915050565b6000806040838503121561321457600080fd5b60006132228582860161311b565b92505060206132338582860161311b565b9150509250929050565b60008060006060848603121561325257600080fd5b60006132608682870161311b565b93505060206132718682870161311b565b9250506040613282868287016131c3565b9150509250925092565b600080600080608085870312156132a257600080fd5b60006132b08782880161311b565b94505060206132c18782880161311b565b93505060406132d2878288016131c3565b925050606085013567ffffffffffffffff8111156132ef57600080fd5b6132fb8782880161316f565b91505092959194509250565b6000806040838503121561331a57600080fd5b60006133288582860161311b565b925050602061333985828601613130565b9150509250929050565b6000806040838503121561335657600080fd5b60006133648582860161311b565b9250506020613375858286016131c3565b9150509250929050565b60006020828403121561339157600080fd5b600061339f84828501613130565b91505092915050565b6000602082840312156133ba57600080fd5b60006133c884828501613145565b91505092915050565b6000602082840312156133e357600080fd5b60006133f18482850161315a565b91505092915050565b60006020828403121561340c57600080fd5b600082013567ffffffffffffffff81111561342657600080fd5b61343284828501613199565b91505092915050565b60006020828403121561344d57600080fd5b600061345b848285016131c3565b91505092915050565b61346d816143dd565b82525050565b61347c816143ef565b82525050565b600061348d82614285565b613497818561429b565b93506134a7818560208601614460565b6134b0816145fb565b840191505092915050565b60006134c682614290565b6134d081856142ac565b93506134e0818560208601614460565b6134e9816145fb565b840191505092915050565b60006134ff82614290565b61350981856142bd565b9350613519818560208601614460565b80840191505092915050565b6000613532602a836142ac565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620416c69656e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613598602b836142ac565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135fe6032836142ac565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136646026836142ac565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136ca601c836142ac565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061370a6024836142ac565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137706019836142ac565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137b0601f836142ac565b91507f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f77006000830152602082019050919050565b60006137f0602c836142ac565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138566010836142ac565b91507f546f6b656e20776173206d696e746564000000000000000000000000000000006000830152602082019050919050565b60006138966014836142ac565b91507f546f6b656e20776173206e6f74206d696e7465640000000000000000000000006000830152602082019050919050565b60006138d66038836142ac565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061393c6021836142ac565b91507f43616e206f6e6c79206d696e7420353020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a2602a836142ac565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a086029836142ac565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a6e6019836142ac565b91507f56616c75652073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613aae6020836142ac565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613aee602c836142ac565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b546020836142ac565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b946029836142ac565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfa602f836142ac565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c606021836142ac565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cc66031836142ac565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d2c602c836142ac565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b602082016000820151613d9b6000850182613da1565b50505050565b613daa81614447565b82525050565b613db981614447565b82525050565b6000613dcb82856134f4565b9150613dd782846134f4565b91508190509392505050565b6000602082019050613df86000830184613464565b92915050565b6000608082019050613e136000830187613464565b613e206020830186613464565b613e2d6040830185613db0565b8181036060830152613e3f8184613482565b905095945050505050565b6000602082019050613e5f6000830184613473565b92915050565b60006020820190508181036000830152613e7f81846134bb565b905092915050565b60006020820190508181036000830152613ea081613525565b9050919050565b60006020820190508181036000830152613ec08161358b565b9050919050565b60006020820190508181036000830152613ee0816135f1565b9050919050565b60006020820190508181036000830152613f0081613657565b9050919050565b60006020820190508181036000830152613f20816136bd565b9050919050565b60006020820190508181036000830152613f40816136fd565b9050919050565b60006020820190508181036000830152613f6081613763565b9050919050565b60006020820190508181036000830152613f80816137a3565b9050919050565b60006020820190508181036000830152613fa0816137e3565b9050919050565b60006020820190508181036000830152613fc081613849565b9050919050565b60006020820190508181036000830152613fe081613889565b9050919050565b60006020820190508181036000830152614000816138c9565b9050919050565b600060208201905081810360008301526140208161392f565b9050919050565b6000602082019050818103600083015261404081613995565b9050919050565b60006020820190508181036000830152614060816139fb565b9050919050565b6000602082019050818103600083015261408081613a61565b9050919050565b600060208201905081810360008301526140a081613aa1565b9050919050565b600060208201905081810360008301526140c081613ae1565b9050919050565b600060208201905081810360008301526140e081613b47565b9050919050565b6000602082019050818103600083015261410081613b87565b9050919050565b6000602082019050818103600083015261412081613bed565b9050919050565b6000602082019050818103600083015261414081613c53565b9050919050565b6000602082019050818103600083015261416081613cb9565b9050919050565b6000602082019050818103600083015261418081613d1f565b9050919050565b600060208201905061419c6000830184613d85565b92915050565b60006020820190506141b76000830184613db0565b92915050565b60006060820190506141d26000830186613db0565b6141df6020830185613464565b6141ec6040830184613db0565b949350505050565b6000604051905081810181811067ffffffffffffffff8211171561421b5761421a6145cc565b5b8060405250919050565b600067ffffffffffffffff8211156142405761423f6145cc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142705761426f6145cc565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d382614447565b91506142de83614447565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143135761431261453f565b5b828201905092915050565b600061432982614447565b915061433483614447565b9250826143445761434361456e565b5b828204905092915050565b600061435a82614447565b915061436583614447565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439e5761439d61453f565b5b828202905092915050565b60006143b482614447565b91506143bf83614447565b9250828210156143d2576143d161453f565b5b828203905092915050565b60006143e882614427565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447e578082015181840152602081019050614463565b8381111561448d576000848401525b50505050565b600060028204905060018216806144ab57607f821691505b602082108114156144bf576144be61459d565b5b50919050565b60006144d082614447565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145035761450261453f565b5b600182019050919050565b600061451982614447565b915061452483614447565b9250826145345761453361456e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614615816143dd565b811461462057600080fd5b50565b61462c816143ef565b811461463757600080fd5b50565b614643816143fb565b811461464e57600080fd5b50565b61465a81614447565b811461466557600080fd5b5056fea26469706673582212206b9b784e316523b27915e2acaf017e10f0547b6eb18c0b189a25a0a6eb88d1bc64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000079b000000000000000000000000000000000000000000000000000000000000000b546865416c69656e426f7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055441424f59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e746865616c69656e626f792e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): TheAlienBoy
Arg [1] : symbol (string): TABOY
Arg [2] : baseURIp (string): https://api.thealienboy.com/metadata/
Arg [3] : startingIndex (uint256): 1947

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000079b
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 546865416c69656e426f79000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5441424f59000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [9] : 68747470733a2f2f6170692e746865616c69656e626f792e636f6d2f6d657461
Arg [10] : 646174612f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

2778:4620:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:234:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2343:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3755:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3306:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5020:118:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5184:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1546:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7043:109:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4619:300:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4611:342:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4083:475;;;;;;;;;;;;;:::i;:::-;;1222:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:137:19;;;;;;;;;;;;;:::i;:::-;;4985:149:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3451:48:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1729:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6656:93:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2046:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3155:29:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7202:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1784:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3310:29:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:16;;;;;;;;;;;;;:::i;:::-;;6425:113:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1061:85:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2505:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4039:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5200:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5351:94:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2673:353:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5483:871:19;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4395:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3538:31:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3389:33:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3213:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;909:234:5;1011:4;1049:35;1034:50;;;:11;:50;;;;:102;;;;1100:36;1124:11;1100:23;:36::i;:::-;1034:102;1027:109;;909:234;;;:::o;2343:98:4:-;2397:13;2429:5;2422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:98;:::o;3755:217::-;3831:7;3858:16;3866:7;3858;:16::i;:::-;3850:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3941:15;:24;3957:7;3941:24;;;;;;;;;;;;;;;;;;;;;3934:31;;3755:217;;;:::o;3306:388::-;3386:13;3402:23;3417:7;3402:14;:23::i;:::-;3386:39;;3449:5;3443:11;;:2;:11;;;;3435:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3527:5;3511:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3536:37;3553:5;3560:12;:10;:12::i;:::-;3536:16;:37::i;:::-;3511:62;3503:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;3666:21;3675:2;3679:7;3666:8;:21::i;:::-;3306:388;;;:::o;5020:118:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5117:14:19::1;5104:10;:27;;;;;;;;;;;;:::i;:::-;;5020:118:::0;:::o;5184:97::-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5265:9:19::1;5252:10;:22;;;;5184:97:::0;:::o;1546:111:5:-;1607:7;1633:10;:17;;;;1626:24;;1546:111;:::o;7043:109:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7133:12:19::1;7117:13;:28;;;;7043:109:::0;:::o;4619:300:4:-;4778:41;4797:12;:10;:12::i;:::-;4811:7;4778:18;:41::i;:::-;4770:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4884:28;4894:4;4900:2;4904:7;4884:9;:28::i;:::-;4619:300;;;:::o;4611:342:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4682:16:19::1;4690:7;4682;:16::i;:::-;4681:17;4673:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4729:23;4755:15;4729:41;;4789:30;4799:10;4811:7;4789:9;:30::i;:::-;4854:28;;;;;;;;4866:15;4854:28;;::::0;4829:13:::1;:22;4843:7;4829:22;;;;;;;;;;;:53;;;;;;;;;;;4897:49;4909:7;4918:10;4930:15;4897:49;;;;;;;;:::i;:::-;;;;;;;;1343:1:16;4611:342:19::0;:::o;4083:475::-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4135:6:19::1;4151:12:::0;4173:23:::1;4199:15;4173:41;;4234:1;4230:5;;4225:327;4242:2;4237:1;:7;4225:327;;4275:20;4293:1;4275:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;4265:30;;4324:10;;4313:7;:21;4309:233;;4354:30;4364:10;4376:7;4354:9;:30::i;:::-;4427:28;;;;;;;;4439:15;4427:28;;::::0;4402:13:::1;:22;4416:7;4402:22;;;;;;;;;;;:53;;;;;;;;;;;4478:49;4490:7;4499:10;4511:15;4478:49;;;;;;;;:::i;:::-;;;;;;;;4309:233;4246:3;;;;;:::i;:::-;;;;4225:327;;;1343:1:16;;;4083:475:19:o:0;1222:253:5:-;1319:7;1354:23;1371:5;1354:16;:23::i;:::-;1346:5;:31;1338:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1442:12;:19;1455:5;1442:19;;;;;;;;;;;;;;;:26;1462:5;1442:26;;;;;;;;;;;;1435:33;;1222:253;;;;:::o;3902:137:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3949:12:19::1;3964:21;3949:36;;4003:10;3995:28;;:37;4024:7;3995:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1343:1:16;3902:137:19:o:0;4985:149:4:-;5088:39;5105:4;5111:2;5115:7;5088:39;;;;;;;;;;;;:16;:39::i;:::-;4985:149;;;:::o;3451:48:19:-;;;;:::o;1729:230:5:-;1804:7;1839:30;:28;:30::i;:::-;1831:5;:38;1823:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1935:10;1946:5;1935:17;;;;;;;;;;;;;;;;;;;;;;;;1928:24;;1729:230;;;:::o;6656:93:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6735:7:19::1;6725;:17;;;;;;;;;;;;:::i;:::-;;6656:93:::0;:::o;2046:235:4:-;2118:7;2137:13;2153:7;:16;2161:7;2153:16;;;;;;;;;;;;;;;;;;;;;2137:32;;2204:1;2187:19;;:5;:19;;;;2179:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2269:5;2262:12;;;2046:235;;;:::o;3155:29:19:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7202:194::-;7263:25;;:::i;:::-;7308:16;7316:7;7308;:16::i;:::-;7300:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;7367:13;:22;7381:7;7367:22;;;;;;;;;;;7360:29;;;;;;;;;;;;;;;;;;;7202:194;;;:::o;1784:205:4:-;1856:7;1900:1;1883:19;;:5;:19;;;;1875:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1966:9;:16;1976:5;1966:16;;;;;;;;;;;;;;;;1959:23;;1784:205;;;:::o;3310:29:19:-;;;;:::o;1693:145:16:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;6425:113:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6518:13:19::1;6501:14;:30;;;;6425:113:::0;:::o;1061:85:16:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2505:102:4:-;2561:13;2593:7;2586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2505:102;:::o;4039:290::-;4153:12;:10;:12::i;:::-;4141:24;;:8;:24;;;;4133:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4251:8;4206:18;:32;4225:12;:10;:12::i;:::-;4206:32;;;;;;;;;;;;;;;:42;4239:8;4206:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4303:8;4274:48;;4289:12;:10;:12::i;:::-;4274:48;;;4313:8;4274:48;;;;;;:::i;:::-;;;;;;;;4039:290;;:::o;5200:282::-;5331:41;5350:12;:10;:12::i;:::-;5364:7;5331:18;:41::i;:::-;5323:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5436:39;5450:4;5456:2;5460:7;5469:5;5436:13;:39::i;:::-;5200:282;;;;:::o;5351:94:19:-;1284:12:16;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5430:8:19::1;5415:12;;:23;;;;;;;;;;;;;;;;;;5351:94:::0;:::o;2673:353:4:-;2746:13;2779:16;2787:7;2779;:16::i;:::-;2771:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2858:21;2882:10;:8;:10::i;:::-;2858:34;;2933:1;2915:7;2909:21;:25;:110;;;;;;;;;;;;;;;;;2973:7;2982:18;:7;:16;:18::i;:::-;2956:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2909:110;2902:117;;;2673:353;;;:::o;5483:871:19:-;5556:12;;;;;;;;;;;5548:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5640:12;;5622:14;:30;;5614:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5745:10;;5708:33;5726:14;5708:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;5700:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5857:9;5820:33;5838:14;5820:13;;:17;;:33;;;;:::i;:::-;:46;;5812:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;5906:23;5932:15;5906:41;;5957:12;5992:6;6001:1;5992:10;;5988:360;6009:14;6004:1;:19;5988:360;;6054:20;6072:1;6054:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;6044:30;;6103:10;;6092:7;:21;6088:250;;6133:30;6143:10;6155:7;6133:9;:30::i;:::-;6206:28;;;;;;;;6218:15;6206:28;;;6181:13;:22;6195:7;6181:22;;;;;;;;;;;:53;;;;;;;;;;;6274:49;6286:7;6295:10;6307:15;6274:49;;;;;;;;:::i;:::-;;;;;;;;6088:250;6025:3;;;;;:::i;:::-;;;;5988:360;;;;5483:871;;;:::o;4395:162:4:-;4492:4;4515:18;:25;4534:5;4515:25;;;;;;;;;;;;;;;:35;4541:8;4515:35;;;;;;;;;;;;;;;;;;;;;;;;;4508:42;;4395:162;;;;:::o;3538:31:19:-;;;;;;;;;;;;;:::o;1987:240:16:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;3389:33:19:-;;;;:::o;3213:29::-;;;;:::o;1437:288:4:-;1539:4;1577:25;1562:40;;;:11;:40;;;;:104;;;;1633:33;1618:48;;;:11;:48;;;;1562:104;:156;;;;1682:36;1706:11;1682:23;:36::i;:::-;1562:156;1555:163;;1437:288;;;:::o;6916:125::-;6981:4;7032:1;7004:30;;:7;:16;7012:7;7004:16;;;;;;;;;;;;;;;;;;;;;:30;;;;6997:37;;6916:125;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;10673:171:4:-;10774:2;10747:15;:24;10763:7;10747:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;10829:7;10825:2;10791:46;;10800:23;10815:7;10800:14;:23::i;:::-;10791:46;;;;;;;;;;;;10673:171;;:::o;7199:344::-;7292:4;7316:16;7324:7;7316;:16::i;:::-;7308:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7391:13;7407:23;7422:7;7407:14;:23::i;:::-;7391:39;;7459:5;7448:16;;:7;:16;;;:51;;;;7492:7;7468:31;;:20;7480:7;7468:11;:20::i;:::-;:31;;;7448:51;:87;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7448:87;7440:96;;;7199:344;;;;:::o;10032:530::-;10156:4;10129:31;;:23;10144:7;10129:14;:23::i;:::-;:31;;;10121:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10238:1;10224:16;;:2;:16;;;;10216:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10292:39;10313:4;10319:2;10323:7;10292:20;:39::i;:::-;10393:29;10410:1;10414:7;10393:8;:29::i;:::-;10452:1;10433:9;:15;10443:4;10433:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10480:1;10463:9;:13;10473:2;10463:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10510:2;10491:7;:16;10499:7;10491:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10547:7;10543:2;10528:27;;10537:4;10528:27;;;;;;;;;;;;10032:530;;;:::o;7873:108::-;7948:26;7958:2;7962:7;7948:26;;;;;;;;;;;;:9;:26::i;:::-;7873:108;;:::o;2672:96:17:-;2730:7;2760:1;2756;:5;;;;:::i;:::-;2749:12;;2672:96;;;;:::o;6344:269:4:-;6457:28;6467:4;6473:2;6477:7;6457:9;:28::i;:::-;6503:48;6526:4;6532:2;6536:7;6545:5;6503:22;:48::i;:::-;6495:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6344:269;;;;:::o;6881:106:19:-;6941:13;6973:7;6966:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6881:106;:::o;271:703:18:-;327:13;553:1;544:5;:10;540:51;;;570:10;;;;;;;;;;;;;;;;;;;;;540:51;600:12;615:5;600:20;;630:14;654:75;669:1;661:4;:9;654:75;;686:8;;;;;:::i;:::-;;;;716:2;708:10;;;;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738:39;;787:150;803:1;794:5;:10;787:150;;830:1;820:11;;;;;:::i;:::-;;;896:2;888:5;:10;;;;:::i;:::-;875:2;:24;;;;:::i;:::-;862:39;;845:6;852;845:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;924:2;915:11;;;;;:::i;:::-;;;787:150;;;960:6;946:21;;;;;271:703;;;;:::o;3382:96:17:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2555:542:5:-;2664:45;2691:4;2697:2;2701:7;2664:26;:45::i;:::-;2740:1;2724:18;;:4;:18;;;2720:183;;;2758:40;2790:7;2758:31;:40::i;:::-;2720:183;;;2827:2;2819:10;;:4;:10;;;2815:88;;2845:47;2878:4;2884:7;2845:32;:47::i;:::-;2815:88;2720:183;2930:1;2916:16;;:2;:16;;;2912:179;;;2948:45;2985:7;2948:36;:45::i;:::-;2912:179;;;3020:4;3014:10;;:2;:10;;;3010:81;;3040:40;3068:2;3072:7;3040:27;:40::i;:::-;3010:81;2912:179;2555:542;;;:::o;8202:247:4:-;8297:18;8303:2;8307:7;8297:5;:18::i;:::-;8333:54;8364:1;8368:2;8372:7;8381:5;8333:22;:54::i;:::-;8325:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;8202:247;;;:::o;11397:824::-;11517:4;11541:15;:2;:13;;;:15::i;:::-;11537:678;;;11592:2;11576:36;;;11613:12;:10;:12::i;:::-;11627:4;11633:7;11642:5;11576:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11572:591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11836:1;11819:6;:13;:18;11815:334;;;11861:60;;;;;;;;;;:::i;:::-;;;;;;;;11815:334;12101:6;12095:13;12086:6;12082:2;12078:15;12071:38;11572:591;11708:45;;;11698:55;;;:6;:55;;;;11691:62;;;;;11537:678;12200:4;12193:11;;11397:824;;;;;;;:::o;12817:93::-;;;;:::o;3803:161:5:-;3906:10;:17;;;;3879:15;:24;3895:7;3879:24;;;;;;;;;;;:44;;;;3933:10;3949:7;3933:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3803:161;:::o;4581:970::-;4843:22;4893:1;4868:22;4885:4;4868:16;:22::i;:::-;:26;;;;:::i;:::-;4843:51;;4904:18;4925:17;:26;4943:7;4925:26;;;;;;;;;;;;4904:47;;5069:14;5055:10;:28;5051:323;;5099:19;5121:12;:18;5134:4;5121:18;;;;;;;;;;;;;;;:34;5140:14;5121:34;;;;;;;;;;;;5099:56;;5203:11;5170:12;:18;5183:4;5170:18;;;;;;;;;;;;;;;:30;5189:10;5170:30;;;;;;;;;;;:44;;;;5319:10;5286:17;:30;5304:11;5286:30;;;;;;;;;;;:43;;;;5051:323;;5467:17;:26;5485:7;5467:26;;;;;;;;;;;5460:33;;;5510:12;:18;5523:4;5510:18;;;;;;;;;;;;;;;:34;5529:14;5510:34;;;;;;;;;;;5503:41;;;4581:970;;;;:::o;5839:1061::-;6088:22;6133:1;6113:10;:17;;;;:21;;;;:::i;:::-;6088:46;;6144:18;6165:15;:24;6181:7;6165:24;;;;;;;;;;;;6144:45;;6511:19;6533:10;6544:14;6533:26;;;;;;;;;;;;;;;;;;;;;;;;6511:48;;6595:11;6570:10;6581;6570:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6705:10;6674:15;:28;6690:11;6674:28;;;;;;;;;;;:41;;;;6843:15;:24;6859:7;6843:24;;;;;;;;;;;6836:31;;;6877:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5839:1061;;;;:::o;3391:217::-;3475:14;3492:20;3509:2;3492:16;:20::i;:::-;3475:37;;3549:7;3522:12;:16;3535:2;3522:16;;;;;;;;;;;;;;;:24;3539:6;3522:24;;;;;;;;;;;:34;;;;3595:6;3566:17;:26;3584:7;3566:26;;;;;;;;;;;:35;;;;3391:217;;;:::o;8771:372:4:-;8864:1;8850:16;;:2;:16;;;;8842:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;8922:16;8930:7;8922;:16::i;:::-;8921:17;8913:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;8982:45;9011:1;9015:2;9019:7;8982:20;:45::i;:::-;9055:1;9038:9;:13;9048:2;9038:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9085:2;9066:7;:16;9074:7;9066:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9128:7;9124:2;9103:33;;9120:1;9103:33;;;;;;;;;;;;8771:372;;:::o;718:413:0:-;778:4;981:12;1090:7;1078:20;1070:28;;1123:1;1116:4;:8;1109:15;;;718:413;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:20:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:118::-;6433:24;6451:5;6433:24;:::i;:::-;6428:3;6421:37;6411:53;;:::o;6470:109::-;6551:21;6566:5;6551:21;:::i;:::-;6546:3;6539:34;6529:50;;:::o;6585:360::-;;6699:38;6731:5;6699:38;:::i;:::-;6753:70;6816:6;6811:3;6753:70;:::i;:::-;6746:77;;6832:52;6877:6;6872:3;6865:4;6858:5;6854:16;6832:52;:::i;:::-;6909:29;6931:6;6909:29;:::i;:::-;6904:3;6900:39;6893:46;;6675:270;;;;;:::o;6951:364::-;;7067:39;7100:5;7067:39;:::i;:::-;7122:71;7186:6;7181:3;7122:71;:::i;:::-;7115:78;;7202:52;7247:6;7242:3;7235:4;7228:5;7224:16;7202:52;:::i;:::-;7279:29;7301:6;7279:29;:::i;:::-;7274:3;7270:39;7263:46;;7043:272;;;;;:::o;7321:377::-;;7455:39;7488:5;7455:39;:::i;:::-;7510:89;7592:6;7587:3;7510:89;:::i;:::-;7503:96;;7608:52;7653:6;7648:3;7641:4;7634:5;7630:16;7608:52;:::i;:::-;7685:6;7680:3;7676:16;7669:23;;7431:267;;;;;:::o;7704:374::-;;7867:67;7931:2;7926:3;7867:67;:::i;:::-;7860:74;;7964:34;7960:1;7955:3;7951:11;7944:55;8030:12;8025:2;8020:3;8016:12;8009:34;8069:2;8064:3;8060:12;8053:19;;7850:228;;;:::o;8084:375::-;;8247:67;8311:2;8306:3;8247:67;:::i;:::-;8240:74;;8344:34;8340:1;8335:3;8331:11;8324:55;8410:13;8405:2;8400:3;8396:12;8389:35;8450:2;8445:3;8441:12;8434:19;;8230:229;;;:::o;8465:382::-;;8628:67;8692:2;8687:3;8628:67;:::i;:::-;8621:74;;8725:34;8721:1;8716:3;8712:11;8705:55;8791:20;8786:2;8781:3;8777:12;8770:42;8838:2;8833:3;8829:12;8822:19;;8611:236;;;:::o;8853:370::-;;9016:67;9080:2;9075:3;9016:67;:::i;:::-;9009:74;;9113:34;9109:1;9104:3;9100:11;9093:55;9179:8;9174:2;9169:3;9165:12;9158:30;9214:2;9209:3;9205:12;9198:19;;8999:224;;;:::o;9229:326::-;;9392:67;9456:2;9451:3;9392:67;:::i;:::-;9385:74;;9489:30;9485:1;9480:3;9476:11;9469:51;9546:2;9541:3;9537:12;9530:19;;9375:180;;;:::o;9561:368::-;;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9821:34;9817:1;9812:3;9808:11;9801:55;9887:6;9882:2;9877:3;9873:12;9866:28;9920:2;9915:3;9911:12;9904:19;;9707:222;;;:::o;9935:323::-;;10098:67;10162:2;10157:3;10098:67;:::i;:::-;10091:74;;10195:27;10191:1;10186:3;10182:11;10175:48;10249:2;10244:3;10240:12;10233:19;;10081:177;;;:::o;10264:329::-;;10427:67;10491:2;10486:3;10427:67;:::i;:::-;10420:74;;10524:33;10520:1;10515:3;10511:11;10504:54;10584:2;10579:3;10575:12;10568:19;;10410:183;;;:::o;10599:376::-;;10762:67;10826:2;10821:3;10762:67;:::i;:::-;10755:74;;10859:34;10855:1;10850:3;10846:11;10839:55;10925:14;10920:2;10915:3;10911:12;10904:36;10966:2;10961:3;10957:12;10950:19;;10745:230;;;:::o;10981:314::-;;11144:67;11208:2;11203:3;11144:67;:::i;:::-;11137:74;;11241:18;11237:1;11232:3;11228:11;11221:39;11286:2;11281:3;11277:12;11270:19;;11127:168;;;:::o;11301:318::-;;11464:67;11528:2;11523:3;11464:67;:::i;:::-;11457:74;;11561:22;11557:1;11552:3;11548:11;11541:43;11610:2;11605:3;11601:12;11594:19;;11447:172;;;:::o;11625:388::-;;11788:67;11852:2;11847:3;11788:67;:::i;:::-;11781:74;;11885:34;11881:1;11876:3;11872:11;11865:55;11951:26;11946:2;11941:3;11937:12;11930:48;12004:2;11999:3;11995:12;11988:19;;11771:242;;;:::o;12019:365::-;;12182:67;12246:2;12241:3;12182:67;:::i;:::-;12175:74;;12279:34;12275:1;12270:3;12266:11;12259:55;12345:3;12340:2;12335:3;12331:12;12324:25;12375:2;12370:3;12366:12;12359:19;;12165:219;;;:::o;12390:374::-;;12553:67;12617:2;12612:3;12553:67;:::i;:::-;12546:74;;12650:34;12646:1;12641:3;12637:11;12630:55;12716:12;12711:2;12706:3;12702:12;12695:34;12755:2;12750:3;12746:12;12739:19;;12536:228;;;:::o;12770:373::-;;12933:67;12997:2;12992:3;12933:67;:::i;:::-;12926:74;;13030:34;13026:1;13021:3;13017:11;13010:55;13096:11;13091:2;13086:3;13082:12;13075:33;13134:2;13129:3;13125:12;13118:19;;12916:227;;;:::o;13149:323::-;;13312:67;13376:2;13371:3;13312:67;:::i;:::-;13305:74;;13409:27;13405:1;13400:3;13396:11;13389:48;13463:2;13458:3;13454:12;13447:19;;13295:177;;;:::o;13478:330::-;;13641:67;13705:2;13700:3;13641:67;:::i;:::-;13634:74;;13738:34;13734:1;13729:3;13725:11;13718:55;13799:2;13794:3;13790:12;13783:19;;13624:184;;;:::o;13814:376::-;;13977:67;14041:2;14036:3;13977:67;:::i;:::-;13970:74;;14074:34;14070:1;14065:3;14061:11;14054:55;14140:14;14135:2;14130:3;14126:12;14119:36;14181:2;14176:3;14172:12;14165:19;;13960:230;;;:::o;14196:330::-;;14359:67;14423:2;14418:3;14359:67;:::i;:::-;14352:74;;14456:34;14452:1;14447:3;14443:11;14436:55;14517:2;14512:3;14508:12;14501:19;;14342:184;;;:::o;14532:373::-;;14695:67;14759:2;14754:3;14695:67;:::i;:::-;14688:74;;14792:34;14788:1;14783:3;14779:11;14772:55;14858:11;14853:2;14848:3;14844:12;14837:33;14896:2;14891:3;14887:12;14880:19;;14678:227;;;:::o;14911:379::-;;15074:67;15138:2;15133:3;15074:67;:::i;:::-;15067:74;;15171:34;15167:1;15162:3;15158:11;15151:55;15237:17;15232:2;15227:3;15223:12;15216:39;15281:2;15276:3;15272:12;15265:19;;15057:233;;;:::o;15296:365::-;;15459:67;15523:2;15518:3;15459:67;:::i;:::-;15452:74;;15556:34;15552:1;15547:3;15543:11;15536:55;15622:3;15617:2;15612:3;15608:12;15601:25;15652:2;15647:3;15643:12;15636:19;;15442:219;;;:::o;15667:381::-;;15830:67;15894:2;15889:3;15830:67;:::i;:::-;15823:74;;15927:34;15923:1;15918:3;15914:11;15907:55;15993:19;15988:2;15983:3;15979:12;15972:41;16039:2;16034:3;16030:12;16023:19;;15813:235;;;:::o;16054:376::-;;16217:67;16281:2;16276:3;16217:67;:::i;:::-;16210:74;;16314:34;16310:1;16305:3;16301:11;16294:55;16380:14;16375:2;16370:3;16366:12;16359:36;16421:2;16416:3;16412:12;16405:19;;16200:230;;;:::o;16508:352::-;16663:4;16658:3;16654:14;16761:4;16754:5;16750:16;16744:23;16780:63;16837:4;16832:3;16828:14;16814:12;16780:63;:::i;:::-;16678:175;16632:228;;;:::o;16866:108::-;16943:24;16961:5;16943:24;:::i;:::-;16938:3;16931:37;16921:53;;:::o;16980:118::-;17067:24;17085:5;17067:24;:::i;:::-;17062:3;17055:37;17045:53;;:::o;17104:435::-;;17306:95;17397:3;17388:6;17306:95;:::i;:::-;17299:102;;17418:95;17509:3;17500:6;17418:95;:::i;:::-;17411:102;;17530:3;17523:10;;17288:251;;;;;:::o;17545:222::-;;17676:2;17665:9;17661:18;17653:26;;17689:71;17757:1;17746:9;17742:17;17733:6;17689:71;:::i;:::-;17643:124;;;;:::o;17773:640::-;;18006:3;17995:9;17991:19;17983:27;;18020:71;18088:1;18077:9;18073:17;18064:6;18020:71;:::i;:::-;18101:72;18169:2;18158:9;18154:18;18145:6;18101:72;:::i;:::-;18183;18251:2;18240:9;18236:18;18227:6;18183:72;:::i;:::-;18302:9;18296:4;18292:20;18287:2;18276:9;18272:18;18265:48;18330:76;18401:4;18392:6;18330:76;:::i;:::-;18322:84;;17973:440;;;;;;;:::o;18419:210::-;;18544:2;18533:9;18529:18;18521:26;;18557:65;18619:1;18608:9;18604:17;18595:6;18557:65;:::i;:::-;18511:118;;;;:::o;18635:313::-;;18786:2;18775:9;18771:18;18763:26;;18835:9;18829:4;18825:20;18821:1;18810:9;18806:17;18799:47;18863:78;18936:4;18927:6;18863:78;:::i;:::-;18855:86;;18753:195;;;;:::o;18954:419::-;;19158:2;19147:9;19143:18;19135:26;;19207:9;19201:4;19197:20;19193:1;19182:9;19178:17;19171:47;19235:131;19361:4;19235:131;:::i;:::-;19227:139;;19125:248;;;:::o;19379:419::-;;19583:2;19572:9;19568:18;19560:26;;19632:9;19626:4;19622:20;19618:1;19607:9;19603:17;19596:47;19660:131;19786:4;19660:131;:::i;:::-;19652:139;;19550:248;;;:::o;19804:419::-;;20008:2;19997:9;19993:18;19985:26;;20057:9;20051:4;20047:20;20043:1;20032:9;20028:17;20021:47;20085:131;20211:4;20085:131;:::i;:::-;20077:139;;19975:248;;;:::o;20229:419::-;;20433:2;20422:9;20418:18;20410:26;;20482:9;20476:4;20472:20;20468:1;20457:9;20453:17;20446:47;20510:131;20636:4;20510:131;:::i;:::-;20502:139;;20400:248;;;:::o;20654:419::-;;20858:2;20847:9;20843:18;20835:26;;20907:9;20901:4;20897:20;20893:1;20882:9;20878:17;20871:47;20935:131;21061:4;20935:131;:::i;:::-;20927:139;;20825:248;;;:::o;21079:419::-;;21283:2;21272:9;21268:18;21260:26;;21332:9;21326:4;21322:20;21318:1;21307:9;21303:17;21296:47;21360:131;21486:4;21360:131;:::i;:::-;21352:139;;21250:248;;;:::o;21504:419::-;;21708:2;21697:9;21693:18;21685:26;;21757:9;21751:4;21747:20;21743:1;21732:9;21728:17;21721:47;21785:131;21911:4;21785:131;:::i;:::-;21777:139;;21675:248;;;:::o;21929:419::-;;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;22100:248;;;:::o;22354:419::-;;22558:2;22547:9;22543:18;22535:26;;22607:9;22601:4;22597:20;22593:1;22582:9;22578:17;22571:47;22635:131;22761:4;22635:131;:::i;:::-;22627:139;;22525:248;;;:::o;22779:419::-;;22983:2;22972:9;22968:18;22960:26;;23032:9;23026:4;23022:20;23018:1;23007:9;23003:17;22996:47;23060:131;23186:4;23060:131;:::i;:::-;23052:139;;22950:248;;;:::o;23204:419::-;;23408:2;23397:9;23393:18;23385:26;;23457:9;23451:4;23447:20;23443:1;23432:9;23428:17;23421:47;23485:131;23611:4;23485:131;:::i;:::-;23477:139;;23375:248;;;:::o;23629:419::-;;23833:2;23822:9;23818:18;23810:26;;23882:9;23876:4;23872:20;23868:1;23857:9;23853:17;23846:47;23910:131;24036:4;23910:131;:::i;:::-;23902:139;;23800:248;;;:::o;24054:419::-;;24258:2;24247:9;24243:18;24235:26;;24307:9;24301:4;24297:20;24293:1;24282:9;24278:17;24271:47;24335:131;24461:4;24335:131;:::i;:::-;24327:139;;24225:248;;;:::o;24479:419::-;;24683:2;24672:9;24668:18;24660:26;;24732:9;24726:4;24722:20;24718:1;24707:9;24703:17;24696:47;24760:131;24886:4;24760:131;:::i;:::-;24752:139;;24650:248;;;:::o;24904:419::-;;25108:2;25097:9;25093:18;25085:26;;25157:9;25151:4;25147:20;25143:1;25132:9;25128:17;25121:47;25185:131;25311:4;25185:131;:::i;:::-;25177:139;;25075:248;;;:::o;25329:419::-;;25533:2;25522:9;25518:18;25510:26;;25582:9;25576:4;25572:20;25568:1;25557:9;25553:17;25546:47;25610:131;25736:4;25610:131;:::i;:::-;25602:139;;25500:248;;;:::o;25754:419::-;;25958:2;25947:9;25943:18;25935:26;;26007:9;26001:4;25997:20;25993:1;25982:9;25978:17;25971:47;26035:131;26161:4;26035:131;:::i;:::-;26027:139;;25925:248;;;:::o;26179:419::-;;26383:2;26372:9;26368:18;26360:26;;26432:9;26426:4;26422:20;26418:1;26407:9;26403:17;26396:47;26460:131;26586:4;26460:131;:::i;:::-;26452:139;;26350:248;;;:::o;26604:419::-;;26808:2;26797:9;26793:18;26785:26;;26857:9;26851:4;26847:20;26843:1;26832:9;26828:17;26821:47;26885:131;27011:4;26885:131;:::i;:::-;26877:139;;26775:248;;;:::o;27029:419::-;;27233:2;27222:9;27218:18;27210:26;;27282:9;27276:4;27272:20;27268:1;27257:9;27253:17;27246:47;27310:131;27436:4;27310:131;:::i;:::-;27302:139;;27200:248;;;:::o;27454:419::-;;27658:2;27647:9;27643:18;27635:26;;27707:9;27701:4;27697:20;27693:1;27682:9;27678:17;27671:47;27735:131;27861:4;27735:131;:::i;:::-;27727:139;;27625:248;;;:::o;27879:419::-;;28083:2;28072:9;28068:18;28060:26;;28132:9;28126:4;28122:20;28118:1;28107:9;28103:17;28096:47;28160:131;28286:4;28160:131;:::i;:::-;28152:139;;28050:248;;;:::o;28304:419::-;;28508:2;28497:9;28493:18;28485:26;;28557:9;28551:4;28547:20;28543:1;28532:9;28528:17;28521:47;28585:131;28711:4;28585:131;:::i;:::-;28577:139;;28475:248;;;:::o;28729:419::-;;28933:2;28922:9;28918:18;28910:26;;28982:9;28976:4;28972:20;28968:1;28957:9;28953:17;28946:47;29010:131;29136:4;29010:131;:::i;:::-;29002:139;;28900:248;;;:::o;29154:338::-;;29343:2;29332:9;29328:18;29320:26;;29356:129;29482:1;29471:9;29467:17;29458:6;29356:129;:::i;:::-;29310:182;;;;:::o;29498:222::-;;29629:2;29618:9;29614:18;29606:26;;29642:71;29710:1;29699:9;29695:17;29686:6;29642:71;:::i;:::-;29596:124;;;;:::o;29726:442::-;;29913:2;29902:9;29898:18;29890:26;;29926:71;29994:1;29983:9;29979:17;29970:6;29926:71;:::i;:::-;30007:72;30075:2;30064:9;30060:18;30051:6;30007:72;:::i;:::-;30089;30157:2;30146:9;30142:18;30133:6;30089:72;:::i;:::-;29880:288;;;;;;:::o;30174:283::-;;30240:2;30234:9;30224:19;;30282:4;30274:6;30270:17;30389:6;30377:10;30374:22;30353:18;30341:10;30338:34;30335:62;30332:2;;;30400:18;;:::i;:::-;30332:2;30440:10;30436:2;30429:22;30214:243;;;;:::o;30463:331::-;;30614:18;30606:6;30603:30;30600:2;;;30636:18;;:::i;:::-;30600:2;30721:4;30717:9;30710:4;30702:6;30698:17;30694:33;30686:41;;30782:4;30776;30772:15;30764:23;;30529:265;;;:::o;30800:332::-;;30952:18;30944:6;30941:30;30938:2;;;30974:18;;:::i;:::-;30938:2;31059:4;31055:9;31048:4;31040:6;31036:17;31032:33;31024:41;;31120:4;31114;31110:15;31102:23;;30867:265;;;:::o;31138:98::-;;31223:5;31217:12;31207:22;;31196:40;;;:::o;31242:99::-;;31328:5;31322:12;31312:22;;31301:40;;;:::o;31347:168::-;;31464:6;31459:3;31452:19;31504:4;31499:3;31495:14;31480:29;;31442:73;;;;:::o;31521:169::-;;31639:6;31634:3;31627:19;31679:4;31674:3;31670:14;31655:29;;31617:73;;;;:::o;31696:148::-;;31835:3;31820:18;;31810:34;;;;:::o;31850:305::-;;31909:20;31927:1;31909:20;:::i;:::-;31904:25;;31943:20;31961:1;31943:20;:::i;:::-;31938:25;;32097:1;32029:66;32025:74;32022:1;32019:81;32016:2;;;32103:18;;:::i;:::-;32016:2;32147:1;32144;32140:9;32133:16;;31894:261;;;;:::o;32161:185::-;;32218:20;32236:1;32218:20;:::i;:::-;32213:25;;32252:20;32270:1;32252:20;:::i;:::-;32247:25;;32291:1;32281:2;;32296:18;;:::i;:::-;32281:2;32338:1;32335;32331:9;32326:14;;32203:143;;;;:::o;32352:348::-;;32415:20;32433:1;32415:20;:::i;:::-;32410:25;;32449:20;32467:1;32449:20;:::i;:::-;32444:25;;32637:1;32569:66;32565:74;32562:1;32559:81;32554:1;32547:9;32540:17;32536:105;32533:2;;;32644:18;;:::i;:::-;32533:2;32692:1;32689;32685:9;32674:20;;32400:300;;;;:::o;32706:191::-;;32766:20;32784:1;32766:20;:::i;:::-;32761:25;;32800:20;32818:1;32800:20;:::i;:::-;32795:25;;32839:1;32836;32833:8;32830:2;;;32844:18;;:::i;:::-;32830:2;32889:1;32886;32882:9;32874:17;;32751:146;;;;:::o;32903:96::-;;32969:24;32987:5;32969:24;:::i;:::-;32958:35;;32948:51;;;:::o;33005:90::-;;33082:5;33075:13;33068:21;33057:32;;33047:48;;;:::o;33101:149::-;;33177:66;33170:5;33166:78;33155:89;;33145:105;;;:::o;33256:126::-;;33333:42;33326:5;33322:54;33311:65;;33301:81;;;:::o;33388:77::-;;33454:5;33443:16;;33433:32;;;:::o;33471:154::-;33555:6;33550:3;33545;33532:30;33617:1;33608:6;33603:3;33599:16;33592:27;33522:103;;;:::o;33631:307::-;33699:1;33709:113;33723:6;33720:1;33717:13;33709:113;;;33808:1;33803:3;33799:11;33793:18;33789:1;33784:3;33780:11;33773:39;33745:2;33742:1;33738:10;33733:15;;33709:113;;;33840:6;33837:1;33834:13;33831:2;;;33920:1;33911:6;33906:3;33902:16;33895:27;33831:2;33680:258;;;;:::o;33944:320::-;;34025:1;34019:4;34015:12;34005:22;;34072:1;34066:4;34062:12;34093:18;34083:2;;34149:4;34141:6;34137:17;34127:27;;34083:2;34211;34203:6;34200:14;34180:18;34177:38;34174:2;;;34230:18;;:::i;:::-;34174:2;33995:269;;;;:::o;34270:233::-;;34332:24;34350:5;34332:24;:::i;:::-;34323:33;;34378:66;34371:5;34368:77;34365:2;;;34448:18;;:::i;:::-;34365:2;34495:1;34488:5;34484:13;34477:20;;34313:190;;;:::o;34509:176::-;;34558:20;34576:1;34558:20;:::i;:::-;34553:25;;34592:20;34610:1;34592:20;:::i;:::-;34587:25;;34631:1;34621:2;;34636:18;;:::i;:::-;34621:2;34677:1;34674;34670:9;34665:14;;34543:142;;;;:::o;34691:180::-;34739:77;34736:1;34729:88;34836:4;34833:1;34826:15;34860:4;34857:1;34850:15;34877:180;34925:77;34922:1;34915:88;35022:4;35019:1;35012:15;35046:4;35043:1;35036:15;35063:180;35111:77;35108:1;35101:88;35208:4;35205:1;35198:15;35232:4;35229:1;35222:15;35249:180;35297:77;35294:1;35287:88;35394:4;35391:1;35384:15;35418:4;35415:1;35408:15;35435:102;;35527:2;35523:7;35518:2;35511:5;35507:14;35503:28;35493:38;;35483:54;;;:::o;35543:122::-;35616:24;35634:5;35616:24;:::i;:::-;35609:5;35606:35;35596:2;;35655:1;35652;35645:12;35596:2;35586:79;:::o;35671:116::-;35741:21;35756:5;35741:21;:::i;:::-;35734:5;35731:32;35721:2;;35777:1;35774;35767:12;35721:2;35711:76;:::o;35793:120::-;35865:23;35882:5;35865:23;:::i;:::-;35858:5;35855:34;35845:2;;35903:1;35900;35893:12;35845:2;35835:78;:::o;35919:122::-;35992:24;36010:5;35992:24;:::i;:::-;35985:5;35982:35;35972:2;;36031:1;36028;36021:12;35972:2;35962:79;:::o

Swarm Source

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