ETH Price: $2,564.27 (+2.36%)

Token

FloorArmy (FA)
 

Overview

Max Total Supply

41 FA

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stealthpot.eth
Balance
1 FA
0xacb23475434b93bc1953277568ffb90a1fe3d39f
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:
FloorArmy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : FloorArmy.sol
// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.9;

/**
 * @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/Context.sol



pragma solidity ^0.8.9;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.9;

/**
 * @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: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.9;

/**
 * @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: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.9;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.9;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.9;


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

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

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


pragma solidity >=0.8.9;
// to enable certain compiler features



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;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {  }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}

pragma solidity ^0.8.9;

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


pragma solidity ^0.8.9;

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
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;

    // 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())) : '';
    }

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

contract FloorArmy is ERC721A, Ownable {
    using Strings for uint256;

    //amount of tokens that have been minted so far, in total and in presale
    uint256 private numberOfTotalTokens;
    
    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens;
    
    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    //cost of mints depending on state of sale    
    uint private mintCost_ = 0.1 ether;
    
    //maximum amount of mints allowed per person
    uint256 public maxMint = 3;
    
    //the amount of reserved mints that have currently been executed by creator and giveaways
    uint private _reservedMints;
    //the maximum amount of reserved mints allowed for creator and giveaways
    uint private maxReservedMints = 30;
    
    //dummy address that we use to sign the mint transaction to make sure it is valid
    address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c;
    
    //marks the timestamp of when the respective sales open
    uint256 internal presaleLaunchTime;
    uint256 internal publicSaleLaunchTime;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;

    //stores variable to see if sale is paused or not
    bool private paused;
    
    //current state os sale
    enum State {NoSale, Presale, PublicSale}
    
    //declaring initial values for variables
    constructor() ERC721A('FloorArmy', 'FA') {
        maxTotalTokens = 3000;

        _currentBaseURI = "ipfs://.../";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function switchToPresale() public onlyOwner {
        require(saleState() == State.NoSale, 'Sale already Open!');
        presaleLaunchTime = block.timestamp;
    }

    function switchToPublic () public onlyOwner {
        require(saleState() == State.Presale, 'Cannot Open Public!');
        publicSaleLaunchTime = block.timestamp;
    }
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    //mint a @param number of NFTs in presale
    function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v,  _r, _s) public payable {
        State saleState_ = saleState();
        require(saleState_ != State.NoSale, "Sale in not open yet!");
        require(saleState_ != State.PublicSale, "Presale has closed");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints  - _reservedMints), "Not enough NFTs left");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "More than allowed");
        require(msg.value >= mintCost() * number, "Insufficient Eth");
        
        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;
        numberOfTotalTokens += number;

    }

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable {
        State saleState_ = saleState();
        require(saleState_ == State.PublicSale, "Public not open yet");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "More than allowed");
        require(msg.value >= mintCost() * number, "Insufficient Eth");

        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;
        numberOfTotalTokens += number;
    
    }
    
    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')) : "";
            
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        numberOfTotalTokens += number;
        _reservedMints += number;
        
    }

    //airdrop NFTs
    function airdrop( address[] memory addresses, uint16[] memory quantities) public onlyOwner {
        require(addresses.length == quantities.length, "Address and quantities must have same length");

        for (uint256 i; i < addresses.length; i++) {
            _safeMint(addresses[i], quantities[i]);
            mintsPerAddress[addresses[i]] += quantities[i];
            numberOfTotalTokens += quantities[i];
            _reservedMints += quantities[i];
        }
    }    
    
    //burn the tokens that have not been sold yet
    function burnTokens() public onlyOwner {
        maxTotalTokens = numberOfTotalTokens;
    }

    //set new max supply
    function setMaxTotalTokens(uint number) public onlyOwner {
        require(numberOfTotalTokens <= number, "must be larger than minted count");
        maxTotalTokens = number;
    }

    //set new mint cost
    function setMintCost(uint number) public onlyOwner {
        require(0 <= number, "must be larger than 0");
        mintCost_ = number;
    }

    //set new mint maxMint
    function setMaxMint(uint number) public onlyOwner {
        require(0 <= number, "must be larger than 0");
        maxMint = number;
    }

    //set new mint maxReservedMints
    function setMaxReservedMints(uint number) public onlyOwner {
        require(_reservedMints <= number, "must be larger than reserve minted");
        maxReservedMints = number;
    }
    
    //se the current account balance
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdrawAll() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw');

        _withdraw(payable(owner()), balance); //to avoid dust eth
    }

    //withdraw a certain quantity to a certain account 
    function withdraw(address account, uint256 amount) public onlyOwner {
        require(amount > 0, "Cannot send 0 eth to address!");
        require(amount < accountBalance(), "Insufficient balance!");
        _withdraw(payable(account), amount);
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Eth");
    }
    
    //change the dummy account used for signing transactions
    function changeDummy(address _dummy) public onlyOwner {
        dummy = _dummy;
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        if (presaleLaunchTime == 0 || paused) {
            return State.NoSale;
        }
        else if (publicSaleLaunchTime == 0) {
            return State.Presale;
        }
        else {
            return State.PublicSale;
        }
    }
    
    //gets the cost of current mint
    function mintCost() public view returns(uint) {
        return mintCost_;        
    }
    
    //see if sale is paused or not
    function isPaused() public view returns(bool) {
        return paused;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }
   
}

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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint16[]","name":"quantities","type":"uint16[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum FloorArmy.State","name":"","type":"uint8"}],"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":"uint256","name":"number","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMaxReservedMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMaxTotalTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMintCost","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":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a0000600b556003600c55601e600e557380e4929c869102140e69550bbecc20bed61b080c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007c57600080fd5b506040518060400160405280600981526020017f466c6f6f7241726d7900000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464100000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200010192919062000268565b5080600290805190602001906200011a92919062000268565b5050506200013d620001316200019a60201b60201c565b620001a260201b60201c565b610bb86009819055506040518060400160405280600b81526020017f697066733a2f2f2e2e2e2f000000000000000000000000000000000000000000815250600a90805190602001906200019392919062000268565b506200037d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002769062000347565b90600052602060002090601f0160209004810192826200029a5760008555620002e6565b82601f10620002b557805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e5578251825591602001919060010190620002c8565b5b509050620002f59190620002f9565b5090565b5b8082111562000314576000816000905550600101620002fa565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036057607f821691505b6020821081141562000377576200037662000318565b5b50919050565b615ff1806200038d6000396000f3fe6080604052600436106102605760003560e01c8063715018a611610144578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd146108a6578063dcd4e732146108e3578063e985e9c5146108ff578063eab417821461093c578063f2fde38b14610953578063f3fef3a31461097c57610267565b8063b3ab66b0146107f6578063b88d4fde14610812578063bdb4b8481461083b578063c2b0367014610866578063c4ae31681461088f57610267565b80638fd0aeb2116101085780638fd0aeb21461070c57806395d89b4114610723578063a22cb4651461074e578063b0681af214610777578063b0a1c1c4146107a0578063b187bd26146107cb57610267565b8063715018a61461065f5780637501f74114610676578063853828b6146106a15780638545f4ea146106b85780638da5cb5b146106e157610267565b80632f745c59116101dd5780634520e916116101a15780634520e916146105295780634f6ccce714610554578063547520fe14610591578063603f4d52146105ba5780636352211e146105e557806370a082311461062257610267565b80632f745c59146104205780633023eba61461045d578063326241141461049a57806339a0c6f9146104d757806342842e0e1461050057610267565b8063087e8d2e11610224578063087e8d2e14610351578063095ea7b31461037a57806318160ddd146103a357806318df6403146103ce57806323b872dd146103f757610267565b80630191a6571461026c57806301ffc9a71461029557806306fdde03146102d257806308003f78146102fd578063081812fc1461031457610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613cff565b6109a5565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613d84565b610a65565b6040516102c99190613dcc565b60405180910390f35b3480156102de57600080fd5b506102e7610baf565b6040516102f49190613e80565b60405180910390f35b34801561030957600080fd5b50610312610c41565b005b34801561032057600080fd5b5061033b60048036038101906103369190613ed8565b610cc8565b6040516103489190613f14565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613ed8565b610d4d565b005b34801561038657600080fd5b506103a1600480360381019061039c9190613f2f565b610e18565b005b3480156103af57600080fd5b506103b8610f31565b6040516103c59190613f7e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613f99565b610f3a565b005b34801561040357600080fd5b5061041e60048036038101906104199190613fd9565b61109e565b005b34801561042c57600080fd5b5061044760048036038101906104429190613f2f565b6110ae565b6040516104549190613f7e565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613cff565b6112a0565b6040516104919190613f7e565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc919061409b565b6112b8565b6040516104ce9190613dcc565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190614237565b6113b6565b005b34801561050c57600080fd5b5061052760048036038101906105229190613fd9565b61144c565b005b34801561053557600080fd5b5061053e61146c565b60405161054b9190613f7e565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613ed8565b6114ff565b6040516105889190613f7e565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613ed8565b611552565b005b3480156105c657600080fd5b506105cf61161c565b6040516105dc91906142f7565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190613ed8565b611664565b6040516106199190613f14565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190613cff565b61167a565b6040516106569190613f7e565b60405180910390f35b34801561066b57600080fd5b50610674611763565b005b34801561068257600080fd5b5061068b6117eb565b6040516106989190613f7e565b60405180910390f35b3480156106ad57600080fd5b506106b66117f1565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613ed8565b6118d0565b005b3480156106ed57600080fd5b506106f661199a565b6040516107039190613f14565b60405180910390f35b34801561071857600080fd5b506107216119c4565b005b34801561072f57600080fd5b50610738611ab7565b6040516107459190613e80565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061433e565b611b49565b005b34801561078357600080fd5b5061079e60048036038101906107999190614543565b611cca565b005b3480156107ac57600080fd5b506107b5611eec565b6040516107c29190613f7e565b60405180910390f35b3480156107d757600080fd5b506107e0611f70565b6040516107ed9190613dcc565b60405180910390f35b610810600480360381019061080b9190613ed8565b611f87565b005b34801561081e57600080fd5b506108396004803603810190610834919061465c565b6121c6565b005b34801561084757600080fd5b50610850612222565b60405161085d9190613f7e565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613ed8565b61222c565b005b34801561089b57600080fd5b506108a46122f7565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613ed8565b61239f565b6040516108da9190613e80565b60405180910390f35b6108fd60048036038101906108f891906146df565b612446565b005b34801561090b57600080fd5b5061092660048036038101906109219190614746565b612742565b6040516109339190613dcc565b60405180910390f35b34801561094857600080fd5b506109516127d6565b005b34801561095f57600080fd5b5061097a60048036038101906109759190613cff565b6128c9565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613f2f565b6129c1565b005b6109ad612ad7565b73ffffffffffffffffffffffffffffffffffffffff166109cb61199a565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906147d2565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba85750610ba782612adf565b5b9050919050565b606060018054610bbe90614821565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea90614821565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b610c49612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610c6761199a565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906147d2565b60405180910390fd5b600854600981905550565b6000610cd382612b49565b610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d09906148c5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d55612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610d7361199a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906147d2565b60405180910390fd5b806008541115610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614931565b60405180910390fd5b8060098190555050565b6000610e2382611664565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906149c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb3612ad7565b73ffffffffffffffffffffffffffffffffffffffff161480610ee25750610ee181610edc612ad7565b612742565b5b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890614a55565b60405180910390fd5b610f2c838383612b56565b505050565b60008054905090565b610f42612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f6061199a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906147d2565b60405180910390fd5b600e5482600d54610fc79190614aa4565b1115611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614b46565b60405180910390fd5b6110128183612c08565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110619190614aa4565b92505081905550816008600082825461107a9190614aa4565b9250508190555081600d60008282546110939190614aa4565b925050819055505050565b6110a9838383612c26565b505050565b60006110b98361167a565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614bd8565b60405180910390fd5b6000611104610f31565b905060008060005b8381101561125e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111fe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611250578684141561124757819550505050505061129a565b83806001019450505b50808060010191505061110c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614c6a565b60405180910390fd5b92915050565b60126020528060005260406000206000915090505481565b60008030866040516020016112ce929190614cd2565b6040516020818303038152906040528051906020012090506001816040516020016112f99190614d76565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161132f9493929190614dba565b6020604051602081039080840390855afa158015611351573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b6113be612ad7565b73ffffffffffffffffffffffffffffffffffffffff166113dc61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906147d2565b60405180910390fd5b80600a9080519060200190611448929190613bb0565b5050565b611467838383604051806020016040528060008152506121c6565b505050565b6000611476612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661149461199a565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906147d2565b60405180910390fd5b600d54600e546114fa9190614dff565b905090565b6000611509610f31565b821061154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614ea5565b60405180910390fd5b819050919050565b61155a612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661157861199a565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906147d2565b60405180910390fd5b8060001115611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614f11565b60405180910390fd5b80600c8190555050565b600080601054148061163a5750601360009054906101000a900460ff165b156116485760009050611661565b6000601154141561165c5760019050611661565b600290505b90565b600061166f82613166565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290614fa3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61176b612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661178961199a565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906147d2565b60405180910390fd5b6117e96000613300565b565b600c5481565b6117f9612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661181761199a565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906147d2565b60405180910390fd5b6000611877611eec565b9050600081116118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b39061500f565b60405180910390fd5b6118cd6118c761199a565b826133c6565b50565b6118d8612ad7565b73ffffffffffffffffffffffffffffffffffffffff166118f661199a565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906147d2565b60405180910390fd5b8060001115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790614f11565b60405180910390fd5b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119cc612ad7565b73ffffffffffffffffffffffffffffffffffffffff166119ea61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a37906147d2565b60405180910390fd5b60016002811115611a5457611a53614280565b5b611a5c61161c565b6002811115611a6e57611a6d614280565b5b14611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061507b565b60405180910390fd5b42601181905550565b606060028054611ac690614821565b80601f0160208091040260200160405190810160405280929190818152602001828054611af290614821565b8015611b3f5780601f10611b1457610100808354040283529160200191611b3f565b820191906000526020600020905b815481529060010190602001808311611b2257829003601f168201915b5050505050905090565b611b51612ad7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906150e7565b60405180910390fd5b8060066000611bcc612ad7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c79612ad7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbe9190613dcc565b60405180910390a35050565b611cd2612ad7565b73ffffffffffffffffffffffffffffffffffffffff16611cf061199a565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906147d2565b60405180910390fd5b8051825114611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190615179565b60405180910390fd5b60005b8251811015611ee757611dd8838281518110611dac57611dab615199565b5b6020026020010151838381518110611dc757611dc6615199565b5b602002602001015161ffff16612c08565b818181518110611deb57611dea615199565b5b602002602001015161ffff1660126000858481518110611e0e57611e0d615199565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5f9190614aa4565b92505081905550818181518110611e7957611e78615199565b5b602002602001015161ffff1660086000828254611e969190614aa4565b92505081905550818181518110611eb057611eaf615199565b5b602002602001015161ffff16600d6000828254611ecd9190614aa4565b925050819055508080611edf906151c8565b915050611d8d565b505050565b6000611ef6612ad7565b73ffffffffffffffffffffffffffffffffffffffff16611f1461199a565b73ffffffffffffffffffffffffffffffffffffffff1614611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f61906147d2565b60405180910390fd5b47905090565b6000601360009054906101000a900460ff16905090565b6000611f9161161c565b9050600280811115611fa657611fa5614280565b5b816002811115611fb957611fb8614280565b5b14611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061525d565b60405180910390fd5b600d54600e546120099190614dff565b6009546120169190614dff565b826008546120249190614aa4565b1115612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c906152c9565b60405180910390fd5b600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120b39190614aa4565b11156120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb90615335565b60405180910390fd5b816120fd612222565b6121079190615355565b341015612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906153fb565b60405180910390fd5b6121533383612c08565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a29190614aa4565b9250508190555081600860008282546121bb9190614aa4565b925050819055505050565b6121d1848484612c26565b6121dd84848484613477565b61221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061548d565b60405180910390fd5b50505050565b6000600b54905090565b612234612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661225261199a565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906147d2565b60405180910390fd5b80600d5411156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e49061551f565b60405180910390fd5b80600e8190555050565b6122ff612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661231d61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906147d2565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b60606123aa82612b49565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e0906155b1565b60405180910390fd5b60006123f361360e565b90506000815111612413576040518060200160405280600081525061243e565b8061241d846136a0565b60405160200161242e92919061564e565b6040516020818303038152906040525b915050919050565b828282612455338484846112b8565b612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b906156c9565b60405180910390fd5b600061249e61161c565b9050600060028111156124b4576124b3614280565b5b8160028111156124c7576124c6614280565b5b1415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90615735565b60405180910390fd5b60028081111561251b5761251a614280565b5b81600281111561252e5761252d614280565b5b141561256f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612566906157a1565b60405180910390fd5b600d54600e5461257f9190614dff565b60095461258c9190614dff565b8860085461259a9190614aa4565b11156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906152c9565b60405180910390fd5b600c5488601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126299190614aa4565b111561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190615335565b60405180910390fd5b87612673612222565b61267d9190615355565b3410156126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906153fb565b60405180910390fd5b6126c93389612c08565b87601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127189190614aa4565b9250508190555087600860008282546127319190614aa4565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127de612ad7565b73ffffffffffffffffffffffffffffffffffffffff166127fc61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612849906147d2565b60405180910390fd5b6000600281111561286657612865614280565b5b61286e61161c565b60028111156128805761287f614280565b5b146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b79061580d565b60405180910390fd5b42601081905550565b6128d1612ad7565b73ffffffffffffffffffffffffffffffffffffffff166128ef61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c906147d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac9061589f565b60405180910390fd5b6129be81613300565b50565b6129c9612ad7565b73ffffffffffffffffffffffffffffffffffffffff166129e761199a565b73ffffffffffffffffffffffffffffffffffffffff1614612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a34906147d2565b60405180910390fd5b60008111612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a779061590b565b60405180910390fd5b612a88611eec565b8110612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090615977565b60405180910390fd5b612ad382826133c6565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612c22828260405180602001604052806000815250613801565b5050565b6000612c3182613166565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c58612ad7565b73ffffffffffffffffffffffffffffffffffffffff161480612cb45750612c7d612ad7565b73ffffffffffffffffffffffffffffffffffffffff16612c9c84610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cd05750612ccf8260000151612cca612ad7565b612742565b5b905080612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990615a09565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b90615a9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb90615b2d565b60405180910390fd5b612e018585856001613813565b612e116000848460000151612b56565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130f65761305581612b49565b156130f55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461315f8585856001613819565b5050505050565b61316e613c36565b61317782612b49565b6131b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ad90615bbf565b60405180910390fd5b60008290505b600081106132bf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132b05780925050506132fb565b508080600190039150506131bc565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290615c51565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516133ec90615ca2565b60006040518083038185875af1925050503d8060008114613429576040519150601f19603f3d011682016040523d82523d6000602084013e61342e565b606091505b5050905080613472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346990615d03565b60405180910390fd5b505050565b60006134988473ffffffffffffffffffffffffffffffffffffffff1661381f565b15613601578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134c1612ad7565b8786866040518563ffffffff1660e01b81526004016134e39493929190615d78565b602060405180830381600087803b1580156134fd57600080fd5b505af192505050801561352e57506040513d601f19601f8201168201806040525081019061352b9190615dd9565b60015b6135b1573d806000811461355e576040519150601f19603f3d011682016040523d82523d6000602084013e613563565b606091505b506000815114156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a09061548d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613606565b600190505b949350505050565b6060600a805461361d90614821565b80601f016020809104026020016040519081016040528092919081815260200182805461364990614821565b80156136965780601f1061366b57610100808354040283529160200191613696565b820191906000526020600020905b81548152906001019060200180831161367957829003601f168201915b5050505050905090565b606060008214156136e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fc565b600082905060005b6000821461371a578080613703906151c8565b915050600a826137139190615e35565b91506136f0565b60008167ffffffffffffffff8111156137365761373561410c565b5b6040519080825280601f01601f1916602001820160405280156137685781602001600182028036833780820191505090505b5090505b600085146137f5576001826137819190614dff565b9150600a856137909190615e66565b603061379c9190614aa4565b60f81b8183815181106137b2576137b1615199565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ee9190615e35565b945061376c565b8093505050505b919050565b61380e8383836001613832565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90615f09565b60405180910390fd5b60008414156138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e390615f9b565b60405180910390fd5b6138f96000868387613813565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613b9357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613b7e57613b3e6000888488613477565b613b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b749061548d565b60405180910390fd5b5b81806001019250508080600101915050613ac7565b508060008190555050613ba96000868387613819565b5050505050565b828054613bbc90614821565b90600052602060002090601f016020900481019282613bde5760008555613c25565b82601f10613bf757805160ff1916838001178555613c25565b82800160010185558215613c25579182015b82811115613c24578251825591602001919060010190613c09565b5b509050613c329190613c70565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c89576000816000905550600101613c71565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ccc82613ca1565b9050919050565b613cdc81613cc1565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613c97565b5b6000613d2384828501613cea565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d6181613d2c565b8114613d6c57600080fd5b50565b600081359050613d7e81613d58565b92915050565b600060208284031215613d9a57613d99613c97565b5b6000613da884828501613d6f565b91505092915050565b60008115159050919050565b613dc681613db1565b82525050565b6000602082019050613de16000830184613dbd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e21578082015181840152602081019050613e06565b83811115613e30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e5282613de7565b613e5c8185613df2565b9350613e6c818560208601613e03565b613e7581613e36565b840191505092915050565b60006020820190508181036000830152613e9a8184613e47565b905092915050565b6000819050919050565b613eb581613ea2565b8114613ec057600080fd5b50565b600081359050613ed281613eac565b92915050565b600060208284031215613eee57613eed613c97565b5b6000613efc84828501613ec3565b91505092915050565b613f0e81613cc1565b82525050565b6000602082019050613f296000830184613f05565b92915050565b60008060408385031215613f4657613f45613c97565b5b6000613f5485828601613cea565b9250506020613f6585828601613ec3565b9150509250929050565b613f7881613ea2565b82525050565b6000602082019050613f936000830184613f6f565b92915050565b60008060408385031215613fb057613faf613c97565b5b6000613fbe85828601613ec3565b9250506020613fcf85828601613cea565b9150509250929050565b600080600060608486031215613ff257613ff1613c97565b5b600061400086828701613cea565b935050602061401186828701613cea565b925050604061402286828701613ec3565b9150509250925092565b600060ff82169050919050565b6140428161402c565b811461404d57600080fd5b50565b60008135905061405f81614039565b92915050565b6000819050919050565b61407881614065565b811461408357600080fd5b50565b6000813590506140958161406f565b92915050565b600080600080608085870312156140b5576140b4613c97565b5b60006140c387828801613cea565b94505060206140d487828801614050565b93505060406140e587828801614086565b92505060606140f687828801614086565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61414482613e36565b810181811067ffffffffffffffff821117156141635761416261410c565b5b80604052505050565b6000614176613c8d565b9050614182828261413b565b919050565b600067ffffffffffffffff8211156141a2576141a161410c565b5b6141ab82613e36565b9050602081019050919050565b82818337600083830152505050565b60006141da6141d584614187565b61416c565b9050828152602081018484840111156141f6576141f5614107565b5b6142018482856141b8565b509392505050565b600082601f83011261421e5761421d614102565b5b813561422e8482602086016141c7565b91505092915050565b60006020828403121561424d5761424c613c97565b5b600082013567ffffffffffffffff81111561426b5761426a613c9c565b5b61427784828501614209565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106142c0576142bf614280565b5b50565b60008190506142d1826142af565b919050565b60006142e1826142c3565b9050919050565b6142f1816142d6565b82525050565b600060208201905061430c60008301846142e8565b92915050565b61431b81613db1565b811461432657600080fd5b50565b60008135905061433881614312565b92915050565b6000806040838503121561435557614354613c97565b5b600061436385828601613cea565b925050602061437485828601614329565b9150509250929050565b600067ffffffffffffffff8211156143995761439861410c565b5b602082029050602081019050919050565b600080fd5b60006143c26143bd8461437e565b61416c565b905080838252602082019050602084028301858111156143e5576143e46143aa565b5b835b8181101561440e57806143fa8882613cea565b8452602084019350506020810190506143e7565b5050509392505050565b600082601f83011261442d5761442c614102565b5b813561443d8482602086016143af565b91505092915050565b600067ffffffffffffffff8211156144615761446061410c565b5b602082029050602081019050919050565b600061ffff82169050919050565b61448981614472565b811461449457600080fd5b50565b6000813590506144a681614480565b92915050565b60006144bf6144ba84614446565b61416c565b905080838252602082019050602084028301858111156144e2576144e16143aa565b5b835b8181101561450b57806144f78882614497565b8452602084019350506020810190506144e4565b5050509392505050565b600082601f83011261452a57614529614102565b5b813561453a8482602086016144ac565b91505092915050565b6000806040838503121561455a57614559613c97565b5b600083013567ffffffffffffffff81111561457857614577613c9c565b5b61458485828601614418565b925050602083013567ffffffffffffffff8111156145a5576145a4613c9c565b5b6145b185828601614515565b9150509250929050565b600067ffffffffffffffff8211156145d6576145d561410c565b5b6145df82613e36565b9050602081019050919050565b60006145ff6145fa846145bb565b61416c565b90508281526020810184848401111561461b5761461a614107565b5b6146268482856141b8565b509392505050565b600082601f83011261464357614642614102565b5b81356146538482602086016145ec565b91505092915050565b6000806000806080858703121561467657614675613c97565b5b600061468487828801613cea565b945050602061469587828801613cea565b93505060406146a687828801613ec3565b925050606085013567ffffffffffffffff8111156146c7576146c6613c9c565b5b6146d38782880161462e565b91505092959194509250565b600080600080608085870312156146f9576146f8613c97565b5b600061470787828801613ec3565b945050602061471887828801614050565b935050604061472987828801614086565b925050606061473a87828801614086565b91505092959194509250565b6000806040838503121561475d5761475c613c97565b5b600061476b85828601613cea565b925050602061477c85828601613cea565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147bc602083613df2565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483957607f821691505b6020821081141561484d5761484c6147f2565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006148af602d83613df2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f6d757374206265206c6172676572207468616e206d696e74656420636f756e74600082015250565b600061491b602083613df2565b9150614926826148e5565b602082019050919050565b6000602082019050818103600083015261494a8161490e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006149ad602283613df2565b91506149b882614951565b604082019050919050565b600060208201905081810360008301526149dc816149a0565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614a3f603983613df2565b9150614a4a826149e3565b604082019050919050565b60006020820190508181036000830152614a6e81614a32565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aaf82613ea2565b9150614aba83613ea2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aef57614aee614a75565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c656674000000600082015250565b6000614b30601d83613df2565b9150614b3b82614afa565b602082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc2602283613df2565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614c54602e83613df2565b9150614c5f82614bf8565b604082019050919050565b60006020820190508181036000830152614c8381614c47565b9050919050565b60008160601b9050919050565b6000614ca282614c8a565b9050919050565b6000614cb482614c97565b9050919050565b614ccc614cc782613cc1565b614ca9565b82525050565b6000614cde8285614cbb565b601482019150614cee8284614cbb565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614d3f601c83614cfe565b9150614d4a82614d09565b601c82019050919050565b6000819050919050565b614d70614d6b82614065565b614d55565b82525050565b6000614d8182614d32565b9150614d8d8284614d5f565b60208201915081905092915050565b614da581614065565b82525050565b614db48161402c565b82525050565b6000608082019050614dcf6000830187614d9c565b614ddc6020830186614dab565b614de96040830185614d9c565b614df66060830184614d9c565b95945050505050565b6000614e0a82613ea2565b9150614e1583613ea2565b925082821015614e2857614e27614a75565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e8f602383613df2565b9150614e9a82614e33565b604082019050919050565b60006020820190508181036000830152614ebe81614e82565b9050919050565b7f6d757374206265206c6172676572207468616e20300000000000000000000000600082015250565b6000614efb601583613df2565b9150614f0682614ec5565b602082019050919050565b60006020820190508181036000830152614f2a81614eee565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614f8d602b83613df2565b9150614f9882614f31565b604082019050919050565b60006020820190508181036000830152614fbc81614f80565b9050919050565b7f4e6f2046756e647320746f207769746864726177000000000000000000000000600082015250565b6000614ff9601483613df2565b915061500482614fc3565b602082019050919050565b6000602082019050818103600083015261502881614fec565b9050919050565b7f43616e6e6f74204f70656e205075626c69632100000000000000000000000000600082015250565b6000615065601383613df2565b91506150708261502f565b602082019050919050565b6000602082019050818103600083015261509481615058565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006150d1601a83613df2565b91506150dc8261509b565b602082019050919050565b60006020820190508181036000830152615100816150c4565b9050919050565b7f4164647265737320616e64207175616e746974696573206d757374206861766560008201527f2073616d65206c656e6774680000000000000000000000000000000000000000602082015250565b6000615163602c83613df2565b915061516e82615107565b604082019050919050565b6000602082019050818103600083015261519281615156565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006151d382613ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520657615205614a75565b5b600182019050919050565b7f5075626c6963206e6f74206f70656e2079657400000000000000000000000000600082015250565b6000615247601383613df2565b915061525282615211565b602082019050919050565b600060208201905081810360008301526152768161523a565b9050919050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b60006152b3601483613df2565b91506152be8261527d565b602082019050919050565b600060208201905081810360008301526152e2816152a6565b9050919050565b7f4d6f7265207468616e20616c6c6f776564000000000000000000000000000000600082015250565b600061531f601183613df2565b915061532a826152e9565b602082019050919050565b6000602082019050818103600083015261534e81615312565b9050919050565b600061536082613ea2565b915061536b83613ea2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153a4576153a3614a75565b5b828202905092915050565b7f496e73756666696369656e742045746800000000000000000000000000000000600082015250565b60006153e5601083613df2565b91506153f0826153af565b602082019050919050565b60006020820190508181036000830152615414816153d8565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000615477603383613df2565b91506154828261541b565b604082019050919050565b600060208201905081810360008301526154a68161546a565b9050919050565b7f6d757374206265206c6172676572207468616e2072657365727665206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000615509602283613df2565b9150615514826154ad565b604082019050919050565b60006020820190508181036000830152615538816154fc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061559b602f83613df2565b91506155a68261553f565b604082019050919050565b600060208201905081810360008301526155ca8161558e565b9050919050565b60006155dc82613de7565b6155e68185614cfe565b93506155f6818560208601613e03565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615638600583614cfe565b915061564382615602565b600582019050919050565b600061565a82856155d1565b915061566682846155d1565b91506156718261562b565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b60006156b3601183613df2565b91506156be8261567d565b602082019050919050565b600060208201905081810360008301526156e2816156a6565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b600061571f601583613df2565b915061572a826156e9565b602082019050919050565b6000602082019050818103600083015261574e81615712565b9050919050565b7f50726573616c652068617320636c6f7365640000000000000000000000000000600082015250565b600061578b601283613df2565b915061579682615755565b602082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b7f53616c6520616c7265616479204f70656e210000000000000000000000000000600082015250565b60006157f7601283613df2565b9150615802826157c1565b602082019050919050565b60006020820190508181036000830152615826816157ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615889602683613df2565b91506158948261582d565b604082019050919050565b600060208201905081810360008301526158b88161587c565b9050919050565b7f43616e6e6f742073656e6420302065746820746f206164647265737321000000600082015250565b60006158f5601d83613df2565b9150615900826158bf565b602082019050919050565b60006020820190508181036000830152615924816158e8565b9050919050565b7f496e73756666696369656e742062616c616e6365210000000000000000000000600082015250565b6000615961601583613df2565b915061596c8261592b565b602082019050919050565b6000602082019050818103600083015261599081615954565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006159f3603283613df2565b91506159fe82615997565b604082019050919050565b60006020820190508181036000830152615a22816159e6565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615a85602683613df2565b9150615a9082615a29565b604082019050919050565b60006020820190508181036000830152615ab481615a78565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615b17602583613df2565b9150615b2282615abb565b604082019050919050565b60006020820190508181036000830152615b4681615b0a565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615ba9602a83613df2565b9150615bb482615b4d565b604082019050919050565b60006020820190508181036000830152615bd881615b9c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615c3b602f83613df2565b9150615c4682615bdf565b604082019050919050565b60006020820190508181036000830152615c6a81615c2e565b9050919050565b600081905092915050565b50565b6000615c8c600083615c71565b9150615c9782615c7c565b600082019050919050565b6000615cad82615c7f565b9150819050919050565b7f4661696c656420746f2073656e64204574680000000000000000000000000000600082015250565b6000615ced601283613df2565b9150615cf882615cb7565b602082019050919050565b60006020820190508181036000830152615d1c81615ce0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d4a82615d23565b615d548185615d2e565b9350615d64818560208601613e03565b615d6d81613e36565b840191505092915050565b6000608082019050615d8d6000830187613f05565b615d9a6020830186613f05565b615da76040830185613f6f565b8181036060830152615db98184615d3f565b905095945050505050565b600081519050615dd381613d58565b92915050565b600060208284031215615def57615dee613c97565b5b6000615dfd84828501615dc4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615e4082613ea2565b9150615e4b83613ea2565b925082615e5b57615e5a615e06565b5b828204905092915050565b6000615e7182613ea2565b9150615e7c83613ea2565b925082615e8c57615e8b615e06565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ef3602183613df2565b9150615efe82615e97565b604082019050919050565b60006020820190508181036000830152615f2281615ee6565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615f85602883613df2565b9150615f9082615f29565b604082019050919050565b60006020820190508181036000830152615fb481615f78565b905091905056fea26469706673582212207e4e77b504b6a1d266fb422e06bdd7c0df5c76b4096d2f7e7abad653298c436464736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102605760003560e01c8063715018a611610144578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd146108a6578063dcd4e732146108e3578063e985e9c5146108ff578063eab417821461093c578063f2fde38b14610953578063f3fef3a31461097c57610267565b8063b3ab66b0146107f6578063b88d4fde14610812578063bdb4b8481461083b578063c2b0367014610866578063c4ae31681461088f57610267565b80638fd0aeb2116101085780638fd0aeb21461070c57806395d89b4114610723578063a22cb4651461074e578063b0681af214610777578063b0a1c1c4146107a0578063b187bd26146107cb57610267565b8063715018a61461065f5780637501f74114610676578063853828b6146106a15780638545f4ea146106b85780638da5cb5b146106e157610267565b80632f745c59116101dd5780634520e916116101a15780634520e916146105295780634f6ccce714610554578063547520fe14610591578063603f4d52146105ba5780636352211e146105e557806370a082311461062257610267565b80632f745c59146104205780633023eba61461045d578063326241141461049a57806339a0c6f9146104d757806342842e0e1461050057610267565b8063087e8d2e11610224578063087e8d2e14610351578063095ea7b31461037a57806318160ddd146103a357806318df6403146103ce57806323b872dd146103f757610267565b80630191a6571461026c57806301ffc9a71461029557806306fdde03146102d257806308003f78146102fd578063081812fc1461031457610267565b3661026757005b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613cff565b6109a5565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613d84565b610a65565b6040516102c99190613dcc565b60405180910390f35b3480156102de57600080fd5b506102e7610baf565b6040516102f49190613e80565b60405180910390f35b34801561030957600080fd5b50610312610c41565b005b34801561032057600080fd5b5061033b60048036038101906103369190613ed8565b610cc8565b6040516103489190613f14565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190613ed8565b610d4d565b005b34801561038657600080fd5b506103a1600480360381019061039c9190613f2f565b610e18565b005b3480156103af57600080fd5b506103b8610f31565b6040516103c59190613f7e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613f99565b610f3a565b005b34801561040357600080fd5b5061041e60048036038101906104199190613fd9565b61109e565b005b34801561042c57600080fd5b5061044760048036038101906104429190613f2f565b6110ae565b6040516104549190613f7e565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f9190613cff565b6112a0565b6040516104919190613f7e565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc919061409b565b6112b8565b6040516104ce9190613dcc565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190614237565b6113b6565b005b34801561050c57600080fd5b5061052760048036038101906105229190613fd9565b61144c565b005b34801561053557600080fd5b5061053e61146c565b60405161054b9190613f7e565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613ed8565b6114ff565b6040516105889190613f7e565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613ed8565b611552565b005b3480156105c657600080fd5b506105cf61161c565b6040516105dc91906142f7565b60405180910390f35b3480156105f157600080fd5b5061060c60048036038101906106079190613ed8565b611664565b6040516106199190613f14565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190613cff565b61167a565b6040516106569190613f7e565b60405180910390f35b34801561066b57600080fd5b50610674611763565b005b34801561068257600080fd5b5061068b6117eb565b6040516106989190613f7e565b60405180910390f35b3480156106ad57600080fd5b506106b66117f1565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613ed8565b6118d0565b005b3480156106ed57600080fd5b506106f661199a565b6040516107039190613f14565b60405180910390f35b34801561071857600080fd5b506107216119c4565b005b34801561072f57600080fd5b50610738611ab7565b6040516107459190613e80565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061433e565b611b49565b005b34801561078357600080fd5b5061079e60048036038101906107999190614543565b611cca565b005b3480156107ac57600080fd5b506107b5611eec565b6040516107c29190613f7e565b60405180910390f35b3480156107d757600080fd5b506107e0611f70565b6040516107ed9190613dcc565b60405180910390f35b610810600480360381019061080b9190613ed8565b611f87565b005b34801561081e57600080fd5b506108396004803603810190610834919061465c565b6121c6565b005b34801561084757600080fd5b50610850612222565b60405161085d9190613f7e565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613ed8565b61222c565b005b34801561089b57600080fd5b506108a46122f7565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613ed8565b61239f565b6040516108da9190613e80565b60405180910390f35b6108fd60048036038101906108f891906146df565b612446565b005b34801561090b57600080fd5b5061092660048036038101906109219190614746565b612742565b6040516109339190613dcc565b60405180910390f35b34801561094857600080fd5b506109516127d6565b005b34801561095f57600080fd5b5061097a60048036038101906109759190613cff565b6128c9565b005b34801561098857600080fd5b506109a3600480360381019061099e9190613f2f565b6129c1565b005b6109ad612ad7565b73ffffffffffffffffffffffffffffffffffffffff166109cb61199a565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a18906147d2565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ba85750610ba782612adf565b5b9050919050565b606060018054610bbe90614821565b80601f0160208091040260200160405190810160405280929190818152602001828054610bea90614821565b8015610c375780601f10610c0c57610100808354040283529160200191610c37565b820191906000526020600020905b815481529060010190602001808311610c1a57829003601f168201915b5050505050905090565b610c49612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610c6761199a565b73ffffffffffffffffffffffffffffffffffffffff1614610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906147d2565b60405180910390fd5b600854600981905550565b6000610cd382612b49565b610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d09906148c5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d55612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610d7361199a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc0906147d2565b60405180910390fd5b806008541115610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614931565b60405180910390fd5b8060098190555050565b6000610e2382611664565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906149c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb3612ad7565b73ffffffffffffffffffffffffffffffffffffffff161480610ee25750610ee181610edc612ad7565b612742565b5b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890614a55565b60405180910390fd5b610f2c838383612b56565b505050565b60008054905090565b610f42612ad7565b73ffffffffffffffffffffffffffffffffffffffff16610f6061199a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906147d2565b60405180910390fd5b600e5482600d54610fc79190614aa4565b1115611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90614b46565b60405180910390fd5b6110128183612c08565b81601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110619190614aa4565b92505081905550816008600082825461107a9190614aa4565b9250508190555081600d60008282546110939190614aa4565b925050819055505050565b6110a9838383612c26565b505050565b60006110b98361167a565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614bd8565b60405180910390fd5b6000611104610f31565b905060008060005b8381101561125e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111fe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611250578684141561124757819550505050505061129a565b83806001019450505b50808060010191505061110c565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614c6a565b60405180910390fd5b92915050565b60126020528060005260406000206000915090505481565b60008030866040516020016112ce929190614cd2565b6040516020818303038152906040528051906020012090506001816040516020016112f99190614d76565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161132f9493929190614dba565b6020604051602081039080840390855afa158015611351573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b6113be612ad7565b73ffffffffffffffffffffffffffffffffffffffff166113dc61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906147d2565b60405180910390fd5b80600a9080519060200190611448929190613bb0565b5050565b611467838383604051806020016040528060008152506121c6565b505050565b6000611476612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661149461199a565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906147d2565b60405180910390fd5b600d54600e546114fa9190614dff565b905090565b6000611509610f31565b821061154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614ea5565b60405180910390fd5b819050919050565b61155a612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661157861199a565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906147d2565b60405180910390fd5b8060001115611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614f11565b60405180910390fd5b80600c8190555050565b600080601054148061163a5750601360009054906101000a900460ff165b156116485760009050611661565b6000601154141561165c5760019050611661565b600290505b90565b600061166f82613166565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290614fa3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61176b612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661178961199a565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906147d2565b60405180910390fd5b6117e96000613300565b565b600c5481565b6117f9612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661181761199a565b73ffffffffffffffffffffffffffffffffffffffff161461186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906147d2565b60405180910390fd5b6000611877611eec565b9050600081116118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b39061500f565b60405180910390fd5b6118cd6118c761199a565b826133c6565b50565b6118d8612ad7565b73ffffffffffffffffffffffffffffffffffffffff166118f661199a565b73ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906147d2565b60405180910390fd5b8060001115611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790614f11565b60405180910390fd5b80600b8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119cc612ad7565b73ffffffffffffffffffffffffffffffffffffffff166119ea61199a565b73ffffffffffffffffffffffffffffffffffffffff1614611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a37906147d2565b60405180910390fd5b60016002811115611a5457611a53614280565b5b611a5c61161c565b6002811115611a6e57611a6d614280565b5b14611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061507b565b60405180910390fd5b42601181905550565b606060028054611ac690614821565b80601f0160208091040260200160405190810160405280929190818152602001828054611af290614821565b8015611b3f5780601f10611b1457610100808354040283529160200191611b3f565b820191906000526020600020905b815481529060010190602001808311611b2257829003601f168201915b5050505050905090565b611b51612ad7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906150e7565b60405180910390fd5b8060066000611bcc612ad7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c79612ad7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cbe9190613dcc565b60405180910390a35050565b611cd2612ad7565b73ffffffffffffffffffffffffffffffffffffffff16611cf061199a565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906147d2565b60405180910390fd5b8051825114611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190615179565b60405180910390fd5b60005b8251811015611ee757611dd8838281518110611dac57611dab615199565b5b6020026020010151838381518110611dc757611dc6615199565b5b602002602001015161ffff16612c08565b818181518110611deb57611dea615199565b5b602002602001015161ffff1660126000858481518110611e0e57611e0d615199565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e5f9190614aa4565b92505081905550818181518110611e7957611e78615199565b5b602002602001015161ffff1660086000828254611e969190614aa4565b92505081905550818181518110611eb057611eaf615199565b5b602002602001015161ffff16600d6000828254611ecd9190614aa4565b925050819055508080611edf906151c8565b915050611d8d565b505050565b6000611ef6612ad7565b73ffffffffffffffffffffffffffffffffffffffff16611f1461199a565b73ffffffffffffffffffffffffffffffffffffffff1614611f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f61906147d2565b60405180910390fd5b47905090565b6000601360009054906101000a900460ff16905090565b6000611f9161161c565b9050600280811115611fa657611fa5614280565b5b816002811115611fb957611fb8614280565b5b14611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061525d565b60405180910390fd5b600d54600e546120099190614dff565b6009546120169190614dff565b826008546120249190614aa4565b1115612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c906152c9565b60405180910390fd5b600c5482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120b39190614aa4565b11156120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb90615335565b60405180910390fd5b816120fd612222565b6121079190615355565b341015612149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612140906153fb565b60405180910390fd5b6121533383612c08565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a29190614aa4565b9250508190555081600860008282546121bb9190614aa4565b925050819055505050565b6121d1848484612c26565b6121dd84848484613477565b61221c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122139061548d565b60405180910390fd5b50505050565b6000600b54905090565b612234612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661225261199a565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f906147d2565b60405180910390fd5b80600d5411156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e49061551f565b60405180910390fd5b80600e8190555050565b6122ff612ad7565b73ffffffffffffffffffffffffffffffffffffffff1661231d61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a906147d2565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b60606123aa82612b49565b6123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e0906155b1565b60405180910390fd5b60006123f361360e565b90506000815111612413576040518060200160405280600081525061243e565b8061241d846136a0565b60405160200161242e92919061564e565b6040516020818303038152906040525b915050919050565b828282612455338484846112b8565b612494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248b906156c9565b60405180910390fd5b600061249e61161c565b9050600060028111156124b4576124b3614280565b5b8160028111156124c7576124c6614280565b5b1415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90615735565b60405180910390fd5b60028081111561251b5761251a614280565b5b81600281111561252e5761252d614280565b5b141561256f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612566906157a1565b60405180910390fd5b600d54600e5461257f9190614dff565b60095461258c9190614dff565b8860085461259a9190614aa4565b11156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906152c9565b60405180910390fd5b600c5488601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126299190614aa4565b111561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190615335565b60405180910390fd5b87612673612222565b61267d9190615355565b3410156126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906153fb565b60405180910390fd5b6126c93389612c08565b87601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127189190614aa4565b9250508190555087600860008282546127319190614aa4565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127de612ad7565b73ffffffffffffffffffffffffffffffffffffffff166127fc61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612849906147d2565b60405180910390fd5b6000600281111561286657612865614280565b5b61286e61161c565b60028111156128805761287f614280565b5b146128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b79061580d565b60405180910390fd5b42601081905550565b6128d1612ad7565b73ffffffffffffffffffffffffffffffffffffffff166128ef61199a565b73ffffffffffffffffffffffffffffffffffffffff1614612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c906147d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac9061589f565b60405180910390fd5b6129be81613300565b50565b6129c9612ad7565b73ffffffffffffffffffffffffffffffffffffffff166129e761199a565b73ffffffffffffffffffffffffffffffffffffffff1614612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a34906147d2565b60405180910390fd5b60008111612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a779061590b565b60405180910390fd5b612a88611eec565b8110612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090615977565b60405180910390fd5b612ad382826133c6565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612c22828260405180602001604052806000815250613801565b5050565b6000612c3182613166565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c58612ad7565b73ffffffffffffffffffffffffffffffffffffffff161480612cb45750612c7d612ad7565b73ffffffffffffffffffffffffffffffffffffffff16612c9c84610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612cd05750612ccf8260000151612cca612ad7565b612742565b5b905080612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990615a09565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b90615a9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612deb90615b2d565b60405180910390fd5b612e018585856001613813565b612e116000848460000151612b56565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130f65761305581612b49565b156130f55782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461315f8585856001613819565b5050505050565b61316e613c36565b61317782612b49565b6131b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ad90615bbf565b60405180910390fd5b60008290505b600081106132bf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132b05780925050506132fb565b508080600190039150506131bc565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290615c51565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516133ec90615ca2565b60006040518083038185875af1925050503d8060008114613429576040519150601f19603f3d011682016040523d82523d6000602084013e61342e565b606091505b5050905080613472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346990615d03565b60405180910390fd5b505050565b60006134988473ffffffffffffffffffffffffffffffffffffffff1661381f565b15613601578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134c1612ad7565b8786866040518563ffffffff1660e01b81526004016134e39493929190615d78565b602060405180830381600087803b1580156134fd57600080fd5b505af192505050801561352e57506040513d601f19601f8201168201806040525081019061352b9190615dd9565b60015b6135b1573d806000811461355e576040519150601f19603f3d011682016040523d82523d6000602084013e613563565b606091505b506000815114156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a09061548d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613606565b600190505b949350505050565b6060600a805461361d90614821565b80601f016020809104026020016040519081016040528092919081815260200182805461364990614821565b80156136965780601f1061366b57610100808354040283529160200191613696565b820191906000526020600020905b81548152906001019060200180831161367957829003601f168201915b5050505050905090565b606060008214156136e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137fc565b600082905060005b6000821461371a578080613703906151c8565b915050600a826137139190615e35565b91506136f0565b60008167ffffffffffffffff8111156137365761373561410c565b5b6040519080825280601f01601f1916602001820160405280156137685781602001600182028036833780820191505090505b5090505b600085146137f5576001826137819190614dff565b9150600a856137909190615e66565b603061379c9190614aa4565b60f81b8183815181106137b2576137b1615199565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137ee9190615e35565b945061376c565b8093505050505b919050565b61380e8383836001613832565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90615f09565b60405180910390fd5b60008414156138ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e390615f9b565b60405180910390fd5b6138f96000868387613813565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613b9357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613b7e57613b3e6000888488613477565b613b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b749061548d565b60405180910390fd5b5b81806001019250508080600101915050613ac7565b508060008190555050613ba96000868387613819565b5050505050565b828054613bbc90614821565b90600052602060002090601f016020900481019282613bde5760008555613c25565b82601f10613bf757805160ff1916838001178555613c25565b82800160010185558215613c25579182015b82811115613c24578251825591602001919060010190613c09565b5b509050613c329190613c70565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c89576000816000905550600101613c71565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ccc82613ca1565b9050919050565b613cdc81613cc1565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613c97565b5b6000613d2384828501613cea565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d6181613d2c565b8114613d6c57600080fd5b50565b600081359050613d7e81613d58565b92915050565b600060208284031215613d9a57613d99613c97565b5b6000613da884828501613d6f565b91505092915050565b60008115159050919050565b613dc681613db1565b82525050565b6000602082019050613de16000830184613dbd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e21578082015181840152602081019050613e06565b83811115613e30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e5282613de7565b613e5c8185613df2565b9350613e6c818560208601613e03565b613e7581613e36565b840191505092915050565b60006020820190508181036000830152613e9a8184613e47565b905092915050565b6000819050919050565b613eb581613ea2565b8114613ec057600080fd5b50565b600081359050613ed281613eac565b92915050565b600060208284031215613eee57613eed613c97565b5b6000613efc84828501613ec3565b91505092915050565b613f0e81613cc1565b82525050565b6000602082019050613f296000830184613f05565b92915050565b60008060408385031215613f4657613f45613c97565b5b6000613f5485828601613cea565b9250506020613f6585828601613ec3565b9150509250929050565b613f7881613ea2565b82525050565b6000602082019050613f936000830184613f6f565b92915050565b60008060408385031215613fb057613faf613c97565b5b6000613fbe85828601613ec3565b9250506020613fcf85828601613cea565b9150509250929050565b600080600060608486031215613ff257613ff1613c97565b5b600061400086828701613cea565b935050602061401186828701613cea565b925050604061402286828701613ec3565b9150509250925092565b600060ff82169050919050565b6140428161402c565b811461404d57600080fd5b50565b60008135905061405f81614039565b92915050565b6000819050919050565b61407881614065565b811461408357600080fd5b50565b6000813590506140958161406f565b92915050565b600080600080608085870312156140b5576140b4613c97565b5b60006140c387828801613cea565b94505060206140d487828801614050565b93505060406140e587828801614086565b92505060606140f687828801614086565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61414482613e36565b810181811067ffffffffffffffff821117156141635761416261410c565b5b80604052505050565b6000614176613c8d565b9050614182828261413b565b919050565b600067ffffffffffffffff8211156141a2576141a161410c565b5b6141ab82613e36565b9050602081019050919050565b82818337600083830152505050565b60006141da6141d584614187565b61416c565b9050828152602081018484840111156141f6576141f5614107565b5b6142018482856141b8565b509392505050565b600082601f83011261421e5761421d614102565b5b813561422e8482602086016141c7565b91505092915050565b60006020828403121561424d5761424c613c97565b5b600082013567ffffffffffffffff81111561426b5761426a613c9c565b5b61427784828501614209565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106142c0576142bf614280565b5b50565b60008190506142d1826142af565b919050565b60006142e1826142c3565b9050919050565b6142f1816142d6565b82525050565b600060208201905061430c60008301846142e8565b92915050565b61431b81613db1565b811461432657600080fd5b50565b60008135905061433881614312565b92915050565b6000806040838503121561435557614354613c97565b5b600061436385828601613cea565b925050602061437485828601614329565b9150509250929050565b600067ffffffffffffffff8211156143995761439861410c565b5b602082029050602081019050919050565b600080fd5b60006143c26143bd8461437e565b61416c565b905080838252602082019050602084028301858111156143e5576143e46143aa565b5b835b8181101561440e57806143fa8882613cea565b8452602084019350506020810190506143e7565b5050509392505050565b600082601f83011261442d5761442c614102565b5b813561443d8482602086016143af565b91505092915050565b600067ffffffffffffffff8211156144615761446061410c565b5b602082029050602081019050919050565b600061ffff82169050919050565b61448981614472565b811461449457600080fd5b50565b6000813590506144a681614480565b92915050565b60006144bf6144ba84614446565b61416c565b905080838252602082019050602084028301858111156144e2576144e16143aa565b5b835b8181101561450b57806144f78882614497565b8452602084019350506020810190506144e4565b5050509392505050565b600082601f83011261452a57614529614102565b5b813561453a8482602086016144ac565b91505092915050565b6000806040838503121561455a57614559613c97565b5b600083013567ffffffffffffffff81111561457857614577613c9c565b5b61458485828601614418565b925050602083013567ffffffffffffffff8111156145a5576145a4613c9c565b5b6145b185828601614515565b9150509250929050565b600067ffffffffffffffff8211156145d6576145d561410c565b5b6145df82613e36565b9050602081019050919050565b60006145ff6145fa846145bb565b61416c565b90508281526020810184848401111561461b5761461a614107565b5b6146268482856141b8565b509392505050565b600082601f83011261464357614642614102565b5b81356146538482602086016145ec565b91505092915050565b6000806000806080858703121561467657614675613c97565b5b600061468487828801613cea565b945050602061469587828801613cea565b93505060406146a687828801613ec3565b925050606085013567ffffffffffffffff8111156146c7576146c6613c9c565b5b6146d38782880161462e565b91505092959194509250565b600080600080608085870312156146f9576146f8613c97565b5b600061470787828801613ec3565b945050602061471887828801614050565b935050604061472987828801614086565b925050606061473a87828801614086565b91505092959194509250565b6000806040838503121561475d5761475c613c97565b5b600061476b85828601613cea565b925050602061477c85828601613cea565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147bc602083613df2565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483957607f821691505b6020821081141561484d5761484c6147f2565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006148af602d83613df2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f6d757374206265206c6172676572207468616e206d696e74656420636f756e74600082015250565b600061491b602083613df2565b9150614926826148e5565b602082019050919050565b6000602082019050818103600083015261494a8161490e565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006149ad602283613df2565b91506149b882614951565b604082019050919050565b600060208201905081810360008301526149dc816149a0565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614a3f603983613df2565b9150614a4a826149e3565b604082019050919050565b60006020820190508181036000830152614a6e81614a32565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aaf82613ea2565b9150614aba83613ea2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aef57614aee614a75565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c656674000000600082015250565b6000614b30601d83613df2565b9150614b3b82614afa565b602082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc2602283613df2565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614c54602e83613df2565b9150614c5f82614bf8565b604082019050919050565b60006020820190508181036000830152614c8381614c47565b9050919050565b60008160601b9050919050565b6000614ca282614c8a565b9050919050565b6000614cb482614c97565b9050919050565b614ccc614cc782613cc1565b614ca9565b82525050565b6000614cde8285614cbb565b601482019150614cee8284614cbb565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614d3f601c83614cfe565b9150614d4a82614d09565b601c82019050919050565b6000819050919050565b614d70614d6b82614065565b614d55565b82525050565b6000614d8182614d32565b9150614d8d8284614d5f565b60208201915081905092915050565b614da581614065565b82525050565b614db48161402c565b82525050565b6000608082019050614dcf6000830187614d9c565b614ddc6020830186614dab565b614de96040830185614d9c565b614df66060830184614d9c565b95945050505050565b6000614e0a82613ea2565b9150614e1583613ea2565b925082821015614e2857614e27614a75565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614e8f602383613df2565b9150614e9a82614e33565b604082019050919050565b60006020820190508181036000830152614ebe81614e82565b9050919050565b7f6d757374206265206c6172676572207468616e20300000000000000000000000600082015250565b6000614efb601583613df2565b9150614f0682614ec5565b602082019050919050565b60006020820190508181036000830152614f2a81614eee565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614f8d602b83613df2565b9150614f9882614f31565b604082019050919050565b60006020820190508181036000830152614fbc81614f80565b9050919050565b7f4e6f2046756e647320746f207769746864726177000000000000000000000000600082015250565b6000614ff9601483613df2565b915061500482614fc3565b602082019050919050565b6000602082019050818103600083015261502881614fec565b9050919050565b7f43616e6e6f74204f70656e205075626c69632100000000000000000000000000600082015250565b6000615065601383613df2565b91506150708261502f565b602082019050919050565b6000602082019050818103600083015261509481615058565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006150d1601a83613df2565b91506150dc8261509b565b602082019050919050565b60006020820190508181036000830152615100816150c4565b9050919050565b7f4164647265737320616e64207175616e746974696573206d757374206861766560008201527f2073616d65206c656e6774680000000000000000000000000000000000000000602082015250565b6000615163602c83613df2565b915061516e82615107565b604082019050919050565b6000602082019050818103600083015261519281615156565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006151d382613ea2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520657615205614a75565b5b600182019050919050565b7f5075626c6963206e6f74206f70656e2079657400000000000000000000000000600082015250565b6000615247601383613df2565b915061525282615211565b602082019050919050565b600060208201905081810360008301526152768161523a565b9050919050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b60006152b3601483613df2565b91506152be8261527d565b602082019050919050565b600060208201905081810360008301526152e2816152a6565b9050919050565b7f4d6f7265207468616e20616c6c6f776564000000000000000000000000000000600082015250565b600061531f601183613df2565b915061532a826152e9565b602082019050919050565b6000602082019050818103600083015261534e81615312565b9050919050565b600061536082613ea2565b915061536b83613ea2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153a4576153a3614a75565b5b828202905092915050565b7f496e73756666696369656e742045746800000000000000000000000000000000600082015250565b60006153e5601083613df2565b91506153f0826153af565b602082019050919050565b60006020820190508181036000830152615414816153d8565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000615477603383613df2565b91506154828261541b565b604082019050919050565b600060208201905081810360008301526154a68161546a565b9050919050565b7f6d757374206265206c6172676572207468616e2072657365727665206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000615509602283613df2565b9150615514826154ad565b604082019050919050565b60006020820190508181036000830152615538816154fc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061559b602f83613df2565b91506155a68261553f565b604082019050919050565b600060208201905081810360008301526155ca8161558e565b9050919050565b60006155dc82613de7565b6155e68185614cfe565b93506155f6818560208601613e03565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000615638600583614cfe565b915061564382615602565b600582019050919050565b600061565a82856155d1565b915061566682846155d1565b91506156718261562b565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b60006156b3601183613df2565b91506156be8261567d565b602082019050919050565b600060208201905081810360008301526156e2816156a6565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b600061571f601583613df2565b915061572a826156e9565b602082019050919050565b6000602082019050818103600083015261574e81615712565b9050919050565b7f50726573616c652068617320636c6f7365640000000000000000000000000000600082015250565b600061578b601283613df2565b915061579682615755565b602082019050919050565b600060208201905081810360008301526157ba8161577e565b9050919050565b7f53616c6520616c7265616479204f70656e210000000000000000000000000000600082015250565b60006157f7601283613df2565b9150615802826157c1565b602082019050919050565b60006020820190508181036000830152615826816157ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615889602683613df2565b91506158948261582d565b604082019050919050565b600060208201905081810360008301526158b88161587c565b9050919050565b7f43616e6e6f742073656e6420302065746820746f206164647265737321000000600082015250565b60006158f5601d83613df2565b9150615900826158bf565b602082019050919050565b60006020820190508181036000830152615924816158e8565b9050919050565b7f496e73756666696369656e742062616c616e6365210000000000000000000000600082015250565b6000615961601583613df2565b915061596c8261592b565b602082019050919050565b6000602082019050818103600083015261599081615954565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006159f3603283613df2565b91506159fe82615997565b604082019050919050565b60006020820190508181036000830152615a22816159e6565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615a85602683613df2565b9150615a9082615a29565b604082019050919050565b60006020820190508181036000830152615ab481615a78565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615b17602583613df2565b9150615b2282615abb565b604082019050919050565b60006020820190508181036000830152615b4681615b0a565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615ba9602a83613df2565b9150615bb482615b4d565b604082019050919050565b60006020820190508181036000830152615bd881615b9c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000615c3b602f83613df2565b9150615c4682615bdf565b604082019050919050565b60006020820190508181036000830152615c6a81615c2e565b9050919050565b600081905092915050565b50565b6000615c8c600083615c71565b9150615c9782615c7c565b600082019050919050565b6000615cad82615c7f565b9150819050919050565b7f4661696c656420746f2073656e64204574680000000000000000000000000000600082015250565b6000615ced601283613df2565b9150615cf882615cb7565b602082019050919050565b60006020820190508181036000830152615d1c81615ce0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d4a82615d23565b615d548185615d2e565b9350615d64818560208601613e03565b615d6d81613e36565b840191505092915050565b6000608082019050615d8d6000830187613f05565b615d9a6020830186613f05565b615da76040830185613f6f565b8181036060830152615db98184615d3f565b905095945050505050565b600081519050615dd381613d58565b92915050565b600060208284031215615def57615dee613c97565b5b6000615dfd84828501615dc4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615e4082613ea2565b9150615e4b83613ea2565b925082615e5b57615e5a615e06565b5b828204905092915050565b6000615e7182613ea2565b9150615e7c83613ea2565b925082615e8c57615e8b615e06565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ef3602183613df2565b9150615efe82615e97565b604082019050919050565b60006020820190508181036000830152615f2281615ee6565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615f85602883613df2565b9150615f9082615f29565b604082019050919050565b60006020820190508181036000830152615fb481615f78565b905091905056fea26469706673582212207e4e77b504b6a1d266fb422e06bdd7c0df5c76b4096d2f7e7abad653298c436464736f6c63430008090033

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.