ETH Price: $3,494.50 (+2.21%)
Gas: 14 Gwei

Token

Flur Alpha Pass (Flur Alpha Pass)
 

Overview

Max Total Supply

4,200 Flur Alpha Pass

Holders

1,417

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 Flur Alpha Pass
0x0f2b9bb57950014875481a6f021aa34ebacb6dd7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FlurAlphaPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 50000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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

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

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

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

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


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


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

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


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal collectionSize;
  uint256 internal maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. 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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

contract FlurAlphaPass is ERC721A, Ownable, ReentrancyGuard{
    using Strings for uint256;
    uint256 public mintPrice = .06 ether;
    uint256 public maxTokens = 10000;
    uint256 public maxPerMint = 6;
    uint256 public minted;
    uint256 public reserved;
    uint256 public reserveMinted;
    bool public mintEnabled;
    bool public allowlistMintEnabled;
    bool public claimEnabled;
    string baseurl = 'https://ipfs.io/ipfs/bafybeigsxfnd4wzsjqz5zmhrzyoiwy7pctuluclj7z6iqgrtt7kzmgdtku/images/';
 
    struct mintData{
        uint256 amount;
        }

    struct airdropData{
        uint256 amount;
        bool sent;
        }

    mapping(address => mintData) public allowListed;
    mapping(address => airdropData) public claimers;
    mapping(address => airdropData) public airdropped;



    constructor() ERC721A("Flur Alpha Pass", "Flur Alpha Pass", maxPerMint, maxTokens){
        _safeMint(msg.sender,1);
        minted++;
    }

    modifier humanOnly() {
      require(tx.origin == msg.sender, "The caller is another contract");
      _;
    }

    function mint(uint256 amount) external payable humanOnly{
	    require(mintEnabled);
	    require(minted + amount  <= maxTokens);
	    require(amount <= maxPerMint);
	    require(msg.value >= mintPrice * amount);
	    minted += amount;
	    _safeMint(msg.sender,amount);
    }


    function allowListedMint(uint256 amount) external payable humanOnly{
	    require(allowlistMintEnabled);
	    require(minted + amount  <= maxTokens);
	    require(amount <= allowListed[msg.sender].amount);
	    require(msg.value >= mintPrice * amount);
	    allowListed[msg.sender].amount -= amount;
	    minted += amount;
	    _safeMint(msg.sender,amount);
    }

    function claim() external {
	    require(minted + claimers[msg.sender].amount <= maxTokens);
	    require(!claimers[msg.sender].sent);
        require(claimEnabled);
	    claimers[msg.sender].sent = true;
	    minted += claimers[msg.sender].amount;
	    _safeMint(msg.sender,claimers[msg.sender].amount);

    }

    function airdrop(address[] calldata _airdrop, uint256[] calldata _airdropAmount) external onlyOwner {
	    for (uint256 i = 0; i < _airdrop.length; i++) {
		    if(airdropped[_airdrop[i]].sent){
			    continue;
		    }
		    airdropped[_airdrop[i]].sent = true;
	    	minted+=_airdropAmount[i];
	    	_safeMint(_airdrop[i],_airdropAmount[i]);
	    }
    }

    function addAllowList(address[] calldata _allowlisted) external onlyOwner {
        for (uint256 i = 0; i < _allowlisted.length; i++) {
            allowListed[_allowlisted[i]].amount = 2;
        }
    }

    function addClaimers(address[] calldata _claim) external onlyOwner {
        for (uint256 i = 0; i < _claim.length; i++) {
            claimers[_claim[i]].amount = 6;
        }
    }
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 fee = (balance*5)/100;
        address devTeamFee = 0x9850e88E1e1C649212E296519C986e77E932ff4d;
        address advisorFee = 0x5783BFfD8B03512e3B90603b30A4a223698EEf12;
        address marketingFund = 0xB7883d7d82Ec17b0291DCF8dD792b1897ABddE7c;
        address teamFees = 0xc604660115302fE544d893DAAAD4CC12D704B303;
        address AlphaFund = 0x193EE54a6033f039C9254fc4E34A5CCFe01F3441;

        payable(devTeamFee).transfer(fee);
        payable(advisorFee).transfer(fee);
        payable(marketingFund).transfer(fee);
        payable(teamFees).transfer(fee);
	    payable(AlphaFund).transfer(address(this).balance);
    }

    function setmintStatus(bool ce,bool wl, bool pub) external onlyOwner {
        claimEnabled = ce;
	    allowlistMintEnabled = wl;
	    mintEnabled = pub;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner{
        mintPrice = _mintPrice;
    }

    function setUpdateCollectionSize(uint256 _maxTokens) external onlyOwner{
        maxTokens = _maxTokens;
        collectionSize = _maxTokens;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

   function tokenURI(uint256 tokenId) public view override returns (string memory) {
	    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
	    uint256 mod = tokenId%2;
	    string memory color;
	    if (mod == 0){
	    	color = 'Dark';
	    } else {
	    	color = 'Light';
	    }
	    string memory metadata = string(abi.encodePacked(
	    '{"name": "Flur Alpha #',
	    tokenId.toString(),
	    '", "description": "Flur Alpha gives exclusive access and alpha in the Flur Alpha discord", "image": "',
	    baseurl, mod.toString(),'.png",',
	    '"attributes": [{"trait_type":"Alpha Pass","value": "', color ,'"}]',
          '}'
        ));

        return string(abi.encodePacked(
          "data:application/json;base64,",
          base64(bytes(metadata))
        ));
    }

  /** BASE 64 - Written by Brech Devos */
  
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function base64(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                dataPtr := add(dataPtr, 3)
                
                // read 3 bytes
                let input := mload(dataPtr)
                
                // write 4 characters
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
                resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_allowlisted","type":"address[]"}],"name":"addAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_claim","type":"address[]"}],"name":"addClaimers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdrop","type":"address[]"},{"internalType":"uint256[]","name":"_airdropAmount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdropped","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"sent","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListed","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allowListedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimers","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"sent","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"reserveMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserved","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokens","type":"uint256"}],"name":"setUpdateCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"ce","type":"bool"},{"internalType":"bool","name":"wl","type":"bool"},{"internalType":"bool","name":"pub","type":"bool"}],"name":"setmintStatus","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"}]

600080805560095566d529ae9e860000600c55612710600d556006600e556101006040526058608081815290620046e260a03980516200004891601391602090910190620006e4565b503480156200005657600080fd5b506040518060400160405280600f81526020016e466c757220416c706861205061737360881b8152506040518060400160405280600f81526020016e466c757220416c706861205061737360881b815250600e54600d54600081116200011a5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000111565b835162000191906003906020870190620006e4565b508251620001a7906004906020860190620006e4565b5060029190915560015550620001bf905033620001f0565b6001600b819055620001d390339062000242565b600f8054906000620001e583620008a3565b9190505550620008d7565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002648282604051806020016040528060008152506200026860201b60201c565b5050565b6000546001600160a01b038416620002cd5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000111565b620002d9816000541190565b15620003285760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640162000111565b600254831115620003875760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840162000111565b6001600160a01b0384166000908152600660209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190620003e590879062000838565b6001600160801b0316815260200185836020015162000405919062000838565b6001600160801b039081169091526001600160a01b0380881660008181526006602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526005909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005695760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4620004eb600088848862000574565b620005445760405162461bcd60e51b815260206004820152603360248201526000805160206200473a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000111565b816200055081620008a3565b92505080806200056090620008a3565b9150506200049b565b506000555050505050565b600062000595846001600160a01b0316620006de60201b620020ff1760201c565b15620006d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005cf903390899088908890600401620007bd565b602060405180830381600087803b158015620005ea57600080fd5b505af19250505080156200061d575060408051601f3d908101601f191682019092526200061a918101906200078a565b60015b620006b7573d8080156200064e576040519150601f19603f3d011682016040523d82523d6000602084013e62000653565b606091505b508051620006af5760405162461bcd60e51b815260206004820152603360248201526000805160206200473a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000111565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006d6565b5060015b949350505050565b3b151590565b828054620006f29062000866565b90600052602060002090601f01602090048101928262000716576000855562000761565b82601f106200073157805160ff191683800117855562000761565b8280016001018555821562000761579182015b828111156200076157825182559160200191906001019062000744565b506200076f92915062000773565b5090565b5b808211156200076f576000815560010162000774565b6000602082840312156200079d57600080fd5b81516001600160e01b031981168114620007b657600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200080c5785810182015185820160a001528101620007ee565b828111156200081f57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60006001600160801b038281168482168083038211156200085d576200085d620008c1565b01949350505050565b600181811c908216806200087b57607f821691505b602082108114156200089d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008ba57620008ba620008c1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613dfb80620008e76000396000f3fe6080604052600436106102e75760003560e01c80636817c76c11610184578063b88d4fde116100d6578063dc33e6811161008a578063f2fde38b11610064578063f2fde38b14610890578063f4a0a528146108b0578063fe60d12c146108d057600080fd5b8063dc33e68114610804578063e831574214610824578063e985e9c51461083a57600080fd5b8063d1239730116100bb578063d12397301461079d578063d7224ba0146107b7578063da62fba9146107cd57600080fd5b8063b88d4fde1461075d578063c87b56dd1461077d57600080fd5b806379de186a1161013857806395d89b411161011257806395d89b4114610715578063a0712d681461072a578063a22cb4651461073d57600080fd5b806379de186a146106705780638da5cb5b1461068f5780639231ab2a146106ba57600080fd5b806370a082311161016957806370a082311461061b578063715018a61461063b57806379313b941461065057600080fd5b80636817c76c146105e5578063686f81e6146105fb57600080fd5b80633ccfd60b1161023d5780634f02c420116101f15780635555a77e116101cb5780635555a77e146105855780636352211e146105a557806367243482146105c557600080fd5b80634f02c420146105395780634f6ccce71461054f578063507e094f1461056f57600080fd5b80634bb1a60e116102225780634bb1a60e146104fb5780634c81433f1461050e5780634e71d92d1461052457600080fd5b80633ccfd60b146104c657806342842e0e146104db57600080fd5b806318160ddd1161029f578063255323ff11610279578063255323ff146104665780632866ed21146104865780632f745c59146104a657600080fd5b806318160ddd146103e557806320b57614146103fa57806323b872dd1461044657600080fd5b8063081812fc116102d0578063081812fc14610343578063095ea7b314610388578063154afd6f146103aa57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046136bd565b6108e6565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b50610336610a17565b6040516103189190613aa1565b34801561034f57600080fd5b5061036361035e3660046136f7565b610aa9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610318565b34801561039457600080fd5b506103a86103a33660046135a2565b610b70565b005b3480156103b657600080fd5b506103d76103c53660046133ed565b60146020526000908152604090205481565b604051908152602001610318565b3480156103f157600080fd5b506000546103d7565b34801561040657600080fd5b506104316104153660046133ed565b6016602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610318565b34801561045257600080fd5b506103a8610461366004613442565b610cfe565b34801561047257600080fd5b506103a86104813660046135cc565b610d09565b34801561049257600080fd5b5060125461030c9062010000900460ff1681565b3480156104b257600080fd5b506103d76104c13660046135a2565b610dfb565b3480156104d257600080fd5b506103a8610fff565b3480156104e757600080fd5b506103a86104f6366004613442565b611251565b6103a86105093660046136f7565b61126c565b34801561051a57600080fd5b506103d760115481565b34801561053057600080fd5b506103a8611386565b34801561054557600080fd5b506103d7600f5481565b34801561055b57600080fd5b506103d761056a3660046136f7565b611458565b34801561057b57600080fd5b506103d7600e5481565b34801561059157600080fd5b506103a86105a03660046136f7565b6114ee565b3480156105b157600080fd5b506103636105c03660046136f7565b611579565b3480156105d157600080fd5b506103a86105e036600461360e565b61158b565b3480156105f157600080fd5b506103d7600c5481565b34801561060757600080fd5b506103a86106163660046135cc565b61178d565b34801561062757600080fd5b506103d76106363660046133ed565b61187f565b34801561064757600080fd5b506103a861195f565b34801561065c57600080fd5b506103a861066b36600461367a565b6119ea565b34801561067c57600080fd5b5060125461030c90610100900460ff1681565b34801561069b57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610363565b3480156106c657600080fd5b506106da6106d53660046136f7565b611afa565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610318565b34801561072157600080fd5b50610336611b17565b6103a86107383660046136f7565b611b26565b34801561074957600080fd5b506103a8610758366004613578565b611bf5565b34801561076957600080fd5b506103a861077836600461347e565b611d0c565b34801561078957600080fd5b506103366107983660046136f7565b611db5565b3480156107a957600080fd5b5060125461030c9060ff1681565b3480156107c357600080fd5b506103d760095481565b3480156107d957600080fd5b506104316107e83660046133ed565b6015602052600090815260409020805460019091015460ff1682565b34801561081057600080fd5b506103d761081f3660046133ed565b611f41565b34801561083057600080fd5b506103d7600d5481565b34801561084657600080fd5b5061030c61085536600461340f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561089c57600080fd5b506103a86108ab3660046133ed565b611f4c565b3480156108bc57600080fd5b506103a86108cb3660046136f7565b612079565b3480156108dc57600080fd5b506103d760105481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061097957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a1157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060038054610a2690613bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290613bfa565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000610ab6826000541190565b610b47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b7b82611579565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c625750610c628133610855565b610cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b3e565b610cf9838383612105565b505050565b610cf9838383612186565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b81811015610cf957600260146000858585818110610dad57610dad613cf9565b9050602002016020810190610dc291906133ed565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205580610df381613c4e565b915050610d8d565b6000610e068361187f565b8210610e94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b600080549080805b83811015610f765760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f0d57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f635786841415610f5557509350610a1192505050565b83610f5f81613c4e565b9450505b5080610f6e81613c4e565b915050610e9c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b3e565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b4760006064611090836005613b14565b61109a9190613b00565b604051909150739850e88e1e1c649212e296519c986e77e932ff4d90735783bffd8b03512e3b90603b30a4a223698eef129073b7883d7d82ec17b0291dcf8dd792b1897abdde7c9073c604660115302fe544d893daaad4cc12d704b3039073193ee54a6033f039c9254fc4e34a5ccfe01f344190859087156108fc029088906000818181858888f19350505050158015611138573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff85169087156108fc029088906000818181858888f1935050505015801561117c573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff84169087156108fc029088906000818181858888f193505050501580156111c0573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff83169087156108fc029088906000818181858888f19350505050158015611204573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015611247573d6000803e3d6000fd5b5050505050505050565b610cf983838360405180602001604052806000815250611d0c565b3233146112d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b3e565b601254610100900460ff166112e957600080fd5b600d5481600f546112fa9190613ae8565b111561130557600080fd5b3360009081526014602052604090205481111561132157600080fd5b80600c5461132f9190613b14565b34101561133b57600080fd5b336000908152601460205260408120805483929061135a908490613b82565b9250508190555080600f60008282546113739190613ae8565b90915550611383905033826126ac565b50565b600d5433600090815260156020526040902054600f546113a69190613ae8565b11156113b157600080fd5b3360009081526015602052604090206001015460ff16156113d157600080fd5b60125462010000900460ff166113e657600080fd5b336000908152601560205260408120600181810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909117905554600f805491929091611437908490613ae8565b90915550503360008181526015602052604090205461145691906126ac565b565b6000805482106114ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b5090565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b600d819055600155565b6000611584826126ca565b5192915050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b83811015611786576016600086868481811061162d5761162d613cf9565b905060200201602081019061164291906133ed565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000206001015460ff161561167957611774565b60016016600087878581811061169157611691613cf9565b90506020020160208101906116a691906133ed565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002060010180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905582828281811061170e5761170e613cf9565b90506020020135600f60008282546117269190613ae8565b90915550611774905085858381811061174157611741613cf9565b905060200201602081019061175691906133ed565b84848481811061176857611768613cf9565b905060200201356126ac565b8061177e81613c4e565b91505061160f565b5050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b81811015610cf95760066015600085858581811061183157611831613cf9565b905060200201602081019061184691906133ed565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020558061187781613c4e565b915050611811565b600073ffffffffffffffffffffffffffffffffffffffff8216611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b3e565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600660205260409020546fffffffffffffffffffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b61145660006128ac565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010000941515949094027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169390931761010092151592909202919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016901515179055565b6040805180820190915260008082526020820152610a11826126ca565b606060048054610a2690613bfa565b323314611b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b3e565b60125460ff16611b9e57600080fd5b600d5481600f54611baf9190613ae8565b1115611bba57600080fd5b600e54811115611bc957600080fd5b80600c54611bd79190613b14565b341015611be357600080fd5b80600f60008282546113739190613ae8565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b3e565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d17848484612186565b611d2384848484612923565b611daf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b50505050565b6060611dc2826000541190565b611e4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b3e565b6000611e5b600284613c87565b9050606081611e9e575060408051808201909152600481527f4461726b000000000000000000000000000000000000000000000000000000006020820152611ed4565b5060408051808201909152600581527f4c6967687400000000000000000000000000000000000000000000000000000060208201525b6000611edf85612b23565b6013611eea85612b23565b84604051602001611efe9493929190613776565b6040516020818303038152906040529050611f1881612c55565b604051602001611f289190613a13565b6040516020818303038152906040529350505050919050565b6000610a1182612e30565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b73ffffffffffffffffffffffffffffffffffffffff8116612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b3e565b611383816128ac565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b600c55565b3b151590565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612191826126ca565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806121ef5750336121d784610aa9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612201575081516122019033610855565b905080612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b3e565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b3e565b73ffffffffffffffffffffffffffffffffffffffff84166123f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b3e565b6124026000848460000151612105565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020526040812080546001929061244a9084906fffffffffffffffffffffffffffffffff16613b51565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff8616600090815260066020526040812080546001945090926124ac91859116613ab4565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600590915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612573846001613ae8565b60008181526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16612648576125aa816000541190565b1561264857604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260059093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6126c6828260405180602001604052806000815250612f24565b5050565b60408051808201909152600080825260208201526126e9826000541190565b612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b3e565b6000600254831061279b5760025461278d9084613b82565b612798906001613ae8565b90505b825b8181106128235760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561281057949350505050565b508061281b81613bc5565b91505061279d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b3e565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b17576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061299a903390899088908890600401613a58565b602060405180830381600087803b1580156129b457600080fd5b505af1925050508015612a02575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129ff918101906136da565b60015b612acc573d808015612a30576040519150601f19603f3d011682016040523d82523d6000602084013e612a35565b606091505b508051612ac4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b1b565b5060015b949350505050565b606081612b6357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b8d5780612b7781613c4e565b9150612b869050600a83613b00565b9150612b67565b60008167ffffffffffffffff811115612ba857612ba8613d28565b6040519080825280601f01601f191660200182016040528015612bd2576020820181803683370190505b5090505b8415612b1b57612be7600183613b82565b9150612bf4600a86613c87565b612bff906030613ae8565b60f81b818381518110612c1457612c14613cf9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c4e600a86613b00565b9450612bd6565b6060815160001415612c7557505060408051602081019091526000815290565b6000604051806060016040528060408152602001613d866040913990506000600384516002612ca49190613ae8565b612cae9190613b00565b612cb9906004613b14565b90506000612cc8826020613ae8565b67ffffffffffffffff811115612ce057612ce0613d28565b6040519080825280601f01601f191660200182016040528015612d0a576020820181803683370190505b509050818152600183018586518101602084015b81831015612d785760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612d1e565b600389510660018114612d925760028114612ddc57612e22565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612e22565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8216612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b3e565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff8416612fca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b612fd5816000541190565b1561303c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b3e565b6002548311156130ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104169181019190915281518083019092528051909190819061314d908790613ab4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131749190613ab4565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260066020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600590955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b8581101561335d57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132b16000888488612923565b61333d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b8161334781613c4e565b925050808061335590613c4e565b915050613257565b5060008190556126a4565b803573ffffffffffffffffffffffffffffffffffffffff8116811461338c57600080fd5b919050565b60008083601f8401126133a357600080fd5b50813567ffffffffffffffff8111156133bb57600080fd5b6020830191508360208260051b85010111156133d657600080fd5b9250929050565b8035801515811461338c57600080fd5b6000602082840312156133ff57600080fd5b61340882613368565b9392505050565b6000806040838503121561342257600080fd5b61342b83613368565b915061343960208401613368565b90509250929050565b60008060006060848603121561345757600080fd5b61346084613368565b925061346e60208501613368565b9150604084013590509250925092565b6000806000806080858703121561349457600080fd5b61349d85613368565b93506134ab60208601613368565b925060408501359150606085013567ffffffffffffffff808211156134cf57600080fd5b818701915087601f8301126134e357600080fd5b8135818111156134f5576134f5613d28565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561353b5761353b613d28565b816040528281528a602084870101111561355457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561358b57600080fd5b61359483613368565b9150613439602084016133dd565b600080604083850312156135b557600080fd5b6135be83613368565b946020939093013593505050565b600080602083850312156135df57600080fd5b823567ffffffffffffffff8111156135f657600080fd5b61360285828601613391565b90969095509350505050565b6000806000806040858703121561362457600080fd5b843567ffffffffffffffff8082111561363c57600080fd5b61364888838901613391565b9096509450602087013591508082111561366157600080fd5b5061366e87828801613391565b95989497509550505050565b60008060006060848603121561368f57600080fd5b613698846133dd565b92506136a6602085016133dd565b91506136b4604085016133dd565b90509250925092565b6000602082840312156136cf57600080fd5b813561340881613d57565b6000602082840312156136ec57600080fd5b815161340881613d57565b60006020828403121561370957600080fd5b5035919050565b60008151808452613728816020860160208601613b99565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000815161376c818560208601613b99565b9290920192915050565b7f7b226e616d65223a2022466c757220416c70686120230000000000000000000081526000855160206137af8260168601838b01613b99565b7f222c20226465736372697074696f6e223a2022466c757220416c7068612067696016928501928301527f766573206578636c75736976652061636365737320616e6420616c706861206960368301527f6e2074686520466c757220416c70686120646973636f7264222c2022696d616760568301527f65223a202200000000000000000000000000000000000000000000000000000060768301528654607b90600090600181811c908083168061386857607f831692505b86831081141561389f577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b8080156138b357600181146138e657613917565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516878a015286848a01019550613917565b60008e81526020902060005b8581101561390d5781548b82018a01529084019089016138f2565b505086848a010195505b5050505050613a056139dc6139b36139ad61395e613935868e61375a565b7f2e706e67222c0000000000000000000000000000000000000000000000000000815260060190565b7f2261747472696275746573223a205b7b2274726169745f74797065223a22416c81527f7068612050617373222c2276616c7565223a2022000000000000000000000000602082015260340190565b8a61375a565b7f227d5d0000000000000000000000000000000000000000000000000000000000815260030190565b7f7d00000000000000000000000000000000000000000000000000000000000000815260010190565b9a9950505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a4b81601d850160208701613b99565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613a976080830184613710565b9695505050505050565b6020815260006134086020830184613710565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613adf57613adf613c9b565b01949350505050565b60008219821115613afb57613afb613c9b565b500190565b600082613b0f57613b0f613cca565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4c57613b4c613c9b565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015613b7a57613b7a613c9b565b039392505050565b600082821015613b9457613b94613c9b565b500390565b60005b83811015613bb4578181015183820152602001613b9c565b83811115611daf5750506000910152565b600081613bd457613bd4613c9b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680613c0e57607f821691505b60208210811415613c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8057613c80613c9b565b5060010190565b600082613c9657613c96613cca565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461138357600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212209b727638bee040cf85f77a9b38cb98c8f3a9d2f78c208d9feb94bc9f6e9b7a1064736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f62616679626569677378666e6434777a736a717a357a6d68727a796f69777937706374756c75636c6a377a36697167727474376b7a6d6764746b752f696d616765732f455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106102e75760003560e01c80636817c76c11610184578063b88d4fde116100d6578063dc33e6811161008a578063f2fde38b11610064578063f2fde38b14610890578063f4a0a528146108b0578063fe60d12c146108d057600080fd5b8063dc33e68114610804578063e831574214610824578063e985e9c51461083a57600080fd5b8063d1239730116100bb578063d12397301461079d578063d7224ba0146107b7578063da62fba9146107cd57600080fd5b8063b88d4fde1461075d578063c87b56dd1461077d57600080fd5b806379de186a1161013857806395d89b411161011257806395d89b4114610715578063a0712d681461072a578063a22cb4651461073d57600080fd5b806379de186a146106705780638da5cb5b1461068f5780639231ab2a146106ba57600080fd5b806370a082311161016957806370a082311461061b578063715018a61461063b57806379313b941461065057600080fd5b80636817c76c146105e5578063686f81e6146105fb57600080fd5b80633ccfd60b1161023d5780634f02c420116101f15780635555a77e116101cb5780635555a77e146105855780636352211e146105a557806367243482146105c557600080fd5b80634f02c420146105395780634f6ccce71461054f578063507e094f1461056f57600080fd5b80634bb1a60e116102225780634bb1a60e146104fb5780634c81433f1461050e5780634e71d92d1461052457600080fd5b80633ccfd60b146104c657806342842e0e146104db57600080fd5b806318160ddd1161029f578063255323ff11610279578063255323ff146104665780632866ed21146104865780632f745c59146104a657600080fd5b806318160ddd146103e557806320b57614146103fa57806323b872dd1461044657600080fd5b8063081812fc116102d0578063081812fc14610343578063095ea7b314610388578063154afd6f146103aa57600080fd5b806301ffc9a7146102ec57806306fdde0314610321575b600080fd5b3480156102f857600080fd5b5061030c6103073660046136bd565b6108e6565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b50610336610a17565b6040516103189190613aa1565b34801561034f57600080fd5b5061036361035e3660046136f7565b610aa9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610318565b34801561039457600080fd5b506103a86103a33660046135a2565b610b70565b005b3480156103b657600080fd5b506103d76103c53660046133ed565b60146020526000908152604090205481565b604051908152602001610318565b3480156103f157600080fd5b506000546103d7565b34801561040657600080fd5b506104316104153660046133ed565b6016602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610318565b34801561045257600080fd5b506103a8610461366004613442565b610cfe565b34801561047257600080fd5b506103a86104813660046135cc565b610d09565b34801561049257600080fd5b5060125461030c9062010000900460ff1681565b3480156104b257600080fd5b506103d76104c13660046135a2565b610dfb565b3480156104d257600080fd5b506103a8610fff565b3480156104e757600080fd5b506103a86104f6366004613442565b611251565b6103a86105093660046136f7565b61126c565b34801561051a57600080fd5b506103d760115481565b34801561053057600080fd5b506103a8611386565b34801561054557600080fd5b506103d7600f5481565b34801561055b57600080fd5b506103d761056a3660046136f7565b611458565b34801561057b57600080fd5b506103d7600e5481565b34801561059157600080fd5b506103a86105a03660046136f7565b6114ee565b3480156105b157600080fd5b506103636105c03660046136f7565b611579565b3480156105d157600080fd5b506103a86105e036600461360e565b61158b565b3480156105f157600080fd5b506103d7600c5481565b34801561060757600080fd5b506103a86106163660046135cc565b61178d565b34801561062757600080fd5b506103d76106363660046133ed565b61187f565b34801561064757600080fd5b506103a861195f565b34801561065c57600080fd5b506103a861066b36600461367a565b6119ea565b34801561067c57600080fd5b5060125461030c90610100900460ff1681565b34801561069b57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610363565b3480156106c657600080fd5b506106da6106d53660046136f7565b611afa565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610318565b34801561072157600080fd5b50610336611b17565b6103a86107383660046136f7565b611b26565b34801561074957600080fd5b506103a8610758366004613578565b611bf5565b34801561076957600080fd5b506103a861077836600461347e565b611d0c565b34801561078957600080fd5b506103366107983660046136f7565b611db5565b3480156107a957600080fd5b5060125461030c9060ff1681565b3480156107c357600080fd5b506103d760095481565b3480156107d957600080fd5b506104316107e83660046133ed565b6015602052600090815260409020805460019091015460ff1682565b34801561081057600080fd5b506103d761081f3660046133ed565b611f41565b34801561083057600080fd5b506103d7600d5481565b34801561084657600080fd5b5061030c61085536600461340f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561089c57600080fd5b506103a86108ab3660046133ed565b611f4c565b3480156108bc57600080fd5b506103a86108cb3660046136f7565b612079565b3480156108dc57600080fd5b506103d760105481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061097957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a1157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060038054610a2690613bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290613bfa565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000610ab6826000541190565b610b47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b7b82611579565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c625750610c628133610855565b610cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b3e565b610cf9838383612105565b505050565b610cf9838383612186565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b81811015610cf957600260146000858585818110610dad57610dad613cf9565b9050602002016020810190610dc291906133ed565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205580610df381613c4e565b915050610d8d565b6000610e068361187f565b8210610e94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b600080549080805b83811015610f765760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610f0d57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f635786841415610f5557509350610a1192505050565b83610f5f81613c4e565b9450505b5080610f6e81613c4e565b915050610e9c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610b3e565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b4760006064611090836005613b14565b61109a9190613b00565b604051909150739850e88e1e1c649212e296519c986e77e932ff4d90735783bffd8b03512e3b90603b30a4a223698eef129073b7883d7d82ec17b0291dcf8dd792b1897abdde7c9073c604660115302fe544d893daaad4cc12d704b3039073193ee54a6033f039c9254fc4e34a5ccfe01f344190859087156108fc029088906000818181858888f19350505050158015611138573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff85169087156108fc029088906000818181858888f1935050505015801561117c573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff84169087156108fc029088906000818181858888f193505050501580156111c0573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff83169087156108fc029088906000818181858888f19350505050158015611204573d6000803e3d6000fd5b5060405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015611247573d6000803e3d6000fd5b5050505050505050565b610cf983838360405180602001604052806000815250611d0c565b3233146112d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b3e565b601254610100900460ff166112e957600080fd5b600d5481600f546112fa9190613ae8565b111561130557600080fd5b3360009081526014602052604090205481111561132157600080fd5b80600c5461132f9190613b14565b34101561133b57600080fd5b336000908152601460205260408120805483929061135a908490613b82565b9250508190555080600f60008282546113739190613ae8565b90915550611383905033826126ac565b50565b600d5433600090815260156020526040902054600f546113a69190613ae8565b11156113b157600080fd5b3360009081526015602052604090206001015460ff16156113d157600080fd5b60125462010000900460ff166113e657600080fd5b336000908152601560205260408120600181810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016909117905554600f805491929091611437908490613ae8565b90915550503360008181526015602052604090205461145691906126ac565b565b6000805482106114ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b5090565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b600d819055600155565b6000611584826126ca565b5192915050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b83811015611786576016600086868481811061162d5761162d613cf9565b905060200201602081019061164291906133ed565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000206001015460ff161561167957611774565b60016016600087878581811061169157611691613cf9565b90506020020160208101906116a691906133ed565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002060010180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905582828281811061170e5761170e613cf9565b90506020020135600f60008282546117269190613ae8565b90915550611774905085858381811061174157611741613cf9565b905060200201602081019061175691906133ed565b84848481811061176857611768613cf9565b905060200201356126ac565b8061177e81613c4e565b91505061160f565b5050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b60005b81811015610cf95760066015600085858581811061183157611831613cf9565b905060200201602081019061184691906133ed565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020558061187781613c4e565b915050611811565b600073ffffffffffffffffffffffffffffffffffffffff8216611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610b3e565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600660205260409020546fffffffffffffffffffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b61145660006128ac565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010000941515949094027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169390931761010092151592909202919091177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016901515179055565b6040805180820190915260008082526020820152610a11826126ca565b606060048054610a2690613bfa565b323314611b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b3e565b60125460ff16611b9e57600080fd5b600d5481600f54611baf9190613ae8565b1115611bba57600080fd5b600e54811115611bc957600080fd5b80600c54611bd79190613b14565b341015611be357600080fd5b80600f60008282546113739190613ae8565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b3e565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d17848484612186565b611d2384848484612923565b611daf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b50505050565b6060611dc2826000541190565b611e4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b3e565b6000611e5b600284613c87565b9050606081611e9e575060408051808201909152600481527f4461726b000000000000000000000000000000000000000000000000000000006020820152611ed4565b5060408051808201909152600581527f4c6967687400000000000000000000000000000000000000000000000000000060208201525b6000611edf85612b23565b6013611eea85612b23565b84604051602001611efe9493929190613776565b6040516020818303038152906040529050611f1881612c55565b604051602001611f289190613a13565b6040516020818303038152906040529350505050919050565b6000610a1182612e30565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b73ffffffffffffffffffffffffffffffffffffffff8116612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b3e565b611383816128ac565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b3e565b600c55565b3b151590565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612191826126ca565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806121ef5750336121d784610aa9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612201575081516122019033610855565b905080612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610b3e565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610b3e565b73ffffffffffffffffffffffffffffffffffffffff84166123f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b3e565b6124026000848460000151612105565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020526040812080546001929061244a9084906fffffffffffffffffffffffffffffffff16613b51565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff8616600090815260066020526040812080546001945090926124ac91859116613ab4565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600590915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612573846001613ae8565b60008181526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16612648576125aa816000541190565b1561264857604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260059093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6126c6828260405180602001604052806000815250612f24565b5050565b60408051808201909152600080825260208201526126e9826000541190565b612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610b3e565b6000600254831061279b5760025461278d9084613b82565b612798906001613ae8565b90505b825b8181106128235760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561281057949350505050565b508061281b81613bc5565b91505061279d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610b3e565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b17576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061299a903390899088908890600401613a58565b602060405180830381600087803b1580156129b457600080fd5b505af1925050508015612a02575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129ff918101906136da565b60015b612acc573d808015612a30576040519150601f19603f3d011682016040523d82523d6000602084013e612a35565b606091505b508051612ac4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b1b565b5060015b949350505050565b606081612b6357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b8d5780612b7781613c4e565b9150612b869050600a83613b00565b9150612b67565b60008167ffffffffffffffff811115612ba857612ba8613d28565b6040519080825280601f01601f191660200182016040528015612bd2576020820181803683370190505b5090505b8415612b1b57612be7600183613b82565b9150612bf4600a86613c87565b612bff906030613ae8565b60f81b818381518110612c1457612c14613cf9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c4e600a86613b00565b9450612bd6565b6060815160001415612c7557505060408051602081019091526000815290565b6000604051806060016040528060408152602001613d866040913990506000600384516002612ca49190613ae8565b612cae9190613b00565b612cb9906004613b14565b90506000612cc8826020613ae8565b67ffffffffffffffff811115612ce057612ce0613d28565b6040519080825280601f01601f191660200182016040528015612d0a576020820181803683370190505b509050818152600183018586518101602084015b81831015612d785760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612d1e565b600389510660018114612d925760028114612ddc57612e22565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612e22565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8216612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610b3e565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff8416612fca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b612fd5816000541190565b1561303c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b3e565b6002548311156130ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610b3e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104169181019190915281518083019092528051909190819061314d908790613ab4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131749190613ab4565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260066020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600590955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b8581101561335d57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132b16000888488612923565b61333d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610b3e565b8161334781613c4e565b925050808061335590613c4e565b915050613257565b5060008190556126a4565b803573ffffffffffffffffffffffffffffffffffffffff8116811461338c57600080fd5b919050565b60008083601f8401126133a357600080fd5b50813567ffffffffffffffff8111156133bb57600080fd5b6020830191508360208260051b85010111156133d657600080fd5b9250929050565b8035801515811461338c57600080fd5b6000602082840312156133ff57600080fd5b61340882613368565b9392505050565b6000806040838503121561342257600080fd5b61342b83613368565b915061343960208401613368565b90509250929050565b60008060006060848603121561345757600080fd5b61346084613368565b925061346e60208501613368565b9150604084013590509250925092565b6000806000806080858703121561349457600080fd5b61349d85613368565b93506134ab60208601613368565b925060408501359150606085013567ffffffffffffffff808211156134cf57600080fd5b818701915087601f8301126134e357600080fd5b8135818111156134f5576134f5613d28565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561353b5761353b613d28565b816040528281528a602084870101111561355457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561358b57600080fd5b61359483613368565b9150613439602084016133dd565b600080604083850312156135b557600080fd5b6135be83613368565b946020939093013593505050565b600080602083850312156135df57600080fd5b823567ffffffffffffffff8111156135f657600080fd5b61360285828601613391565b90969095509350505050565b6000806000806040858703121561362457600080fd5b843567ffffffffffffffff8082111561363c57600080fd5b61364888838901613391565b9096509450602087013591508082111561366157600080fd5b5061366e87828801613391565b95989497509550505050565b60008060006060848603121561368f57600080fd5b613698846133dd565b92506136a6602085016133dd565b91506136b4604085016133dd565b90509250925092565b6000602082840312156136cf57600080fd5b813561340881613d57565b6000602082840312156136ec57600080fd5b815161340881613d57565b60006020828403121561370957600080fd5b5035919050565b60008151808452613728816020860160208601613b99565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000815161376c818560208601613b99565b9290920192915050565b7f7b226e616d65223a2022466c757220416c70686120230000000000000000000081526000855160206137af8260168601838b01613b99565b7f222c20226465736372697074696f6e223a2022466c757220416c7068612067696016928501928301527f766573206578636c75736976652061636365737320616e6420616c706861206960368301527f6e2074686520466c757220416c70686120646973636f7264222c2022696d616760568301527f65223a202200000000000000000000000000000000000000000000000000000060768301528654607b90600090600181811c908083168061386857607f831692505b86831081141561389f577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b8080156138b357600181146138e657613917565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516878a015286848a01019550613917565b60008e81526020902060005b8581101561390d5781548b82018a01529084019089016138f2565b505086848a010195505b5050505050613a056139dc6139b36139ad61395e613935868e61375a565b7f2e706e67222c0000000000000000000000000000000000000000000000000000815260060190565b7f2261747472696275746573223a205b7b2274726169745f74797065223a22416c81527f7068612050617373222c2276616c7565223a2022000000000000000000000000602082015260340190565b8a61375a565b7f227d5d0000000000000000000000000000000000000000000000000000000000815260030190565b7f7d00000000000000000000000000000000000000000000000000000000000000815260010190565b9a9950505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613a4b81601d850160208701613b99565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613a976080830184613710565b9695505050505050565b6020815260006134086020830184613710565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613adf57613adf613c9b565b01949350505050565b60008219821115613afb57613afb613c9b565b500190565b600082613b0f57613b0f613cca565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4c57613b4c613c9b565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015613b7a57613b7a613c9b565b039392505050565b600082821015613b9457613b94613c9b565b500390565b60005b83811015613bb4578181015183820152602001613b9c565b83811115611daf5750506000910152565b600081613bd457613bd4613c9b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680613c0e57607f821691505b60208210811415613c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8057613c80613c9b565b5060010190565b600082613c9657613c96613cca565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461138357600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212209b727638bee040cf85f77a9b38cb98c8f3a9d2f78c208d9feb94bc9f6e9b7a1064736f6c63430008070033

Deployed Bytecode Sourcemap

40024:7364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27720:370;;;;;;;;;;-1:-1:-1;27720:370:0;;;;;:::i;:::-;;:::i;:::-;;;10948:14:1;;10941:22;10923:41;;10911:2;10896:18;27720:370:0;;;;;;;;29446:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30971:204::-;;;;;;;;;;-1:-1:-1;30971:204:0;;;;;:::i;:::-;;:::i;:::-;;;10212:42:1;10200:55;;;10182:74;;10170:2;10155:18;30971:204:0;10036:226:1;30534:379:0;;;;;;;;;;-1:-1:-1;30534:379:0;;;;;:::i;:::-;;:::i;:::-;;40693:47;;;;;;;;;;-1:-1:-1;40693:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;20152:25:1;;;20140:2;20125:18;40693:47:0;20006:177:1;26281:94:0;;;;;;;;;;-1:-1:-1;26334:7:0;26357:12;26281:94;;40801:49;;;;;;;;;;-1:-1:-1;40801:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;20356:25:1;;;20424:14;;20417:22;20412:2;20397:18;;20390:50;20329:18;40801:49:0;20188:258:1;31821:142:0;;;;;;;;;;-1:-1:-1;31821:142:0;;;;;:::i;:::-;;:::i;42508:208::-;;;;;;;;;;-1:-1:-1;42508:208:0;;;;;:::i;:::-;;:::i;40402:24::-;;;;;;;;;;-1:-1:-1;40402:24:0;;;;;;;;;;;26912:744;;;;;;;;;;-1:-1:-1;26912:744:0;;;;;:::i;:::-;;:::i;42916:::-;;;;;;;;;;;;;:::i;32026:157::-;;;;;;;;;;-1:-1:-1;32026:157:0;;;;;:::i;:::-;;:::i;41429:371::-;;;;;;:::i;:::-;;:::i;40298:28::-;;;;;;;;;;;;;;;;41808:319;;;;;;;;;;;;;:::i;40240:21::-;;;;;;;;;;;;;;;;26444:177;;;;;;;;;;-1:-1:-1;26444:177:0;;;;;:::i;:::-;;:::i;40204:29::-;;;;;;;;;;;;;;;;43948:150;;;;;;;;;;-1:-1:-1;43948:150:0;;;;;:::i;:::-;;:::i;29269:118::-;;;;;;;;;;-1:-1:-1;29269:118:0;;;;;:::i;:::-;;:::i;42135:365::-;;;;;;;;;;-1:-1:-1;42135:365:0;;;;;:::i;:::-;;:::i;40122:36::-;;;;;;;;;;;;;;;;42724:186;;;;;;;;;;-1:-1:-1;42724:186:0;;;;;:::i;:::-;;:::i;28146:211::-;;;;;;;;;;-1:-1:-1;28146:211:0;;;;;:::i;:::-;;:::i;11783:94::-;;;;;;;;;;;;;:::i;43668:163::-;;;;;;;;;;-1:-1:-1;43668:163:0;;;;;:::i;:::-;;:::i;40363:32::-;;;;;;;;;;-1:-1:-1;40363:32:0;;;;;;;;;;;11132:87;;;;;;;;;;-1:-1:-1;11205:6:0;;;;11132:87;;44225:135;;;;;;;;;;-1:-1:-1;44225:135:0;;;;;:::i;:::-;;:::i;:::-;;;;19848:13:1;;19863:42;19844:62;19826:81;;19967:4;19955:17;;;19949:24;19975:18;19945:49;19923:20;;;19916:79;;;;19799:18;44225:135:0;19618:383:1;29601:98:0;;;;;;;;;;;;;:::i;41136:283::-;;;;;;:::i;:::-;;:::i;31239:274::-;;;;;;;;;;-1:-1:-1;31239:274:0;;;;;:::i;:::-;;:::i;32246:311::-;;;;;;;;;;-1:-1:-1;32246:311:0;;;;;:::i;:::-;;:::i;44367:820::-;;;;;;;;;;-1:-1:-1;44367:820:0;;;;;:::i;:::-;;:::i;40333:23::-;;;;;;;;;;-1:-1:-1;40333:23:0;;;;;;;;36661:43;;;;;;;;;;;;;;;;40747:47;;;;;;;;;;-1:-1:-1;40747:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;44104:113;;;;;;;;;;-1:-1:-1;44104:113:0;;;;;:::i;:::-;;:::i;40165:32::-;;;;;;;;;;;;;;;;31576:186;;;;;;;;;;-1:-1:-1;31576:186:0;;;;;:::i;:::-;31721:25;;;;31698:4;31721:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31576:186;12032:192;;;;;;;;;;-1:-1:-1;12032:192:0;;;;;:::i;:::-;;:::i;43839:101::-;;;;;;;;;;-1:-1:-1;43839:101:0;;;;;:::i;:::-;;:::i;40268:23::-;;;;;;;;;;;;;;;;27720:370;27847:4;27877:40;;;27892:25;27877:40;;:99;;-1:-1:-1;27928:48:0;;;27943:33;27928:48;27877:99;:160;;;-1:-1:-1;27987:50:0;;;28002:35;27987:50;27877:160;:207;;;-1:-1:-1;9429:25:0;9414:40;;;;28048:36;27863:221;27720:370;-1:-1:-1;;27720:370:0:o;29446:94::-;29500:13;29529:5;29522:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29446:94;:::o;30971:204::-;31039:7;31063:16;31071:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;31063:16;31055:74;;;;;;;19003:2:1;31055:74:0;;;18985:21:1;19042:2;19022:18;;;19015:30;19081:34;19061:18;;;19054:62;19152:15;19132:18;;;19125:43;19185:19;;31055:74:0;;;;;;;;;-1:-1:-1;31145:24:0;;;;:15;:24;;;;;;;;;30971:204::o;30534:379::-;30603:13;30619:24;30635:7;30619:15;:24::i;:::-;30603:40;;30664:5;30658:11;;:2;:11;;;;30650:58;;;;;;;16589:2:1;30650:58:0;;;16571:21:1;16628:2;16608:18;;;16601:30;16667:34;16647:18;;;16640:62;16738:4;16718:18;;;16711:32;16760:19;;30650:58:0;16387:398:1;30650:58:0;10088:10;30733:21;;;;;:62;;-1:-1:-1;30758:37:0;30775:5;10088:10;31576:186;:::i;30758:37::-;30717:153;;;;;;;14209:2:1;30717:153:0;;;14191:21:1;14248:2;14228:18;;;14221:30;14287:34;14267:18;;;14260:62;14358:27;14338:18;;;14331:55;14403:19;;30717:153:0;14007:421:1;30717:153:0;30879:28;30888:2;30892:7;30901:5;30879:8;:28::i;:::-;30596:317;30534:379;;:::o;31821:142::-;31929:28;31939:4;31945:2;31949:7;31929:9;:28::i;42508:208::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;42598:9:::1;42593:116;42613:23:::0;;::::1;42593:116;;;42696:1;42658:11;:28;42670:12;;42683:1;42670:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42658:28;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42658:28:0;:39;42638:3;::::1;::::0;::::1;:::i;:::-;;;;42593:116;;26912:744:::0;27021:7;27056:16;27066:5;27056:9;:16::i;:::-;27048:5;:24;27040:71;;;;;;;11401:2:1;27040:71:0;;;11383:21:1;11440:2;11420:18;;;11413:30;11479:34;11459:18;;;11452:62;11550:4;11530:18;;;11523:32;11572:19;;27040:71:0;11199:398:1;27040:71:0;27118:22;26357:12;;;27118:22;;27238:350;27262:14;27258:1;:18;27238:350;;;27292:31;27326:14;;;:11;:14;;;;;;;;;27292:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;27353:28;27349:89;;27414:14;;;-1:-1:-1;27349:89:0;27471:5;27450:26;;:17;:26;;;27446:135;;;27508:5;27493:11;:20;27489:59;;;-1:-1:-1;27535:1:0;-1:-1:-1;27528:8:0;;-1:-1:-1;;;27528:8:0;27489:59;27558:13;;;;:::i;:::-;;;;27446:135;-1:-1:-1;27278:3:0;;;;:::i;:::-;;;;27238:350;;;-1:-1:-1;27594:56:0;;;;;18172:2:1;27594:56:0;;;18154:21:1;18211:2;18191:18;;;18184:30;18250:34;18230:18;;;18223:62;18321:16;18301:18;;;18294:44;18355:19;;27594:56:0;17970:410:1;42916:744:0;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;42984:21:::1;42966:15;43042:3;43031:9;42984:21:::0;43039:1:::1;43031:9;:::i;:::-;43030:15;;;;:::i;:::-;43428:33;::::0;43016:29;;-1:-1:-1;43077:42:0::1;::::0;43151::::1;::::0;43228::::1;::::0;43300::::1;::::0;43373::::1;::::0;43077;;43428:33;::::1;;;::::0;43016:29;;43056:18:::1;43428:33:::0;43056:18;43428:33;43016:29;43077:42;43428:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43472:33:0::1;::::0;:28:::1;::::0;::::1;::::0;:33;::::1;;;::::0;43501:3;;43472:33:::1;::::0;;;43501:3;43472:28;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43516:36:0::1;::::0;:31:::1;::::0;::::1;::::0;:36;::::1;;;::::0;43548:3;;43516:36:::1;::::0;;;43548:3;43516:31;:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43563:31:0::1;::::0;:26:::1;::::0;::::1;::::0;:31;::::1;;;::::0;43590:3;;43563:31:::1;::::0;;;43590:3;43563:26;:31;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43602:50:0::1;::::0;:27:::1;::::0;::::1;::::0;43630:21:::1;43602:50:::0;::::1;;;::::0;::::1;::::0;;;43630:21;43602:27;:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42955:705;;;;;;;42916:744::o:0;32026:157::-;32138:39;32155:4;32161:2;32165:7;32138:39;;;;;;;;;;;;:16;:39::i;41429:371::-;41052:9;41065:10;41052:23;41044:66;;;;;;;13850:2:1;41044:66:0;;;13832:21:1;13889:2;13869:18;;;13862:30;13928:32;13908:18;;;13901:60;13978:18;;41044:66:0;13648:354:1;41044:66:0;41512:20:::1;::::0;::::1;::::0;::::1;;;41504:29;;;::::0;::::1;;41569:9;;41558:6;41549;;:15;;;;:::i;:::-;:29;;41541:38;;;::::0;::::1;;41617:10;41605:23;::::0;;;:11:::1;:23;::::0;;;;:30;41595:40;::::1;;41587:49;;;::::0;::::1;;41677:6;41665:9;;:18;;;;:::i;:::-;41652:9;:31;;41644:40;;;::::0;::::1;;41704:10;41692:23;::::0;;;:11:::1;:23;::::0;;;;:40;;41726:6;;41692:23;:40:::1;::::0;41726:6;;41692:40:::1;:::i;:::-;;;;;;;;41750:6;41740;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;41764:28:0::1;::::0;-1:-1:-1;41774:10:0::1;41785:6:::0;41764:9:::1;:28::i;:::-;41429:371:::0;:::o;41808:319::-;41890:9;;41868:10;41859:20;;;;:8;:20;;;;;:27;41850:6;;:36;;41859:27;41850:36;:::i;:::-;:49;;41842:58;;;;;;41926:10;41917:20;;;;:8;:20;;;;;:25;;;;;41916:26;41908:35;;;;;;41962:12;;;;;;;41954:21;;;;;;41992:10;41983:20;;;;:8;:20;;;;;42011:4;41983:25;;;:32;;;;;;;;;42033:27;42023:6;:37;;42033:27;;42023:6;;:37;;42033:27;;42023:37;:::i;:::-;;;;-1:-1:-1;;42078:10:0;42089:20;;;;:8;:20;;;;;:27;42068:49;;42078:10;42068:9;:49::i;:::-;41808:319::o;26444:177::-;26511:7;26357:12;;26535:5;:21;26527:69;;;;;;;12622:2:1;26527:69:0;;;12604:21:1;12661:2;12641:18;;;12634:30;12700:34;12680:18;;;12673:62;12771:5;12751:18;;;12744:33;12794:19;;26527:69:0;12420:399:1;26527:69:0;-1:-1:-1;26610:5:0;26444:177::o;43948:150::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;44030:9:::1;:22:::0;;;44063:14:::1;:27:::0;43948:150::o;29269:118::-;29333:7;29356:20;29368:7;29356:11;:20::i;:::-;:25;;29269:118;-1:-1:-1;;29269:118:0:o;42135:365::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;42248:9:::1;42243:250;42263:19:::0;;::::1;42243:250;;;42301:10;:23;42312:8;;42321:1;42312:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42301:23;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42301:23:0;:28:::1;;::::0;::::1;;42298:60;;;42340:8;;42298:60;42397:4;42366:10;:23;42377:8;;42386:1;42377:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42366:23;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42366:23:0;:28:::1;;:35:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;42418:14;;42433:1;42418:17;;::::1;;;;;:::i;:::-;;;;;;;42410:6;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;42444:40:0::1;::::0;-1:-1:-1;42454:8:0;;42463:1;42454:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42466:14;;42481:1;42466:17;;;;;;;:::i;:::-;;;;;;;42444:9;:40::i;:::-;42284:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42243:250;;;;42135:365:::0;;;;:::o;42724:186::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;42807:9:::1;42802:101;42822:17:::0;;::::1;42802:101;;;42890:1;42861:8;:19;42870:6;;42877:1;42870:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42861:19;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42861:19:0;:30;42841:3;::::1;::::0;::::1;:::i;:::-;;;;42802:101;;28146:211:::0;28210:7;28234:19;;;28226:75;;;;;;;14635:2:1;28226:75:0;;;14617:21:1;14674:2;14654:18;;;14647:30;14713:34;14693:18;;;14686:62;14784:13;14764:18;;;14757:41;14815:19;;28226:75:0;14433:407:1;28226:75:0;-1:-1:-1;28323:19:0;;;;;;:12;:19;;;;;:27;;;;28146:211::o;11783:94::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;11848:21:::1;11866:1;11848:9;:21::i;43668:163::-:0;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;43748:12:::1;:17:::0;;43773:25;;43748:17;;::::1;;::::0;;;::::1;43773:25:::0;;;;;;43748:17:::1;43773:25:::0;::::1;;::::0;;;::::1;::::0;;;::::1;43806:17:::0;::::1;::::0;::::1;;;::::0;;43668:163::o;44225:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;44332:20:0;44344:7;44332:11;:20::i;29601:98::-;29657:13;29686:7;29679:14;;;;;:::i;41136:283::-;41052:9;41065:10;41052:23;41044:66;;;;;;;13850:2:1;41044:66:0;;;13832:21:1;13889:2;13869:18;;;13862:30;13928:32;13908:18;;;13901:60;13978:18;;41044:66:0;13648:354:1;41044:66:0;41208:11:::1;::::0;::::1;;41200:20;;;::::0;::::1;;41256:9;;41245:6;41236;;:15;;;;:::i;:::-;:29;;41228:38;;;::::0;::::1;;41292:10;;41282:6;:20;;41274:29;;;::::0;::::1;;41344:6;41332:9;;:18;;;;:::i;:::-;41319:9;:31;;41311:40;;;::::0;::::1;;41369:6;41359;;:16;;;;;;;:::i;31239:274::-:0;31330:24;;;10088:10;31330:24;;31322:63;;;;;;;15815:2:1;31322:63:0;;;15797:21:1;15854:2;15834:18;;;15827:30;15893:28;15873:18;;;15866:56;15939:18;;31322:63:0;15613:350:1;31322:63:0;10088:10;31394:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;31459:48;;10923:41:1;;;31394:42:0;;10088:10;31459:48;;10896:18:1;31459:48:0;;;;;;;31239:274;;:::o;32246:311::-;32383:28;32393:4;32399:2;32403:7;32383:9;:28::i;:::-;32434:48;32457:4;32463:2;32467:7;32476:5;32434:22;:48::i;:::-;32418:133;;;;;;;16992:2:1;32418:133:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;17141:21;17121:18;;;17114:49;17180:19;;32418:133:0;16790:415:1;32418:133:0;32246:311;;;;:::o;44367:820::-;44432:13;44463:16;44471:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;44463:16;44455:71;;;;;;;12211:2:1;44455:71:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;12360:12;12340:18;;;12333:40;12390:19;;44455:71:0;12009:406:1;44455:71:0;44534:11;44548:9;44556:1;44548:7;:9;:::i;:::-;44534:23;-1:-1:-1;44565:19:0;44596:8;44592:84;;-1:-1:-1;44614:14:0;;;;;;;;;;;;;;;;;44592:84;;;-1:-1:-1;44652:15:0;;;;;;;;;;;;;;;;;44592:84;44683:22;44771:18;:7;:16;:18::i;:::-;44908:7;44917:14;:3;:12;:14::i;:::-;45004:5;44715:328;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44683:361;;45144:23;45157:8;45144:6;:23::i;:::-;45071:107;;;;;;;;:::i;:::-;;;;;;;;;;;;;45057:122;;;;;44367:820;;;:::o;44104:113::-;44162:7;44189:20;44203:5;44189:13;:20::i;12032:192::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;12121:22:::1;::::0;::::1;12113:73;;;::::0;::::1;::::0;;11804:2:1;12113:73:0::1;::::0;::::1;11786:21:1::0;11843:2;11823:18;;;11816:30;11882:34;11862:18;;;11855:62;11953:8;11933:18;;;11926:36;11979:19;;12113:73:0::1;11602:402:1::0;12113:73:0::1;12197:19;12207:8;12197:9;:19::i;43839:101::-:0;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;15454:2:1;11344:68:0;;;15436:21:1;;;15473:18;;;15466:30;15532:34;15512:18;;;15505:62;15584:18;;11344:68:0;15252:356:1;11344:68:0;43910:9:::1;:22:::0;43839:101::o;743:387::-;1066:20;1114:8;;;743:387::o;36483:172::-;36580:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;36621:28;;36580:24;;36621:28;;;;;;;36483:172;;;:::o;34848:1529::-;34945:35;34983:20;34995:7;34983:11;:20::i;:::-;35054:18;;34945:58;;-1:-1:-1;35012:22:0;;35038:34;;10088:10;35038:34;;;:81;;;-1:-1:-1;10088:10:0;35083:20;35095:7;35083:11;:20::i;:::-;:36;;;35038:81;:142;;;-1:-1:-1;35147:18:0;;35130:50;;10088:10;31576:186;:::i;35130:50::-;35012:169;;35206:17;35190:101;;;;;;;16170:2:1;35190:101:0;;;16152:21:1;16209:2;16189:18;;;16182:30;16248:34;16228:18;;;16221:62;16319:20;16299:18;;;16292:48;16357:19;;35190:101:0;15968:414:1;35190:101:0;35338:4;35316:26;;:13;:18;;;:26;;;35300:98;;;;;;;15047:2:1;35300:98:0;;;15029:21:1;15086:2;15066:18;;;15059:30;15125:34;15105:18;;;15098:62;15196:8;15176:18;;;15169:36;15222:19;;35300:98:0;14845:402:1;35300:98:0;35413:16;;;35405:66;;;;;;;13026:2:1;35405:66:0;;;13008:21:1;13065:2;13045:18;;;13038:30;13104:34;13084:18;;;13077:62;13175:7;13155:18;;;13148:35;13200:19;;35405:66:0;12824:401:1;35405:66:0;35580:49;35597:1;35601:7;35610:13;:18;;;35580:8;:49::i;:::-;35638:18;;;;;;;:12;:18;;;;;:31;;35668:1;;35638:18;:31;;35668:1;;35638:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;35676:16;;;-1:-1:-1;35676:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35676:16:0;;:29;;-1:-1:-1;;35676:29:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35735:43:0;;;;;;;;;;;;;;;35761:15;35735:43;;;;;;;;;-1:-1:-1;35712:20:0;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;36028:11;35724:7;-1:-1:-1;36028:11:0;:::i;:::-;36091:1;36050:24;;;:11;:24;;;;;:29;36006:33;;-1:-1:-1;36050:43:0;:29;36046:236;;36108:20;36116:11;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;36108:20;36104:171;;;36168:97;;;;;;;;36195:18;;36168:97;;;;;;;36226:28;;;;36168:97;;;;;;;;;;-1:-1:-1;36141:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;36104:171;36314:7;36310:2;36295:27;;36304:4;36295:27;;;;;;;;;;;;36329:42;34938:1439;;;34848:1529;;;:::o;32907:98::-;32972:27;32982:2;32986:8;32972:27;;;;;;;;;;;;:9;:27::i;:::-;32907:98;;:::o;28609:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28726:16:0;28734:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;28726:16;28718:71;;;;;;;12211:2:1;28718:71:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;12360:12;12340:18;;;12333:40;12390:19;;28718:71:0;12009:406:1;28718:71:0;28798:26;28846:12;;28835:7;:23;28831:93;;28900:12;;28890:22;;:7;:22;:::i;:::-;:26;;28915:1;28890:26;:::i;:::-;28869:47;;28831:93;28952:7;28932:212;28969:18;28961:4;:26;28932:212;;29006:31;29040:17;;;:11;:17;;;;;;;;;29006:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;29070:28;29066:71;;29118:9;28609:606;-1:-1:-1;;;;28609:606:0:o;29066:71::-;-1:-1:-1;28989:6:0;;;;:::i;:::-;;;;28932:212;;;-1:-1:-1;29152:57:0;;;;;18587:2:1;29152:57:0;;;18569:21:1;18626:2;18606:18;;;18599:30;18665:34;18645:18;;;18638:62;18736:17;18716:18;;;18709:45;18771:19;;29152:57:0;18385:411:1;12232:173:0;12307:6;;;;12324:17;;;;;;;;;;;12357:40;;12307:6;;;12324:17;12307:6;;12357:40;;12288:16;;12357:40;12277:128;12232:173;:::o;38198:690::-;38335:4;38352:13;;;1066:20;1114:8;38348:535;;38391:72;;;;;:36;;;;;;:72;;10088:10;;38442:4;;38448:7;;38457:5;;38391:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38391:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38378:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38622:13:0;;38618:215;;38655:61;;;;;16992:2:1;38655:61:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;17141:21;17121:18;;;17114:49;17180:19;;38655:61:0;16790:415:1;38618:215:0;38801:6;38795:13;38786:6;38782:2;38778:15;38771:38;38378:464;38513:55;;38523:45;38513:55;;-1:-1:-1;38506:62:0;;38348:535;-1:-1:-1;38871:4:0;38348:535;38198:690;;;;;;:::o;15236:723::-;15292:13;15513:10;15509:53;;-1:-1:-1;;15540:10:0;;;;;;;;;;;;;;;;;;15236:723::o;15509:53::-;15587:5;15572:12;15628:78;15635:9;;15628:78;;15661:8;;;;:::i;:::-;;-1:-1:-1;15684:10:0;;-1:-1:-1;15692:2:0;15684:10;;:::i;:::-;;;15628:78;;;15716:19;15748:6;15738:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15738:17:0;;15716:39;;15766:154;15773:10;;15766:154;;15800:11;15810:1;15800:11;;:::i;:::-;;-1:-1:-1;15869:10:0;15877:2;15869:5;:10;:::i;:::-;15856:24;;:2;:24;:::i;:::-;15843:39;;15826:6;15833;15826:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;15897:11:0;15906:2;15897:11;;:::i;:::-;;;15766:154;;45350:2035;45408:13;45438:4;:11;45453:1;45438:16;45434:31;;;-1:-1:-1;;45456:9:0;;;;;;;;;-1:-1:-1;45456:9:0;;;45350:2035::o;45434:31::-;45517:19;45539:5;;;;;;;;;;;;;;;;;45517:27;;45596:18;45642:1;45623:4;:11;45637:1;45623:15;;;;:::i;:::-;45622:21;;;;:::i;:::-;45617:27;;:1;:27;:::i;:::-;45596:48;-1:-1:-1;45727:20:0;45761:15;45596:48;45774:2;45761:15;:::i;:::-;45750:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45750:27:0;;45727:50;;45874:10;45866:6;45859:26;45981:1;45974:5;45970:13;46052:4;46103;46097:11;46088:7;46084:25;46211:2;46203:6;46199:15;46296:824;46315:6;46306:7;46303:19;46296:824;;;46382:1;46369:15;;;46466:14;;46622:4;46610:2;46606:14;;;46602:25;;46588:40;;46582:47;46577:3;46573:57;;;46555:76;;46752:2;46748:14;;;46744:25;;46730:40;;46724:47;46715:57;;46677:1;46662:17;;46697:76;46895:1;46890:14;;;46886:25;;46872:40;;46866:47;46857:57;;46804:17;;;46839:76;47028:25;;47014:40;;47008:47;46999:57;;46946:17;;;46981:76;;;;47088:17;;46296:824;;;47205:1;47198:4;47192:11;47188:19;47226:1;47221:54;;;;47294:1;47289:52;;;;47181:160;;47221:54;47256:16;47237:17;;;47230:43;47221:54;;47289:52;47324:14;47305:17;;;47298:41;47181:160;-1:-1:-1;47371:6:0;;45350:2035;-1:-1:-1;;;;;;;;45350:2035:0:o;28363:240::-;28424:7;28456:19;;;28440:102;;;;;;;13432:2:1;28440:102:0;;;13414:21:1;13471:2;13451:18;;;13444:30;13510:34;13490:18;;;13483:62;13581:19;13561:18;;;13554:47;13618:19;;28440:102:0;13230:413:1;28440:102:0;-1:-1:-1;28564:19:0;;;;;;:12;:19;;;;;:32;;;;;;;28363:240::o;33344:1272::-;33449:20;33472:12;33499:16;;;33491:62;;;;;;;17770:2:1;33491:62:0;;;17752:21:1;17809:2;17789:18;;;17782:30;17848:34;17828:18;;;17821:62;17919:3;17899:18;;;17892:31;17940:19;;33491:62:0;17568:397:1;33491:62:0;33690:21;33698:12;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;33690:21;33689:22;33681:64;;;;;;;17412:2:1;33681:64:0;;;17394:21:1;17451:2;17431:18;;;17424:30;17490:31;17470:18;;;17463:59;17539:18;;33681:64:0;17210:353:1;33681:64:0;33772:12;;33760:8;:24;;33752:71;;;;;;;19417:2:1;33752:71:0;;;19399:21:1;19456:2;19436:18;;;19429:30;19495:34;19475:18;;;19468:62;19566:4;19546:18;;;19539:32;19588:19;;33752:71:0;19215:398:1;33752:71:0;33935:16;;;33902:30;33935:16;;;:12;:16;;;;;;;;;33902:49;;;;;;;;;;;;;;;;;;;;;;;;;;;33977:119;;;;;;;;33997:19;;33902:49;;33977:119;;;33997:39;;34027:8;;33997:39;:::i;:::-;33977:119;;;;;;34080:8;34045:11;:24;;;:44;;;;:::i;:::-;33977:119;;;;;;;33958:16;;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;34131:43;;;;;;;;;;;34157:15;34131:43;;;;;;;;34103:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34115:12;;34227:281;34251:8;34247:1;:12;34227:281;;;34280:38;;34305:12;;34280:38;;;;34297:1;;34280:38;;34297:1;;34280:38;34345:59;34376:1;34380:2;34384:12;34398:5;34345:22;:59::i;:::-;34327:150;;;;;;;16992:2:1;34327:150:0;;;16974:21:1;17031:2;17011:18;;;17004:30;17070:34;17050:18;;;17043:62;17141:21;17121:18;;;17114:49;17180:19;;34327:150:0;16790:415:1;34327:150:0;34486:14;;;;:::i;:::-;;;;34261:3;;;;;:::i;:::-;;;;34227:281;;;-1:-1:-1;34516:12:0;:27;;;34550:60;32246:311;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:367::-;278:8;288:6;342:3;335:4;327:6;323:17;319:27;309:55;;360:1;357;350:12;309:55;-1:-1:-1;383:20:1;;426:18;415:30;;412:50;;;458:1;455;448:12;412:50;495:4;487:6;483:17;471:29;;555:3;548:4;538:6;535:1;531:14;523:6;519:27;515:38;512:47;509:67;;;572:1;569;562:12;509:67;215:367;;;;;:::o;587:160::-;652:20;;708:13;;701:21;691:32;;681:60;;737:1;734;727:12;752:186;811:6;864:2;852:9;843:7;839:23;835:32;832:52;;;880:1;877;870:12;832:52;903:29;922:9;903:29;:::i;:::-;893:39;752:186;-1:-1:-1;;;752:186:1:o;943:260::-;1011:6;1019;1072:2;1060:9;1051:7;1047:23;1043:32;1040:52;;;1088:1;1085;1078:12;1040:52;1111:29;1130:9;1111:29;:::i;:::-;1101:39;;1159:38;1193:2;1182:9;1178:18;1159:38;:::i;:::-;1149:48;;943:260;;;;;:::o;1208:328::-;1285:6;1293;1301;1354:2;1342:9;1333:7;1329:23;1325:32;1322:52;;;1370:1;1367;1360:12;1322:52;1393:29;1412:9;1393:29;:::i;:::-;1383:39;;1441:38;1475:2;1464:9;1460:18;1441:38;:::i;:::-;1431:48;;1526:2;1515:9;1511:18;1498:32;1488:42;;1208:328;;;;;:::o;1541:1197::-;1636:6;1644;1652;1660;1713:3;1701:9;1692:7;1688:23;1684:33;1681:53;;;1730:1;1727;1720:12;1681:53;1753:29;1772:9;1753:29;:::i;:::-;1743:39;;1801:38;1835:2;1824:9;1820:18;1801:38;:::i;:::-;1791:48;;1886:2;1875:9;1871:18;1858:32;1848:42;;1941:2;1930:9;1926:18;1913:32;1964:18;2005:2;1997:6;1994:14;1991:34;;;2021:1;2018;2011:12;1991:34;2059:6;2048:9;2044:22;2034:32;;2104:7;2097:4;2093:2;2089:13;2085:27;2075:55;;2126:1;2123;2116:12;2075:55;2162:2;2149:16;2184:2;2180;2177:10;2174:36;;;2190:18;;:::i;:::-;2324:2;2318:9;2386:4;2378:13;;2229:66;2374:22;;;2398:2;2370:31;2366:40;2354:53;;;2422:18;;;2442:22;;;2419:46;2416:72;;;2468:18;;:::i;:::-;2508:10;2504:2;2497:22;2543:2;2535:6;2528:18;2583:7;2578:2;2573;2569;2565:11;2561:20;2558:33;2555:53;;;2604:1;2601;2594:12;2555:53;2660:2;2655;2651;2647:11;2642:2;2634:6;2630:15;2617:46;2705:1;2700:2;2695;2687:6;2683:15;2679:24;2672:35;2726:6;2716:16;;;;;;;1541:1197;;;;;;;:::o;2743:254::-;2808:6;2816;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2908:29;2927:9;2908:29;:::i;:::-;2898:39;;2956:35;2987:2;2976:9;2972:18;2956:35;:::i;3002:254::-;3070:6;3078;3131:2;3119:9;3110:7;3106:23;3102:32;3099:52;;;3147:1;3144;3137:12;3099:52;3170:29;3189:9;3170:29;:::i;:::-;3160:39;3246:2;3231:18;;;;3218:32;;-1:-1:-1;;;3002:254:1:o;3261:437::-;3347:6;3355;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;3464:9;3451:23;3497:18;3489:6;3486:30;3483:50;;;3529:1;3526;3519:12;3483:50;3568:70;3630:7;3621:6;3610:9;3606:22;3568:70;:::i;:::-;3657:8;;3542:96;;-1:-1:-1;3261:437:1;-1:-1:-1;;;;3261:437:1:o;3703:773::-;3825:6;3833;3841;3849;3902:2;3890:9;3881:7;3877:23;3873:32;3870:52;;;3918:1;3915;3908:12;3870:52;3958:9;3945:23;3987:18;4028:2;4020:6;4017:14;4014:34;;;4044:1;4041;4034:12;4014:34;4083:70;4145:7;4136:6;4125:9;4121:22;4083:70;:::i;:::-;4172:8;;-1:-1:-1;4057:96:1;-1:-1:-1;4260:2:1;4245:18;;4232:32;;-1:-1:-1;4276:16:1;;;4273:36;;;4305:1;4302;4295:12;4273:36;;4344:72;4408:7;4397:8;4386:9;4382:24;4344:72;:::i;:::-;3703:773;;;;-1:-1:-1;4435:8:1;-1:-1:-1;;;;3703:773:1:o;4481:316::-;4549:6;4557;4565;4618:2;4606:9;4597:7;4593:23;4589:32;4586:52;;;4634:1;4631;4624:12;4586:52;4657:26;4673:9;4657:26;:::i;:::-;4647:36;;4702:35;4733:2;4722:9;4718:18;4702:35;:::i;:::-;4692:45;;4756:35;4787:2;4776:9;4772:18;4756:35;:::i;:::-;4746:45;;4481:316;;;;;:::o;4802:245::-;4860:6;4913:2;4901:9;4892:7;4888:23;4884:32;4881:52;;;4929:1;4926;4919:12;4881:52;4968:9;4955:23;4987:30;5011:5;4987:30;:::i;5052:249::-;5121:6;5174:2;5162:9;5153:7;5149:23;5145:32;5142:52;;;5190:1;5187;5180:12;5142:52;5222:9;5216:16;5241:30;5265:5;5241:30;:::i;5306:180::-;5365:6;5418:2;5406:9;5397:7;5393:23;5389:32;5386:52;;;5434:1;5431;5424:12;5386:52;-1:-1:-1;5457:23:1;;5306:180;-1:-1:-1;5306:180:1:o;5491:316::-;5532:3;5570:5;5564:12;5597:6;5592:3;5585:19;5613:63;5669:6;5662:4;5657:3;5653:14;5646:4;5639:5;5635:16;5613:63;:::i;:::-;5721:2;5709:15;5726:66;5705:88;5696:98;;;;5796:4;5692:109;;5491:316;-1:-1:-1;;5491:316:1:o;5812:185::-;5854:3;5892:5;5886:12;5907:52;5952:6;5947:3;5940:4;5933:5;5929:16;5907:52;:::i;:::-;5975:16;;;;;5812:185;-1:-1:-1;;5812:185:1:o;6760:2818::-;7668:66;7663:3;7656:79;7638:3;7764:6;7758:13;7790:4;7803:60;7856:6;7851:2;7846:3;7842:12;7837:2;7829:6;7825:15;7803:60;:::i;:::-;7927:66;7922:2;7882:16;;;7914:11;;;7907:87;8023:34;8018:2;8010:11;;8003:55;8087:66;8082:2;8074:11;;8067:87;8184:66;8178:3;8170:12;;8163:88;8320:13;;8270:3;;-1:-1:-1;;8380:1:1;8402:18;;;;8455;;;;8482:93;;8560:4;8550:8;8546:19;8534:31;;8482:93;8623:2;8613:8;8610:16;8590:18;8587:40;8584:224;;;8662:77;8657:3;8650:90;8763:4;8760:1;8753:15;8793:4;8788:3;8781:17;8584:224;8824:18;8851:180;;;;9045:1;9040:340;;;;8817:563;;8851:180;8907:66;8896:9;8892:82;8887:2;8883;8879:11;8872:103;9018:2;9007:8;9003:2;8999:17;8995:26;8988:33;;8851:180;;9040:340;20524:1;20517:14;;;20561:4;20548:18;;9135:1;9149:175;9163:8;9160:1;9157:15;9149:175;;;9251:14;;9234:10;;;9230:19;;9223:43;9294:16;;;;9180:10;;9149:175;;;9153:3;;9367:2;9356:8;9352:2;9348:17;9344:26;9337:33;;8817:563;;;;;;9396:176;9426:145;9456:114;9482:87;9512:56;9537:30;9563:3;9555:6;9537:30;:::i;:::-;6074:66;6062:79;;6166:1;6157:11;;6002:172;9512:56;6438:66;6426:79;;6535:66;6530:2;6521:12;;6514:88;6627:2;6618:12;;6361:275;9482:87;9474:6;9456:114;:::i;:::-;6256:66;6244:79;;6348:1;6339:11;;6179:177;9426:145;6718:3;6706:16;;6747:1;6738:11;;6641:114;9396:176;9389:183;6760:2818;-1:-1:-1;;;;;;;;;;6760:2818:1:o;9583:448::-;9845:31;9840:3;9833:44;9815:3;9906:6;9900:13;9922:62;9977:6;9972:2;9967:3;9963:12;9956:4;9948:6;9944:17;9922:62;:::i;:::-;10004:16;;;;10022:2;10000:25;;9583:448;-1:-1:-1;;9583:448:1:o;10267:511::-;10461:4;10490:42;10571:2;10563:6;10559:15;10548:9;10541:34;10623:2;10615:6;10611:15;10606:2;10595:9;10591:18;10584:43;;10663:6;10658:2;10647:9;10643:18;10636:34;10706:3;10701:2;10690:9;10686:18;10679:31;10727:45;10767:3;10756:9;10752:19;10744:6;10727:45;:::i;:::-;10719:53;10267:511;-1:-1:-1;;;;;;10267:511:1:o;10975:219::-;11124:2;11113:9;11106:21;11087:4;11144:44;11184:2;11173:9;11169:18;11161:6;11144:44;:::i;20577:253::-;20617:3;20645:34;20706:2;20703:1;20699:10;20736:2;20733:1;20729:10;20767:3;20763:2;20759:12;20754:3;20751:21;20748:47;;;20775:18;;:::i;:::-;20811:13;;20577:253;-1:-1:-1;;;;20577:253:1:o;20835:128::-;20875:3;20906:1;20902:6;20899:1;20896:13;20893:39;;;20912:18;;:::i;:::-;-1:-1:-1;20948:9:1;;20835:128::o;20968:120::-;21008:1;21034;21024:35;;21039:18;;:::i;:::-;-1:-1:-1;21073:9:1;;20968:120::o;21093:228::-;21133:7;21259:1;21191:66;21187:74;21184:1;21181:81;21176:1;21169:9;21162:17;21158:105;21155:131;;;21266:18;;:::i;:::-;-1:-1:-1;21306:9:1;;21093:228::o;21326:246::-;21366:4;21395:34;21479:10;;;;21449;;21501:12;;;21498:38;;;21516:18;;:::i;:::-;21553:13;;21326:246;-1:-1:-1;;;21326:246:1:o;21577:125::-;21617:4;21645:1;21642;21639:8;21636:34;;;21650:18;;:::i;:::-;-1:-1:-1;21687:9:1;;21577:125::o;21707:258::-;21779:1;21789:113;21803:6;21800:1;21797:13;21789:113;;;21879:11;;;21873:18;21860:11;;;21853:39;21825:2;21818:10;21789:113;;;21920:6;21917:1;21914:13;21911:48;;;-1:-1:-1;;21955:1:1;21937:16;;21930:27;21707:258::o;21970:196::-;22009:3;22037:5;22027:39;;22046:18;;:::i;:::-;-1:-1:-1;22093:66:1;22082:78;;21970:196::o;22171:437::-;22250:1;22246:12;;;;22293;;;22314:61;;22368:4;22360:6;22356:17;22346:27;;22314:61;22421:2;22413:6;22410:14;22390:18;22387:38;22384:218;;;22458:77;22455:1;22448:88;22559:4;22556:1;22549:15;22587:4;22584:1;22577:15;22384:218;;22171:437;;;:::o;22613:195::-;22652:3;22683:66;22676:5;22673:77;22670:103;;;22753:18;;:::i;:::-;-1:-1:-1;22800:1:1;22789:13;;22613:195::o;22813:112::-;22845:1;22871;22861:35;;22876:18;;:::i;:::-;-1:-1:-1;22910:9:1;;22813:112::o;22930:184::-;22982:77;22979:1;22972:88;23079:4;23076:1;23069:15;23103:4;23100:1;23093:15;23119:184;23171:77;23168:1;23161:88;23268:4;23265:1;23258:15;23292:4;23289:1;23282:15;23308:184;23360:77;23357:1;23350:88;23457:4;23454:1;23447:15;23481:4;23478:1;23471:15;23497:184;23549:77;23546:1;23539:88;23646:4;23643:1;23636:15;23670:4;23667:1;23660:15;23686:177;23771:66;23764:5;23760:78;23753:5;23750:89;23740:117;;23853:1;23850;23843:12

Swarm Source

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