ETH Price: $2,759.91 (+4.56%)

Token

BoredApeChampionWC (BACW)
 

Overview

Max Total Supply

3,192 BACW

Holders

567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BACW
0x223db826013EAF2C46Aab1cb2Ae6E8b652F9DAd6
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:
BoredApeChampionWC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BoredApeChampionWC.sol
/**
 *Submitted for verification at Etherscan.io on 2022-09-18
 */

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
 */

/**
 *Submitted for verification at Etherscan.io on 2022-08-13
 */

/**
 *Submitted for verification at Etherscan.io on 2022-08-13
 */

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

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

/**
 *Submitted for verification at Etherscan.io on 2022-06-23
 */

// SPDX-License-Identifier: MIT

// File 1: Address.sol

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
   * ====
   *
   * [IMPORTANT]
   * ====
   * You shouldn't rely on `isContract` to protect against flash loan attacks!
   *
   * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
   * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
   * constructor.
   * ====
   */
  function isContract(address account) internal view returns (bool) {
    // This method relies on extcodesize/address.code.length, which returns 0
    // for contracts in construction, since the code is only stored at the end
    // of the constructor execution.

    return account.code.length > 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);
  }

  /**
   * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
   * revert reason using the provided one.
   *
   * _Available since v4.3._
   */
  function verifyCallResult(
    bool success,
    bytes memory returndata,
    string memory errorMessage
  ) internal pure returns (bytes memory) {
    if (success) {
      return returndata;
    } else {
      // Look for revert reason and bubble it up if present
      if (returndata.length > 0) {
        // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

// FILE 2: Context.sol
pragma solidity ^0.8.0;

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

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

// File 3: Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Counters.sol

// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
  struct Counter {
    // This variable should never be directly accessed by users of the library: interactions must be restricted to
    // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
    // this feature: see https://github.com/ethereum/solidity/issues/4637
    uint256 _value; // default: 0
  }

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

  function increment(Counter storage counter) internal {
    unchecked {
      counter._value += 1;
    }
  }

  function decrement(Counter storage counter) internal {
    uint256 value = counter._value;
    require(value > 0, 'Counter: decrement overflow');
    unchecked {
      counter._value = value - 1;
    }
  }

  function reset(Counter storage counter) internal {
    counter._value = 0;
  }
}

// File 4: Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

// File 5: IERC165.sol

pragma solidity ^0.8.0;

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

// File 6: IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File 7: IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
  /**
   * @dev Returns the token collection name.
   */
  function name() external view returns (string memory);

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

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

// File 8: ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// File 9: ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId) public 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 overridden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return '';
  }

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

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      'ERC721: approve caller is not owner nor approved for all'
    );
    if (to.isContract()) {
      revert('Token transfer to contract address is not allowed.');
    } else {
      _approve(to, tokenId);
    }
    // _approve(to, tokenId);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public virtual override {
    _setApprovalForAll(_msgSender(), operator, approved);
  }

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

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

    _transfer(from, to, tokenId);
  }

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

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

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

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

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

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

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

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

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

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

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

    _afterTokenTransfer(address(0), to, tokenId);
  }

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

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

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

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

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

    _afterTokenTransfer(owner, address(0), tokenId);
  }

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

    _beforeTokenTransfer(from, to, tokenId);

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

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

    emit Transfer(from, to, tokenId);

    _afterTokenTransfer(from, to, tokenId);
  }

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

  /**
   * @dev Approve `operator` to operate on all of `owner` tokens
   *
   * Emits a {ApprovalForAll} event.
   */
  function _setApprovalForAll(
    address owner,
    address operator,
    bool approved
  ) internal virtual {
    require(owner != operator, 'ERC721: approve to caller');
    _operatorApprovals[owner][operator] = approved;
    emit ApprovalForAll(owner, operator, approved);
  }

  /**
   * @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.onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert('ERC721: transfer to non ERC721Receiver implementer');
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

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

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

// File 10: IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
  /**
   * @dev Returns the total amount of tokens stored by the contract.
   */
  function totalSupply() external view returns (uint256);

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

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

// File 11: ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File 12: IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File 13: ERC721A.sol

pragma solidity ^0.8.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 internal currentIndex = 1;

  // 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) internal _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;

  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view virtual 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(totalSupply). 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;
    address currOwnershipAddr;

    // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
    unchecked {
      for (uint256 i; 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);
  }

  /**
   * Gas spent here starts off proportional to the maximum mint batch size.
   * It gradually moves to O(1) as tokens get transferred around in the collection over time.
   */
  function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
    require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

    unchecked {
      for (uint256 curr = tokenId; curr >= 0; 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(), '.json'))
        : '';
  }

  /**
   * @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 Safely mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
   * - `quantity` must be greater than 0.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    _mint(to, quantity, _data, true);
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` must be greater than 0.
   *
   * Emits a {Transfer} event.
   */
  function _mint(
    address to,
    uint256 quantity,
    bytes memory _data,
    bool safe
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), 'ERC721A: mint to the zero address');
    require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

    // Overflows are incredibly unrealistic.
    // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
    // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
      _addressData[to].balance += uint128(quantity);
      _addressData[to].numberMinted += uint128(quantity);

      _ownerships[startTokenId].addr = to;
      _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

      uint256 updatedIndex = startTokenId;

      for (uint256 i; i < quantity; i++) {
        emit Transfer(address(0), to, updatedIndex);
        if (safe) {
          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);

    // Underflow of the sender's balance is impossible because we check for
    // ownership above and the recipient's balance can't realistically overflow.
    // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
    unchecked {
      _addressData[from].balance -= 1;
      _addressData[to].balance += 1;

      _ownerships[tokenId].addr = to;
      _ownerships[tokenId].startTimestamp = 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].addr = prevOwnership.addr;
          _ownerships[nextTokenId].startTimestamp = 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);
  }

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

// FILE 14: BACW.sol

pragma solidity ^0.8.0;

contract BoredApeChampionWC is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = '';
  string public uriSuffix = '.json';
  string private hiddenMetadataUri;

  constructor() ERC721A('BoredApeChampionWC', 'BACW') {
    setHiddenMetadataUri('ipfs://__CID__/hidden.json');
  }

  uint256 public salePrice = 0.001 ether;
  uint256 public maxPerTx = 20;
  uint256 public maxPerFree = 2;
  uint256 public maxFreeSupply = 1011;
  uint256 public maxSupply = 3033;

  bool public paused = true;
  bool public revealed = true;

  function withdraw() external onlyOwner {
    (bool success, ) = payable(msg.sender).call{ value: address(this).balance }('');
    require(success, 'Transfer failed.');
  }

  /**
   * @notice Team Mint
   */
  function teamMint(uint256 quantity) external onlyOwner {
    require(!paused, 'The contract is paused!');
    _safeMint(msg.sender, quantity);
  }

  /**
   * @notice mint
   */
  function mint(uint256 _quantity) external payable  {
    uint256 price = salePrice;
    uint256 quantity = _quantity;
    require(!paused, 'The contract is paused!');
    require(_quantity > 0, 'Minimum 1 NFT has to be minted per transaction');
    require(_quantity <= maxPerTx && _quantity > 0, 'Invalid quantity or Max Per Tx.');
    require(_quantity + balanceOf(msg.sender) <= maxPerTx, 'No more!');
    require(_quantity + totalSupply() <= maxSupply, 'Sold out');
    if (msg.sender != owner()) {
      if (totalSupply() <= maxFreeSupply) {
        if (balanceOf(msg.sender) + _quantity <= maxPerFree) {
          price = 0;
        } else if (balanceOf(msg.sender) <= maxPerFree) {
          quantity = _quantity - (maxPerFree - balanceOf(msg.sender));
        }
      } 
    }
    require(msg.value >= price * quantity, 'Not enough ETH to mint');
    _safeMint(msg.sender, _quantity);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return
      bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
  }

  function setMaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }

  function setMaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setSalePrice(uint256 _salePrice) external onlyOwner {
    salePrice = _salePrice;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160005560405180602001604052806000815250600990805190602001906200003092919062000366565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200007e92919062000366565b5066038d7ea4c68000600c556014600d556002600e556103f3600f55610bd96010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280601281526020017f426f7265644170654368616d70696f6e574300000000000000000000000000008152506040518060400160405280600481526020017f424143570000000000000000000000000000000000000000000000000000000081525081600190805190602001906200016892919062000366565b5080600290805190602001906200018192919062000366565b5050506000620001966200028960201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001600881905550620002836040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200029160201b60201c565b620004fe565b600033905090565b620002a16200028960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c76200033c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000317906200043d565b60405180910390fd5b80600b90805190602001906200033892919062000366565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003749062000470565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b6000620004256020836200045f565b91506200043282620004d5565b602082019050919050565b60006020820190508181036000830152620004588162000416565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048957607f821691505b60208210811415620004a0576200049f620004a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614e7d806200050e6000396000f3fe6080604052600436106102465760003560e01c80635c975abb11610139578063b88d4fde116100b6578063e0a808531161007a578063e0a8085314610869578063e945971c14610892578063e985e9c5146108bb578063f2fde38b146108f8578063f51f96dd14610921578063f968adbe1461094c57610246565b8063b88d4fde14610784578063c6f6f216146107ad578063c7c39ffc146107d6578063c87b56dd14610801578063d5abeb011461083e57610246565b80637ec4a659116100fd5780637ec4a659146106c05780638da5cb5b146106e957806395d89b4114610714578063a0712d681461073f578063a22cb4651461075b57610246565b80635c975abb146105db5780636352211e146106065780636f8b44b01461064357806370a082311461066c578063715018a6146106a957610246565b80632fbba115116101c75780634f6ccce71161018b5780634f6ccce7146104f65780634fdd43cb14610533578063518302271461055c5780635503a0e8146105875780635b28fd91146105b257610246565b80632fbba115146104255780633ccfd60b1461044e57806342842e0e14610465578063438b63001461048e57806347513334146104cb57610246565b806316c38b3c1161020e57806316c38b3c1461034257806318160ddd1461036b5780631919fed71461039657806323b872dd146103bf5780632f745c59146103e857610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806316ba10e014610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061377b565b610977565b60405161027f9190613e9f565b60405180910390f35b34801561029457600080fd5b5061029d610ac1565b6040516102aa9190613eba565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061381e565b610b53565b6040516102e79190613e16565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061370e565b610bd8565b005b34801561032557600080fd5b50610340600480360381019061033b91906137d5565b610cf1565b005b34801561034e57600080fd5b506103696004803603810190610364919061374e565b610d87565b005b34801561037757600080fd5b50610380610e20565b60405161038d919061421c565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061381e565b610e29565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906135f8565b610eaf565b005b3480156103f457600080fd5b5061040f600480360381019061040a919061370e565b610ebf565b60405161041c919061421c565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061381e565b6110b1565b005b34801561045a57600080fd5b5061046361118a565b005b34801561047157600080fd5b5061048c600480360381019061048791906135f8565b6112b5565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061358b565b6112d5565b6040516104c29190613e7d565b60405180910390f35b3480156104d757600080fd5b506104e06113e0565b6040516104ed919061421c565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061381e565b6113e6565b60405161052a919061421c565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906137d5565b611439565b005b34801561056857600080fd5b506105716114cf565b60405161057e9190613e9f565b60405180910390f35b34801561059357600080fd5b5061059c6114e2565b6040516105a99190613eba565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d4919061381e565b611570565b005b3480156105e757600080fd5b506105f06115f6565b6040516105fd9190613e9f565b60405180910390f35b34801561061257600080fd5b5061062d6004803603810190610628919061381e565b611609565b60405161063a9190613e16565b60405180910390f35b34801561064f57600080fd5b5061066a6004803603810190610665919061381e565b61161f565b005b34801561067857600080fd5b50610693600480360381019061068e919061358b565b6116a5565b6040516106a0919061421c565b60405180910390f35b3480156106b557600080fd5b506106be61178e565b005b3480156106cc57600080fd5b506106e760048036038101906106e291906137d5565b6118cb565b005b3480156106f557600080fd5b506106fe611961565b60405161070b9190613e16565b60405180910390f35b34801561072057600080fd5b5061072961198b565b6040516107369190613eba565b60405180910390f35b6107596004803603810190610754919061381e565b611a1d565b005b34801561076757600080fd5b50610782600480360381019061077d91906136ce565b611cc0565b005b34801561079057600080fd5b506107ab60048036038101906107a6919061364b565b611e41565b005b3480156107b957600080fd5b506107d460048036038101906107cf919061381e565b611e9d565b005b3480156107e257600080fd5b506107eb611f23565b6040516107f8919061421c565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061381e565b611f29565b6040516108359190613eba565b60405180910390f35b34801561084a57600080fd5b50610853612082565b604051610860919061421c565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b919061374e565b612088565b005b34801561089e57600080fd5b506108b960048036038101906108b4919061381e565b612121565b005b3480156108c757600080fd5b506108e260048036038101906108dd91906135b8565b6121a7565b6040516108ef9190613e9f565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a919061358b565b61223b565b005b34801561092d57600080fd5b506109366123e7565b604051610943919061421c565b60405180910390f35b34801561095857600080fd5b506109616123ed565b60405161096e919061421c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aba5750610ab9826123f3565b5b9050919050565b606060018054610ad090614525565b80601f0160208091040260200160405190810160405280929190818152602001828054610afc90614525565b8015610b495780601f10610b1e57610100808354040283529160200191610b49565b820191906000526020600020905b815481529060010190602001808311610b2c57829003601f168201915b5050505050905090565b6000610b5e8261245d565b610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b94906141fc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be382611609565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906140fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7361246a565b73ffffffffffffffffffffffffffffffffffffffff161480610ca25750610ca181610c9c61246a565b6121a7565b5b610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ffc565b60405180910390fd5b610cec838383612472565b505050565b610cf961246a565b73ffffffffffffffffffffffffffffffffffffffff16610d17611961565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061405c565b60405180910390fd5b80600a9080519060200190610d83929190613365565b5050565b610d8f61246a565b73ffffffffffffffffffffffffffffffffffffffff16610dad611961565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061405c565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008054905090565b610e3161246a565b73ffffffffffffffffffffffffffffffffffffffff16610e4f611961565b73ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061405c565b60405180910390fd5b80600c8190555050565b610eba838383612524565b505050565b6000610eca836116a5565b8210610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613edc565b60405180910390fd5b6000610f15610e20565b905060008060005b8381101561106f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461100f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106157868414156110585781955050505050506110ab565b83806001019450505b508080600101915050610f1d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906141bc565b60405180910390fd5b92915050565b6110b961246a565b73ffffffffffffffffffffffffffffffffffffffff166110d7611961565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061405c565b60405180910390fd5b601160009054906101000a900460ff161561117d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111749061407c565b60405180910390fd5b6111873382612a64565b50565b61119261246a565b73ffffffffffffffffffffffffffffffffffffffff166111b0611961565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061405c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161122c90613e01565b60006040518083038185875af1925050503d8060008114611269576040519150601f19603f3d011682016040523d82523d6000602084013e61126e565b606091505b50509050806112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a99061411c565b60405180910390fd5b50565b6112d083838360405180602001604052806000815250611e41565b505050565b606060006112e2836116a5565b905060008167ffffffffffffffff811115611300576112ff6146be565b5b60405190808252806020026020018201604052801561132e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561134b57506010548211155b156113d457600061135b83611609565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c057828483815181106113a5576113a461468f565b5b60200260200101818152505081806113bc90614588565b9250505b82806113cb90614588565b9350505061133a565b82945050505050919050565b600f5481565b60006113f0610e20565b8210611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613f5c565b60405180910390fd5b819050919050565b61144161246a565b73ffffffffffffffffffffffffffffffffffffffff1661145f611961565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061405c565b60405180910390fd5b80600b90805190602001906114cb929190613365565b5050565b601160019054906101000a900460ff1681565b600a80546114ef90614525565b80601f016020809104026020016040519081016040528092919081815260200182805461151b90614525565b80156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b505050505081565b61157861246a565b73ffffffffffffffffffffffffffffffffffffffff16611596611961565b73ffffffffffffffffffffffffffffffffffffffff16146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e39061405c565b60405180910390fd5b80600f8190555050565b601160009054906101000a900460ff1681565b600061161482612a82565b600001519050919050565b61162761246a565b73ffffffffffffffffffffffffffffffffffffffff16611645611961565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116929061405c565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061401c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61179661246a565b73ffffffffffffffffffffffffffffffffffffffff166117b4611961565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061405c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118d361246a565b73ffffffffffffffffffffffffffffffffffffffff166118f1611961565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061405c565b60405180910390fd5b806009908051906020019061195d929190613365565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199a90614525565b80601f01602080910402602001604051908101604052809291908181526020018280546119c690614525565b8015611a135780601f106119e857610100808354040283529160200191611a13565b820191906000526020600020905b8154815290600101906020018083116119f657829003601f168201915b5050505050905090565b6000600c5490506000829050601160009054906101000a900460ff1615611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a709061407c565b60405180910390fd5b60008311611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613efc565b60405180910390fd5b600d548311158015611ace5750600083115b611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613fdc565b60405180910390fd5b600d54611b19336116a5565b84611b24919061435a565b1115611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613f9c565b60405180910390fd5b601054611b70610e20565b84611b7b919061435a565b1115611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061413c565b60405180910390fd5b611bc4611961565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c6357600f54611c01610e20565b11611c6257600e5483611c13336116a5565b611c1d919061435a565b11611c2b5760009150611c61565b600e54611c37336116a5565b11611c6057611c45336116a5565b600e54611c52919061443b565b83611c5d919061443b565b90505b5b5b5b8082611c6f91906143e1565b341015611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890613fbc565b60405180910390fd5b611cbb3384612a64565b505050565b611cc861246a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d906140bc565b60405180910390fd5b8060066000611d4361246a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df061246a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e359190613e9f565b60405180910390a35050565b611e4c848484612524565b611e5884848484612c1c565b611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061415c565b60405180910390fd5b50505050565b611ea561246a565b73ffffffffffffffffffffffffffffffffffffffff16611ec3611961565b73ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f109061405c565b60405180910390fd5b80600d8190555050565b600e5481565b6060611f348261245d565b611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a9061409c565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561202157600b8054611f9c90614525565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890614525565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905061207d565b600061202b612db3565b9050600081511161204b5760405180602001604052806000815250612079565b8061205584612e45565b600a60405160200161206993929190613dd0565b6040516020818303038152906040525b9150505b919050565b60105481565b61209061246a565b73ffffffffffffffffffffffffffffffffffffffff166120ae611961565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061405c565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61212961246a565b73ffffffffffffffffffffffffffffffffffffffff16612147611961565b73ffffffffffffffffffffffffffffffffffffffff161461219d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121949061405c565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224361246a565b73ffffffffffffffffffffffffffffffffffffffff16612261611961565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae9061405c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90613f1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061252f82612a82565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255661246a565b73ffffffffffffffffffffffffffffffffffffffff1614806125b2575061257b61246a565b73ffffffffffffffffffffffffffffffffffffffff1661259a84610b53565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ce57506125cd82600001516125c861246a565b6121a7565b5b905080612610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612607906140dc565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126799061403c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613f7c565b60405180910390fd5b6126ff8585856001612fa6565b61270f6000848460000151612472565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129f4576129538161245d565b156129f35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5d8585856001612fac565b5050505050565b612a7e828260405180602001604052806000815250612fb2565b5050565b612a8a6133eb565b612a938261245d565b612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac990613f3c565b60405180910390fd5b60008290505b60008110612bdb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bcc578092505050612c17565b50808060019003915050612ad8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e906141dc565b60405180910390fd5b919050565b6000612c3d8473ffffffffffffffffffffffffffffffffffffffff16612fc4565b15612da6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6661246a565b8786866040518563ffffffff1660e01b8152600401612c889493929190613e31565b602060405180830381600087803b158015612ca257600080fd5b505af1925050508015612cd357506040513d601f19601f82011682018060405250810190612cd091906137a8565b60015b612d56573d8060008114612d03576040519150601f19603f3d011682016040523d82523d6000602084013e612d08565b606091505b50600081511415612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d459061415c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dab565b600190505b949350505050565b606060098054612dc290614525565b80601f0160208091040260200160405190810160405280929190818152602001828054612dee90614525565b8015612e3b5780601f10612e1057610100808354040283529160200191612e3b565b820191906000526020600020905b815481529060010190602001808311612e1e57829003601f168201915b5050505050905090565b60606000821415612e8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa1565b600082905060005b60008214612ebf578080612ea890614588565b915050600a82612eb891906143b0565b9150612e95565b60008167ffffffffffffffff811115612edb57612eda6146be565b5b6040519080825280601f01601f191660200182016040528015612f0d5781602001600182028036833780820191505090505b5090505b60008514612f9a57600182612f26919061443b565b9150600a85612f3591906145d1565b6030612f41919061435a565b60f81b818381518110612f5757612f5661468f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9391906143b0565b9450612f11565b8093505050505b919050565b50505050565b50505050565b612fbf8383836001612fe7565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561305d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130549061417c565b60405180910390fd5b60008414156130a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130989061419c565b60405180910390fd5b6130ae6000868387612fa6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561334857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613333576132f36000888488612c1c565b613332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133299061415c565b60405180910390fd5b5b8180600101925050808060010191505061327c565b50806000819055505061335e6000868387612fac565b5050505050565b82805461337190614525565b90600052602060002090601f01602090048101928261339357600085556133da565b82601f106133ac57805160ff19168380011785556133da565b828001600101855582156133da579182015b828111156133d95782518255916020019190600101906133be565b5b5090506133e79190613425565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561343e576000816000905550600101613426565b5090565b60006134556134508461425c565b614237565b905082815260208101848484011115613471576134706146f2565b5b61347c8482856144e3565b509392505050565b60006134976134928461428d565b614237565b9050828152602081018484840111156134b3576134b26146f2565b5b6134be8482856144e3565b509392505050565b6000813590506134d581614deb565b92915050565b6000813590506134ea81614e02565b92915050565b6000813590506134ff81614e19565b92915050565b60008151905061351481614e19565b92915050565b600082601f83011261352f5761352e6146ed565b5b813561353f848260208601613442565b91505092915050565b600082601f83011261355d5761355c6146ed565b5b813561356d848260208601613484565b91505092915050565b60008135905061358581614e30565b92915050565b6000602082840312156135a1576135a06146fc565b5b60006135af848285016134c6565b91505092915050565b600080604083850312156135cf576135ce6146fc565b5b60006135dd858286016134c6565b92505060206135ee858286016134c6565b9150509250929050565b600080600060608486031215613611576136106146fc565b5b600061361f868287016134c6565b9350506020613630868287016134c6565b925050604061364186828701613576565b9150509250925092565b60008060008060808587031215613665576136646146fc565b5b6000613673878288016134c6565b9450506020613684878288016134c6565b935050604061369587828801613576565b925050606085013567ffffffffffffffff8111156136b6576136b56146f7565b5b6136c28782880161351a565b91505092959194509250565b600080604083850312156136e5576136e46146fc565b5b60006136f3858286016134c6565b9250506020613704858286016134db565b9150509250929050565b60008060408385031215613725576137246146fc565b5b6000613733858286016134c6565b925050602061374485828601613576565b9150509250929050565b600060208284031215613764576137636146fc565b5b6000613772848285016134db565b91505092915050565b600060208284031215613791576137906146fc565b5b600061379f848285016134f0565b91505092915050565b6000602082840312156137be576137bd6146fc565b5b60006137cc84828501613505565b91505092915050565b6000602082840312156137eb576137ea6146fc565b5b600082013567ffffffffffffffff811115613809576138086146f7565b5b61381584828501613548565b91505092915050565b600060208284031215613834576138336146fc565b5b600061384284828501613576565b91505092915050565b60006138578383613db2565b60208301905092915050565b61386c8161446f565b82525050565b600061387d826142e3565b6138878185614311565b9350613892836142be565b8060005b838110156138c35781516138aa888261384b565b97506138b583614304565b925050600181019050613896565b5085935050505092915050565b6138d981614481565b82525050565b60006138ea826142ee565b6138f48185614322565b93506139048185602086016144f2565b61390d81614701565b840191505092915050565b6000613923826142f9565b61392d818561433e565b935061393d8185602086016144f2565b61394681614701565b840191505092915050565b600061395c826142f9565b613966818561434f565b93506139768185602086016144f2565b80840191505092915050565b6000815461398f81614525565b613999818661434f565b945060018216600081146139b457600181146139c5576139f8565b60ff198316865281860193506139f8565b6139ce856142ce565b60005b838110156139f0578154818901526001820191506020810190506139d1565b838801955050505b50505092915050565b6000613a0e60228361433e565b9150613a1982614712565b604082019050919050565b6000613a31602e8361433e565b9150613a3c82614761565b604082019050919050565b6000613a5460268361433e565b9150613a5f826147b0565b604082019050919050565b6000613a77602a8361433e565b9150613a82826147ff565b604082019050919050565b6000613a9a60238361433e565b9150613aa58261484e565b604082019050919050565b6000613abd60258361433e565b9150613ac88261489d565b604082019050919050565b6000613ae060088361433e565b9150613aeb826148ec565b602082019050919050565b6000613b0360168361433e565b9150613b0e82614915565b602082019050919050565b6000613b26601f8361433e565b9150613b318261493e565b602082019050919050565b6000613b4960398361433e565b9150613b5482614967565b604082019050919050565b6000613b6c602b8361433e565b9150613b77826149b6565b604082019050919050565b6000613b8f60268361433e565b9150613b9a82614a05565b604082019050919050565b6000613bb260208361433e565b9150613bbd82614a54565b602082019050919050565b6000613bd560178361433e565b9150613be082614a7d565b602082019050919050565b6000613bf8602f8361433e565b9150613c0382614aa6565b604082019050919050565b6000613c1b601a8361433e565b9150613c2682614af5565b602082019050919050565b6000613c3e60328361433e565b9150613c4982614b1e565b604082019050919050565b6000613c6160228361433e565b9150613c6c82614b6d565b604082019050919050565b6000613c84600083614333565b9150613c8f82614bbc565b600082019050919050565b6000613ca760108361433e565b9150613cb282614bbf565b602082019050919050565b6000613cca60088361433e565b9150613cd582614be8565b602082019050919050565b6000613ced60338361433e565b9150613cf882614c11565b604082019050919050565b6000613d1060218361433e565b9150613d1b82614c60565b604082019050919050565b6000613d3360288361433e565b9150613d3e82614caf565b604082019050919050565b6000613d56602e8361433e565b9150613d6182614cfe565b604082019050919050565b6000613d79602f8361433e565b9150613d8482614d4d565b604082019050919050565b6000613d9c602d8361433e565b9150613da782614d9c565b604082019050919050565b613dbb816144d9565b82525050565b613dca816144d9565b82525050565b6000613ddc8286613951565b9150613de88285613951565b9150613df48284613982565b9150819050949350505050565b6000613e0c82613c77565b9150819050919050565b6000602082019050613e2b6000830184613863565b92915050565b6000608082019050613e466000830187613863565b613e536020830186613863565b613e606040830185613dc1565b8181036060830152613e7281846138df565b905095945050505050565b60006020820190508181036000830152613e978184613872565b905092915050565b6000602082019050613eb460008301846138d0565b92915050565b60006020820190508181036000830152613ed48184613918565b905092915050565b60006020820190508181036000830152613ef581613a01565b9050919050565b60006020820190508181036000830152613f1581613a24565b9050919050565b60006020820190508181036000830152613f3581613a47565b9050919050565b60006020820190508181036000830152613f5581613a6a565b9050919050565b60006020820190508181036000830152613f7581613a8d565b9050919050565b60006020820190508181036000830152613f9581613ab0565b9050919050565b60006020820190508181036000830152613fb581613ad3565b9050919050565b60006020820190508181036000830152613fd581613af6565b9050919050565b60006020820190508181036000830152613ff581613b19565b9050919050565b6000602082019050818103600083015261401581613b3c565b9050919050565b6000602082019050818103600083015261403581613b5f565b9050919050565b6000602082019050818103600083015261405581613b82565b9050919050565b6000602082019050818103600083015261407581613ba5565b9050919050565b6000602082019050818103600083015261409581613bc8565b9050919050565b600060208201905081810360008301526140b581613beb565b9050919050565b600060208201905081810360008301526140d581613c0e565b9050919050565b600060208201905081810360008301526140f581613c31565b9050919050565b6000602082019050818103600083015261411581613c54565b9050919050565b6000602082019050818103600083015261413581613c9a565b9050919050565b6000602082019050818103600083015261415581613cbd565b9050919050565b6000602082019050818103600083015261417581613ce0565b9050919050565b6000602082019050818103600083015261419581613d03565b9050919050565b600060208201905081810360008301526141b581613d26565b9050919050565b600060208201905081810360008301526141d581613d49565b9050919050565b600060208201905081810360008301526141f581613d6c565b9050919050565b6000602082019050818103600083015261421581613d8f565b9050919050565b60006020820190506142316000830184613dc1565b92915050565b6000614241614252565b905061424d8282614557565b919050565b6000604051905090565b600067ffffffffffffffff821115614277576142766146be565b5b61428082614701565b9050602081019050919050565b600067ffffffffffffffff8211156142a8576142a76146be565b5b6142b182614701565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614365826144d9565b9150614370836144d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a5576143a4614602565b5b828201905092915050565b60006143bb826144d9565b91506143c6836144d9565b9250826143d6576143d5614631565b5b828204905092915050565b60006143ec826144d9565b91506143f7836144d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144305761442f614602565b5b828202905092915050565b6000614446826144d9565b9150614451836144d9565b92508282101561446457614463614602565b5b828203905092915050565b600061447a826144b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145105780820151818401526020810190506144f5565b8381111561451f576000848401525b50505050565b6000600282049050600182168061453d57607f821691505b6020821081141561455157614550614660565b5b50919050565b61456082614701565b810181811067ffffffffffffffff8211171561457f5761457e6146be565b5b80604052505050565b6000614593826144d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c6576145c5614602565b5b600182019050919050565b60006145dc826144d9565b91506145e7836144d9565b9250826145f7576145f6614631565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000600082015250565b7f496e76616c6964207175616e74697479206f72204d6178205065722054782e00600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614df48161446f565b8114614dff57600080fd5b50565b614e0b81614481565b8114614e1657600080fd5b50565b614e228161448d565b8114614e2d57600080fd5b50565b614e39816144d9565b8114614e4457600080fd5b5056fea26469706673582212209fbb50eda571e6db84af23c4c53bd086081627c606bcb7b109840dc9f0165e0264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80635c975abb11610139578063b88d4fde116100b6578063e0a808531161007a578063e0a8085314610869578063e945971c14610892578063e985e9c5146108bb578063f2fde38b146108f8578063f51f96dd14610921578063f968adbe1461094c57610246565b8063b88d4fde14610784578063c6f6f216146107ad578063c7c39ffc146107d6578063c87b56dd14610801578063d5abeb011461083e57610246565b80637ec4a659116100fd5780637ec4a659146106c05780638da5cb5b146106e957806395d89b4114610714578063a0712d681461073f578063a22cb4651461075b57610246565b80635c975abb146105db5780636352211e146106065780636f8b44b01461064357806370a082311461066c578063715018a6146106a957610246565b80632fbba115116101c75780634f6ccce71161018b5780634f6ccce7146104f65780634fdd43cb14610533578063518302271461055c5780635503a0e8146105875780635b28fd91146105b257610246565b80632fbba115146104255780633ccfd60b1461044e57806342842e0e14610465578063438b63001461048e57806347513334146104cb57610246565b806316c38b3c1161020e57806316c38b3c1461034257806318160ddd1461036b5780631919fed71461039657806323b872dd146103bf5780632f745c59146103e857610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806316ba10e014610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061377b565b610977565b60405161027f9190613e9f565b60405180910390f35b34801561029457600080fd5b5061029d610ac1565b6040516102aa9190613eba565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d5919061381e565b610b53565b6040516102e79190613e16565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061370e565b610bd8565b005b34801561032557600080fd5b50610340600480360381019061033b91906137d5565b610cf1565b005b34801561034e57600080fd5b506103696004803603810190610364919061374e565b610d87565b005b34801561037757600080fd5b50610380610e20565b60405161038d919061421c565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061381e565b610e29565b005b3480156103cb57600080fd5b506103e660048036038101906103e191906135f8565b610eaf565b005b3480156103f457600080fd5b5061040f600480360381019061040a919061370e565b610ebf565b60405161041c919061421c565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061381e565b6110b1565b005b34801561045a57600080fd5b5061046361118a565b005b34801561047157600080fd5b5061048c600480360381019061048791906135f8565b6112b5565b005b34801561049a57600080fd5b506104b560048036038101906104b0919061358b565b6112d5565b6040516104c29190613e7d565b60405180910390f35b3480156104d757600080fd5b506104e06113e0565b6040516104ed919061421c565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061381e565b6113e6565b60405161052a919061421c565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906137d5565b611439565b005b34801561056857600080fd5b506105716114cf565b60405161057e9190613e9f565b60405180910390f35b34801561059357600080fd5b5061059c6114e2565b6040516105a99190613eba565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d4919061381e565b611570565b005b3480156105e757600080fd5b506105f06115f6565b6040516105fd9190613e9f565b60405180910390f35b34801561061257600080fd5b5061062d6004803603810190610628919061381e565b611609565b60405161063a9190613e16565b60405180910390f35b34801561064f57600080fd5b5061066a6004803603810190610665919061381e565b61161f565b005b34801561067857600080fd5b50610693600480360381019061068e919061358b565b6116a5565b6040516106a0919061421c565b60405180910390f35b3480156106b557600080fd5b506106be61178e565b005b3480156106cc57600080fd5b506106e760048036038101906106e291906137d5565b6118cb565b005b3480156106f557600080fd5b506106fe611961565b60405161070b9190613e16565b60405180910390f35b34801561072057600080fd5b5061072961198b565b6040516107369190613eba565b60405180910390f35b6107596004803603810190610754919061381e565b611a1d565b005b34801561076757600080fd5b50610782600480360381019061077d91906136ce565b611cc0565b005b34801561079057600080fd5b506107ab60048036038101906107a6919061364b565b611e41565b005b3480156107b957600080fd5b506107d460048036038101906107cf919061381e565b611e9d565b005b3480156107e257600080fd5b506107eb611f23565b6040516107f8919061421c565b60405180910390f35b34801561080d57600080fd5b506108286004803603810190610823919061381e565b611f29565b6040516108359190613eba565b60405180910390f35b34801561084a57600080fd5b50610853612082565b604051610860919061421c565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b919061374e565b612088565b005b34801561089e57600080fd5b506108b960048036038101906108b4919061381e565b612121565b005b3480156108c757600080fd5b506108e260048036038101906108dd91906135b8565b6121a7565b6040516108ef9190613e9f565b60405180910390f35b34801561090457600080fd5b5061091f600480360381019061091a919061358b565b61223b565b005b34801561092d57600080fd5b506109366123e7565b604051610943919061421c565b60405180910390f35b34801561095857600080fd5b506109616123ed565b60405161096e919061421c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aaa57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aba5750610ab9826123f3565b5b9050919050565b606060018054610ad090614525565b80601f0160208091040260200160405190810160405280929190818152602001828054610afc90614525565b8015610b495780601f10610b1e57610100808354040283529160200191610b49565b820191906000526020600020905b815481529060010190602001808311610b2c57829003601f168201915b5050505050905090565b6000610b5e8261245d565b610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b94906141fc565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be382611609565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906140fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7361246a565b73ffffffffffffffffffffffffffffffffffffffff161480610ca25750610ca181610c9c61246a565b6121a7565b5b610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ffc565b60405180910390fd5b610cec838383612472565b505050565b610cf961246a565b73ffffffffffffffffffffffffffffffffffffffff16610d17611961565b73ffffffffffffffffffffffffffffffffffffffff1614610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061405c565b60405180910390fd5b80600a9080519060200190610d83929190613365565b5050565b610d8f61246a565b73ffffffffffffffffffffffffffffffffffffffff16610dad611961565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa9061405c565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008054905090565b610e3161246a565b73ffffffffffffffffffffffffffffffffffffffff16610e4f611961565b73ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061405c565b60405180910390fd5b80600c8190555050565b610eba838383612524565b505050565b6000610eca836116a5565b8210610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613edc565b60405180910390fd5b6000610f15610e20565b905060008060005b8381101561106f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461100f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106157868414156110585781955050505050506110ab565b83806001019450505b508080600101915050610f1d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906141bc565b60405180910390fd5b92915050565b6110b961246a565b73ffffffffffffffffffffffffffffffffffffffff166110d7611961565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061405c565b60405180910390fd5b601160009054906101000a900460ff161561117d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111749061407c565b60405180910390fd5b6111873382612a64565b50565b61119261246a565b73ffffffffffffffffffffffffffffffffffffffff166111b0611961565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd9061405c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161122c90613e01565b60006040518083038185875af1925050503d8060008114611269576040519150601f19603f3d011682016040523d82523d6000602084013e61126e565b606091505b50509050806112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a99061411c565b60405180910390fd5b50565b6112d083838360405180602001604052806000815250611e41565b505050565b606060006112e2836116a5565b905060008167ffffffffffffffff811115611300576112ff6146be565b5b60405190808252806020026020018201604052801561132e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561134b57506010548211155b156113d457600061135b83611609565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c057828483815181106113a5576113a461468f565b5b60200260200101818152505081806113bc90614588565b9250505b82806113cb90614588565b9350505061133a565b82945050505050919050565b600f5481565b60006113f0610e20565b8210611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613f5c565b60405180910390fd5b819050919050565b61144161246a565b73ffffffffffffffffffffffffffffffffffffffff1661145f611961565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061405c565b60405180910390fd5b80600b90805190602001906114cb929190613365565b5050565b601160019054906101000a900460ff1681565b600a80546114ef90614525565b80601f016020809104026020016040519081016040528092919081815260200182805461151b90614525565b80156115685780601f1061153d57610100808354040283529160200191611568565b820191906000526020600020905b81548152906001019060200180831161154b57829003601f168201915b505050505081565b61157861246a565b73ffffffffffffffffffffffffffffffffffffffff16611596611961565b73ffffffffffffffffffffffffffffffffffffffff16146115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e39061405c565b60405180910390fd5b80600f8190555050565b601160009054906101000a900460ff1681565b600061161482612a82565b600001519050919050565b61162761246a565b73ffffffffffffffffffffffffffffffffffffffff16611645611961565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116929061405c565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061401c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61179661246a565b73ffffffffffffffffffffffffffffffffffffffff166117b4611961565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061405c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118d361246a565b73ffffffffffffffffffffffffffffffffffffffff166118f1611961565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061405c565b60405180910390fd5b806009908051906020019061195d929190613365565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199a90614525565b80601f01602080910402602001604051908101604052809291908181526020018280546119c690614525565b8015611a135780601f106119e857610100808354040283529160200191611a13565b820191906000526020600020905b8154815290600101906020018083116119f657829003601f168201915b5050505050905090565b6000600c5490506000829050601160009054906101000a900460ff1615611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a709061407c565b60405180910390fd5b60008311611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613efc565b60405180910390fd5b600d548311158015611ace5750600083115b611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490613fdc565b60405180910390fd5b600d54611b19336116a5565b84611b24919061435a565b1115611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613f9c565b60405180910390fd5b601054611b70610e20565b84611b7b919061435a565b1115611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061413c565b60405180910390fd5b611bc4611961565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c6357600f54611c01610e20565b11611c6257600e5483611c13336116a5565b611c1d919061435a565b11611c2b5760009150611c61565b600e54611c37336116a5565b11611c6057611c45336116a5565b600e54611c52919061443b565b83611c5d919061443b565b90505b5b5b5b8082611c6f91906143e1565b341015611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890613fbc565b60405180910390fd5b611cbb3384612a64565b505050565b611cc861246a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d906140bc565b60405180910390fd5b8060066000611d4361246a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611df061246a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e359190613e9f565b60405180910390a35050565b611e4c848484612524565b611e5884848484612c1c565b611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9061415c565b60405180910390fd5b50505050565b611ea561246a565b73ffffffffffffffffffffffffffffffffffffffff16611ec3611961565b73ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f109061405c565b60405180910390fd5b80600d8190555050565b600e5481565b6060611f348261245d565b611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a9061409c565b60405180910390fd5b60001515601160019054906101000a900460ff161515141561202157600b8054611f9c90614525565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc890614525565b80156120155780601f10611fea57610100808354040283529160200191612015565b820191906000526020600020905b815481529060010190602001808311611ff857829003601f168201915b5050505050905061207d565b600061202b612db3565b9050600081511161204b5760405180602001604052806000815250612079565b8061205584612e45565b600a60405160200161206993929190613dd0565b6040516020818303038152906040525b9150505b919050565b60105481565b61209061246a565b73ffffffffffffffffffffffffffffffffffffffff166120ae611961565b73ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061405c565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b61212961246a565b73ffffffffffffffffffffffffffffffffffffffff16612147611961565b73ffffffffffffffffffffffffffffffffffffffff161461219d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121949061405c565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61224361246a565b73ffffffffffffffffffffffffffffffffffffffff16612261611961565b73ffffffffffffffffffffffffffffffffffffffff16146122b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ae9061405c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e90613f1c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061252f82612a82565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661255661246a565b73ffffffffffffffffffffffffffffffffffffffff1614806125b2575061257b61246a565b73ffffffffffffffffffffffffffffffffffffffff1661259a84610b53565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ce57506125cd82600001516125c861246a565b6121a7565b5b905080612610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612607906140dc565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612682576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126799061403c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613f7c565b60405180910390fd5b6126ff8585856001612fa6565b61270f6000848460000151612472565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129f4576129538161245d565b156129f35782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5d8585856001612fac565b5050505050565b612a7e828260405180602001604052806000815250612fb2565b5050565b612a8a6133eb565b612a938261245d565b612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac990613f3c565b60405180910390fd5b60008290505b60008110612bdb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bcc578092505050612c17565b50808060019003915050612ad8565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e906141dc565b60405180910390fd5b919050565b6000612c3d8473ffffffffffffffffffffffffffffffffffffffff16612fc4565b15612da6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6661246a565b8786866040518563ffffffff1660e01b8152600401612c889493929190613e31565b602060405180830381600087803b158015612ca257600080fd5b505af1925050508015612cd357506040513d601f19601f82011682018060405250810190612cd091906137a8565b60015b612d56573d8060008114612d03576040519150601f19603f3d011682016040523d82523d6000602084013e612d08565b606091505b50600081511415612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d459061415c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dab565b600190505b949350505050565b606060098054612dc290614525565b80601f0160208091040260200160405190810160405280929190818152602001828054612dee90614525565b8015612e3b5780601f10612e1057610100808354040283529160200191612e3b565b820191906000526020600020905b815481529060010190602001808311612e1e57829003601f168201915b5050505050905090565b60606000821415612e8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa1565b600082905060005b60008214612ebf578080612ea890614588565b915050600a82612eb891906143b0565b9150612e95565b60008167ffffffffffffffff811115612edb57612eda6146be565b5b6040519080825280601f01601f191660200182016040528015612f0d5781602001600182028036833780820191505090505b5090505b60008514612f9a57600182612f26919061443b565b9150600a85612f3591906145d1565b6030612f41919061435a565b60f81b818381518110612f5757612f5661468f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9391906143b0565b9450612f11565b8093505050505b919050565b50505050565b50505050565b612fbf8383836001612fe7565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561305d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130549061417c565b60405180910390fd5b60008414156130a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130989061419c565b60405180910390fd5b6130ae6000868387612fa6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561334857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613333576132f36000888488612c1c565b613332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133299061415c565b60405180910390fd5b5b8180600101925050808060010191505061327c565b50806000819055505061335e6000868387612fac565b5050505050565b82805461337190614525565b90600052602060002090601f01602090048101928261339357600085556133da565b82601f106133ac57805160ff19168380011785556133da565b828001600101855582156133da579182015b828111156133d95782518255916020019190600101906133be565b5b5090506133e79190613425565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561343e576000816000905550600101613426565b5090565b60006134556134508461425c565b614237565b905082815260208101848484011115613471576134706146f2565b5b61347c8482856144e3565b509392505050565b60006134976134928461428d565b614237565b9050828152602081018484840111156134b3576134b26146f2565b5b6134be8482856144e3565b509392505050565b6000813590506134d581614deb565b92915050565b6000813590506134ea81614e02565b92915050565b6000813590506134ff81614e19565b92915050565b60008151905061351481614e19565b92915050565b600082601f83011261352f5761352e6146ed565b5b813561353f848260208601613442565b91505092915050565b600082601f83011261355d5761355c6146ed565b5b813561356d848260208601613484565b91505092915050565b60008135905061358581614e30565b92915050565b6000602082840312156135a1576135a06146fc565b5b60006135af848285016134c6565b91505092915050565b600080604083850312156135cf576135ce6146fc565b5b60006135dd858286016134c6565b92505060206135ee858286016134c6565b9150509250929050565b600080600060608486031215613611576136106146fc565b5b600061361f868287016134c6565b9350506020613630868287016134c6565b925050604061364186828701613576565b9150509250925092565b60008060008060808587031215613665576136646146fc565b5b6000613673878288016134c6565b9450506020613684878288016134c6565b935050604061369587828801613576565b925050606085013567ffffffffffffffff8111156136b6576136b56146f7565b5b6136c28782880161351a565b91505092959194509250565b600080604083850312156136e5576136e46146fc565b5b60006136f3858286016134c6565b9250506020613704858286016134db565b9150509250929050565b60008060408385031215613725576137246146fc565b5b6000613733858286016134c6565b925050602061374485828601613576565b9150509250929050565b600060208284031215613764576137636146fc565b5b6000613772848285016134db565b91505092915050565b600060208284031215613791576137906146fc565b5b600061379f848285016134f0565b91505092915050565b6000602082840312156137be576137bd6146fc565b5b60006137cc84828501613505565b91505092915050565b6000602082840312156137eb576137ea6146fc565b5b600082013567ffffffffffffffff811115613809576138086146f7565b5b61381584828501613548565b91505092915050565b600060208284031215613834576138336146fc565b5b600061384284828501613576565b91505092915050565b60006138578383613db2565b60208301905092915050565b61386c8161446f565b82525050565b600061387d826142e3565b6138878185614311565b9350613892836142be565b8060005b838110156138c35781516138aa888261384b565b97506138b583614304565b925050600181019050613896565b5085935050505092915050565b6138d981614481565b82525050565b60006138ea826142ee565b6138f48185614322565b93506139048185602086016144f2565b61390d81614701565b840191505092915050565b6000613923826142f9565b61392d818561433e565b935061393d8185602086016144f2565b61394681614701565b840191505092915050565b600061395c826142f9565b613966818561434f565b93506139768185602086016144f2565b80840191505092915050565b6000815461398f81614525565b613999818661434f565b945060018216600081146139b457600181146139c5576139f8565b60ff198316865281860193506139f8565b6139ce856142ce565b60005b838110156139f0578154818901526001820191506020810190506139d1565b838801955050505b50505092915050565b6000613a0e60228361433e565b9150613a1982614712565b604082019050919050565b6000613a31602e8361433e565b9150613a3c82614761565b604082019050919050565b6000613a5460268361433e565b9150613a5f826147b0565b604082019050919050565b6000613a77602a8361433e565b9150613a82826147ff565b604082019050919050565b6000613a9a60238361433e565b9150613aa58261484e565b604082019050919050565b6000613abd60258361433e565b9150613ac88261489d565b604082019050919050565b6000613ae060088361433e565b9150613aeb826148ec565b602082019050919050565b6000613b0360168361433e565b9150613b0e82614915565b602082019050919050565b6000613b26601f8361433e565b9150613b318261493e565b602082019050919050565b6000613b4960398361433e565b9150613b5482614967565b604082019050919050565b6000613b6c602b8361433e565b9150613b77826149b6565b604082019050919050565b6000613b8f60268361433e565b9150613b9a82614a05565b604082019050919050565b6000613bb260208361433e565b9150613bbd82614a54565b602082019050919050565b6000613bd560178361433e565b9150613be082614a7d565b602082019050919050565b6000613bf8602f8361433e565b9150613c0382614aa6565b604082019050919050565b6000613c1b601a8361433e565b9150613c2682614af5565b602082019050919050565b6000613c3e60328361433e565b9150613c4982614b1e565b604082019050919050565b6000613c6160228361433e565b9150613c6c82614b6d565b604082019050919050565b6000613c84600083614333565b9150613c8f82614bbc565b600082019050919050565b6000613ca760108361433e565b9150613cb282614bbf565b602082019050919050565b6000613cca60088361433e565b9150613cd582614be8565b602082019050919050565b6000613ced60338361433e565b9150613cf882614c11565b604082019050919050565b6000613d1060218361433e565b9150613d1b82614c60565b604082019050919050565b6000613d3360288361433e565b9150613d3e82614caf565b604082019050919050565b6000613d56602e8361433e565b9150613d6182614cfe565b604082019050919050565b6000613d79602f8361433e565b9150613d8482614d4d565b604082019050919050565b6000613d9c602d8361433e565b9150613da782614d9c565b604082019050919050565b613dbb816144d9565b82525050565b613dca816144d9565b82525050565b6000613ddc8286613951565b9150613de88285613951565b9150613df48284613982565b9150819050949350505050565b6000613e0c82613c77565b9150819050919050565b6000602082019050613e2b6000830184613863565b92915050565b6000608082019050613e466000830187613863565b613e536020830186613863565b613e606040830185613dc1565b8181036060830152613e7281846138df565b905095945050505050565b60006020820190508181036000830152613e978184613872565b905092915050565b6000602082019050613eb460008301846138d0565b92915050565b60006020820190508181036000830152613ed48184613918565b905092915050565b60006020820190508181036000830152613ef581613a01565b9050919050565b60006020820190508181036000830152613f1581613a24565b9050919050565b60006020820190508181036000830152613f3581613a47565b9050919050565b60006020820190508181036000830152613f5581613a6a565b9050919050565b60006020820190508181036000830152613f7581613a8d565b9050919050565b60006020820190508181036000830152613f9581613ab0565b9050919050565b60006020820190508181036000830152613fb581613ad3565b9050919050565b60006020820190508181036000830152613fd581613af6565b9050919050565b60006020820190508181036000830152613ff581613b19565b9050919050565b6000602082019050818103600083015261401581613b3c565b9050919050565b6000602082019050818103600083015261403581613b5f565b9050919050565b6000602082019050818103600083015261405581613b82565b9050919050565b6000602082019050818103600083015261407581613ba5565b9050919050565b6000602082019050818103600083015261409581613bc8565b9050919050565b600060208201905081810360008301526140b581613beb565b9050919050565b600060208201905081810360008301526140d581613c0e565b9050919050565b600060208201905081810360008301526140f581613c31565b9050919050565b6000602082019050818103600083015261411581613c54565b9050919050565b6000602082019050818103600083015261413581613c9a565b9050919050565b6000602082019050818103600083015261415581613cbd565b9050919050565b6000602082019050818103600083015261417581613ce0565b9050919050565b6000602082019050818103600083015261419581613d03565b9050919050565b600060208201905081810360008301526141b581613d26565b9050919050565b600060208201905081810360008301526141d581613d49565b9050919050565b600060208201905081810360008301526141f581613d6c565b9050919050565b6000602082019050818103600083015261421581613d8f565b9050919050565b60006020820190506142316000830184613dc1565b92915050565b6000614241614252565b905061424d8282614557565b919050565b6000604051905090565b600067ffffffffffffffff821115614277576142766146be565b5b61428082614701565b9050602081019050919050565b600067ffffffffffffffff8211156142a8576142a76146be565b5b6142b182614701565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614365826144d9565b9150614370836144d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a5576143a4614602565b5b828201905092915050565b60006143bb826144d9565b91506143c6836144d9565b9250826143d6576143d5614631565b5b828204905092915050565b60006143ec826144d9565b91506143f7836144d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144305761442f614602565b5b828202905092915050565b6000614446826144d9565b9150614451836144d9565b92508282101561446457614463614602565b5b828203905092915050565b600061447a826144b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145105780820151818401526020810190506144f5565b8381111561451f576000848401525b50505050565b6000600282049050600182168061453d57607f821691505b6020821081141561455157614550614660565b5b50919050565b61456082614701565b810181811067ffffffffffffffff8211171561457f5761457e6146be565b5b80604052505050565b6000614593826144d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c6576145c5614602565b5b600182019050919050565b60006145dc826144d9565b91506145e7836144d9565b9250826145f7576145f6614631565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820746f206d696e7400000000000000000000600082015250565b7f496e76616c6964207175616e74697479206f72204d6178205065722054782e00600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614df48161446f565b8114614dff57600080fd5b50565b614e0b81614481565b8114614e1657600080fd5b50565b614e228161448d565b8114614e2d57600080fd5b50565b614e39816144d9565b8114614e4457600080fd5b5056fea26469706673582212209fbb50eda571e6db84af23c4c53bd086081627c606bcb7b109840dc9f0165e0264736f6c63430008070033

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.